@@ -217,7 +217,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
217
217
}
218
218
219
219
RPCHelpMan{" getnewaddress" ,
220
- " \n Returns a new Bitcoin address for receiving payments.\n "
220
+ " \n Returns a new address for receiving payments.\n "
221
221
" If 'label' is specified, it is added to the address book \n "
222
222
" so payments received with the address will be associated with 'label'.\n "
223
223
" When the wallet doesn't give blinded addresses by default (-blindedaddresses=0), \n "
@@ -227,7 +227,7 @@ static UniValue getnewaddress(const JSONRPCRequest& request)
227
227
{" 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." },
228
228
},
229
229
RPCResult{
230
- " \" address\" (string) The new bitcoin address\n "
230
+ " \" address\" (string) The new address\n "
231
231
},
232
232
RPCExamples{
233
233
HelpExampleCli (" getnewaddress" , " " )
@@ -332,7 +332,7 @@ static UniValue setlabel(const JSONRPCRequest& request)
332
332
RPCHelpMan{" setlabel" ,
333
333
" \n Sets the label associated with the given address.\n " ,
334
334
{
335
- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to be associated with a label." },
335
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to be associated with a label." },
336
336
{" label" , RPCArg::Type::STR, RPCArg::Optional::NO, " The label to assign to the address." },
337
337
},
338
338
RPCResults{},
@@ -411,7 +411,7 @@ static UniValue sendtoaddress(const JSONRPCRequest& request)
411
411
" \n Send an amount to a given address." +
412
412
HelpRequiringPassphrase (pwallet) + " \n " ,
413
413
{
414
- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to send to." },
414
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to send to." },
415
415
{" amount" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The amount in " + CURRENCY_UNIT + " to send. eg 0.1" },
416
416
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment used to store what the transaction is for.\n "
417
417
" This is not part of the transaction, just kept in your wallet." },
@@ -528,7 +528,7 @@ static UniValue listaddressgroupings(const JSONRPCRequest& request)
528
528
" [\n "
529
529
" [\n "
530
530
" [\n "
531
- " \" address\" , (string) The bitcoin address\n "
531
+ " \" address\" , (string) The address\n "
532
532
" amount, (numeric) The amount in " + CURRENCY_UNIT + " \n "
533
533
" \" label\" (string, optional) The label\n "
534
534
" ]\n "
@@ -584,7 +584,7 @@ static UniValue signmessage(const JSONRPCRequest& request)
584
584
" \n Sign a message with the private key of an address" +
585
585
HelpRequiringPassphrase (pwallet) + " \n " ,
586
586
{
587
- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to use for the private key." },
587
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to use for the private key." },
588
588
{" message" , RPCArg::Type::STR, RPCArg::Optional::NO, " The message to create a signature of." },
589
589
},
590
590
RPCResult{
@@ -655,7 +655,7 @@ static UniValue getreceivedbyaddress(const JSONRPCRequest& request)
655
655
RPCHelpMan{" getreceivedbyaddress" ,
656
656
" \n Returns the total amount received by the given address in transactions with at least minconf confirmations.\n " ,
657
657
{
658
- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address for transactions." },
658
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address for transactions." },
659
659
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " Only include transactions confirmed at least this many times." },
660
660
{" assetlabel" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " Hex asset id or asset label for balance." },
661
661
},
@@ -921,7 +921,7 @@ static UniValue sendmany(const JSONRPCRequest& request)
921
921
{" dummy" , RPCArg::Type::STR, RPCArg::Optional::NO, " Must be set to \"\" for backwards compatibility." , " \"\" " },
922
922
{" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " A json object with addresses and amounts" ,
923
923
{
924
- {" 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" },
924
+ {" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value" },
925
925
},
926
926
},
927
927
{" minconf" , RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, " Ignored dummy value" },
@@ -1091,9 +1091,9 @@ static UniValue addmultisigaddress(const JSONRPCRequest& request)
1091
1091
" If 'label' is specified, assign address to that label.\n " ,
1092
1092
{
1093
1093
{" nrequired" , RPCArg::Type::NUM, RPCArg::Optional::NO, " The number of required signatures out of the n keys or addresses." },
1094
- {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of bitcoin addresses or hex-encoded public keys" ,
1094
+ {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of addresses or hex-encoded public keys" ,
1095
1095
{
1096
- {" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address or hex-encoded public key" },
1096
+ {" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " address or hex-encoded public key" },
1097
1097
},
1098
1098
},
1099
1099
{" label" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A label to assign the addresses to." },
@@ -1632,7 +1632,7 @@ UniValue listtransactions(const JSONRPCRequest& request)
1632
1632
" [\n "
1633
1633
" {\n "
1634
1634
" \" involvesWatchonly\" : xxx, (bool) Only returns true if imported addresses were involved in transaction.\n "
1635
- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1635
+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
1636
1636
" \" category\" : (string) The transaction category.\n "
1637
1637
" \" send\" Transactions sent.\n "
1638
1638
" \" receive\" Non-coinbase transactions received.\n "
@@ -1756,7 +1756,7 @@ static UniValue listsinceblock(const JSONRPCRequest& request)
1756
1756
" {\n "
1757
1757
" \" transactions\" : [\n "
1758
1758
" \" involvesWatchonly\" : xxx, (bool) Only returns true if imported addresses were involved in transaction.\n "
1759
- " \" address\" :\" address\" , (string) The bitcoin address of the transaction.\n "
1759
+ " \" address\" :\" address\" , (string) The address of the transaction.\n "
1760
1760
" \" category\" : (string) The transaction category.\n "
1761
1761
" \" send\" Transactions sent.\n "
1762
1762
" \" receive\" Non-coinbase transactions received.\n "
@@ -1895,7 +1895,7 @@ static UniValue gettransaction(const JSONRPCRequest& request)
1895
1895
+ " \" details\" : [\n "
1896
1896
" {\n "
1897
1897
" \" involvesWatchonly\" : xxx, (bool) Only returns true if imported addresses were involved in transaction.\n "
1898
- " \" address\" : \" address\" , (string) The bitcoin address involved in the transaction\n "
1898
+ " \" address\" : \" address\" , (string) The address involved in the transaction\n "
1899
1899
" \" category\" : (string) The transaction category.\n "
1900
1900
" \" send\" Transactions sent.\n "
1901
1901
" \" receive\" Non-coinbase transactions received.\n "
@@ -3037,9 +3037,9 @@ static UniValue listunspent(const JSONRPCRequest& request)
3037
3037
{
3038
3038
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " The minimum confirmations to filter" },
3039
3039
{" maxconf" , RPCArg::Type::NUM, /* default */ " 9999999" , " The maximum confirmations to filter" },
3040
- {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of bitcoin addresses to filter" ,
3040
+ {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of addresses to filter" ,
3041
3041
{
3042
- {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address" },
3042
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " address" },
3043
3043
},
3044
3044
},
3045
3045
{" include_unsafe" , RPCArg::Type::BOOL, /* default */ " true" , " Include outputs that are not safe to spend\n "
@@ -3059,7 +3059,7 @@ static UniValue listunspent(const JSONRPCRequest& request)
3059
3059
" {\n "
3060
3060
" \" txid\" : \" txid\" , (string) the transaction id \n "
3061
3061
" \" vout\" : n, (numeric) the vout value\n "
3062
- " \" address\" : \" address\" , (string) the bitcoin address\n "
3062
+ " \" address\" : \" address\" , (string) the address\n "
3063
3063
" \" label\" : \" label\" , (string) The associated label, or \"\" for the default label\n "
3064
3064
" \" scriptPubKey\" : \" key\" , (string) the script key\n "
3065
3065
" \" amount\" : x.xxx, (numeric) the transaction output amount in " + CURRENCY_UNIT + " \n "
@@ -3317,7 +3317,7 @@ void FundTransaction(CWallet* const pwallet, CMutableTransaction& tx, CAmount& f
3317
3317
// Single destination for default asset (policyAsset).
3318
3318
CTxDestination dest = DecodeDestination (options[" changeAddress" ].get_str ());
3319
3319
if (!IsValidDestination (dest)) {
3320
- throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid bitcoin address" );
3320
+ throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid address" );
3321
3321
}
3322
3322
destinations[::policyAsset] = dest;
3323
3323
} else if (options[" changeAddress" ].isObject ()) {
@@ -3333,7 +3333,7 @@ void FundTransaction(CWallet* const pwallet, CMutableTransaction& tx, CAmount& f
3333
3333
3334
3334
CTxDestination dest = DecodeDestination (kv.second .get_str ());
3335
3335
if (!IsValidDestination (dest)) {
3336
- throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid bitcoin address" );
3336
+ throw JSONRPCError (RPC_INVALID_ADDRESS_OR_KEY, " changeAddress must be a valid address" );
3337
3337
}
3338
3338
3339
3339
destinations[asset] = dest;
@@ -3444,7 +3444,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request)
3444
3444
{" hexstring" , RPCArg::Type::STR_HEX, RPCArg::Optional::NO, " The hex string of the raw transaction" },
3445
3445
{" 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}" ,
3446
3446
{
3447
- {" changeAddress" , RPCArg::Type::STR, /* default */ " pool address" , " The bitcoin address to receive the change" },
3447
+ {" changeAddress" , RPCArg::Type::STR, /* default */ " pool address" , " The address to receive the change" },
3448
3448
{" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
3449
3449
{" 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\" ." },
3450
3450
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " true for watch-only wallets, otherwise false" , " Also select inputs which are watch only.\n "
@@ -4106,14 +4106,14 @@ UniValue getaddressinfo(const JSONRPCRequest& request)
4106
4106
}
4107
4107
4108
4108
RPCHelpMan{" getaddressinfo" ,
4109
- " \n Return information about the given bitcoin address. Some information requires the address\n "
4109
+ " \n Return information about the given address. Some information requires the address\n "
4110
4110
" to be in the wallet.\n " ,
4111
4111
{
4112
- {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The bitcoin address to get the information of." },
4112
+ {" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The address to get the information of." },
4113
4113
},
4114
4114
RPCResult{
4115
4115
" {\n "
4116
- " \" address\" : \" address\" , (string) The bitcoin address validated\n "
4116
+ " \" address\" : \" address\" , (string) The address validated\n "
4117
4117
" \" scriptPubKey\" : \" hex\" , (string) The hex-encoded scriptPubKey generated by the address\n "
4118
4118
" \" ismine\" : true|false, (boolean) If the address is yours or not\n "
4119
4119
" \" iswatchonly\" : true|false, (boolean) If the address is watchonly\n "
@@ -4646,7 +4646,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4646
4646
{
4647
4647
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
4648
4648
{
4649
- {" 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 + " " },
4649
+ {" 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 + " " },
4650
4650
},
4651
4651
},
4652
4652
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
@@ -4659,7 +4659,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4659
4659
{" locktime" , RPCArg::Type::NUM, /* default */ " 0" , " Raw locktime. Non-0 value also locktime-activates inputs" },
4660
4660
{" options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " " ,
4661
4661
{
4662
- {" changeAddress" , RPCArg::Type::STR_HEX, /* default */ " pool address" , " The bitcoin address to receive the change" },
4662
+ {" changeAddress" , RPCArg::Type::STR_HEX, /* default */ " pool address" , " The address to receive the change" },
4663
4663
{" changePosition" , RPCArg::Type::NUM, /* default */ " random" , " The index of the change output" },
4664
4664
{" 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\" ." },
4665
4665
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " true for watch-only wallets, otherwise false" , " Also select inputs which are watch only" },
0 commit comments