5#include <bitcoin-build-config.h>
47const std::string
EXAMPLE_ADDRESS[2] = {
"bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl",
"bc1q02ad21edsxd23d32dfgqqsz4vv4nmtfzuklhy3"};
51 std::vector<std::string>
ret;
52 using U = std::underlying_type<TxoutType>::type;
60 const std::map<std::string, UniValueType>& typesExpected,
64 for (
const auto&
t : typesExpected) {
66 if (!fAllowNull && v.
isNull())
69 if (!(
t.second.typeAny || v.
type() ==
t.second.type || (fAllowNull && v.
isNull())))
75 for (
const std::string&
k : o.
getKeys())
77 if (typesExpected.count(
k) == 0)
79 std::string err =
strprintf(
"Unexpected key %s",
k);
98 return default_verbosity;
122 const std::string& strHex(v.
get_str());
124 if (
auto expected_len{
uint256::size() * 2}; strHex.length() != expected_len) {
154std::string ShellQuote(
const std::string&
s)
157 result.reserve(
s.size() * 2);
158 for (
const char ch:
s) {
165 return "'" + result +
"'";
173std::string ShellQuoteIfNeeded(
const std::string&
s)
175 for (
const char ch:
s) {
176 if (ch ==
' ' || ch ==
'\'' || ch ==
'"') {
177 return ShellQuote(
s);
188 return "> bitcoin-cli " + methodname +
" " +
args +
"\n";
193 std::string result =
"> bitcoin-cli -named " + methodname;
194 for (
const auto& argpair:
args) {
195 const auto& value = argpair.second.isStr()
196 ? argpair.second.get_str()
197 : argpair.second.write();
198 result +=
" " + argpair.first +
"=" + ShellQuoteIfNeeded(value);
206 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
207 "\"method\": \"" + methodname +
"\", \"params\": [" +
args +
"]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
213 for (
const auto& param:
args) {
214 params.
pushKV(param.first, param.second);
217 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
218 "\"method\": \"" + methodname +
"\", \"params\": " + params.
write() +
"}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
224 if (!
IsHex(hex_in)) {
227 if (hex_in.length() != 66 && hex_in.length() != 130) {
249 if (!keystore.
GetPubKey(key, vchPubKey)) {
265 if ((
int)pubkeys.size() < required) {
276 if (!
pk.IsCompressed()) {
310 obj.
pushKV(
"isscript",
false);
311 obj.
pushKV(
"iswitness",
false);
318 obj.
pushKV(
"isscript",
true);
319 obj.
pushKV(
"iswitness",
false);
326 obj.
pushKV(
"isscript",
false);
327 obj.
pushKV(
"iswitness",
true);
328 obj.
pushKV(
"witness_version", 0);
336 obj.
pushKV(
"isscript",
true);
337 obj.
pushKV(
"iswitness",
true);
338 obj.
pushKV(
"witness_version", 0);
346 obj.
pushKV(
"isscript",
true);
347 obj.
pushKV(
"iswitness",
true);
348 obj.
pushKV(
"witness_version", 1);
356 obj.
pushKV(
"isscript",
true);
357 obj.
pushKV(
"iswitness",
true);
364 obj.
pushKV(
"iswitness",
true);
365 obj.
pushKV(
"witness_version",
id.GetWitnessVersion());
366 obj.
pushKV(
"witness_program",
HexStr(
id.GetWitnessProgram()));
390 return result.value();
395 const int target{value.
getInt<
int>()};
396 const unsigned int unsigned_target{
static_cast<unsigned int>(target)};
397 if (target < 1 || unsigned_target > max_target) {
400 return unsigned_target;
406 case PSBTError::UNSUPPORTED:
408 case PSBTError::SIGHASH_MISMATCH:
418 case TransactionError::MEMPOOL_REJECTED:
420 case TransactionError::ALREADY_IN_UTXO_SET:
434 if (err_string.length() > 0) {
446 Section(
const std::string& left,
const std::string& right)
472 const auto indent = std::string(current_indent,
' ');
473 const auto indent_next = std::string(current_indent + 2,
' ');
485 if (is_top_level_arg)
return;
499 PushSection({indent + (push_name ?
"\"" + arg.
GetName() +
"\": " :
"") +
"{", right});
500 for (
const auto& arg_inner : arg.
m_inner) {
506 PushSection({indent +
"}" + (is_top_level_arg ?
"" :
","),
""});
511 left += push_name ?
"\"" + arg.
GetName() +
"\": " :
"";
515 for (
const auto& arg_inner : arg.
m_inner) {
519 PushSection({indent +
"]" + (is_top_level_arg ?
"" :
","),
""});
536 if (
s.m_right.empty()) {
542 std::string left =
s.m_left;
543 left.resize(pad,
' ');
549 size_t new_line_pos =
s.m_right.find_first_of(
'\n');
551 right +=
s.m_right.substr(begin, new_line_pos - begin);
552 if (new_line_pos == std::string::npos) {
555 right +=
"\n" + std::string(pad,
' ');
556 begin =
s.m_right.find_first_not_of(
' ', new_line_pos + 1);
557 if (begin == std::string::npos) {
560 new_line_pos =
s.m_right.find_first_of(
'\n', begin + 1);
574 m_fun{
std::move(fun)},
575 m_description{
std::move(description)},
577 m_results{
std::move(results)},
578 m_examples{
std::move(examples)}
583 enum ParamType { POSITIONAL = 1, NAMED = 2, NAMED_ONLY = 4 };
584 std::map<std::string, int> param_names;
586 for (
const auto& arg :
m_args) {
587 std::vector<std::string> names =
SplitString(arg.m_names,
'|');
589 for (
const std::string&
name : names) {
590 auto& param_type = param_names[
name];
593 param_type |= POSITIONAL;
596 for (
const auto& inner : arg.m_inner) {
597 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
598 for (
const std::string& inner_name : inner_names) {
599 auto& param_type = param_names[inner_name];
600 CHECK_NONFATAL(!(param_type & POSITIONAL) || inner.m_opts.also_positional);
603 param_type |= inner.m_opts.also_positional ? NAMED : NAMED_ONLY;
608 if (arg.m_fallback.index() == 2) {
610 switch (std::get<RPCArg::Default>(arg.m_fallback).getType()) {
642 if (r.m_cond.empty()) {
643 result +=
"\nResult:\n";
645 result +=
"\nResult (" + r.m_cond +
"):\n";
648 r.ToSections(sections);
669 throw std::runtime_error(
ToString());
672 for (
size_t i{0}; i <
m_args.size(); ++i) {
673 const auto& arg{
m_args.at(i)};
675 if (!match.isTrue()) {
676 arg_mismatch.
pushKV(
strprintf(
"Position %s (%s)", i + 1, arg.m_names), std::move(match));
679 if (!arg_mismatch.empty()) {
690 if (match.isTrue()) {
694 mismatch.push_back(std::move(match));
696 if (!mismatch.isNull()) {
698 mismatch.empty() ?
"no possible results defined" :
699 mismatch.size() == 1 ? mismatch[0].write(4) :
701 throw std::runtime_error{
702 strprintf(
"Internal bug detected: RPC call \"%s\" returned incorrect type:\n%s\n%s %s\nPlease report this issue here: %s\n",
716 const RPCArg& param{params.at(i)};
717 if (check) check(param);
719 if (!arg.isNull())
return &arg;
720 if (!std::holds_alternative<RPCArg::Default>(param.m_fallback))
return nullptr;
721 return &std::get<RPCArg::Default>(param.m_fallback);
733#define TMPL_INST(check_param, ret_type, return_code) \
735 ret_type RPCHelpMan::ArgValue<ret_type>(size_t i) const \
737 const UniValue* maybe_arg{ \
738 DetailMaybeArg(check_param, m_args, m_req, i), \
742 void force_semicolon(ret_type)
746TMPL_INST(
nullptr, std::optional<double>, maybe_arg ? std::optional{maybe_arg->get_real()} : std::nullopt;);
747TMPL_INST(
nullptr, std::optional<bool>, maybe_arg ? std::optional{maybe_arg->get_bool()} : std::nullopt;);
748TMPL_INST(
nullptr,
const std::string*, maybe_arg ? &maybe_arg->get_str() :
nullptr;);
759 size_t num_required_args = 0;
760 for (
size_t n =
m_args.size(); n > 0; --n) {
761 if (!
m_args.at(n - 1).IsOptional()) {
762 num_required_args = n;
766 return num_required_args <= num_args && num_args <=
m_args.size();
771 std::vector<std::pair<std::string, bool>>
ret;
773 for (
const auto& arg :
m_args) {
775 for (
const auto& inner : arg.m_inner) {
776 ret.emplace_back(inner.m_names,
true);
779 ret.emplace_back(arg.m_names,
false);
786 auto it{std::find_if(
787 m_args.begin(),
m_args.end(), [&key](
const auto& arg) { return arg.GetName() == key;}
791 return std::distance(
m_args.begin(), it);
800 bool was_optional{
false};
801 for (
const auto& arg :
m_args) {
802 if (arg.m_opts.hidden)
break;
803 const bool optional = arg.IsOptional();
806 if (!was_optional)
ret +=
"( ";
809 if (was_optional)
ret +=
") ";
810 was_optional =
false;
812 ret += arg.ToString(
true);
814 if (was_optional)
ret +=
" )";
822 for (
size_t i{0}; i <
m_args.size(); ++i) {
823 const auto& arg =
m_args.at(i);
824 if (arg.m_opts.hidden)
break;
835 for (
const auto& arg_inner : arg.m_inner) {
836 named_only_sections.
PushSection({arg_inner.GetFirstName(), arg_inner.ToDescriptionString(
true)});
837 named_only_sections.
Push(arg_inner);
844 if (!named_only_sections.
m_sections.empty())
ret +=
"\nNamed Arguments:\n";
860 auto push_back_arg_info = [&arr](
const std::string& rpc_name,
int pos,
const std::string& arg_name,
const RPCArg::Type& type) {
862 map.push_back(rpc_name);
864 map.push_back(arg_name);
867 arr.push_back(std::move(map));
870 for (
int i{0}; i < int(
m_args.size()); ++i) {
871 const auto& arg =
m_args.at(i);
872 std::vector<std::string> arg_names =
SplitString(arg.m_names,
'|');
873 for (
const auto& arg_name : arg_names) {
874 push_back_arg_info(
m_name, i, arg_name, arg.m_type);
876 for (
const auto& inner : arg.m_inner) {
877 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
878 for (
const std::string& inner_name : inner_names) {
879 push_back_arg_info(
m_name, i, inner_name, inner.m_type);
911 case Type::OBJ_NAMED_PARAMS:
912 case Type::OBJ_USER_KEYS: {
927 if (!exp_type)
return true;
929 if (*exp_type != request.
getType()) {
973 ret +=
"numeric or string";
977 ret +=
"numeric or array";
987 ret +=
"json object";
997 ret +=
", optional, default=" + std::get<RPCArg::DefaultHint>(
m_fallback);
999 ret +=
", optional, default=" + std::get<RPCArg::Default>(
m_fallback).write();
1001 switch (std::get<RPCArg::Optional>(
m_fallback)) {
1003 if (is_named_arg)
ret +=
", optional";
1008 ret +=
", required";
1023 const std::string indent(current_indent,
' ');
1024 const std::string indent_next(current_indent + 2,
' ');
1027 const std::string maybe_separator{outer_type !=
OuterType::NONE ?
"," :
""};
1030 const std::string maybe_key{
1036 const auto Description = [&](
const std::string& type) {
1037 return "(" + type + (this->
m_optional ?
", optional" :
"") +
")" +
1051 sections.
PushSection({indent +
"null" + maybe_separator, Description(
"json null")});
1055 sections.
PushSection({indent + maybe_key +
"\"str\"" + maybe_separator, Description(
"string")});
1059 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1063 sections.
PushSection({indent + maybe_key +
"\"hex\"" + maybe_separator, Description(
"string")});
1067 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1071 sections.
PushSection({indent + maybe_key +
"xxx" + maybe_separator, Description(
"numeric")});
1075 sections.
PushSection({indent + maybe_key +
"true|false" + maybe_separator, Description(
"boolean")});
1080 sections.
PushSection({indent + maybe_key +
"[", Description(
"json array")});
1081 for (
const auto& i :
m_inner) {
1089 sections.
m_sections.back().m_left.pop_back();
1091 sections.
PushSection({indent +
"]" + maybe_separator,
""});
1097 sections.
PushSection({indent + maybe_key +
"{}", Description(
"empty JSON object")});
1100 sections.
PushSection({indent + maybe_key +
"{", Description(
"json object")});
1101 for (
const auto& i :
m_inner) {
1109 sections.
m_sections.back().m_left.pop_back();
1111 sections.
PushSection({indent +
"}" + maybe_separator,
""});
1124 return std::nullopt;
1130 case Type::STR_HEX: {
1134 case Type::STR_AMOUNT:
1135 case Type::NUM_TIME: {
1141 case Type::ARR_FIXED:
1161 if (!exp_type)
return true;
1163 if (*exp_type != result.
getType()) {
1169 for (
size_t i{0}; i < result.
get_array().size(); ++i) {
1173 if (!match.isTrue()) errors.
pushKV(
strprintf(
"%d", i), std::move(match));
1175 if (errors.
empty())
return true;
1184 for (
size_t i{0}; i < result.
get_obj().size(); ++i) {
1186 if (!match.isTrue()) errors.
pushKV(result.
getKeys()[i], std::move(match));
1188 if (errors.
empty())
return true;
1191 std::set<std::string> doc_keys;
1192 for (
const auto& doc_entry :
m_inner) {
1193 doc_keys.insert(doc_entry.m_key_name);
1195 std::map<std::string, UniValue> result_obj;
1197 for (
const auto& result_entry : result_obj) {
1198 if (doc_keys.find(result_entry.first) == doc_keys.end()) {
1199 errors.
pushKV(result_entry.first,
"key returned that was not in doc");
1203 for (
const auto& doc_entry :
m_inner) {
1204 const auto result_it{result_obj.find(doc_entry.m_key_name)};
1205 if (result_it == result_obj.end()) {
1206 if (!doc_entry.m_optional) {
1207 errors.
pushKV(doc_entry.m_key_name,
"key missing, despite not being optional in doc");
1211 UniValue match{doc_entry.MatchesType(result_it->second)};
1212 if (!match.isTrue()) errors.
pushKV(doc_entry.m_key_name, std::move(match));
1214 if (errors.
empty())
return true;
1245 return res +
"\"str\"";
1247 return res +
"\"hex\"";
1251 return res +
"n or [n,n]";
1253 return res +
"amount";
1255 return res +
"bool";
1258 for (
const auto& i :
m_inner) {
1259 res += i.ToString(oneline) +
",";
1261 return res +
"...]";
1276 throw std::runtime_error{
1301 return "{" + res +
"}";
1303 return "{" + res +
",...}";
1308 for (
const auto& i :
m_inner) {
1309 res += i.ToString(oneline) +
",";
1311 return "[" + res +
"...]";
1319 if (value.
isNum()) {
1320 return {0, value.
getInt<int64_t>()};
1323 int64_t low = value[0].
getInt<int64_t>();
1324 int64_t high = value[1].
getInt<int64_t>();
1338 if ((high >> 31) != 0) {
1341 if (high >= low + 1000000) {
1349 std::string desc_str;
1350 std::pair<int64_t, int64_t> range = {0, 1000};
1351 if (scanobject.
isStr()) {
1352 desc_str = scanobject.
get_str();
1353 }
else if (scanobject.
isObject()) {
1356 desc_str = desc_uni.get_str();
1358 if (!range_uni.isNull()) {
1366 auto descs =
Parse(desc_str, provider, error);
1367 if (descs.empty()) {
1370 if (!descs.at(0)->IsRange()) {
1374 std::vector<CScript>
ret;
1375 for (
int i = range.first; i <= range.second; ++i) {
1376 for (
const auto& desc : descs) {
1377 std::vector<CScript> scripts;
1378 if (!desc->Expand(i, provider, scripts, provider)) {
1382 desc->ExpandPrivate(i, provider, provider);
1384 std::move(scripts.begin(), scripts.end(), std::back_inserter(
ret));
1395 for (
const auto&
s : bilingual_strings) {
1396 result.push_back(
s.original);
1403 if (warnings.
empty())
return;
1404 obj.
pushKV(
"warnings", warnings);
1409 if (warnings.empty())
return;
1419 {
RPCResult::Type::STR,
"address",
true,
"The Bitcoin address (only if a well-defined address exists)"},
bool IsValidDestination(const CTxDestination &dest)
Check whether a CTxDestination corresponds to one with an address.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
bool MoneyRange(const CAmount &nValue)
int64_t CAmount
Amount in satoshis (Can be negative)
static constexpr CAmount COIN
The amount of satoshis in one BTC.
uint256 ArithToUint256(const arith_uint256 &a)
#define CHECK_NONFATAL(condition)
Identity function.
#define NONFATAL_UNREACHABLE()
NONFATAL_UNREACHABLE() is a macro that is used to mark unreachable code.
#define STR_INTERNAL_BUG(msg)
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
The block chain is a tree shaped structure starting with the genesis block at the root,...
Fee rate in satoshis per kilovirtualbyte: CAmount / kvB.
A reference to a CKey: the Hash160 of its serialized public key.
An encapsulated public key.
bool IsFullyValid() const
fully validate whether this is a valid public key (more expensive than IsValid())
Serialized script, used inside transaction inputs and outputs.
UniValue operator()(const WitnessUnknown &id) const
UniValue operator()(const WitnessV0KeyHash &id) const
UniValue operator()(const WitnessV0ScriptHash &id) const
DescribeAddressVisitor()=default
UniValue operator()(const CNoDestination &dest) const
UniValue operator()(const PubKeyDestination &dest) const
UniValue operator()(const WitnessV1Taproot &tap) const
UniValue operator()(const ScriptHash &scriptID) const
UniValue operator()(const PKHash &keyID) const
UniValue operator()(const PayToAnchor &anchor) const
Fillable signing provider that keeps keys in an address->secret map.
virtual bool GetPubKey(const CKeyID &address, CPubKey &vchPubKeyOut) const override
enum JSONRPCRequest::Mode mode
std::function< UniValue(const RPCHelpMan &, const JSONRPCRequest &)> RPCMethodImpl
const RPCExamples m_examples
size_t GetParamIndex(std::string_view key) const
Return positional index of a parameter using its name as key.
RPCHelpMan(std::string name, std::string description, std::vector< RPCArg > args, RPCResults results, RPCExamples examples)
const std::string m_description
bool IsValidNumArgs(size_t num_args) const
If the supplied number of args is neither too small nor too high.
const RPCMethodImpl m_fun
const RPCResults m_results
const std::vector< RPCArg > m_args
std::string ToString() const
UniValue GetArgMap() const
Return the named args that need to be converted from string to another JSON type.
std::vector< std::pair< std::string, bool > > GetArgNames() const
Return list of arguments and whether they are named-only.
const JSONRPCRequest * m_req
UniValue HandleRequest(const JSONRPCRequest &request) const
const std::string & get_str() const
const UniValue & find_value(std::string_view key) const
enum VType getType() const
std::string write(unsigned int prettyIndent=0, unsigned int indentLevel=0) const
const std::string & getValStr() const
const UniValue & get_obj() const
const std::vector< std::string > & getKeys() const
const UniValue & get_array() const
void pushKV(std::string key, UniValue val)
void getObjMap(std::map< std::string, UniValue > &kv) const
256-bit unsigned big integer.
constexpr bool IsNull() const
static constexpr unsigned int size()
static std::optional< uint256 > FromHex(std::string_view str)
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
std::string FormatFullVersion()
is a home for simple enum and struct type definitions that can be used internally by functions in the...
util::Result< int > SighashFromStr(const std::string &sighash)
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
@ SIGHASH_DEFAULT
Taproot only; implied when sighash byte is missing, and equivalent to SIGHASH_ALL.
CTxDestination DecodeDestination(const std::string &str, std::string &error_msg, std::vector< int > *error_locations)
is a home for simple string functions returning descriptive messages that are used in RPC and GUI int...
char const * json() noexcept
Template to generate JSON data.
bilingual_str PSBTErrorString(PSBTError err)
bilingual_str TransactionErrorString(const TransactionError err)
std::vector< std::string > SplitString(std::string_view str, char sep)
bilingual_str ErrorString(const Result< T > &result)
std::string ToString(const T &t)
Locale-independent version of std::to_string.
std::string TrimString(std::string_view str, std::string_view pattern=" \f\n\r\t\v")
auto Join(const C &container, const S &separator, UnaryOp unary_op)
Join all container items.
is a home for public enum and struct type definitions that are used internally by node code,...
CTxDestination AddAndGetDestinationForScript(FlatSigningProvider &keystore, const CScript &script, OutputType type)
Get a destination of the requested type (if possible) to the specified script.
std::optional< arith_uint256 > DeriveTarget(unsigned int nBits, const uint256 pow_limit)
Convert nBits value to target.
UniValue JSONRPCError(int code, const std::string &message)
RPCErrorCode
Bitcoin RPC error codes.
@ RPC_VERIFY_ALREADY_IN_UTXO_SET
Transaction already in utxo set.
@ RPC_TYPE_ERROR
Unexpected type was passed as parameter.
@ RPC_TRANSACTION_REJECTED
@ RPC_TRANSACTION_ERROR
Aliases for backward compatibility.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ RPC_DESERIALIZATION_ERROR
Error parsing or validating structure in raw format.
@ RPC_INVALID_ADDRESS_OR_KEY
Invalid address or key.
static const UniValue * DetailMaybeArg(CheckFn *check, const std::vector< RPCArg > ¶ms, const JSONRPCRequest *req, size_t i)
std::vector< CScript > EvalDescriptorStringOrObject(const UniValue &scanobject, FlatSigningProvider &provider, const bool expand_priv)
Evaluate a descriptor given as a string, or as a {"desc":...,"range":...} object, with default range ...
void(const RPCArg &) CheckFn
std::pair< int64_t, int64_t > ParseDescriptorRange(const UniValue &value)
Parse a JSON range specified as int64, or [int64, int64].
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
std::string HelpExampleRpcNamed(const std::string &methodname, const RPCArgList &args)
CAmount AmountFromValue(const UniValue &value, int decimals)
Validate and return a CAmount from a UniValue number or string.
RPCErrorCode RPCErrorFromPSBTError(PSBTError err)
std::vector< unsigned char > ParseHexV(const UniValue &v, std::string_view name)
static UniValue BilingualStringsToUniValue(const std::vector< bilingual_str > &bilingual_strings)
Convert a vector of bilingual strings to a UniValue::VARR containing their original untranslated valu...
void PushWarnings(const UniValue &warnings, UniValue &obj)
Push warning messages to an RPC "warnings" field as a JSON array of strings.
int ParseSighashString(const UniValue &sighash)
Returns a sighash value corresponding to the passed in argument.
UniValue JSONRPCTransactionError(TransactionError terr, const std::string &err_string)
#define TMPL_INST(check_param, ret_type, return_code)
std::vector< unsigned char > ParseHexO(const UniValue &o, std::string_view strKey)
uint256 GetTarget(const CBlockIndex &blockindex, const uint256 pow_limit)
UniValue JSONRPCPSBTError(PSBTError err)
RPCErrorCode RPCErrorFromTransactionError(TransactionError terr)
CFeeRate ParseFeeRate(const UniValue &json)
Parse a json number or string, denoting BTC/kvB, into a CFeeRate (sat/kvB).
static std::optional< UniValue::VType > ExpectedType(RPCArg::Type type)
std::string HelpExampleRpc(const std::string &methodname, const std::string &args)
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
std::string GetAllOutputTypes()
Gets all existing output types formatted for RPC help sections.
int ParseVerbosity(const UniValue &arg, int default_verbosity, bool allow_bool)
Parses verbosity from provided UniValue.
CPubKey HexToPubKey(const std::string &hex_in)
const std::string EXAMPLE_ADDRESS[2]
Example bech32 addresses for the RPCExamples help documentation.
CTxDestination AddAndGetMultisigDestination(const int required, const std::vector< CPubKey > &pubkeys, OutputType type, FlatSigningProvider &keystore, CScript &script_out)
static std::pair< int64_t, int64_t > ParseRange(const UniValue &value)
uint256 ParseHashO(const UniValue &o, std::string_view strKey)
unsigned int ParseConfirmTarget(const UniValue &value, unsigned int max_target)
Parse a confirm target option and raise an RPC error if it is invalid.
void RPCTypeCheckObj(const UniValue &o, const std::map< std::string, UniValueType > &typesExpected, bool fAllowNull, bool fStrict)
std::string HelpExampleCliNamed(const std::string &methodname, const RPCArgList &args)
uint256 ParseHashV(const UniValue &v, std::string_view name)
Utilities: convert hex-encoded Values (throws error if not hex).
static void CheckRequiredOrDefault(const RPCArg ¶m)
CPubKey AddrToPubKey(const FillableSigningProvider &keystore, const std::string &addr_in)
UniValue DescribeAddress(const CTxDestination &dest)
std::vector< RPCResult > ScriptPubKeyDoc()
std::vector< std::pair< std::string, UniValue > > RPCArgList
static constexpr bool DEFAULT_RPC_DOC_CHECK
OuterType
Serializing JSON objects depends on the outer type.
static const unsigned int MAX_SCRIPT_ELEMENT_SIZE
static const int MAX_PUBKEYS_PER_MULTISIG
CKeyID GetKeyForDestination(const SigningProvider &store, const CTxDestination &dest)
Return the CKeyID of the key involved in a script (if there is a unique one).
CScript GetScriptForMultisig(int nRequired, const std::vector< CPubKey > &keys)
Generate a multisig script.
std::string GetTxnOutputType(TxoutType t)
Get the name of a TxoutType as a string.
@ WITNESS_UNKNOWN
Only for Witness versions not already defined above.
std::vector< Byte > ParseHex(std::string_view hex_str)
Like TryParseHex, but returns an empty vector on invalid input.
@ RANGE
Special type that is a NUM or [NUM,NUM].
@ OBJ_USER_KEYS
Special type where the user must set the keys e.g. to define multiple addresses; as opposed to e....
@ STR_HEX
Special type that is a STR with only hex chars.
@ AMOUNT
Special type representing a floating point amount (can be either NUM or STR)
@ OBJ_NAMED_PARAMS
Special type that behaves almost exactly like OBJ, defining an options object with a list of pre-defi...
const std::vector< RPCArg > m_inner
Only used for arrays or dicts.
const RPCArgOptions m_opts
const std::string m_names
The name of the arg (can be empty for inner args, can contain multiple aliases separated by | for nam...
const Fallback m_fallback
std::string ToString(bool oneline) const
Return the type string of the argument.
UniValue MatchesType(const UniValue &request) const
Check whether the request JSON type matches.
const std::string m_description
std::string ToDescriptionString(bool is_named_arg) const
Return the description string, including the argument type and whether the argument is required.
std::string GetName() const
Return the name, throws when there are aliases.
std::string GetFirstName() const
Return the first of all aliases.
std::string ToStringObj(bool oneline) const
Return the type string of the argument when it is in an object (dict).
@ OMITTED
Optional argument for which the default value is omitted from help text for one of two reasons:
std::vector< std::string > type_str
Should be empty unless it is supposed to override the auto-generated type strings....
std::string oneline_description
Should be empty unless it is supposed to override the auto-generated summary line.
std::string ToDescriptionString() const
const std::string m_examples
const std::string m_description
void ToSections(Sections §ions, OuterType outer_type=OuterType::NONE, const int current_indent=0) const
Append the sections of the result.
@ ELISION
Special type to denote elision (...)
@ NUM_TIME
Special numeric to denote unix epoch time.
@ ANY
Special type to disable type checks (for testing only)
@ ARR_FIXED
Special array that has a fixed number of entries.
@ OBJ_DYN
Special dictionary with keys that are not literals.
@ STR_HEX
Special string with only hex chars.
@ STR_AMOUNT
Special string to represent a floating point amount.
const std::vector< RPCResult > m_inner
Only used for arrays or dicts.
UniValue MatchesType(const UniValue &result) const
Check whether the result JSON type matches.
void CheckInnerDoc() const
const std::string m_key_name
Only used for dicts.
const bool m_skip_type_check
std::string ToDescriptionString() const
Return the description string.
const std::vector< RPCResult > m_results
A pair of strings that can be aligned (through padding) with other Sections later on.
Section(const std::string &left, const std::string &right)
const std::string m_right
Keeps track of RPCArgs by transforming them into sections for the purpose of serializing everything t...
void PushSection(const Section &s)
std::vector< Section > m_sections
void Push(const RPCArg &arg, const size_t current_indent=5, const OuterType outer_type=OuterType::NONE)
Recursive helper to translate an RPCArg into sections.
std::string ToString() const
Concatenate all sections with proper padding.
CTxDestination subtype to encode any future Witness version.
const char * uvTypeName(UniValue::VType t)
bool ParseFixedPoint(std::string_view val, int decimals, int64_t *amount_out)
Parse number as fixed point according to JSON number syntax.
bool IsHex(std::string_view str)