Interface PrivateKeyFromDerivationPathArgs

Arguments for deriving a private key using a mnemonic phrase and a specified BIP44 path.

The BIP44 derivation path for the key.

The mnemonic phrase used for key generation.

interface PrivateKeyFromDerivationPathArgs {
    mnemonic: string;
    path: string;
}

Properties

Properties

mnemonic: string
path: string