UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 498 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * send [{"address":amount,...},{"data":"hex"},...] ( conf_target "estimate_mode" fee_rate options ) * * EXPERIMENTAL warning: this call may be changed in future releases. * Send a transaction. * */ export function send(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'send', params: methodParams }, bitcoind); } //# sourceMappingURL=send.js.map