@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines • 622 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* sendmany ( "" ) {"address":amount,...} ( minconf "comment" ["address",...] replaceable conf_target "estimate_mode" fee_rate verbose )
*
* Send multiple times. Amounts are double-precision floating point numbers.
* Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.
*
*/
export function sendMany(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'sendmany', params: methodParams }, bitcoind);
}
//# sourceMappingURL=send-many.js.map