@ledgerhq/hw-app-btc
Version:
Ledger Hardware Wallet Bitcoin Application API
7 lines • 665 B
TypeScript
import type Transport from "@ledgerhq/hw-transport";
import type { OrchardData, SaplingData, Transaction } from "./types";
export declare function getTrustedInputRaw(transport: Transport, transactionData: Buffer, indexLookup?: number | null | undefined): Promise<string>;
export declare function getTrustedInput(transport: Transport, indexLookup: number, transaction: Transaction, additionals?: Array<string>): Promise<string>;
export declare function sendSapling(transport: Transport, sapling: SaplingData): Promise<void>;
export declare function sendOrchard(transport: Transport, orchard: OrchardData): Promise<void>;
//# sourceMappingURL=getTrustedInput.d.ts.map