2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2016-12-20 14:26:45 +01:00
|
|
|
// Copyright (c) 2014-2017 The Dash Core developers
|
2014-11-20 03:19:29 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2012-05-14 23:44:52 +02:00
|
|
|
#include "base58.h"
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chain.h"
|
2013-11-20 14:18:57 +01:00
|
|
|
#include "rpcserver.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "init.h"
|
|
|
|
#include "main.h"
|
2014-09-11 19:15:29 +02:00
|
|
|
#include "script/script.h"
|
|
|
|
#include "script/standard.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "sync.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "util.h"
|
2014-09-14 12:43:56 +02:00
|
|
|
#include "utiltime.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "wallet.h"
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <fstream>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2013-04-29 19:50:56 +02:00
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
2014-09-14 12:43:56 +02:00
|
|
|
|
2015-09-04 16:11:34 +02:00
|
|
|
#include <univalue.h>
|
2012-04-05 03:19:27 +02:00
|
|
|
|
2015-07-05 14:17:46 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2012-04-05 03:19:27 +02:00
|
|
|
|
2011-07-13 11:56:38 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
void EnsureWalletIsUnlocked();
|
2015-04-12 17:56:44 +02:00
|
|
|
bool EnsureWalletIsAvailable(bool avoidException);
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
std::string static EncodeDumpTime(int64_t nTime) {
|
2014-02-17 11:32:43 +01:00
|
|
|
return DateTimeStrFormat("%Y-%m-%dT%H:%M:%SZ", nTime);
|
2013-04-29 19:50:56 +02:00
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t static DecodeDumpTime(const std::string &str) {
|
2013-04-29 19:50:56 +02:00
|
|
|
static const boost::posix_time::ptime epoch = boost::posix_time::from_time_t(0);
|
2014-02-17 11:32:43 +01:00
|
|
|
static const std::locale loc(std::locale::classic(),
|
|
|
|
new boost::posix_time::time_input_facet("%Y-%m-%dT%H:%M:%SZ"));
|
2013-04-29 19:50:56 +02:00
|
|
|
std::istringstream iss(str);
|
|
|
|
iss.imbue(loc);
|
|
|
|
boost::posix_time::ptime ptime(boost::date_time::not_a_date_time);
|
|
|
|
iss >> ptime;
|
|
|
|
if (ptime.is_not_a_date_time())
|
|
|
|
return 0;
|
|
|
|
return (ptime - epoch).total_seconds();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string static EncodeDumpString(const std::string &str) {
|
|
|
|
std::stringstream ret;
|
|
|
|
BOOST_FOREACH(unsigned char c, str) {
|
|
|
|
if (c <= 32 || c >= 128 || c == '%') {
|
|
|
|
ret << '%' << HexStr(&c, &c + 1);
|
|
|
|
} else {
|
|
|
|
ret << c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string DecodeDumpString(const std::string &str) {
|
|
|
|
std::stringstream ret;
|
|
|
|
for (unsigned int pos = 0; pos < str.length(); pos++) {
|
|
|
|
unsigned char c = str[pos];
|
|
|
|
if (c == '%' && pos+2 < str.length()) {
|
2014-12-12 12:44:25 +01:00
|
|
|
c = (((str[pos+1]>>6)*9+((str[pos+1]-'0')&15)) << 4) |
|
2013-04-29 19:50:56 +02:00
|
|
|
((str[pos+2]>>6)*9+((str[pos+2]-'0')&15));
|
|
|
|
pos += 2;
|
|
|
|
}
|
|
|
|
ret << c;
|
2011-07-13 11:56:38 +02:00
|
|
|
}
|
2013-04-29 19:50:56 +02:00
|
|
|
return ret.str();
|
|
|
|
}
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2015-05-18 14:02:18 +02:00
|
|
|
UniValue importprivkey(const UniValue& params, bool fHelp)
|
2011-07-13 11:56:38 +02:00
|
|
|
{
|
2015-04-12 17:56:44 +02:00
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
2015-05-10 13:35:44 +02:00
|
|
|
return NullUniValue;
|
2015-04-12 17:56:44 +02:00
|
|
|
|
2012-12-06 20:05:11 +01:00
|
|
|
if (fHelp || params.size() < 1 || params.size() > 3)
|
2011-07-13 11:56:38 +02:00
|
|
|
throw runtime_error(
|
2015-03-19 15:15:08 +01:00
|
|
|
"importprivkey \"dashprivkey\" ( \"label\" rescan )\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
"\nAdds a private key (as returned by dumpprivkey) to your wallet.\n"
|
|
|
|
"\nArguments:\n"
|
2015-03-19 15:15:08 +01:00
|
|
|
"1. \"dashprivkey\" (string, required) The private key (see dumpprivkey)\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"2. \"label\" (string, optional, default=\"\") An optional label\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
"3. rescan (boolean, optional, default=true) Rescan the wallet for transactions\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nNote: This call can take minutes to complete if rescan is true.\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
"\nExamples:\n"
|
|
|
|
"\nDump a private key\n"
|
|
|
|
+ HelpExampleCli("dumpprivkey", "\"myaddress\"") +
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nImport the private key with rescan\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
+ HelpExampleCli("importprivkey", "\"mykey\"") +
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nImport using a label and without rescan\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
+ HelpExampleCli("importprivkey", "\"mykey\" \"testing\" false") +
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nAs a JSON-RPC call\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
+ HelpExampleRpc("importprivkey", "\"mykey\", \"testing\", false")
|
|
|
|
);
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2015-04-24 21:42:51 +02:00
|
|
|
|
2014-10-19 10:46:17 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
|
|
|
|
2013-12-23 07:16:56 +01:00
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
2011-07-13 11:56:38 +02:00
|
|
|
string strSecret = params[0].get_str();
|
|
|
|
string strLabel = "";
|
|
|
|
if (params.size() > 1)
|
|
|
|
strLabel = params[1].get_str();
|
2012-12-06 20:05:11 +01:00
|
|
|
|
|
|
|
// Whether to perform rescan after import
|
|
|
|
bool fRescan = true;
|
|
|
|
if (params.size() > 2)
|
|
|
|
fRescan = params[2].get_bool();
|
|
|
|
|
2015-09-07 03:28:32 +02:00
|
|
|
if (fRescan && fPruneMode)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Rescan is disabled in pruned mode");
|
|
|
|
|
2011-07-13 11:56:38 +02:00
|
|
|
CBitcoinSecret vchSecret;
|
|
|
|
bool fGood = vchSecret.SetString(strSecret);
|
|
|
|
|
2014-01-28 09:38:10 +01:00
|
|
|
if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key encoding");
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2013-05-01 06:52:05 +02:00
|
|
|
CKey key = vchSecret.GetKey();
|
2014-01-28 09:38:10 +01:00
|
|
|
if (!key.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Private key outside allowed range");
|
|
|
|
|
2013-05-01 06:52:05 +02:00
|
|
|
CPubKey pubkey = key.GetPubKey();
|
2014-11-06 10:17:48 +01:00
|
|
|
assert(key.VerifyPubKey(pubkey));
|
2013-05-01 06:52:05 +02:00
|
|
|
CKeyID vchAddress = pubkey.GetID();
|
2011-07-13 11:56:38 +02:00
|
|
|
{
|
|
|
|
pwalletMain->MarkDirty();
|
2013-07-22 08:50:39 +02:00
|
|
|
pwalletMain->SetAddressBook(vchAddress, strLabel, "receive");
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
// Don't throw error in case a key is already there
|
|
|
|
if (pwalletMain->HaveKey(vchAddress))
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2014-01-09 20:23:20 +01:00
|
|
|
pwalletMain->mapKeyMetadata[vchAddress].nCreateTime = 1;
|
|
|
|
|
2013-05-01 06:52:05 +02:00
|
|
|
if (!pwalletMain->AddKeyPubKey(key, pubkey))
|
2012-10-04 09:34:44 +02:00
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding key to wallet");
|
2013-05-01 06:52:05 +02:00
|
|
|
|
2014-01-09 20:23:20 +01:00
|
|
|
// whenever a key is imported, we need to scan the whole chain
|
|
|
|
pwalletMain->nTimeFirstKey = 1; // 0 would be considered 'no value'
|
|
|
|
|
2012-12-06 20:05:11 +01:00
|
|
|
if (fRescan) {
|
2013-10-10 23:07:44 +02:00
|
|
|
pwalletMain->ScanForWalletTransactions(chainActive.Genesis(), true);
|
2012-12-06 20:05:11 +01:00
|
|
|
}
|
2011-07-13 11:56:38 +02:00
|
|
|
}
|
|
|
|
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2011-07-13 11:56:38 +02:00
|
|
|
}
|
|
|
|
|
2015-06-11 09:57:50 +02:00
|
|
|
void ImportAddress(const CBitcoinAddress& address, const string& strLabel);
|
|
|
|
void ImportScript(const CScript& script, const string& strLabel, bool isRedeemScript)
|
2013-07-26 01:06:01 +02:00
|
|
|
{
|
2015-06-11 09:57:50 +02:00
|
|
|
if (!isRedeemScript && ::IsMine(*pwalletMain, script) == ISMINE_SPENDABLE)
|
2015-06-11 09:57:26 +02:00
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "The wallet already contains the private key for this address or script");
|
|
|
|
|
|
|
|
pwalletMain->MarkDirty();
|
|
|
|
|
|
|
|
if (!pwalletMain->HaveWatchOnly(script) && !pwalletMain->AddWatchOnly(script))
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding address to wallet");
|
2015-06-11 09:57:50 +02:00
|
|
|
|
|
|
|
if (isRedeemScript) {
|
|
|
|
if (!pwalletMain->HaveCScript(script) && !pwalletMain->AddCScript(script))
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding p2sh redeemScript to wallet");
|
|
|
|
ImportAddress(CBitcoinAddress(CScriptID(script)), strLabel);
|
|
|
|
}
|
2015-06-11 09:57:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ImportAddress(const CBitcoinAddress& address, const string& strLabel)
|
|
|
|
{
|
|
|
|
CScript script = GetScriptForDestination(address.Get());
|
2015-06-11 09:57:50 +02:00
|
|
|
ImportScript(script, strLabel, false);
|
2015-06-11 09:57:26 +02:00
|
|
|
// add to address book or update label
|
|
|
|
if (address.IsValid())
|
|
|
|
pwalletMain->SetAddressBook(address.Get(), strLabel, "receive");
|
|
|
|
}
|
|
|
|
|
2015-05-18 14:02:18 +02:00
|
|
|
UniValue importaddress(const UniValue& params, bool fHelp)
|
2013-07-26 01:06:01 +02:00
|
|
|
{
|
2015-04-12 17:56:44 +02:00
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
2015-05-10 13:35:44 +02:00
|
|
|
return NullUniValue;
|
2015-04-12 17:56:44 +02:00
|
|
|
|
2015-06-11 09:57:50 +02:00
|
|
|
if (fHelp || params.size() < 1 || params.size() > 4)
|
2013-07-26 01:06:01 +02:00
|
|
|
throw runtime_error(
|
2015-06-11 09:57:50 +02:00
|
|
|
"importaddress \"address\" ( \"label\" rescan p2sh )\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
"\nAdds a script (in hex) or address that can be watched as if it were in your wallet but cannot be used to spend.\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nArguments:\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
"1. \"script\" (string, required) The hex-encoded script (or address)\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"2. \"label\" (string, optional, default=\"\") An optional label\n"
|
|
|
|
"3. rescan (boolean, optional, default=true) Rescan the wallet for transactions\n"
|
2015-06-11 09:57:50 +02:00
|
|
|
"4. p2sh (boolean, optional, default=false) Add the P2SH version of the script as well\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nNote: This call can take minutes to complete if rescan is true.\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
"If you have the full public key, you should call importpublickey instead of this.\n"
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nExamples:\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
"\nImport a script with rescan\n"
|
|
|
|
+ HelpExampleCli("importaddress", "\"myscript\"") +
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nImport using a label without rescan\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
+ HelpExampleCli("importaddress", "\"myscript\" \"testing\" false") +
|
2014-07-22 08:58:49 +02:00
|
|
|
"\nAs a JSON-RPC call\n"
|
2015-07-10 07:47:47 +02:00
|
|
|
+ HelpExampleRpc("importaddress", "\"myscript\", \"testing\", false")
|
2014-07-22 08:58:49 +02:00
|
|
|
);
|
2014-06-09 21:11:59 +02:00
|
|
|
|
2015-04-24 21:42:51 +02:00
|
|
|
|
2013-07-26 01:06:01 +02:00
|
|
|
string strLabel = "";
|
|
|
|
if (params.size() > 1)
|
|
|
|
strLabel = params[1].get_str();
|
2014-10-19 10:46:17 +02:00
|
|
|
|
2014-08-30 02:35:05 +02:00
|
|
|
// Whether to perform rescan after import
|
2013-07-26 01:06:01 +02:00
|
|
|
bool fRescan = true;
|
|
|
|
if (params.size() > 2)
|
|
|
|
fRescan = params[2].get_bool();
|
|
|
|
|
2015-09-07 03:28:32 +02:00
|
|
|
if (fRescan && fPruneMode)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Rescan is disabled in pruned mode");
|
|
|
|
|
2015-06-11 09:57:50 +02:00
|
|
|
// Whether to import a p2sh version, too
|
|
|
|
bool fP2SH = false;
|
|
|
|
if (params.size() > 3)
|
|
|
|
fP2SH = params[3].get_bool();
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2015-06-11 09:57:26 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
2013-07-26 01:06:01 +02:00
|
|
|
|
|
|
|
CBitcoinAddress address(params[0].get_str());
|
2014-06-09 21:11:59 +02:00
|
|
|
if (address.IsValid()) {
|
2015-06-11 09:57:50 +02:00
|
|
|
if (fP2SH)
|
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Cannot use the p2sh flag with an address - use a script instead");
|
2015-06-11 09:57:26 +02:00
|
|
|
ImportAddress(address, strLabel);
|
2014-06-09 21:11:59 +02:00
|
|
|
} else if (IsHex(params[0].get_str())) {
|
|
|
|
std::vector<unsigned char> data(ParseHex(params[0].get_str()));
|
2015-06-11 09:57:50 +02:00
|
|
|
ImportScript(CScript(data.begin(), data.end()), strLabel, fP2SH);
|
2014-06-09 21:11:59 +02:00
|
|
|
} else {
|
2015-04-05 23:56:58 +02:00
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address or script");
|
2014-06-09 21:11:59 +02:00
|
|
|
}
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2015-06-11 09:57:26 +02:00
|
|
|
if (fRescan)
|
|
|
|
{
|
|
|
|
pwalletMain->ScanForWalletTransactions(chainActive.Genesis(), true);
|
|
|
|
pwalletMain->ReacceptWalletTransactions();
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
UniValue importpubkey(const UniValue& params, bool fHelp)
|
|
|
|
{
|
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
|
|
|
return NullUniValue;
|
|
|
|
|
|
|
|
if (fHelp || params.size() < 1 || params.size() > 4)
|
|
|
|
throw runtime_error(
|
|
|
|
"importpubkey \"pubkey\" ( \"label\" rescan )\n"
|
|
|
|
"\nAdds a public key (in hex) that can be watched as if it were in your wallet but cannot be used to spend.\n"
|
|
|
|
"\nArguments:\n"
|
|
|
|
"1. \"pubkey\" (string, required) The hex-encoded public key\n"
|
|
|
|
"2. \"label\" (string, optional, default=\"\") An optional label\n"
|
|
|
|
"3. rescan (boolean, optional, default=true) Rescan the wallet for transactions\n"
|
|
|
|
"\nNote: This call can take minutes to complete if rescan is true.\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
"\nImport a public key with rescan\n"
|
|
|
|
+ HelpExampleCli("importpubkey", "\"mypubkey\"") +
|
|
|
|
"\nImport using a label without rescan\n"
|
|
|
|
+ HelpExampleCli("importpubkey", "\"mypubkey\" \"testing\" false") +
|
|
|
|
"\nAs a JSON-RPC call\n"
|
|
|
|
+ HelpExampleRpc("importpubkey", "\"mypubkey\", \"testing\", false")
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2013-07-26 01:06:01 +02:00
|
|
|
string strLabel = "";
|
|
|
|
if (params.size() > 1)
|
|
|
|
strLabel = params[1].get_str();
|
|
|
|
|
2014-08-30 02:35:05 +02:00
|
|
|
// Whether to perform rescan after import
|
2013-07-26 01:06:01 +02:00
|
|
|
bool fRescan = true;
|
|
|
|
if (params.size() > 2)
|
|
|
|
fRescan = params[2].get_bool();
|
|
|
|
|
2015-09-07 03:28:32 +02:00
|
|
|
if (fRescan && fPruneMode)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Rescan is disabled in pruned mode");
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
if (!IsHex(params[0].get_str()))
|
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey must be a hex string");
|
|
|
|
std::vector<unsigned char> data(ParseHex(params[0].get_str()));
|
|
|
|
CPubKey pubKey(data.begin(), data.end());
|
|
|
|
if (!pubKey.IsFullyValid())
|
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey is not a valid public key");
|
2014-03-29 05:15:28 +01:00
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
ImportAddress(CBitcoinAddress(pubKey.GetID()), strLabel);
|
|
|
|
ImportScript(GetScriptForRawPubKey(pubKey), strLabel, false);
|
2013-07-26 01:06:01 +02:00
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
if (fRescan)
|
|
|
|
{
|
|
|
|
pwalletMain->ScanForWalletTransactions(chainActive.Genesis(), true);
|
|
|
|
pwalletMain->ReacceptWalletTransactions();
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2013-07-26 01:06:01 +02:00
|
|
|
}
|
|
|
|
|
2015-07-10 07:47:36 +02:00
|
|
|
|
2015-05-18 14:02:18 +02:00
|
|
|
UniValue importwallet(const UniValue& params, bool fHelp)
|
2013-04-29 19:50:56 +02:00
|
|
|
{
|
2015-04-12 17:56:44 +02:00
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
2015-05-10 13:35:44 +02:00
|
|
|
return NullUniValue;
|
2015-04-12 17:56:44 +02:00
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
if (fHelp || params.size() != 1)
|
|
|
|
throw runtime_error(
|
2013-10-29 12:29:44 +01:00
|
|
|
"importwallet \"filename\"\n"
|
|
|
|
"\nImports keys from a wallet dump file (see dumpwallet).\n"
|
|
|
|
"\nArguments:\n"
|
|
|
|
"1. \"filename\" (string, required) The wallet file\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
"\nDump the wallet\n"
|
|
|
|
+ HelpExampleCli("dumpwallet", "\"test\"") +
|
|
|
|
"\nImport the wallet\n"
|
|
|
|
+ HelpExampleCli("importwallet", "\"test\"") +
|
|
|
|
"\nImport using the json rpc call\n"
|
|
|
|
+ HelpExampleRpc("importwallet", "\"test\"")
|
|
|
|
);
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2015-04-24 21:42:51 +02:00
|
|
|
if (fPruneMode)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Importing wallets is disabled in pruned mode");
|
|
|
|
|
2014-10-19 10:46:17 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
|
|
|
ifstream file;
|
2014-04-14 19:59:22 +02:00
|
|
|
file.open(params[0].get_str().c_str(), std::ios::in | std::ios::ate);
|
2013-04-29 19:50:56 +02:00
|
|
|
if (!file.is_open())
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Cannot open wallet dump file");
|
|
|
|
|
2014-06-28 23:36:06 +02:00
|
|
|
int64_t nTimeBegin = chainActive.Tip()->GetBlockTime();
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
bool fGood = true;
|
|
|
|
|
2014-04-14 19:59:22 +02:00
|
|
|
int64_t nFilesize = std::max((int64_t)1, (int64_t)file.tellg());
|
|
|
|
file.seekg(0, file.beg);
|
|
|
|
|
|
|
|
pwalletMain->ShowProgress(_("Importing..."), 0); // show progress dialog in GUI
|
2013-04-29 19:50:56 +02:00
|
|
|
while (file.good()) {
|
2014-04-14 19:59:22 +02:00
|
|
|
pwalletMain->ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100))));
|
2013-04-29 19:50:56 +02:00
|
|
|
std::string line;
|
|
|
|
std::getline(file, line);
|
|
|
|
if (line.empty() || line[0] == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::vector<std::string> vstr;
|
|
|
|
boost::split(vstr, line, boost::is_any_of(" "));
|
|
|
|
if (vstr.size() < 2)
|
|
|
|
continue;
|
|
|
|
CBitcoinSecret vchSecret;
|
|
|
|
if (!vchSecret.SetString(vstr[0]))
|
|
|
|
continue;
|
|
|
|
CKey key = vchSecret.GetKey();
|
|
|
|
CPubKey pubkey = key.GetPubKey();
|
2014-11-06 10:17:48 +01:00
|
|
|
assert(key.VerifyPubKey(pubkey));
|
2013-04-29 19:50:56 +02:00
|
|
|
CKeyID keyid = pubkey.GetID();
|
|
|
|
if (pwalletMain->HaveKey(keyid)) {
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Skipping import of %s (key already present)\n", CBitcoinAddress(keyid).ToString());
|
2013-04-29 19:50:56 +02:00
|
|
|
continue;
|
|
|
|
}
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nTime = DecodeDumpTime(vstr[1]);
|
2013-04-29 19:50:56 +02:00
|
|
|
std::string strLabel;
|
|
|
|
bool fLabel = true;
|
|
|
|
for (unsigned int nStr = 2; nStr < vstr.size(); nStr++) {
|
|
|
|
if (boost::algorithm::starts_with(vstr[nStr], "#"))
|
|
|
|
break;
|
|
|
|
if (vstr[nStr] == "change=1")
|
|
|
|
fLabel = false;
|
|
|
|
if (vstr[nStr] == "reserve=1")
|
|
|
|
fLabel = false;
|
|
|
|
if (boost::algorithm::starts_with(vstr[nStr], "label=")) {
|
|
|
|
strLabel = DecodeDumpString(vstr[nStr].substr(6));
|
|
|
|
fLabel = true;
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 16:15:27 +01:00
|
|
|
LogPrintf("Importing %s...\n", CBitcoinAddress(keyid).ToString());
|
2013-04-29 19:50:56 +02:00
|
|
|
if (!pwalletMain->AddKeyPubKey(key, pubkey)) {
|
|
|
|
fGood = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pwalletMain->mapKeyMetadata[keyid].nCreateTime = nTime;
|
|
|
|
if (fLabel)
|
2013-07-22 08:50:39 +02:00
|
|
|
pwalletMain->SetAddressBook(keyid, strLabel, "receive");
|
2013-04-29 19:50:56 +02:00
|
|
|
nTimeBegin = std::min(nTimeBegin, nTime);
|
|
|
|
}
|
|
|
|
file.close();
|
2014-04-14 19:59:22 +02:00
|
|
|
pwalletMain->ShowProgress("", 100); // hide progress dialog in GUI
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2013-10-10 23:07:44 +02:00
|
|
|
CBlockIndex *pindex = chainActive.Tip();
|
2014-06-28 23:36:06 +02:00
|
|
|
while (pindex && pindex->pprev && pindex->GetBlockTime() > nTimeBegin - 7200)
|
2013-04-29 19:50:56 +02:00
|
|
|
pindex = pindex->pprev;
|
|
|
|
|
2014-03-21 14:08:26 +01:00
|
|
|
if (!pwalletMain->nTimeFirstKey || nTimeBegin < pwalletMain->nTimeFirstKey)
|
|
|
|
pwalletMain->nTimeFirstKey = nTimeBegin;
|
|
|
|
|
2013-10-10 23:07:44 +02:00
|
|
|
LogPrintf("Rescanning last %i blocks\n", chainActive.Height() - pindex->nHeight + 1);
|
2013-04-29 19:50:56 +02:00
|
|
|
pwalletMain->ScanForWalletTransactions(pindex);
|
|
|
|
pwalletMain->MarkDirty();
|
|
|
|
|
|
|
|
if (!fGood)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding some keys to wallet");
|
|
|
|
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2013-04-29 19:50:56 +02:00
|
|
|
}
|
|
|
|
|
2017-03-12 15:42:00 +01:00
|
|
|
UniValue importelectrumwallet(const UniValue& params, bool fHelp)
|
|
|
|
{
|
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
|
|
|
return NullUniValue;
|
|
|
|
|
|
|
|
if (fHelp || params.size() < 1 || params.size() > 2)
|
|
|
|
throw runtime_error(
|
|
|
|
"importelectrumwallet \"filename\" index\n"
|
|
|
|
"\nImports keys from an Electrum wallet export file (.csv or .json)\n"
|
|
|
|
"\nArguments:\n"
|
|
|
|
"1. \"filename\" (string, required) The Electrum wallet export file, should be in csv or json format\n"
|
|
|
|
"2. index (numeric, optional, default=0) Rescan the wallet for transactions starting from this block index\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
"\nImport the wallet\n"
|
|
|
|
+ HelpExampleCli("importelectrumwallet", "\"test.csv\"")
|
|
|
|
+ HelpExampleCli("importelectrumwallet", "\"test.json\"") +
|
|
|
|
"\nImport using the json rpc call\n"
|
|
|
|
+ HelpExampleRpc("importelectrumwallet", "\"test.csv\"")
|
|
|
|
+ HelpExampleRpc("importelectrumwallet", "\"test.json\"")
|
|
|
|
);
|
|
|
|
|
|
|
|
if (fPruneMode)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Importing wallets is disabled in pruned mode");
|
|
|
|
|
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
|
|
|
|
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
|
|
|
ifstream file;
|
|
|
|
std::string strFileName = params[0].get_str();
|
|
|
|
size_t nDotPos = strFileName.find_last_of(".");
|
|
|
|
if(nDotPos == string::npos)
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "File has no extension, should be .json or .csv");
|
|
|
|
|
|
|
|
std::string strFileExt = strFileName.substr(nDotPos+1);
|
|
|
|
if(strFileExt != "json" && strFileExt != "csv")
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "File has wrong extension, should be .json or .csv");
|
|
|
|
|
|
|
|
file.open(strFileName.c_str(), std::ios::in | std::ios::ate);
|
|
|
|
if (!file.is_open())
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Cannot open Electrum wallet export file");
|
|
|
|
|
|
|
|
bool fGood = true;
|
|
|
|
|
|
|
|
int64_t nFilesize = std::max((int64_t)1, (int64_t)file.tellg());
|
|
|
|
file.seekg(0, file.beg);
|
|
|
|
|
|
|
|
pwalletMain->ShowProgress(_("Importing..."), 0); // show progress dialog in GUI
|
|
|
|
|
|
|
|
if(strFileExt == "csv") {
|
|
|
|
while (file.good()) {
|
|
|
|
pwalletMain->ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100))));
|
|
|
|
std::string line;
|
|
|
|
std::getline(file, line);
|
|
|
|
if (line.empty() || line == "address,private_key")
|
|
|
|
continue;
|
|
|
|
std::vector<std::string> vstr;
|
|
|
|
boost::split(vstr, line, boost::is_any_of(","));
|
|
|
|
if (vstr.size() < 2)
|
|
|
|
continue;
|
|
|
|
CBitcoinSecret vchSecret;
|
|
|
|
if (!vchSecret.SetString(vstr[1]))
|
|
|
|
continue;
|
|
|
|
CKey key = vchSecret.GetKey();
|
|
|
|
CPubKey pubkey = key.GetPubKey();
|
|
|
|
assert(key.VerifyPubKey(pubkey));
|
|
|
|
CKeyID keyid = pubkey.GetID();
|
|
|
|
if (pwalletMain->HaveKey(keyid)) {
|
|
|
|
LogPrintf("Skipping import of %s (key already present)\n", CBitcoinAddress(keyid).ToString());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
LogPrintf("Importing %s...\n", CBitcoinAddress(keyid).ToString());
|
|
|
|
if (!pwalletMain->AddKeyPubKey(key, pubkey)) {
|
|
|
|
fGood = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// json
|
|
|
|
char* buffer = new char [nFilesize];
|
|
|
|
file.read(buffer, nFilesize);
|
|
|
|
UniValue data(UniValue::VOBJ);
|
|
|
|
if(!data.read(buffer))
|
|
|
|
throw JSONRPCError(RPC_TYPE_ERROR, "Cannot parse Electrum wallet export file");
|
|
|
|
delete[] buffer;
|
|
|
|
|
|
|
|
std::vector<std::string> vKeys = data.getKeys();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < data.size(); i++) {
|
|
|
|
pwalletMain->ShowProgress("", std::max(1, std::min(99, int(i*100/data.size()))));
|
|
|
|
if(!data[vKeys[i]].isStr())
|
|
|
|
continue;
|
|
|
|
CBitcoinSecret vchSecret;
|
|
|
|
if (!vchSecret.SetString(data[vKeys[i]].get_str()))
|
|
|
|
continue;
|
|
|
|
CKey key = vchSecret.GetKey();
|
|
|
|
CPubKey pubkey = key.GetPubKey();
|
|
|
|
assert(key.VerifyPubKey(pubkey));
|
|
|
|
CKeyID keyid = pubkey.GetID();
|
|
|
|
if (pwalletMain->HaveKey(keyid)) {
|
|
|
|
LogPrintf("Skipping import of %s (key already present)\n", CBitcoinAddress(keyid).ToString());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
LogPrintf("Importing %s...\n", CBitcoinAddress(keyid).ToString());
|
|
|
|
if (!pwalletMain->AddKeyPubKey(key, pubkey)) {
|
|
|
|
fGood = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
pwalletMain->ShowProgress("", 100); // hide progress dialog in GUI
|
|
|
|
|
|
|
|
// Whether to perform rescan after import
|
|
|
|
int nStartHeight = 0;
|
|
|
|
if (params.size() > 1)
|
|
|
|
nStartHeight = params[1].get_int();
|
|
|
|
if (chainActive.Height() < nStartHeight)
|
|
|
|
nStartHeight = chainActive.Height();
|
|
|
|
|
|
|
|
// Assume that electrum wallet was created at that block
|
|
|
|
int nTimeBegin = chainActive[nStartHeight]->GetBlockTime();
|
|
|
|
if (!pwalletMain->nTimeFirstKey || nTimeBegin < pwalletMain->nTimeFirstKey)
|
|
|
|
pwalletMain->nTimeFirstKey = nTimeBegin;
|
|
|
|
|
|
|
|
LogPrintf("Rescanning %i blocks\n", chainActive.Height() - nStartHeight + 1);
|
|
|
|
pwalletMain->ScanForWalletTransactions(chainActive[nStartHeight], true);
|
|
|
|
|
|
|
|
if (!fGood)
|
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding some keys to wallet");
|
|
|
|
|
|
|
|
return NullUniValue;
|
|
|
|
}
|
|
|
|
|
2015-05-18 14:02:18 +02:00
|
|
|
UniValue dumpprivkey(const UniValue& params, bool fHelp)
|
2011-07-13 11:56:38 +02:00
|
|
|
{
|
2015-04-12 17:56:44 +02:00
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
2015-05-10 13:35:44 +02:00
|
|
|
return NullUniValue;
|
2015-04-12 17:56:44 +02:00
|
|
|
|
2011-07-13 11:56:38 +02:00
|
|
|
if (fHelp || params.size() != 1)
|
|
|
|
throw runtime_error(
|
2015-03-19 15:15:08 +01:00
|
|
|
"dumpprivkey \"dashaddress\"\n"
|
|
|
|
"\nReveals the private key corresponding to 'dashaddress'.\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
"Then the importprivkey can be used with this output\n"
|
|
|
|
"\nArguments:\n"
|
2015-03-19 15:15:08 +01:00
|
|
|
"1. \"dashaddress\" (string, required) The dash address for the private key\n"
|
2013-10-29 12:29:44 +01:00
|
|
|
"\nResult:\n"
|
|
|
|
"\"key\" (string) The private key\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
+ HelpExampleCli("dumpprivkey", "\"myaddress\"")
|
|
|
|
+ HelpExampleCli("importprivkey", "\"mykey\"")
|
|
|
|
+ HelpExampleRpc("dumpprivkey", "\"myaddress\"")
|
|
|
|
);
|
2011-07-13 11:56:38 +02:00
|
|
|
|
2014-10-19 10:46:17 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
2011-07-13 11:56:38 +02:00
|
|
|
string strAddress = params[0].get_str();
|
|
|
|
CBitcoinAddress address;
|
|
|
|
if (!address.SetString(strAddress))
|
2015-03-18 00:06:58 +01:00
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Dash address");
|
2012-05-14 23:44:52 +02:00
|
|
|
CKeyID keyID;
|
|
|
|
if (!address.GetKeyID(keyID))
|
2012-10-04 09:34:44 +02:00
|
|
|
throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to a key");
|
2013-05-01 06:52:05 +02:00
|
|
|
CKey vchSecret;
|
|
|
|
if (!pwalletMain->GetKey(keyID, vchSecret))
|
2012-10-04 09:34:44 +02:00
|
|
|
throw JSONRPCError(RPC_WALLET_ERROR, "Private key for address " + strAddress + " is not known");
|
2013-05-01 06:52:05 +02:00
|
|
|
return CBitcoinSecret(vchSecret).ToString();
|
2011-07-13 11:56:38 +02:00
|
|
|
}
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2017-05-29 13:51:40 +02:00
|
|
|
UniValue dumphdinfo(const UniValue& params, bool fHelp)
|
|
|
|
{
|
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
|
|
|
return NullUniValue;
|
|
|
|
|
|
|
|
if (fHelp || params.size() != 0)
|
|
|
|
throw runtime_error(
|
|
|
|
"dumphdinfo\n"
|
|
|
|
"Returns an object containing sensitive private info about this HD wallet.\n"
|
|
|
|
"\nResult:\n"
|
|
|
|
"{\n"
|
|
|
|
" \"hdseed\": \"seed\", (string) The HD seed (bip32, in hex)\n"
|
|
|
|
" \"mnemonic\": \"words\", (string) The mnemonic for this HD wallet (bip39, english words) \n"
|
|
|
|
" \"mnemonicpassphrase\": \"passphrase\", (string) The mnemonic passphrase for this HD wallet (bip39)\n"
|
|
|
|
"}\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
+ HelpExampleCli("dumphdinfo", "")
|
|
|
|
+ HelpExampleRpc("dumphdinfo", "")
|
|
|
|
);
|
|
|
|
|
|
|
|
LOCK(pwalletMain->cs_wallet);
|
|
|
|
|
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
|
|
|
// add the base58check encoded extended master if the wallet uses HD
|
|
|
|
CHDChain hdChainCurrent;
|
|
|
|
if (pwalletMain->GetHDChain(hdChainCurrent))
|
|
|
|
{
|
|
|
|
if (!pwalletMain->GetDecryptedHDChain(hdChainCurrent))
|
|
|
|
throw JSONRPCError(RPC_INTERNAL_ERROR, "Cannot decrypt HD seed");
|
|
|
|
|
|
|
|
SecureString ssMnemonic;
|
|
|
|
SecureString ssMnemonicPassphrase;
|
|
|
|
hdChainCurrent.GetMnemonic(ssMnemonic, ssMnemonicPassphrase);
|
|
|
|
|
|
|
|
UniValue obj(UniValue::VOBJ);
|
|
|
|
obj.push_back(Pair("hdseed", HexStr(hdChainCurrent.GetSeed())));
|
|
|
|
obj.push_back(Pair("mnemonic", ssMnemonic.c_str()));
|
|
|
|
obj.push_back(Pair("mnemonicpassphrase", ssMnemonicPassphrase.c_str()));
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NullUniValue;
|
|
|
|
}
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2015-05-18 14:02:18 +02:00
|
|
|
UniValue dumpwallet(const UniValue& params, bool fHelp)
|
2013-04-29 19:50:56 +02:00
|
|
|
{
|
2015-04-12 17:56:44 +02:00
|
|
|
if (!EnsureWalletIsAvailable(fHelp))
|
2015-05-10 13:35:44 +02:00
|
|
|
return NullUniValue;
|
2015-04-12 17:56:44 +02:00
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
if (fHelp || params.size() != 1)
|
|
|
|
throw runtime_error(
|
2013-10-29 12:29:44 +01:00
|
|
|
"dumpwallet \"filename\"\n"
|
|
|
|
"\nDumps all wallet keys in a human-readable format.\n"
|
|
|
|
"\nArguments:\n"
|
|
|
|
"1. \"filename\" (string, required) The filename\n"
|
|
|
|
"\nExamples:\n"
|
|
|
|
+ HelpExampleCli("dumpwallet", "\"test\"")
|
|
|
|
+ HelpExampleRpc("dumpwallet", "\"test\"")
|
|
|
|
);
|
2013-04-29 19:50:56 +02:00
|
|
|
|
2014-10-19 10:46:17 +02:00
|
|
|
LOCK2(cs_main, pwalletMain->cs_wallet);
|
|
|
|
|
2013-04-29 19:50:56 +02:00
|
|
|
EnsureWalletIsUnlocked();
|
|
|
|
|
|
|
|
ofstream file;
|
|
|
|
file.open(params[0].get_str().c_str());
|
|
|
|
if (!file.is_open())
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Cannot open wallet dump file");
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
std::map<CKeyID, int64_t> mapKeyBirth;
|
2013-04-29 19:50:56 +02:00
|
|
|
std::set<CKeyID> setKeyPool;
|
|
|
|
pwalletMain->GetKeyBirthTimes(mapKeyBirth);
|
|
|
|
pwalletMain->GetAllReserveKeys(setKeyPool);
|
|
|
|
|
|
|
|
// sort time/key pairs
|
2013-04-13 07:13:08 +02:00
|
|
|
std::vector<std::pair<int64_t, CKeyID> > vKeyBirth;
|
|
|
|
for (std::map<CKeyID, int64_t>::const_iterator it = mapKeyBirth.begin(); it != mapKeyBirth.end(); it++) {
|
2013-04-29 19:50:56 +02:00
|
|
|
vKeyBirth.push_back(std::make_pair(it->second, it->first));
|
|
|
|
}
|
|
|
|
mapKeyBirth.clear();
|
|
|
|
std::sort(vKeyBirth.begin(), vKeyBirth.end());
|
|
|
|
|
|
|
|
// produce output
|
2016-07-29 07:30:19 +02:00
|
|
|
file << strprintf("# Wallet dump created by Dash Core %s (%s)\n", CLIENT_BUILD, CLIENT_DATE);
|
2014-01-16 16:15:27 +01:00
|
|
|
file << strprintf("# * Created on %s\n", EncodeDumpTime(GetTime()));
|
|
|
|
file << strprintf("# * Best block at time of backup was %i (%s),\n", chainActive.Height(), chainActive.Tip()->GetBlockHash().ToString());
|
2014-06-28 23:36:06 +02:00
|
|
|
file << strprintf("# mined on %s\n", EncodeDumpTime(chainActive.Tip()->GetBlockTime()));
|
2013-04-29 19:50:56 +02:00
|
|
|
file << "\n";
|
2017-05-29 13:51:40 +02:00
|
|
|
|
|
|
|
// add the base58check encoded extended master if the wallet uses HD
|
|
|
|
CHDChain hdChainCurrent;
|
|
|
|
if (pwalletMain->GetHDChain(hdChainCurrent))
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!pwalletMain->GetDecryptedHDChain(hdChainCurrent))
|
|
|
|
throw JSONRPCError(RPC_INTERNAL_ERROR, "Cannot decrypt HD chain");
|
|
|
|
|
|
|
|
SecureString ssMnemonic;
|
|
|
|
SecureString ssMnemonicPassphrase;
|
|
|
|
hdChainCurrent.GetMnemonic(ssMnemonic, ssMnemonicPassphrase);
|
|
|
|
file << "# mnemonic: " << ssMnemonic << "\n";
|
|
|
|
file << "# mnemonic passphrase: " << ssMnemonicPassphrase << "\n\n";
|
|
|
|
|
|
|
|
SecureVector vchSeed = hdChainCurrent.GetSeed();
|
|
|
|
file << "# HD seed: " << HexStr(vchSeed) << "\n\n";
|
|
|
|
|
|
|
|
CExtKey masterKey;
|
|
|
|
masterKey.SetMaster(&vchSeed[0], vchSeed.size());
|
|
|
|
|
|
|
|
CBitcoinExtKey b58extkey;
|
|
|
|
b58extkey.SetKey(masterKey);
|
|
|
|
|
|
|
|
file << "# extended private masterkey: " << b58extkey.ToString() << "\n";
|
|
|
|
|
|
|
|
CExtPubKey masterPubkey;
|
|
|
|
masterPubkey = masterKey.Neuter();
|
|
|
|
|
|
|
|
CBitcoinExtPubKey b58extpubkey;
|
|
|
|
b58extpubkey.SetKey(masterPubkey);
|
|
|
|
file << "# extended public masterkey: " << b58extpubkey.ToString() << "\n\n";
|
|
|
|
|
|
|
|
for (size_t i = 0; i < hdChainCurrent.CountAccounts(); ++i)
|
|
|
|
{
|
|
|
|
CHDAccount acc;
|
|
|
|
if(hdChainCurrent.GetAccount(i, acc)) {
|
|
|
|
file << "# external chain counter: " << acc.nExternalChainCounter << "\n";
|
|
|
|
file << "# internal chain counter: " << acc.nInternalChainCounter << "\n\n";
|
|
|
|
} else {
|
|
|
|
file << "# WARNING: ACCOUNT " << i << " IS MISSING!" << "\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
for (std::vector<std::pair<int64_t, CKeyID> >::const_iterator it = vKeyBirth.begin(); it != vKeyBirth.end(); it++) {
|
2013-04-29 19:50:56 +02:00
|
|
|
const CKeyID &keyid = it->second;
|
|
|
|
std::string strTime = EncodeDumpTime(it->first);
|
|
|
|
std::string strAddr = CBitcoinAddress(keyid).ToString();
|
|
|
|
CKey key;
|
|
|
|
if (pwalletMain->GetKey(keyid, key)) {
|
2017-05-29 13:51:40 +02:00
|
|
|
file << strprintf("%s %s ", CBitcoinSecret(key).ToString(), strTime);
|
2013-04-29 19:50:56 +02:00
|
|
|
if (pwalletMain->mapAddressBook.count(keyid)) {
|
2017-05-29 13:51:40 +02:00
|
|
|
file << strprintf("label=%s", EncodeDumpString(pwalletMain->mapAddressBook[keyid].name));
|
2013-04-29 19:50:56 +02:00
|
|
|
} else if (setKeyPool.count(keyid)) {
|
2017-05-29 13:51:40 +02:00
|
|
|
file << "reserve=1";
|
2013-04-29 19:50:56 +02:00
|
|
|
} else {
|
2017-05-29 13:51:40 +02:00
|
|
|
file << "change=1";
|
2013-04-29 19:50:56 +02:00
|
|
|
}
|
2017-05-29 13:51:40 +02:00
|
|
|
file << strprintf(" # addr=%s%s\n", strAddr, (pwalletMain->mapHdPubKeys.count(keyid) ? " hdkeypath="+pwalletMain->mapHdPubKeys[keyid].GetKeyPath() : ""));
|
2013-04-29 19:50:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
file << "\n";
|
|
|
|
file << "# End of dump\n";
|
|
|
|
file.close();
|
2014-08-20 21:15:16 +02:00
|
|
|
return NullUniValue;
|
2013-04-29 19:50:56 +02:00
|
|
|
}
|