mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-27 06:58:01 +00:00
7 lines
284 B
TypeScript
7 lines
284 B
TypeScript
import type { Keypair } from '../../types.js';
|
|
/**
|
|
* @name secp256k1PairFromSeed
|
|
* @description Returns a object containing a `publicKey` & `secretKey` generated from the supplied seed.
|
|
*/
|
|
export declare function secp256k1PairFromSeed(seed: Uint8Array, onlyJs?: boolean): Keypair;
|