5#include <bitcoin-build-config.h>
45const std::string
EXAMPLE_ADDRESS[2] = {
"bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl",
"bc1q02ad21edsxd23d32dfgqqsz4vv4nmtfzuklhy3"};
49 std::vector<std::string>
ret;
50 using U = std::underlying_type<TxoutType>::type;
58 const std::map<std::string, UniValueType>& typesExpected,
62 for (
const auto&
t : typesExpected) {
64 if (!fAllowNull && v.
isNull())
67 if (!(
t.second.typeAny || v.
type() ==
t.second.type || (fAllowNull && v.
isNull())))
73 for (
const std::string&
k : o.
getKeys())
75 if (typesExpected.count(
k) == 0)
77 std::string err =
strprintf(
"Unexpected key %s",
k);
96 return default_verbosity;
120 const std::string& strHex(v.
get_str());
122 if (
auto expected_len{
uint256::size() * 2}; strHex.length() != expected_len) {
152std::string ShellQuote(
const std::string&
s)
155 result.reserve(
s.size() * 2);
156 for (
const char ch:
s) {
163 return "'" + result +
"'";
171std::string ShellQuoteIfNeeded(
const std::string&
s)
173 for (
const char ch:
s) {
174 if (ch ==
' ' || ch ==
'\'' || ch ==
'"') {
175 return ShellQuote(
s);
186 return "> bitcoin-cli " + methodname +
" " +
args +
"\n";
191 std::string result =
"> bitcoin-cli -named " + methodname;
192 for (
const auto& argpair:
args) {
193 const auto& value = argpair.second.isStr()
194 ? argpair.second.get_str()
195 : argpair.second.write();
196 result +=
" " + argpair.first +
"=" + ShellQuoteIfNeeded(value);
204 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
205 "\"method\": \"" + methodname +
"\", \"params\": [" +
args +
"]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
211 for (
const auto& param:
args) {
212 params.
pushKV(param.first, param.second);
215 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
216 "\"method\": \"" + methodname +
"\", \"params\": " + params.
write() +
"}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
222 if (!
IsHex(hex_in)) {
225 if (hex_in.length() != 66 && hex_in.length() != 130) {
247 if (!keystore.
GetPubKey(key, vchPubKey)) {
263 if ((
int)pubkeys.size() < required) {
274 if (!
pk.IsCompressed()) {
308 obj.
pushKV(
"isscript",
false);
309 obj.
pushKV(
"iswitness",
false);
316 obj.
pushKV(
"isscript",
true);
317 obj.
pushKV(
"iswitness",
false);
324 obj.
pushKV(
"isscript",
false);
325 obj.
pushKV(
"iswitness",
true);
326 obj.
pushKV(
"witness_version", 0);
334 obj.
pushKV(
"isscript",
true);
335 obj.
pushKV(
"iswitness",
true);
336 obj.
pushKV(
"witness_version", 0);
344 obj.
pushKV(
"isscript",
true);
345 obj.
pushKV(
"iswitness",
true);
346 obj.
pushKV(
"witness_version", 1);
354 obj.
pushKV(
"isscript",
true);
355 obj.
pushKV(
"iswitness",
true);
362 obj.
pushKV(
"iswitness",
true);
363 obj.
pushKV(
"witness_version",
id.GetWitnessVersion());
364 obj.
pushKV(
"witness_program",
HexStr(
id.GetWitnessProgram()));
388 return result.value();
393 const int target{value.
getInt<
int>()};
394 const unsigned int unsigned_target{
static_cast<unsigned int>(target)};
395 if (target < 1 || unsigned_target > max_target) {
398 return unsigned_target;
404 case PSBTError::UNSUPPORTED:
406 case PSBTError::SIGHASH_MISMATCH:
416 case TransactionError::MEMPOOL_REJECTED:
418 case TransactionError::ALREADY_IN_UTXO_SET:
432 if (err_string.length() > 0) {
444 Section(
const std::string& left,
const std::string& right)
470 const auto indent = std::string(current_indent,
' ');
471 const auto indent_next = std::string(current_indent + 2,
' ');
483 if (is_top_level_arg)
return;
497 PushSection({indent + (push_name ?
"\"" + arg.
GetName() +
"\": " :
"") +
"{", right});
498 for (
const auto& arg_inner : arg.
m_inner) {
504 PushSection({indent +
"}" + (is_top_level_arg ?
"" :
","),
""});
509 left += push_name ?
"\"" + arg.
GetName() +
"\": " :
"";
513 for (
const auto& arg_inner : arg.
m_inner) {
517 PushSection({indent +
"]" + (is_top_level_arg ?
"" :
","),
""});
534 if (
s.m_right.empty()) {
540 std::string left =
s.m_left;
541 left.resize(pad,
' ');
547 size_t new_line_pos =
s.m_right.find_first_of(
'\n');
549 right +=
s.m_right.substr(begin, new_line_pos - begin);
550 if (new_line_pos == std::string::npos) {
553 right +=
"\n" + std::string(pad,
' ');
554 begin =
s.m_right.find_first_not_of(
' ', new_line_pos + 1);
555 if (begin == std::string::npos) {
558 new_line_pos =
s.m_right.find_first_of(
'\n', begin + 1);
572 m_fun{
std::move(fun)},
573 m_description{
std::move(description)},
575 m_results{
std::move(results)},
576 m_examples{
std::move(examples)}
581 enum ParamType { POSITIONAL = 1, NAMED = 2, NAMED_ONLY = 4 };
582 std::map<std::string, int> param_names;
584 for (
const auto& arg :
m_args) {
585 std::vector<std::string> names =
SplitString(arg.m_names,
'|');
587 for (
const std::string&
name : names) {
588 auto& param_type = param_names[
name];
591 param_type |= POSITIONAL;
594 for (
const auto& inner : arg.m_inner) {
595 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
596 for (
const std::string& inner_name : inner_names) {
597 auto& param_type = param_names[inner_name];
598 CHECK_NONFATAL(!(param_type & POSITIONAL) || inner.m_opts.also_positional);
601 param_type |= inner.m_opts.also_positional ? NAMED : NAMED_ONLY;
606 if (arg.m_fallback.index() == 2) {
608 switch (std::get<RPCArg::Default>(arg.m_fallback).getType()) {
640 if (r.m_cond.empty()) {
641 result +=
"\nResult:\n";
643 result +=
"\nResult (" + r.m_cond +
"):\n";
646 r.ToSections(sections);
667 throw std::runtime_error(
ToString());
670 for (
size_t i{0}; i <
m_args.size(); ++i) {
671 const auto& arg{
m_args.at(i)};
673 if (!match.isTrue()) {
674 arg_mismatch.
pushKV(
strprintf(
"Position %s (%s)", i + 1, arg.m_names), std::move(match));
677 if (!arg_mismatch.empty()) {
688 if (match.isTrue()) {
692 mismatch.push_back(std::move(match));
694 if (!mismatch.isNull()) {
696 mismatch.empty() ?
"no possible results defined" :
697 mismatch.size() == 1 ? mismatch[0].write(4) :
699 throw std::runtime_error{
700 strprintf(
"Internal bug detected: RPC call \"%s\" returned incorrect type:\n%s\n%s %s\nPlease report this issue here: %s\n",
714 const RPCArg& param{params.at(i)};
715 if (check) check(param);
717 if (!arg.isNull())
return &arg;
718 if (!std::holds_alternative<RPCArg::Default>(param.m_fallback))
return nullptr;
719 return &std::get<RPCArg::Default>(param.m_fallback);
731#define TMPL_INST(check_param, ret_type, return_code) \
733 ret_type RPCHelpMan::ArgValue<ret_type>(size_t i) const \
735 const UniValue* maybe_arg{ \
736 DetailMaybeArg(check_param, m_args, m_req, i), \
740 void force_semicolon(ret_type)
744TMPL_INST(
nullptr, std::optional<double>, maybe_arg ? std::optional{maybe_arg->get_real()} : std::nullopt;);
745TMPL_INST(
nullptr, std::optional<bool>, maybe_arg ? std::optional{maybe_arg->get_bool()} : std::nullopt;);
746TMPL_INST(
nullptr,
const std::string*, maybe_arg ? &maybe_arg->get_str() :
nullptr;);
757 size_t num_required_args = 0;
758 for (
size_t n =
m_args.size(); n > 0; --n) {
759 if (!
m_args.at(n - 1).IsOptional()) {
760 num_required_args = n;
764 return num_required_args <= num_args && num_args <=
m_args.size();
769 std::vector<std::pair<std::string, bool>>
ret;
771 for (
const auto& arg :
m_args) {
773 for (
const auto& inner : arg.m_inner) {
774 ret.emplace_back(inner.m_names,
true);
777 ret.emplace_back(arg.m_names,
false);
784 auto it{std::find_if(
785 m_args.begin(),
m_args.end(), [&key](
const auto& arg) { return arg.GetName() == key;}
789 return std::distance(
m_args.begin(), it);
798 bool was_optional{
false};
799 for (
const auto& arg :
m_args) {
800 if (arg.m_opts.hidden)
break;
801 const bool optional = arg.IsOptional();
804 if (!was_optional)
ret +=
"( ";
807 if (was_optional)
ret +=
") ";
808 was_optional =
false;
810 ret += arg.ToString(
true);
812 if (was_optional)
ret +=
" )";
820 for (
size_t i{0}; i <
m_args.size(); ++i) {
821 const auto& arg =
m_args.at(i);
822 if (arg.m_opts.hidden)
break;
833 for (
const auto& arg_inner : arg.m_inner) {
834 named_only_sections.
PushSection({arg_inner.GetFirstName(), arg_inner.ToDescriptionString(
true)});
835 named_only_sections.
Push(arg_inner);
842 if (!named_only_sections.
m_sections.empty())
ret +=
"\nNamed Arguments:\n";
858 auto push_back_arg_info = [&arr](
const std::string& rpc_name,
int pos,
const std::string& arg_name,
const RPCArg::Type& type) {
860 map.push_back(rpc_name);
862 map.push_back(arg_name);
865 arr.push_back(std::move(map));
868 for (
int i{0}; i < int(
m_args.size()); ++i) {
869 const auto& arg =
m_args.at(i);
870 std::vector<std::string> arg_names =
SplitString(arg.m_names,
'|');
871 for (
const auto& arg_name : arg_names) {
872 push_back_arg_info(
m_name, i, arg_name, arg.m_type);
874 for (
const auto& inner : arg.m_inner) {
875 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
876 for (
const std::string& inner_name : inner_names) {
877 push_back_arg_info(
m_name, i, inner_name, inner.m_type);
909 case Type::OBJ_NAMED_PARAMS:
910 case Type::OBJ_USER_KEYS: {
925 if (!exp_type)
return true;
927 if (*exp_type != request.
getType()) {
971 ret +=
"numeric or string";
975 ret +=
"numeric or array";
985 ret +=
"json object";
995 ret +=
", optional, default=" + std::get<RPCArg::DefaultHint>(
m_fallback);
997 ret +=
", optional, default=" + std::get<RPCArg::Default>(
m_fallback).write();
999 switch (std::get<RPCArg::Optional>(
m_fallback)) {
1001 if (is_named_arg)
ret +=
", optional";
1006 ret +=
", required";
1021 const std::string indent(current_indent,
' ');
1022 const std::string indent_next(current_indent + 2,
' ');
1025 const std::string maybe_separator{outer_type !=
OuterType::NONE ?
"," :
""};
1028 const std::string maybe_key{
1034 const auto Description = [&](
const std::string& type) {
1035 return "(" + type + (this->
m_optional ?
", optional" :
"") +
")" +
1049 sections.
PushSection({indent +
"null" + maybe_separator, Description(
"json null")});
1053 sections.
PushSection({indent + maybe_key +
"\"str\"" + maybe_separator, Description(
"string")});
1057 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1061 sections.
PushSection({indent + maybe_key +
"\"hex\"" + maybe_separator, Description(
"string")});
1065 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1069 sections.
PushSection({indent + maybe_key +
"xxx" + maybe_separator, Description(
"numeric")});
1073 sections.
PushSection({indent + maybe_key +
"true|false" + maybe_separator, Description(
"boolean")});
1078 sections.
PushSection({indent + maybe_key +
"[", Description(
"json array")});
1079 for (
const auto& i :
m_inner) {
1087 sections.
m_sections.back().m_left.pop_back();
1089 sections.
PushSection({indent +
"]" + maybe_separator,
""});
1095 sections.
PushSection({indent + maybe_key +
"{}", Description(
"empty JSON object")});
1098 sections.
PushSection({indent + maybe_key +
"{", Description(
"json object")});
1099 for (
const auto& i :
m_inner) {
1107 sections.
m_sections.back().m_left.pop_back();
1109 sections.
PushSection({indent +
"}" + maybe_separator,
""});
1122 return std::nullopt;
1128 case Type::STR_HEX: {
1132 case Type::STR_AMOUNT:
1133 case Type::NUM_TIME: {
1139 case Type::ARR_FIXED:
1159 if (!exp_type)
return true;
1161 if (*exp_type != result.
getType()) {
1167 for (
size_t i{0}; i < result.
get_array().size(); ++i) {
1171 if (!match.isTrue()) errors.
pushKV(
strprintf(
"%d", i), std::move(match));
1173 if (errors.
empty())
return true;
1182 for (
size_t i{0}; i < result.
get_obj().size(); ++i) {
1184 if (!match.isTrue()) errors.
pushKV(result.
getKeys()[i], std::move(match));
1186 if (errors.
empty())
return true;
1189 std::set<std::string> doc_keys;
1190 for (
const auto& doc_entry :
m_inner) {
1191 doc_keys.insert(doc_entry.m_key_name);
1193 std::map<std::string, UniValue> result_obj;
1195 for (
const auto& result_entry : result_obj) {
1196 if (doc_keys.find(result_entry.first) == doc_keys.end()) {
1197 errors.
pushKV(result_entry.first,
"key returned that was not in doc");
1201 for (
const auto& doc_entry :
m_inner) {
1202 const auto result_it{result_obj.find(doc_entry.m_key_name)};
1203 if (result_it == result_obj.end()) {
1204 if (!doc_entry.m_optional) {
1205 errors.
pushKV(doc_entry.m_key_name,
"key missing, despite not being optional in doc");
1209 UniValue match{doc_entry.MatchesType(result_it->second)};
1210 if (!match.isTrue()) errors.
pushKV(doc_entry.m_key_name, std::move(match));
1212 if (errors.
empty())
return true;
1243 return res +
"\"str\"";
1245 return res +
"\"hex\"";
1249 return res +
"n or [n,n]";
1251 return res +
"amount";
1253 return res +
"bool";
1256 for (
const auto& i :
m_inner) {
1257 res += i.ToString(oneline) +
",";
1259 return res +
"...]";
1274 throw std::runtime_error{
1299 return "{" + res +
"}";
1301 return "{" + res +
",...}";
1306 for (
const auto& i :
m_inner) {
1307 res += i.ToString(oneline) +
",";
1309 return "[" + res +
"...]";
1317 if (value.
isNum()) {
1318 return {0, value.
getInt<int64_t>()};
1321 int64_t low = value[0].
getInt<int64_t>();
1322 int64_t high = value[1].
getInt<int64_t>();
1336 if ((high >> 31) != 0) {
1339 if (high >= low + 1000000) {
1347 std::string desc_str;
1348 std::pair<int64_t, int64_t> range = {0, 1000};
1349 if (scanobject.
isStr()) {
1350 desc_str = scanobject.
get_str();
1351 }
else if (scanobject.
isObject()) {
1354 desc_str = desc_uni.get_str();
1356 if (!range_uni.isNull()) {
1364 auto descs =
Parse(desc_str, provider, error);
1365 if (descs.empty()) {
1368 if (!descs.at(0)->IsRange()) {
1372 std::vector<CScript>
ret;
1373 for (
int i = range.first; i <= range.second; ++i) {
1374 for (
const auto& desc : descs) {
1375 std::vector<CScript> scripts;
1376 if (!desc->Expand(i, provider, scripts, provider)) {
1380 desc->ExpandPrivate(i, provider, provider);
1382 std::move(scripts.begin(), scripts.end(), std::back_inserter(
ret));
1393 for (
const auto&
s : bilingual_strings) {
1394 result.push_back(
s.original);
1401 if (warnings.
empty())
return;
1402 obj.
pushKV(
"warnings", warnings);
1407 if (warnings.empty())
return;
1417 {
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.
#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.
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
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 by 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.
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)
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)