I am a coin wallet developer, and I am investigating Cosmos' transfer this time.
Cosmos has msgMultiSend
as well as msgSend
.
I know that MsgMultiSend sends several transfers using inputs
and outputs
in the form of an array.
At this time, I wonder if the order of inputs
and outputs
is matched one on one and guaranteed.
(i.e., whether the recipient matching the first sender of inputs is always guaranteed to be the first of outputs.)
(i.e.
- transfer 1 : inputs[0] -> outputs[0]
- transfer 2 : inputs[1] -> outputs[1] ...)