Multi Message Transaction
Understand how to perform multiple actions at the same time in a single block.
Transactions Vs Messages
Transaction Limitation / Account Sequence
Multi Message Transaction (bank)
junod tx bank send juno16g2r... juno1t8e... 1000000ujunox \
--generate-only --fees=5000ujunox \
--chain-id=uni-6 --node=https://rpc.uni.junonetwork.io:443 [flags] > bankmsgs.json{
"body": {
"messages": [
{
"@type": "/cosmos.bank.v1beta1.MsgSend",
"from_address": "juno16g2rahf5846rxzp3fwlswy08fz8ccuwk03k57y",
"to_address": "juno1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzy3ajxy",
"amount": [
{
"denom": "ujuno",
"amount": "1000000"
}
]
}
],
"memo": "",
"timeout_height": "0",
"extension_options": [],
"non_critical_extension_options": []
},
"auth_info": {
"signer_infos": [],
"fee": {
"amount": [
{
"denom": "ujunox",
"amount": "5000"
}
],
"gas_limit": "200000",
"payer": "",
"granter": ""
}
},
"signatures": []
}Multi Message NFT Mint (CosmWasm)
Automate Minting Example
Last updated
Was this helpful?