Splits the last element from an array.
Useful for separating load transactions (parallel) from the final transfer transaction (sequential) returned by createTransferInterfaceInstructions.
createTransferInterfaceInstructions
{ rest, last } where rest is everything before the last element and last is the last element.
{ rest, last }
rest
last
if the input array is empty.
Splits the last element from an array.
Useful for separating load transactions (parallel) from the final transfer transaction (sequential) returned by
createTransferInterfaceInstructions.