loadwallet

Back to wallet

Wallet

Summary

Loads a wallet from a wallet file or directory.

Description

Loads a wallet from a wallet file or directory. Note that all wallet command-line options used when starting qbitd will be applied to the new wallet.

Arguments

  • filename (STR, required): The path to the directory of the wallet to be loaded, either absolute or relative to the "wallets" directory. The "wallets" directory is set by the -walletdir option and defaults to the "wallets" folder within the data directory.
  • load_on_startup (BOOL): Save wallet name to persistent settings and load on startup. True to add wallet to startup list, false to remove, null to leave unchanged.

Results

  • value (OBJ): No description.
  • name (STR): The wallet name if loaded successfully.
  • warnings (ARR, optional): Warning messages, if any, related to loading the wallet.
    • value (STR): No description.

Examples

Load wallet from the wallet dir:
qbit-cli loadwallet "walletname"
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "loadwallet", "params": ["walletname"]}' -H 'content-type: application/json' http://127.0.0.1:8352/
Load wallet using absolute path (Unix):
qbit-cli loadwallet "/path/to/walletname/"
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "loadwallet", "params": ["/path/to/walletname/"]}' -H 'content-type: application/json' http://127.0.0.1:8352/
Load wallet using absolute path (Windows):
qbit-cli loadwallet "DriveLetter:\path\to\walletname\"
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "loadwallet", "params": ["DriveLetter:\path\to\walletname\"]}' -H 'content-type: application/json' http://127.0.0.1:8352/