@thorwallet/xchain-bitcoin
Version:
Custom Bitcoin client and utilities used by XChainJS clients
9 lines (8 loc) • 335 B
TypeScript
import { LedgerTxInfo, LedgerTxInfoParams } from './types/ledger';
/**
* Create transaction info.
*
* @param {LedgerTxInfoParams} params The transaction build options.
* @returns {LedgerTxInfo} The transaction info used for ledger sign.
*/
export declare const createTxInfo: (params: LedgerTxInfoParams) => Promise<LedgerTxInfo>;