UNPKG

bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

15 lines (14 loc) 280 B
export type Json = { [key: string]: unknown; }; export type Bitcoind = { protocol: 'http' | 'https'; username: string; password: string; host: string; port: number; url: string; authHeader: string; walletName?: string; timeout?: number; };