bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines (13 loc) • 385 B
TypeScript
import { Bitcoind } from '../../types';
type BackupWalletParams = {
bitcoind: Bitcoind;
destination: string;
};
/**
* backupwallet "destination"
*
* Safely copies the current wallet file to the specified destination, which can either be a directory or a path with a filename.
*
*/
export declare function backupWallet(params: BackupWalletParams): Promise<any>;
export {};