bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 416 B
TypeScript
import { Bitcoind } from '../../types';
type WalletPassphraseChangeParams = {
bitcoind: Bitcoind;
oldpassphrase: string;
newpassphrase: string;
};
/**
* walletpassphrasechange "oldpassphrase" "newpassphrase"
*
* Changes the wallet passphrase from 'oldpassphrase' to 'newpassphrase'.
*
*/
export declare function walletPassphraseChange(params: WalletPassphraseChangeParams): Promise<any>;
export {};