44const std::string
EXAMPLE_ADDRESS[2] = {
"bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl",
"bc1q02ad21edsxd23d32dfgqqsz4vv4nmtfzuklhy3"};
48 std::vector<std::string>
ret;
49 using U = std::underlying_type_t<TxoutType>;
57 const std::map<std::string, UniValueType>& typesExpected,
61 for (
const auto&
t : typesExpected) {
63 if (!fAllowNull && v.
isNull())
66 if (!(
t.second.typeAny || v.
type() ==
t.second.type || (fAllowNull && v.
isNull())))
72 for (
const std::string&
k : o.
getKeys())
74 if (typesExpected.count(
k) == 0)
76 std::string err =
strprintf(
"Unexpected key %s",
k);
95 return default_verbosity;
119 const std::string& strHex(v.
get_str());
121 if (
auto expected_len{
uint256::size() * 2}; strHex.length() != expected_len) {
151std::string ShellQuote(
const std::string&
s)
154 result.reserve(
s.size() * 2);
155 for (
const char ch:
s) {
162 return "'" + result +
"'";
170std::string ShellQuoteIfNeeded(
const std::string&
s)
172 for (
const char ch:
s) {
173 if (ch ==
' ' || ch ==
'\'' || ch ==
'"') {
174 return ShellQuote(
s);
185 return "> bitcoin-cli " + methodname +
" " +
args +
"\n";
190 std::string result =
"> bitcoin-cli -named " + methodname;
191 for (
const auto& argpair:
args) {
192 const auto& value = argpair.second.isStr()
193 ? argpair.second.get_str()
194 : argpair.second.write();
195 result +=
" " + argpair.first +
"=" + ShellQuoteIfNeeded(value);
203 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
204 "\"method\": \"" + methodname +
"\", \"params\": [" +
args +
"]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
210 for (
const auto& param:
args) {
211 params.
pushKV(param.first, param.second);
214 return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
215 "\"method\": \"" + methodname +
"\", \"params\": " + params.
write() +
"}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
221 if (!
IsHex(hex_in)) {
224 if (hex_in.length() != 66 && hex_in.length() != 130) {
241 if ((
int)pubkeys.size() < required) {
252 if (!
pk.IsCompressed()) {
286 obj.
pushKV(
"isscript",
false);
287 obj.
pushKV(
"iswitness",
false);
294 obj.
pushKV(
"isscript",
true);
295 obj.
pushKV(
"iswitness",
false);
302 obj.
pushKV(
"isscript",
false);
303 obj.
pushKV(
"iswitness",
true);
304 obj.
pushKV(
"witness_version", 0);
312 obj.
pushKV(
"isscript",
true);
313 obj.
pushKV(
"iswitness",
true);
314 obj.
pushKV(
"witness_version", 0);
322 obj.
pushKV(
"isscript",
true);
323 obj.
pushKV(
"iswitness",
true);
324 obj.
pushKV(
"witness_version", 1);
332 obj.
pushKV(
"isscript",
true);
333 obj.
pushKV(
"iswitness",
true);
340 obj.
pushKV(
"iswitness",
true);
341 obj.
pushKV(
"witness_version",
id.GetWitnessVersion());
342 obj.
pushKV(
"witness_program",
HexStr(
id.GetWitnessProgram()));
366 return result.value();
371 const int target{value.
getInt<
int>()};
372 const unsigned int unsigned_target{
static_cast<unsigned int>(target)};
373 if (target < 1 || unsigned_target > max_target) {
376 return unsigned_target;
382 case PSBTError::UNSUPPORTED:
384 case PSBTError::SIGHASH_MISMATCH:
394 case TransactionError::MEMPOOL_REJECTED:
396 case TransactionError::ALREADY_IN_UTXO_SET:
410 if (err_string.length() > 0) {
422 Section(
const std::string& left,
const std::string& right)
448 const auto indent = std::string(current_indent,
' ');
449 const auto indent_next = std::string(current_indent + 2,
' ');
461 if (is_top_level_arg)
return;
475 PushSection({indent + (push_name ?
"\"" + arg.
GetName() +
"\": " :
"") +
"{", right});
476 for (
const auto& arg_inner : arg.
m_inner) {
482 PushSection({indent +
"}" + (is_top_level_arg ?
"" :
","),
""});
487 left += push_name ?
"\"" + arg.
GetName() +
"\": " :
"";
491 for (
const auto& arg_inner : arg.
m_inner) {
495 PushSection({indent +
"]" + (is_top_level_arg ?
"" :
","),
""});
512 if (
s.m_right.empty()) {
518 std::string left =
s.m_left;
519 left.resize(pad,
' ');
525 size_t new_line_pos =
s.m_right.find_first_of(
'\n');
527 right +=
s.m_right.substr(begin, new_line_pos - begin);
528 if (new_line_pos == std::string::npos) {
531 right +=
"\n" + std::string(pad,
' ');
532 begin =
s.m_right.find_first_not_of(
' ', new_line_pos + 1);
533 if (begin == std::string::npos) {
536 new_line_pos =
s.m_right.find_first_of(
'\n', begin + 1);
550 m_fun{
std::move(fun)},
551 m_description{
std::move(description)},
553 m_results{
std::move(results)},
554 m_examples{
std::move(examples)}
559 enum ParamType { POSITIONAL = 1, NAMED = 2, NAMED_ONLY = 4 };
560 std::map<std::string, int> param_names;
562 for (
const auto& arg :
m_args) {
563 std::vector<std::string> names =
SplitString(arg.m_names,
'|');
565 for (
const std::string&
name : names) {
566 auto& param_type = param_names[
name];
569 param_type |= POSITIONAL;
572 for (
const auto& inner : arg.m_inner) {
573 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
574 for (
const std::string& inner_name : inner_names) {
575 auto& param_type = param_names[inner_name];
576 CHECK_NONFATAL(!(param_type & POSITIONAL) || inner.m_opts.also_positional);
579 param_type |= inner.m_opts.also_positional ? NAMED : NAMED_ONLY;
584 if (arg.m_fallback.index() == 2) {
586 switch (std::get<RPCArg::Default>(arg.m_fallback).getType()) {
618 if (r.m_cond.empty()) {
619 result +=
"\nResult:\n";
621 result +=
"\nResult (" + r.m_cond +
"):\n";
624 r.ToSections(sections);
648 for (
size_t i{0}; i <
m_args.size(); ++i) {
649 const auto& arg{
m_args.at(i)};
651 if (!match.isTrue()) {
652 arg_mismatch.
pushKV(
strprintf(
"Position %s (%s)", i + 1, arg.m_names), std::move(match));
655 if (!arg_mismatch.empty()) {
666 if (match.isTrue()) {
670 mismatch.push_back(std::move(match));
672 if (!mismatch.isNull()) {
674 mismatch.empty() ?
"no possible results defined" :
675 mismatch.size() == 1 ? mismatch[0].write(4) :
677 throw std::runtime_error{
690 const RPCArg& param{params.at(i)};
693 if (!arg.isNull())
return &arg;
694 if (!std::holds_alternative<RPCArg::Default>(param.m_fallback))
return nullptr;
695 return &std::get<RPCArg::Default>(param.m_fallback);
707#define TMPL_INST(check_param, ret_type, return_code) \
709 ret_type RPCHelpMan::ArgValue<ret_type>(size_t i) const \
711 const UniValue* maybe_arg{ \
712 DetailMaybeArg(check_param, m_args, m_req, i), \
716 void force_semicolon(ret_type)
720TMPL_INST(
nullptr, std::optional<double>, maybe_arg ? std::optional{maybe_arg->get_real()} : std::nullopt;);
721TMPL_INST(
nullptr, std::optional<bool>, maybe_arg ? std::optional{maybe_arg->get_bool()} : std::nullopt;);
722TMPL_INST(
nullptr, std::optional<int64_t>, maybe_arg ? std::optional{maybe_arg->getInt<int64_t>()} : std::nullopt;);
723TMPL_INST(
nullptr, std::optional<std::string_view>, maybe_arg ? std::optional<std::string_view>{maybe_arg->get_str()} : std::nullopt;);
735 size_t num_required_args = 0;
736 for (
size_t n =
m_args.size(); n > 0; --n) {
737 if (!
m_args.at(n - 1).IsOptional()) {
738 num_required_args = n;
742 return num_required_args <= num_args && num_args <=
m_args.size();
747 std::vector<std::pair<std::string, bool>>
ret;
749 for (
const auto& arg :
m_args) {
751 for (
const auto& inner : arg.m_inner) {
752 ret.emplace_back(inner.m_names,
true);
755 ret.emplace_back(arg.m_names,
false);
762 auto it{std::find_if(
763 m_args.begin(),
m_args.end(), [&key](
const auto& arg) { return arg.GetName() == key;}
767 return std::distance(
m_args.begin(), it);
776 bool was_optional{
false};
777 for (
const auto& arg :
m_args) {
778 if (arg.m_opts.hidden)
break;
779 const bool optional = arg.IsOptional();
782 if (!was_optional)
ret +=
"( ";
785 if (was_optional)
ret +=
") ";
786 was_optional =
false;
788 ret += arg.ToString(
true);
790 if (was_optional)
ret +=
" )";
799 for (
size_t i{0}; i <
m_args.size(); ++i) {
800 const auto& arg =
m_args.at(i);
801 if (arg.m_opts.hidden)
break;
812 for (
const auto& arg_inner : arg.m_inner) {
813 named_only_sections.
PushSection({arg_inner.GetFirstName(), arg_inner.ToDescriptionString(
true)});
814 named_only_sections.
Push(arg_inner);
821 if (!named_only_sections.
m_sections.empty())
ret +=
"\nNamed Arguments:\n";
837 auto push_back_arg_info = [&arr](
const std::string& rpc_name,
int pos,
const std::string& arg_name,
const RPCArg::Type& type) {
839 map.push_back(rpc_name);
841 map.push_back(arg_name);
844 arr.push_back(std::move(map));
847 for (
int i{0}; i < int(
m_args.size()); ++i) {
848 const auto& arg =
m_args.at(i);
849 std::vector<std::string> arg_names =
SplitString(arg.m_names,
'|');
850 for (
const auto& arg_name : arg_names) {
851 push_back_arg_info(
m_name, i, arg_name, arg.m_type);
853 for (
const auto& inner : arg.m_inner) {
854 std::vector<std::string> inner_names =
SplitString(inner.m_names,
'|');
855 for (
const std::string& inner_name : inner_names) {
856 push_back_arg_info(
m_name, i, inner_name, inner.m_type);
888 case Type::OBJ_NAMED_PARAMS:
889 case Type::OBJ_USER_KEYS: {
904 if (!exp_type)
return true;
906 if (*exp_type != request.
getType()) {
950 ret +=
"numeric or string";
954 ret +=
"numeric or array";
964 ret +=
"json object";
974 ret +=
", optional, default=" + std::get<RPCArg::DefaultHint>(
m_fallback);
976 ret +=
", optional, default=" + std::get<RPCArg::Default>(
m_fallback).write();
978 switch (std::get<RPCArg::Optional>(
m_fallback)) {
980 if (is_named_arg)
ret +=
", optional";
1000 const std::string indent(current_indent,
' ');
1001 const std::string indent_next(current_indent + 2,
' ');
1004 const std::string maybe_separator{outer_type !=
OuterType::NONE ?
"," :
""};
1007 const std::string maybe_key{
1013 const auto Description = [&](
const std::string& type) {
1014 return "(" + type + (this->
m_optional ?
", optional" :
"") +
")" +
1028 sections.
PushSection({indent +
"null" + maybe_separator, Description(
"json null")});
1032 sections.
PushSection({indent + maybe_key +
"\"str\"" + maybe_separator, Description(
"string")});
1036 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1040 sections.
PushSection({indent + maybe_key +
"\"hex\"" + maybe_separator, Description(
"string")});
1044 sections.
PushSection({indent + maybe_key +
"n" + maybe_separator, Description(
"numeric")});
1048 sections.
PushSection({indent + maybe_key +
"xxx" + maybe_separator, Description(
"numeric")});
1052 sections.
PushSection({indent + maybe_key +
"true|false" + maybe_separator, Description(
"boolean")});
1057 sections.
PushSection({indent + maybe_key +
"[", Description(
"json array")});
1058 for (
const auto& i :
m_inner) {
1066 sections.
m_sections.back().m_left.pop_back();
1068 sections.
PushSection({indent +
"]" + maybe_separator,
""});
1074 sections.
PushSection({indent + maybe_key +
"{}", Description(
"empty JSON object")});
1077 sections.
PushSection({indent + maybe_key +
"{", Description(
"json object")});
1078 for (
const auto& i :
m_inner) {
1086 sections.
m_sections.back().m_left.pop_back();
1088 sections.
PushSection({indent +
"}" + maybe_separator,
""});
1101 return std::nullopt;
1107 case Type::STR_HEX: {
1111 case Type::STR_AMOUNT:
1112 case Type::NUM_TIME: {
1118 case Type::ARR_FIXED:
1138 if (!exp_type)
return true;
1140 if (*exp_type != result.
getType()) {
1146 for (
size_t i{0}; i < result.
get_array().size(); ++i) {
1150 if (!match.isTrue()) errors.
pushKV(
strprintf(
"%d", i), std::move(match));
1152 if (errors.
empty())
return true;
1161 for (
size_t i{0}; i < result.
get_obj().size(); ++i) {
1163 if (!match.isTrue()) errors.
pushKV(result.
getKeys()[i], std::move(match));
1165 if (errors.
empty())
return true;
1168 std::set<std::string> doc_keys;
1169 for (
const auto& doc_entry :
m_inner) {
1170 doc_keys.insert(doc_entry.m_key_name);
1172 std::map<std::string, UniValue> result_obj;
1174 for (
const auto& result_entry : result_obj) {
1175 if (doc_keys.find(result_entry.first) == doc_keys.end()) {
1176 errors.
pushKV(result_entry.first,
"key returned that was not in doc");
1180 for (
const auto& doc_entry :
m_inner) {
1181 const auto result_it{result_obj.find(doc_entry.m_key_name)};
1182 if (result_it == result_obj.end()) {
1183 if (!doc_entry.m_optional) {
1184 errors.
pushKV(doc_entry.m_key_name,
"key missing, despite not being optional in doc");
1188 UniValue match{doc_entry.MatchesType(result_it->second)};
1189 if (!match.isTrue()) errors.
pushKV(doc_entry.m_key_name, std::move(match));
1191 if (errors.
empty())
return true;
1222 return res +
"\"str\"";
1224 return res +
"\"hex\"";
1228 return res +
"n or [n,n]";
1230 return res +
"amount";
1232 return res +
"bool";
1235 for (
const auto& i :
m_inner) {
1236 res += i.ToString(oneline) +
",";
1238 return res +
"...]";
1253 throw std::runtime_error{
1278 return "{" + res +
"}";
1280 return "{" + res +
",...}";
1285 for (
const auto& i :
m_inner) {
1286 res += i.ToString(oneline) +
",";
1288 return "[" + res +
"...]";
1296 if (value.
isNum()) {
1297 return {0, value.
getInt<int64_t>()};
1300 int64_t low = value[0].
getInt<int64_t>();
1301 int64_t high = value[1].
getInt<int64_t>();
1315 if ((high >> 31) != 0) {
1318 if (high >= low + 1000000) {
1326 std::string desc_str;
1327 std::pair<int64_t, int64_t> range = {0, 1000};
1328 if (scanobject.
isStr()) {
1329 desc_str = scanobject.
get_str();
1330 }
else if (scanobject.
isObject()) {
1333 desc_str = desc_uni.get_str();
1335 if (!range_uni.isNull()) {
1343 auto descs =
Parse(desc_str, provider, error);
1344 if (descs.empty()) {
1347 if (!descs.at(0)->IsRange()) {
1351 std::vector<CScript>
ret;
1352 for (
int i = range.first; i <= range.second; ++i) {
1353 for (
const auto& desc : descs) {
1354 std::vector<CScript> scripts;
1355 if (!desc->Expand(i, provider, scripts, provider)) {
1359 desc->ExpandPrivate(i, provider, provider);
1361 std::move(scripts.begin(), scripts.end(), std::back_inserter(
ret));
1372 for (
const auto&
s : bilingual_strings) {
1373 result.push_back(
s.original);
1380 if (warnings.
empty())
return;
1381 obj.
pushKV(
"warnings", warnings);
1386 if (warnings.empty())
return;
1396 {
RPCResult::Type::STR,
"address",
true,
"The Bitcoin address (only if a well-defined address exists)"},
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 virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
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
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.
static constexpr unsigned int size()
static std::optional< uint256 > FromHex(std::string_view str)
static UniValue Parse(std::string_view raw, bool also_string)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
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 std::span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
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.
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)
std::optional< int > ParseSighashString(const UniValue &sighash)
Returns a sighash value corresponding to the passed in argument.
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)
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
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)