@tomo-inc/ledger-bitcoin-babylon
Version:
Ledger Hardware Wallet Babylon Application Client
16 lines (15 loc) • 577 B
TypeScript
import AppClient from '../..';
import { SignedMessage } from './types';
export declare function bip0322Hash(message: string): string;
export declare function createSegwitBip322Signature({ message, app, derivationPath, isTestnet, }: {
message: string;
app: AppClient;
derivationPath: string;
isTestnet: boolean;
}): Promise<SignedMessage>;
export declare function createTaprootBip322Signature({ message, app, derivationPath, isTestnet, }: {
message: string;
app: AppClient;
derivationPath: string;
isTestnet: boolean;
}): Promise<SignedMessage>;