A high level transaction of the coin module

interface AminoMsgSend {
    type: "cosmos-sdk/MsgSend";
    value: {
        amount: readonly Coin[];
        from_address: string;
        to_address: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgSend

Properties

Properties

type: "cosmos-sdk/MsgSend"
value: {
    amount: readonly Coin[];
    from_address: string;
    to_address: string;
}

Type declaration

  • Readonly amount: readonly Coin[]
  • Readonly from_address: string

    Bech32 account address

  • Readonly to_address: string

    Bech32 account address

Generated using TypeDoc