FungibleTokenPacketData defines a struct for the packet payload See FungibleTokenPacketData spec: https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures

interface FungibleTokenPacketDataAmino {
    amount?: string;
    denom?: string;
    receiver?: string;
    sender?: string;
}

Properties

amount?: string

the token amount to be transferred

denom?: string

the token denomination to be transferred

receiver?: string

the recipient address on the destination chain

sender?: string

the sender address