bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines (15 loc) • 484 B
TypeScript
import { Bitcoind } from '../../types';
type UnloadWalletParams = {
bitcoind: Bitcoind;
wallet_name?: string;
load_on_startup?: boolean;
};
/**
* unloadwallet ( "wallet_name" load_on_startup )
*
* Unloads the wallet referenced by the request endpoint, otherwise unloads the wallet specified in the argument.
* Specifying the wallet name on a wallet endpoint is invalid.
*
*/
export declare function unloadWallet(params: UnloadWalletParams): Promise<any>;
export {};