UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 385 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * help ( "command" ) * * List all commands, or get help for a specified command. * */ export function help(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'help', params: methodParams }, bitcoind); } //# sourceMappingURL=help.js.map