Messages
bank
Multi Send

cosmos.bank.multiSend

Tokens sent from one address to multiple addresses.

Schema

FieldRequiredData typeExplanationExample
__typeYesstringAlways "cosmos.bank.multiSend"."cosmos.bank.multiSend"
blockchainYesstringThe blockchain this transaction was executed on. This field will have one of the values in the ID column where the Ecosystem column's value is Cosmos."juno"
txHashYesstringThe transaction's hash."DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8"
isSuccessfulYesbooleanWhether the transaction succeeded or failed.true
memoYesstringA note the user added while making the transaction. Maybe be empty ("")."I owed you 1.5 ATOM since you paid for lunch."
inputsYesarray of inputsThe "fromAddress" field's value is the same in each array element.
outputsYesarray of outputs

input

FieldRequiredData typeExplanationExample
fromAddressYesstringThe address sending tokens."cosmos1g0ffln2weg8wpzpn2hy9t2eddygqcxtvggmyhl"
tokensYesarray of tokensTokens sent from the fromAddress.

output

FieldRequiredData typeExplanationExample
toAddressYesstringOne of the addresses receiving tokens."cosmos1g0ffln2weg8wpzpn2hy9t2eddygqcxtvggmyhl"
tokensYesarray of tokensTokens sent to the toAddress.

token

FieldRequiredData typeExplanationExample
denominationYesstring"uatom"
quantityYesstring"100"

Example

{
  "__type": "cosmos.bank.multiSend",
  "blockchain": "juno",
  "txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
  "isSuccessful": true,
  "memo": "",
  "inputs": [
    {
      "fromAddress": "like1qurwvswpwjl80aa4aeecvj2q2l9gktnymqq8dq",
      "tokens": [
        {
          "denomination": "nanolike",
          "quantity": "11000000000"
        }
      ]
    }
  ],
  "outputs": [
    {
      "toAddress": "like156sc4gyx8qm7896q5yqh707fcy9tqwqtezsazl",
      "tokens": [
        {
          "denomination": "nanolike",
          "quantity": "10000000000"
        }
      ]
    },
    {
      "toAddress": "like174h9qqxf249032yh5ndkffw8yet6tttrx9rd70",
      "tokens": [
        {
          "denomination": "nanolike",
          "quantity": "1000000000"
        }
      ]
    }
  ]
}