@ledgerhq/hw-app-btc
Version:
Ledger Hardware Wallet Bitcoin Application API
47 lines • 1.44 kB
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import type Transport from "@ledgerhq/hw-transport";
import type { AddressFormat } from "./getWalletPublicKey";
import type { Transaction } from "./types";
export type { AddressFormat };
export declare const getDefaultVersions: ({ isZcash, sapling, isDecred, expiryHeight, blockHeight, }: {
isZcash: boolean;
sapling: boolean;
isDecred: boolean;
expiryHeight: Buffer | undefined;
blockHeight: number | undefined;
}) => {
defaultVersion: Buffer;
defaultVersionNu5Only: Buffer;
};
/**
*
*/
export type CreateTransactionArg = {
inputs: Array<[
Transaction,
number,
string | null | undefined,
number | null | undefined,
(number | null | undefined)?
]>;
associatedKeysets: string[];
changePath?: string;
outputScriptHex: string;
lockTime?: number;
blockHeight?: number;
sigHashType?: number;
segwit?: boolean;
additionals: Array<string>;
expiryHeight?: Buffer;
useTrustedInputForSegwit?: boolean;
onDeviceStreaming?: (arg0: {
progress: number;
total: number;
index: number;
}) => void;
onDeviceSignatureRequested?: () => void;
onDeviceSignatureGranted?: () => void;
};
export declare function createTransaction(transport: Transport, arg: CreateTransactionArg): Promise<string>;
//# sourceMappingURL=createTransaction.d.ts.map