UNPKG

@thorwallet/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

15 lines (14 loc) 428 B
import { Address, Network, TxParams } from '@thorwallet/xchain-client'; import { FeeRate } from './client-types'; import { UTXOs } from './common'; export declare type LedgerTxInfo = { utxos: UTXOs; newTxHex: string; }; export declare type LedgerTxInfoParams = Pick<TxParams, 'amount' | 'recipient'> & { feeRate: FeeRate; sender: Address; network: Network; sochainUrl: string; nodeApiKey: string; };