UNPKG

@thorwallet/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

24 lines (23 loc) 500 B
/// <reference types="node" /> import { Network } from '../client'; export declare type Witness = { value: number; script: Buffer; }; export declare type UTXO = { hash: string; index: number; value: number; witnessUtxo: Witness; }; export declare type UTXOs = UTXO[]; export declare type NodeAuth = { username: string; password: string; }; export declare type BroadcastTxParams = { network: Network; txHex: string; nodeUrl: string; auth?: NodeAuth; };