Interface IAccountDescriptor

interface IAccountDescriptor {
    accountId: string;
    accountName?: string;
    changeAddress?: Address;
    kind: AccountKind;
    prvKeyDataIds: string[];
    receiveAddress?: Address;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

accountId: string
accountName?: string
changeAddress?: Address
prvKeyDataIds: string[]
receiveAddress?: Address

Generated using TypeDoc