UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 321 B
import { Bitcoind } from '../../types'; type GetNetTotalsParams = { bitcoind: Bitcoind; }; /** * getnettotals * * Returns information about network traffic, including bytes in, bytes out, * and current system time. * */ export declare function getNetTotals(params: GetNetTotalsParams): Promise<any>; export {};