UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 451 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getnettotals * * Returns information about network traffic, including bytes in, bytes out, * and current system time. * */ export function getNetTotals(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getnettotals', params: methodParams }, bitcoind); } //# sourceMappingURL=get-net-totals.js.map