Messages
ibc
Receive

cosmos.ibc.receive

A token sent from another blockchain.

Schema

FieldRequiredData typeExplanationExample
__typeYesstringAlways "cosmos.ibc.receive"."cosmos.ibc.receive"
blockchainYesstringThe blockchain the token was received 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."
fromAddressYesstringSender's address."cosmos1g0ffln2weg8wpzpn2hy9t2eddygqcxtvggmyhl"
toAddressYesstringReceiver's address."cosmos1g0ffln2weg8wpzpn2hy9t2eddygqcxtvggmyhl"
denominationYesstringThe denomination of the token transferred."uatom"
quantityYesstringThe quantity of denomination transferred."100"
sequenceYesstringIBC sequence."65333"
srcPortYesstringIBC port used."transfer"
srcChannelYesstringIBC channel used."channel-42"
destinationPortYesIBC port used to receive."transfer"
destinationChannelYesIBC channel used to receive."channel-355"

Example

{
  "__type": "cosmos.ibc.receive",
  "blockchain": "juno",
  "txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
  "isSuccessful": true,
  "memo": "",
  "fromAddress": "like1qurwvswpwjl80aa4aeecvj2q2l9gktnymqq8dq",
  "toAddress": "like156sc4gyx8qm7896q5yqh707fcy9tqwqtezsazl",
  "denomination": "uatom",
  "quantity": "100",
  "sequence": "65333",
  "srcPort": "transfer",
  "srcChannel": "channel-42",
  "destinationPort": "transfer",
  "destinationChannel": "channel-355"
}