github.com/Finschia/finschia-sdk@v0.48.1/x/bank/spec/03_messages.md (about)

     1  <!--
     2  order: 3
     3  -->
     4  
     5  # Messages
     6  
     7  ## MsgSend
     8  
     9  Send coins from one address to another.
    10  +++ https://github.com/cosmos/cosmos-sdk/blob/v0.40.0/proto/cosmos/bank/v1beta1/tx.proto#L19-L28
    11  
    12  The message will fail under the following conditions:
    13  
    14  - The coins do not have sending enabled
    15  - The `to` address is restricted
    16  
    17  ## MsgMultiSend
    18  
    19  Send coins from and to a series of different address. If any of the receiving addresses do not correspond to an existing account, a new account is created.
    20  +++ https://github.com/cosmos/cosmos-sdk/blob/v0.40.0/proto/cosmos/bank/v1beta1/tx.proto#L33-L39
    21  
    22  The message will fail under the following conditions:
    23  
    24  - Any of the coins do not have sending enabled
    25  - Any of the `to` addresses are restricted
    26  - Any of the coins are locked
    27  - The inputs and outputs do not correctly correspond to one another