Represent a single account in a provider internal wallet. Basically an account is a triple of address, private key and public key.

interface ProviderInternalWalletAccount {
    address: string;
    privateKey?: Uint8Array;
    publicKey?: Uint8Array;
}

Properties

address: string

Address of the account.

privateKey?: Uint8Array

Private key of the account.

publicKey?: Uint8Array

Public key of the account.