19const std::string
HELP_REQUIRING_PASSPHRASE{
"\nRequires wallet passphrase to be set with walletpassphrase call if wallet is encrypted.\n"};
23 bool avoid_reuse = param.
isNull() ? can_avoid_reuse : param.
get_bool();
25 if (avoid_reuse && !can_avoid_reuse) {
38 if (include_watchonly.
isNull()) {
62 std::string wallet_name;
64 std::shared_ptr<CWallet> pwallet =
GetWallet(context, wallet_name);
75 RPC_WALLET_NOT_FOUND,
"No wallet is loaded. Load a wallet using loadwallet or create a new one with createwallet. (Note: A default wallet is no longer automatically created)");
78 "Multiple wallets are loaded. Please select which wallet to use by requesting the RPC through the /wallet/<walletname> URI path.");
90 auto wallet_context = util::AnyPtr<WalletContext>(context);
91 if (!wallet_context) {
94 return *wallet_context;
101 if (!spk_man && also_create) {
102 spk_man =
wallet.GetOrCreateLegacyScriptPubKeyMan();
121 static const std::string empty_string;
122 if (value.
isNull())
return empty_string;
124 const std::string& label{value.
get_str()};
133 for (
const auto& desc:
wallet.GetWalletDescriptors(script_pubkey)) {
134 parent_descs.
push_back(desc.descriptor->ToString());
136 entry.
pushKV(
"parent_descs", std::move(parent_descs));
170 lastprocessedblock.pushKV(
"hash",
wallet.GetLastBlockHash().GetHex());
171 lastprocessedblock.pushKV(
"height",
wallet.GetLastBlockHeight());
172 entry.
pushKV(
"lastprocessedblock", std::move(lastprocessedblock));
#define CHECK_NONFATAL(condition)
Identity function.
Serialized script, used inside transaction inputs and outputs.
enum JSONRPCRequest::Mode mode
void push_back(UniValue val)
const std::string & get_str() const
void pushKV(std::string key, UniValue val)
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
std::shared_ptr< CWallet > GetWalletForJSONRPCRequest(const JSONRPCRequest &request)
Figures out what wallet, if any, to use for a JSONRPCRequest.
bool GetWalletNameFromJSONRPCRequest(const JSONRPCRequest &request, std::string &wallet_name)
void HandleWalletError(const std::shared_ptr< CWallet > wallet, DatabaseStatus &status, bilingual_str &error)
void EnsureWalletIsUnlocked(const CWallet &wallet)
const LegacyScriptPubKeyMan & EnsureConstLegacyScriptPubKeyMan(const CWallet &wallet)
const std::string HELP_REQUIRING_PASSPHRASE
void PushParentDescriptors(const CWallet &wallet, const CScript &script_pubkey, UniValue &entry)
Fetch parent descriptors of this scriptPubKey.
LegacyScriptPubKeyMan & EnsureLegacyScriptPubKeyMan(CWallet &wallet, bool also_create)
WalletContext & EnsureWalletContext(const std::any &context)
std::string LabelFromValue(const UniValue &value)
void AppendLastProcessedBlock(UniValue &entry, const CWallet &wallet)
bool ParseIncludeWatchonly(const UniValue &include_watchonly, const CWallet &wallet)
Used by RPC commands that have an include_watchonly parameter.
bool GetAvoidReuseFlag(const CWallet &wallet, const UniValue ¶m)
@ WALLET_FLAG_AVOID_REUSE
@ WALLET_FLAG_DISABLE_PRIVATE_KEYS
std::shared_ptr< CWallet > GetWallet(WalletContext &context, const std::string &name)
static const std::string WALLET_ENDPOINT_BASE
@ FAILED_INVALID_BACKUP_FILE
std::shared_ptr< CWallet > GetDefaultWallet(WalletContext &context, size_t &count)
UniValue JSONRPCError(int code, const std::string &message)
RPCErrorCode
Bitcoin RPC error codes.
@ RPC_WALLET_NOT_SPECIFIED
No wallet specified (error when there are multiple wallets loaded)
@ RPC_WALLET_INVALID_LABEL_NAME
Invalid label name.
@ RPC_WALLET_UNLOCK_NEEDED
Enter the wallet passphrase with walletpassphrase first.
@ RPC_WALLET_ALREADY_EXISTS
There is already a wallet with the same name.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ RPC_WALLET_ERROR
Wallet errors.
@ RPC_WALLET_ALREADY_LOADED
This same wallet is already loaded.
@ RPC_WALLET_NOT_FOUND
Invalid wallet specified.
WalletContext struct containing references to state shared between CWallet instances,...
std::string UrlDecode(std::string_view url_encoded)