UNPKG

310 BTypeScriptView Raw
1import type { Keypair } from '../types.js';
2import type { DeriveJunction } from './DeriveJunction.js';
3export declare function createSeedDeriveFn(fromSeed: (seed: Uint8Array) => Keypair, derive: (seed: Uint8Array, chainCode: Uint8Array) => Uint8Array): (keypair: Keypair, junction: DeriveJunction) => Keypair;