Search Apps Documentation Source Content File Folder Download Copy Actions Download

events.gno

0.64 Kb · 21 lines
 1package transfer
 2
 3// IBC transfer events
 4const (
 5	EventTypeTimeout  = "timeout"
 6	EventTypePacket   = "fungible_token_packet"
 7	EventTypeTransfer = "ibc_transfer"
 8	EventTypeDenom    = "denomination"
 9
10	AttributeKeySender         = "sender"
11	AttributeKeyReceiver       = "receiver"
12	AttributeKeyDenom          = "denom"
13	AttributeKeyDenomHash      = "denom_hash"
14	AttributeKeyAmount         = "amount"
15	AttributeKeyRefundReceiver = "refund_receiver"
16	AttributeKeyRefundTokens   = "refund_tokens"
17	AttributeKeyAckSuccess     = "success"
18	AttributeKeyAck            = "acknowledgement"
19	AttributeKeyAckError       = "error"
20	AttributeKeyMemo           = "memo"
21)