Interface IPrvKeyDataCreateRequest

Argument interface for the Wallet.prvKeyDataCreate method.

interface IPrvKeyDataCreateRequest {
    mnemonic: string;
    name?: string;
    paymentSecret?: string;
    walletSecret: string;
}

Properties

mnemonic: string

BIP39 mnemonic phrase (12 or 24 words)

name?: string

Optional name of the private key

paymentSecret?: string

Optional key secret (BIP39 passphrase).

If supplied, all operations requiring access to the key will require the paymentSecret to be provided.

walletSecret: string

Wallet encryption secret

Generated using TypeDoc