mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-30 18:57:57 +00:00
7 lines
271 B
TypeScript
7 lines
271 B
TypeScript
import type { Keypair } from '../../types.js';
|
|
/**
|
|
* @name sr25519PairFromSeed
|
|
* @description Returns a object containing a `publicKey` & `secretKey` generated from the supplied seed.
|
|
*/
|
|
export declare function sr25519PairFromSeed(seed: string | Uint8Array): Keypair;
|