Crypto utilities for managing bitcoin embedded wallets.
npm install @KondorFinance/zky-crypto-utils
import { getKeySeedFromBIP322Signature, getETHSeedMnemonics } from '@KondorFinance/zky-crypto-utils';
// Deterministically derives a key seed from a BIP322 signature.
const keySeed = getKeySeedFromBIP322Signature(BIP322signature);
// Converts an entropy string into a mnemonic phrase according to the BIP39 standard.
const mn = getETHSeedMnemonics(keySeed)
function getKeySeedFromBIP322Signature(BIP322Signature: string): string;
function getETHSeedMnemonics(entropy: string): string;
Copyright (c) 2024 Kondor Finance, Ltd.