@@ -178,7 +178,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
178178 if (request.fHelp || request.params .size () > 2 )
179179 throw std::runtime_error (
180180 RPCHelpMan{" getnewaddress" ,
181- " \n Returns a new Bitcoin address for receiving payments.\n "
181+ " \n Returns a new address for receiving payments.\n "
182182 " If 'label' is specified, it is added to the address book \n "
183183 " so payments received with the address will be associated with 'label'.\n "
184184 " When the wallet doesn't give blinded addresses by default (-blindedaddresses=0), \n "
@@ -188,7 +188,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
188188 {" address_type" , RPCArg::Type::STR, /* default */ " set by -addresstype" , " The address type to use. Options are \" legacy\" , \" p2sh-segwit\" , and \" bech32\" . Default is set by -addresstype." },
189189 },
190190 RPCResult{
191- " \" address\" (string) The new bitcoin address\n "
191+ " \" address\" (string) The new address\n "
192192 },
193193 RPCExamples{
194194 HelpExampleCli (" getnewaddress" , " " )
@@ -320,7 +320,7 @@ static UniValue setlabel(const JSONRPCRequest& request)
320320 RPCHelpMan{" setlabel" ,
321321 " \n Sets the label associated with the given address.\n " ,
322322 {
323- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to be associated with a label." },
323+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to be associated with a label." },
324324 {" label" , RPCArg::Type::STR, RPCArg::Optional::NO, " The label to assign to the address." },
325325 },
326326 RPCResults{},
@@ -414,7 +414,7 @@ static UniValue sendtoaddress(const JSONRPCRequest& request)
414414 " \n Send an amount to a given address." +
415415 HelpRequiringPassphrase (pwallet) + " \n " ,
416416 {
417- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to send to." },
417+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to send to." },
418418 {" amount" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The amount in " + CURRENCY_UNIT + " to send. eg 0.1" },
419419 {" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment used to store what the transaction is for.\n "
420420 " This is not part of the transaction, just kept in your wallet." },
@@ -527,7 +527,7 @@ static UniValue listaddressgroupings(const JSONRPCRequest& request)
527527 " [\n "
528528 " [\n "
529529 " [\n "
530- " \" address\" , (string) The bitcoin address\n "
530+ " \" address\" , (string) The address\n "
531531 " amount, (numeric) The amount in " + CURRENCY_UNIT + " \n "
532532 " \" label\" (string, optional) The label\n "
533533 " ]\n "
@@ -585,7 +585,7 @@ static UniValue signmessage(const JSONRPCRequest& request)
585585 " \n Sign a message with the private key of an address" +
586586 HelpRequiringPassphrase (pwallet) + " \n " ,
587587 {
588- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to use for the private key." },
588+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to use for the private key." },
589589 {" message" , RPCArg::Type::STR, RPCArg::Optional::NO, " The message to create a signature of." },
590590 },
591591 RPCResult{
@@ -652,7 +652,7 @@ static UniValue getreceivedbyaddress(const JSONRPCRequest& request)
652652 RPCHelpMan{" getreceivedbyaddress" ,
653653 " \n Returns the total amount received by the given address in transactions with at least minconf confirmations.\n " ,
654654 {
655- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address for transactions." },
655+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address for transactions." },
656656 {" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " Only include transactions confirmed at least this many times." },
657657 {" assetlabel" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " Hex asset id or asset label for balance." },
658658 },
@@ -920,7 +920,7 @@ static UniValue sendmany(const JSONRPCRequest& request)
920920 {" dummy" , RPCArg::Type::STR, RPCArg::Optional::NO, " Must be set to \"\" for backwards compatibility." , " \"\" " },
921921 {" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " A json object with addresses and amounts" ,
922922 {
923- {" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The bitcoin address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value" },
923+ {" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value" },
924924 },
925925 },
926926 {" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " Only use the balance confirmed at least this many times." },
@@ -1129,9 +1129,9 @@ static UniValue addmultisigaddress(const JSONRPCRequest& request)
11291129 " If 'label' is specified, assign address to that label.\n " ,
11301130 {
11311131 {" nrequired" , RPCArg::Type::NUM, RPCArg::Optional::NO, " The number of required signatures out of the n keys or addresses." },
1132- {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of bitcoin addresses or hex-encoded public keys" ,
1132+ {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of addresses or hex-encoded public keys" ,
11331133 {
1134- {" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address or hex-encoded public key" },
1134+ {" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " address or hex-encoded public key" },
11351135 },
11361136 },
11371137 {" label" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A label to assign the addresses to." },
@@ -1654,7 +1654,7 @@ UniValue listtransactions(const JSONRPCRequest& request)
16541654 RPCResult{
16551655 " [\n "
16561656 " {\n "
1657- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1657+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
16581658 " \" category\" : (string) The transaction category.\n "
16591659 " \" send\" Transactions sent.\n "
16601660 " \" receive\" Non-coinbase transactions received.\n "
@@ -1789,7 +1789,7 @@ static UniValue listsinceblock(const JSONRPCRequest& request)
17891789 RPCResult{
17901790 " {\n "
17911791 " \" transactions\" : [\n "
1792- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1792+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
17931793 " \" category\" : (string) The transaction category.\n "
17941794 " \" send\" Transactions sent.\n "
17951795 " \" receive\" Non-coinbase transactions received.\n "
@@ -1942,7 +1942,7 @@ static UniValue gettransaction(const JSONRPCRequest& request)
19421942 " may be unknown for unconfirmed transactions not in the mempool\n "
19431943 " \" details\" : [\n "
19441944 " {\n "
1945- " \" address\" : \" address\" , (string) The bitcoin address involved in the transaction\n "
1945+ " \" address\" : \" address\" , (string) The address involved in the transaction\n "
19461946 " \" category\" : (string) The transaction category.\n "
19471947 " \" send\" Transactions sent.\n "
19481948 " \" receive\" Non-coinbase transactions received.\n "
@@ -2983,9 +2983,9 @@ static UniValue listunspent(const JSONRPCRequest& request)
29832983 {
29842984 {" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " The minimum confirmations to filter" },
29852985 {" maxconf" , RPCArg::Type::NUM, /* default */ " 9999999" , " The maximum confirmations to filter" },
2986- {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of bitcoin addresses to filter" ,
2986+ {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of addresses to filter" ,
29872987 {
2988- {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address" },
2988+ {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " address" },
29892989 },
29902990 },
29912991 {" include_unsafe" , RPCArg::Type::BOOL, /* default */ " true" , " Include outputs that are not safe to spend\n "
@@ -3005,7 +3005,7 @@ static UniValue listunspent(const JSONRPCRequest& request)
30053005 " {\n "
30063006 " \" txid\" : \" txid\" , (string) the transaction id \n "
30073007 " \" vout\" : n, (numeric) the vout value\n "
3008- " \" address\" : \" address\" , (string) the bitcoin address\n "
3008+ " \" address\" : \" address\" , (string) the address\n "
30093009 " \" label\" : \" label\" , (string) The associated label, or \"\" for the default label\n "
30103010 " \" scriptPubKey\" : \" key\" , (string) the script key\n "
30113011 " \" amount\" : x.xxx, (numeric) the transaction output amount in " + CURRENCY_UNIT + " \n "
@@ -3248,7 +3248,7 @@ void FundTransaction(CWallet* const pwallet, CMutableTransaction& tx, CAmount& f
32483248 // Single destination for default asset (policyAsset).
32493249 CTxDestination dest = DecodeDestination (options[" changeAddress" ].get_str ());
32503250 if (!IsValidDestination (dest)) {
3251- throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid bitcoin address" );
3251+ throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid address" );
32523252 }
32533253 destinations[::policyAsset] = dest;
32543254 } else if (options[" changeAddress" ].isObject ()) {
@@ -3264,7 +3264,7 @@ void FundTransaction(CWallet* const pwallet, CMutableTransaction& tx, CAmount& f
32643264
32653265 CTxDestination dest = DecodeDestination (kv.second .get_str ());
32663266 if (!IsValidDestination (dest)) {
3267- throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid bitcoin address" );
3267+ throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid address" );
32683268 }
32693269
32703270 destinations[asset] = dest;
@@ -3373,7 +3373,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request)
33733373 {" hexstring" , RPCArg::Type::STR_HEX, RPCArg::Optional::NO, " The hex string of the raw transaction" },
33743374 {" options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " for backward compatibility: passing in a true instead of an object will result in {\" includeWatching\" :true}" ,
33753375 {
3376- {" changeAddress" , RPCArg::Type::STR, /* default */ " pool address" , " The bitcoin address to receive the change" },
3376+ {" changeAddress" , RPCArg::Type::STR, /* default */ " pool address" , " The address to receive the change" },
33773377 {" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
33783378 {" change_type" , RPCArg::Type::STR, /* default */ " set by -changetype" , " The output type to use. Only valid if changeAddress is not specified. Options are \" legacy\" , \" p2sh-segwit\" , and \" bech32\" ." },
33793379 {" includeWatching" , RPCArg::Type::BOOL, /* default */ " false" , " Also select inputs which are watch only" },
@@ -4036,14 +4036,14 @@ UniValue getaddressinfo(const JSONRPCRequest& request)
40364036 if (request.fHelp || request.params .size () != 1 ) {
40374037 throw std::runtime_error (
40384038 RPCHelpMan{" getaddressinfo" ,
4039- " \n Return information about the given bitcoin address. Some information requires the address\n "
4039+ " \n Return information about the given address. Some information requires the address\n "
40404040 " to be in the wallet.\n " ,
40414041 {
4042- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to get the information of." },
4042+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to get the information of." },
40434043 },
40444044 RPCResult{
40454045 " {\n "
4046- " \" address\" : \" address\" , (string) The bitcoin address validated\n "
4046+ " \" address\" : \" address\" , (string) The address validated\n "
40474047 " \" scriptPubKey\" : \" hex\" , (string) The hex-encoded scriptPubKey generated by the address\n "
40484048 " \" ismine\" : true|false, (boolean) If the address is yours or not\n "
40494049 " \" iswatchonly\" : true|false, (boolean) If the address is watchonly\n "
@@ -4597,7 +4597,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
45974597 {
45984598 {" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
45994599 {
4600- {" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " A key-value pair. The key (string) is the bitcoin address, the value (float or string) is the amount in " + CURRENCY_UNIT + " " },
4600+ {" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " A key-value pair. The key (string) is the address, the value (float or string) is the amount in " + CURRENCY_UNIT + " " },
46014601 },
46024602 },
46034603 {" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
@@ -4610,7 +4610,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
46104610 {" locktime" , RPCArg::Type::NUM, /* default */ " 0" , " Raw locktime. Non-0 value also locktime-activates inputs" },
46114611 {" options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " " ,
46124612 {
4613- {" changeAddress" , RPCArg::Type::STR_HEX, /* default */ " pool address" , " The bitcoin address to receive the change" },
4613+ {" changeAddress" , RPCArg::Type::STR_HEX, /* default */ " pool address" , " The address to receive the change" },
46144614 {" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
46154615 {" change_type" , RPCArg::Type::STR, /* default */ " set by -changetype" , " The output type to use. Only valid if changeAddress is not specified. Options are \" legacy\" , \" p2sh-segwit\" , and \" bech32\" ." },
46164616 {" includeWatching" , RPCArg::Type::BOOL, /* default */ " false" , " Also select inputs which are watch only" },
0 commit comments