bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
17 lines (16 loc) • 454 B
TypeScript
import { Bitcoind } from '../../types';
type LoadWalletParams = {
bitcoind: Bitcoind;
filename: string;
load_on_startup?: boolean;
};
/**
* loadwallet "filename" ( load_on_startup )
*
* Loads a wallet from a wallet file or directory.
* Note that all wallet command-line options used when starting bitcoind will be
* applied to the new wallet.
*
*/
export declare function loadWallet(params: LoadWalletParams): Promise<any>;
export {};