UNPKG

@bigmi/core

Version:

TypeScript library for Bitcoin apps.

8 lines (7 loc) 285 B
import type { HttpTransport, HttpTransportConfig } from './http.js'; type UTXOHttpTransportConfig = HttpTransportConfig & { includeChainToURL?: boolean; apiKey?: string; }; export declare function utxo(url?: string, config?: UTXOHttpTransportConfig): HttpTransport; export {};