UNPKG

@xchainjs/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

15 lines (14 loc) 430 B
import { FeeRate, Network } from '@xchainjs/xchain-client'; import { Address } from '@xchainjs/xchain-util'; import { TxParams, UTXO } from '@xchainjs/xchain-utxo'; export type LedgerTxInfo = { utxos: UTXO[]; newTxHex: string; }; export type LedgerTxInfoParams = Pick<TxParams, 'amount' | 'recipient'> & { feeRate: FeeRate; sender: Address; network: Network; sochainUrl: string; nodeApiKey: string; };