UNPKG

@bsv/spv-wallet-js-client

Version:

TypeScript library for connecting to a SPV Wallet server

8 lines (7 loc) 453 B
import { Key, KeyWithMnemonic } from '../types'; import { HD } from '@bsv/sdk'; export declare const deriveChildKeyFromHex: (hdKey: HD, hexHash: string) => HD; export declare const deriveHDChildKeyFromHex: (hdKey: HD, hexHash: string) => HD; export declare const generateKeys: () => KeyWithMnemonic; export declare const getKeysFromMnemonic: (mnemonicStr: string) => KeyWithMnemonic; export declare const getKeysFromString: (privateKey: string) => Key;