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 BaseAccountSDKType {
    $typeUrl?: "/cosmos.auth.v1beta1.BaseAccount";
    account_number: bigint;
    address: string;
    pub_key?: AnySDKType;
    sequence: bigint;
}

Properties

$typeUrl?: "/cosmos.auth.v1beta1.BaseAccount"
account_number: bigint
address: string
pub_key?: AnySDKType
sequence: bigint