UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 423 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getconnectioncount * * Returns the number of connections to other nodes. * */ export function getConnectionCount(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getconnectioncount', params: methodParams }, bitcoind); } //# sourceMappingURL=get-connection-count.js.map