UNPKG

bitcoincore-node

Version:

A comprehensive Node.js package for interacting with Bitcoin Core via RPC. Create, sign, and broadcast Bitcoin transactions, manage wallets, and access blockchain data through an easy-to-use API interface. Perfect for developers building cryptocurrency ap

9 lines (8 loc) 161 B
export interface BitcoinCoreConfig { network: string; username: string; password: string; host: string; port: number; wallet?: string; }