UNPKG

@brynjarrr/xchain-doge

Version:

Custom Doge client and utilities used by XChain clients

13 lines (12 loc) 278 B
import { Network } from '@xchainjs/xchain-client'; export declare type UTXO = { hash: string; index: number; value: number; txHex?: string; }; export declare type BroadcastTxParams = { network: Network; txHex: string; nodeUrl: string; };