UNPKG

@xchainjs/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

15 lines (14 loc) 267 B
/// <reference types="node" /> export type Witness = { value: number; script: Buffer; }; export type NodeAuth = { username: string; password: string; }; export type BroadcastTxParams = { txHex: string; nodeUrl: string; auth?: NodeAuth; };