BaseAccount defines a base account type. It contains all the necessary fields for basic account functionality. Any custom account type should extend this type for additional functionality (e.g. vesting).

interface BaseAccountAmino {
    account_number?: string;
    address?: string;
    pub_key?: AnyAmino;
    sequence?: string;
}

Properties

account_number?: string
address?: string
pub_key?: AnyAmino
sequence?: string