interface Account {
    authFun?: string;
    balance: string;
    contractId?: string;
    id: string;
    kind?: AccountKind;
    nonce: string;
    payable?: boolean;
}

Properties

authFun?: string

Name of authorization function for generalized account

balance: string
contractId?: string

Base58Check encoded tagged pubkey

id: string

Base58Check encoded tagged pubkey

nonce: string
payable?: boolean

Payable

Generated using TypeDoc