UNPKG

281 BTypeScriptView Raw
1import type { Keypair } from '../../types';
2/**
3 * @name secp256k1PairFromSeed
4 * @description Returns a object containing a `publicKey` & `secretKey` generated from the supplied seed.
5 */
6export declare function secp256k1PairFromSeed(seed: Uint8Array, onlyJs?: boolean): Keypair;