mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-06-13 17:51:01 +00:00
4 lines
310 B
TypeScript
4 lines
310 B
TypeScript
import type { Keypair } from '../types.js';
|
|
import type { DeriveJunction } from './DeriveJunction.js';
|
|
export declare function createSeedDeriveFn(fromSeed: (seed: Uint8Array) => Keypair, derive: (seed: Uint8Array, chainCode: Uint8Array) => Uint8Array): (keypair: Keypair, junction: DeriveJunction) => Keypair;
|