@@ -178,7 +178,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
178
178
if (request.fHelp || request.params .size () > 2 )
179
179
throw std::runtime_error (
180
180
RPCHelpMan{" getnewaddress" ,
181
- " \n Returns a new Bitcoin address for receiving payments.\n "
181
+ " \n Returns a new address for receiving payments.\n "
182
182
" If 'label' is specified, it is added to the address book \n "
183
183
" so payments received with the address will be associated with 'label'.\n "
184
184
" When the wallet doesn't give blinded addresses by default (-blindedaddresses=0), \n "
@@ -188,7 +188,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
188
188
{" 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." },
189
189
},
190
190
RPCResult{
191
- " \" address\" (string) The new bitcoin address\n "
191
+ " \" address\" (string) The new address\n "
192
192
},
193
193
RPCExamples{
194
194
HelpExampleCli (" getnewaddress" , " " )
@@ -320,7 +320,7 @@ static UniValue setlabel(const JSONRPCRequest& request)
320
320
RPCHelpMan{" setlabel" ,
321
321
" \n Sets the label associated with the given address.\n " ,
322
322
{
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." },
324
324
{" label" , RPCArg::Type::STR, RPCArg::Optional::NO, " The label to assign to the address." },
325
325
},
326
326
RPCResults{},
@@ -414,7 +414,7 @@ static UniValue sendtoaddress(const JSONRPCRequest& request)
414
414
" \n Send an amount to a given address." +
415
415
HelpRequiringPassphrase (pwallet) + " \n " ,
416
416
{
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." },
418
418
{" amount" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The amount in " + CURRENCY_UNIT + " to send. eg 0.1" },
419
419
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment used to store what the transaction is for.\n "
420
420
" This is not part of the transaction, just kept in your wallet." },
@@ -527,7 +527,7 @@ static UniValue listaddressgroupings(const JSONRPCRequest& request)
527
527
" [\n "
528
528
" [\n "
529
529
" [\n "
530
- " \" address\" , (string) The bitcoin address\n "
530
+ " \" address\" , (string) The address\n "
531
531
" amount, (numeric) The amount in " + CURRENCY_UNIT + " \n "
532
532
" \" label\" (string, optional) The label\n "
533
533
" ]\n "
@@ -585,7 +585,7 @@ static UniValue signmessage(const JSONRPCRequest& request)
585
585
" \n Sign a message with the private key of an address" +
586
586
HelpRequiringPassphrase (pwallet) + " \n " ,
587
587
{
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." },
589
589
{" message" , RPCArg::Type::STR, RPCArg::Optional::NO, " The message to create a signature of." },
590
590
},
591
591
RPCResult{
@@ -652,7 +652,7 @@ static UniValue getreceivedbyaddress(const JSONRPCRequest& request)
652
652
RPCHelpMan{" getreceivedbyaddress" ,
653
653
" \n Returns the total amount received by the given address in transactions with at least minconf confirmations.\n " ,
654
654
{
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." },
656
656
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " Only include transactions confirmed at least this many times." },
657
657
{" assetlabel" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " Hex asset id or asset label for balance." },
658
658
},
@@ -920,7 +920,7 @@ static UniValue sendmany(const JSONRPCRequest& request)
920
920
{" dummy" , RPCArg::Type::STR, RPCArg::Optional::NO, " Must be set to \"\" for backwards compatibility." , " \"\" " },
921
921
{" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " A json object with addresses and amounts" ,
922
922
{
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" },
924
924
},
925
925
},
926
926
{" 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)
1129
1129
" If 'label' is specified, assign address to that label.\n " ,
1130
1130
{
1131
1131
{" 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" ,
1133
1133
{
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" },
1135
1135
},
1136
1136
},
1137
1137
{" 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)
1654
1654
RPCResult{
1655
1655
" [\n "
1656
1656
" {\n "
1657
- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1657
+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
1658
1658
" \" category\" : (string) The transaction category.\n "
1659
1659
" \" send\" Transactions sent.\n "
1660
1660
" \" receive\" Non-coinbase transactions received.\n "
@@ -1789,7 +1789,7 @@ static UniValue listsinceblock(const JSONRPCRequest& request)
1789
1789
RPCResult{
1790
1790
" {\n "
1791
1791
" \" transactions\" : [\n "
1792
- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1792
+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
1793
1793
" \" category\" : (string) The transaction category.\n "
1794
1794
" \" send\" Transactions sent.\n "
1795
1795
" \" receive\" Non-coinbase transactions received.\n "
@@ -1942,7 +1942,7 @@ static UniValue gettransaction(const JSONRPCRequest& request)
1942
1942
" may be unknown for unconfirmed transactions not in the mempool\n "
1943
1943
" \" details\" : [\n "
1944
1944
" {\n "
1945
- " \" address\" : \" address\" , (string) The bitcoin address involved in the transaction\n "
1945
+ " \" address\" : \" address\" , (string) The address involved in the transaction\n "
1946
1946
" \" category\" : (string) The transaction category.\n "
1947
1947
" \" send\" Transactions sent.\n "
1948
1948
" \" receive\" Non-coinbase transactions received.\n "
@@ -2983,9 +2983,9 @@ static UniValue listunspent(const JSONRPCRequest& request)
2983
2983
{
2984
2984
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " The minimum confirmations to filter" },
2985
2985
{" 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" ,
2987
2987
{
2988
- {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address" },
2988
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " address" },
2989
2989
},
2990
2990
},
2991
2991
{" 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)
3005
3005
" {\n "
3006
3006
" \" txid\" : \" txid\" , (string) the transaction id \n "
3007
3007
" \" vout\" : n, (numeric) the vout value\n "
3008
- " \" address\" : \" address\" , (string) the bitcoin address\n "
3008
+ " \" address\" : \" address\" , (string) the address\n "
3009
3009
" \" label\" : \" label\" , (string) The associated label, or \"\" for the default label\n "
3010
3010
" \" scriptPubKey\" : \" key\" , (string) the script key\n "
3011
3011
" \" 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
3248
3248
// Single destination for default asset (policyAsset).
3249
3249
CTxDestination dest = DecodeDestination (options[" changeAddress" ].get_str ());
3250
3250
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" );
3252
3252
}
3253
3253
destinations[::policyAsset] = dest;
3254
3254
} else if (options[" changeAddress" ].isObject ()) {
@@ -3264,7 +3264,7 @@ void FundTransaction(CWallet* const pwallet, CMutableTransaction& tx, CAmount& f
3264
3264
3265
3265
CTxDestination dest = DecodeDestination (kv.second .get_str ());
3266
3266
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" );
3268
3268
}
3269
3269
3270
3270
destinations[asset] = dest;
@@ -3373,7 +3373,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request)
3373
3373
{" hexstring" , RPCArg::Type::STR_HEX, RPCArg::Optional::NO, " The hex string of the raw transaction" },
3374
3374
{" 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}" ,
3375
3375
{
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" },
3377
3377
{" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
3378
3378
{" 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\" ." },
3379
3379
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " false" , " Also select inputs which are watch only" },
@@ -4036,14 +4036,14 @@ UniValue getaddressinfo(const JSONRPCRequest& request)
4036
4036
if (request.fHelp || request.params .size () != 1 ) {
4037
4037
throw std::runtime_error (
4038
4038
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 "
4040
4040
" to be in the wallet.\n " ,
4041
4041
{
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." },
4043
4043
},
4044
4044
RPCResult{
4045
4045
" {\n "
4046
- " \" address\" : \" address\" , (string) The bitcoin address validated\n "
4046
+ " \" address\" : \" address\" , (string) The address validated\n "
4047
4047
" \" scriptPubKey\" : \" hex\" , (string) The hex-encoded scriptPubKey generated by the address\n "
4048
4048
" \" ismine\" : true|false, (boolean) If the address is yours or not\n "
4049
4049
" \" iswatchonly\" : true|false, (boolean) If the address is watchonly\n "
@@ -4597,7 +4597,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4597
4597
{
4598
4598
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
4599
4599
{
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 + " " },
4601
4601
},
4602
4602
},
4603
4603
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
@@ -4610,7 +4610,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4610
4610
{" locktime" , RPCArg::Type::NUM, /* default */ " 0" , " Raw locktime. Non-0 value also locktime-activates inputs" },
4611
4611
{" options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " " ,
4612
4612
{
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" },
4614
4614
{" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
4615
4615
{" 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\" ." },
4616
4616
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " false" , " Also select inputs which are watch only" },
0 commit comments