atomicals-js
Version:
Atomicals JavaScript SDK and CLI
18 lines (17 loc) • 573 B
TypeScript
export interface ExtendTaprootAddressScriptKeyPairInfo {
address: string;
tweakedChildNode: any;
childNodeXOnlyPubkey: any;
output: any;
keyPair: any;
path: string;
}
export declare const getExtendTaprootAddressKeypairPath: (phrase: string, path: string, passphrase?: string) => Promise<ExtendTaprootAddressScriptKeyPairInfo>;
export interface KeyPairInfo {
address: string;
output: string;
childNodeXOnlyPubkey: any;
tweakedChildNode: any;
childNode: any;
}
export declare const getKeypairInfo: (childNode: any) => KeyPairInfo;