bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
14 lines • 497 B
TypeScript
export interface DerivedKey {
wif: string;
address: string;
publicKey: string;
counterpartyPubKey: string;
invoice: string;
}
export interface Type42KeyDerivationProps {
privateKey?: string;
onKeyDerived?: (derivedKey: DerivedKey) => void;
className?: string;
}
export declare function Type42KeyDerivation({ privateKey, onKeyDerived, className, }: Type42KeyDerivationProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Type42KeyDerivation.d.ts.map