github.com/okex/exchain@v1.8.0/libs/ibc-go/proto/ibc/applications/transfer/v2/packet.proto (about)

     1  syntax = "proto3";
     2  
     3  package ibc.applications.transfer.v2;
     4  
     5  option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types";
     6  
     7  // FungibleTokenPacketData defines a struct for the packet payload
     8  // See FungibleTokenPacketData spec:
     9  // https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
    10  message FungibleTokenPacketData {
    11    // the token denomination to be transferred
    12    string denom = 1;
    13    // the token amount to be transferred
    14    string amount = 2;
    15    // the sender address
    16    string sender = 3;
    17    // the recipient address on the destination chain
    18    string receiver = 4;
    19  }