UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 492 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * walletpassphrasechange "oldpassphrase" "newpassphrase" * * Changes the wallet passphrase from 'oldpassphrase' to 'newpassphrase'. * */ export function walletPassphraseChange(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'walletpassphrasechange', params: methodParams }, bitcoind); } //# sourceMappingURL=wallet-passphrase-change.js.map