interface AminoMsgCreateVestingAccount {
    type: "cosmos-sdk/MsgCreateVestingAccount";
    value: {
        amount: readonly Coin[];
        delayed: boolean;
        end_time: string;
        from_address: string;
        to_address: string;
    };
}

Hierarchy

  • AminoMsg
    • AminoMsgCreateVestingAccount

Properties

Properties

type: "cosmos-sdk/MsgCreateVestingAccount"
value: {
    amount: readonly Coin[];
    delayed: boolean;
    end_time: string;
    from_address: string;
    to_address: string;
}

Type declaration

  • Readonly amount: readonly Coin[]
  • Readonly delayed: boolean
  • Readonly end_time: string
  • Readonly from_address: string

    Bech32 account address

  • Readonly to_address: string

    Bech32 account address

Generated using TypeDoc