Transfers fungible tokens (i.e Coins) between ICS20 enabled chains

interface AminoMsgTransfer {
    type: "cosmos-sdk/MsgTransfer";
    value: {
        receiver: string;
        sender: string;
        source_channel: string;
        source_port: string;
        timeout_height: AminoHeight;
        timeout_timestamp?: string;
        token?: Coin;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgTransfer

Properties

Properties

type: "cosmos-sdk/MsgTransfer"
value: {
    receiver: string;
    sender: string;
    source_channel: string;
    source_port: string;
    timeout_height: AminoHeight;
    timeout_timestamp?: string;
    token?: Coin;
}

Type declaration

Generated using TypeDoc