Interface IAccountsPskbSignRequest

Argument interface for the Wallet.accountsPskbSign method.

interface IAccountsPskbSignRequest {
    accountId: string;
    paymentSecret?: string;
    pskb: string;
    signForAddress?: string | Address;
    walletSecret: string;
}

Properties

accountId: string

Hex identifier of the account.

paymentSecret?: string

Optional key encryption secret or BIP39 passphrase.

pskb: string

PSKB to sign.

signForAddress?: string | Address

Address to sign for.

walletSecret: string

Wallet encryption secret.

Generated using TypeDoc