5#include <chainparams.h>
32 error =
_(
"Error: Keypool ran out, please call keypoolrefill first")
51enum class IsMineSigVersion {
61enum class IsMineResult {
68bool HaveKeys(
const std::vector<valtype> &pubkeys,
70 for (
const valtype &pubkey : pubkeys) {
89 const CScript &scriptPubKey,
90 IsMineSigVersion sigversion,
91 bool recurse_scripthash =
true) {
92 IsMineResult ret = IsMineResult::NO;
94 std::vector<valtype> vSolutions;
105 ret = std::max(ret, IsMineResult::SPENDABLE);
111 ret = std::max(ret, IsMineResult::SPENDABLE);
115 if (sigversion != IsMineSigVersion::TOP) {
117 return IsMineResult::INVALID;
121 if (keystore.
GetCScript(scriptID, subscript)) {
122 ret = std::max(ret, recurse_scripthash
123 ? IsMineInner(keystore, subscript,
124 IsMineSigVersion::P2SH)
125 : IsMineResult::SPENDABLE);
132 if (sigversion == IsMineSigVersion::TOP) {
141 std::vector<valtype> keys(vSolutions.begin() + 1,
142 vSolutions.begin() + vSolutions.size() -
144 if (HaveKeys(keys, keystore)) {
145 ret = std::max(ret, IsMineResult::SPENDABLE);
151 if (ret == IsMineResult::NO && keystore.
HaveWatchOnly(scriptPubKey)) {
152 ret = std::max(ret, IsMineResult::WATCH_ONLY);
160 switch (IsMineInner(*
this, script, IsMineSigVersion::TOP)) {
161 case IsMineResult::INVALID:
162 case IsMineResult::NO:
164 case IsMineResult::WATCH_ONLY:
166 case IsMineResult::SPENDABLE:
179 bool keyPass = mapCryptedKeys.empty();
180 bool keyFail =
false;
181 CryptedKeyMap::const_iterator mi = mapCryptedKeys.begin();
183 for (; mi != mapCryptedKeys.end(); ++mi) {
184 const CPubKey &vchPubKey = (*mi).second.first;
185 const std::vector<uint8_t> &vchCryptedSecret = (*mi).second.second;
187 if (!
DecryptKey(master_key, vchCryptedSecret, vchPubKey, key)) {
197 mapKeyMetadata[vchPubKey.
GetID()]);
200 if (keyPass && keyFail) {
201 LogPrintf(
"The wallet is probably corrupted: Some keys decrypt but "
203 throw std::runtime_error(
204 "Error unlocking wallet: some keys decrypt but not all. Your "
205 "wallet file may be corrupt.");
207 if (keyFail || (!keyPass && !accept_no_keys)) {
218 encrypted_batch = batch;
219 if (!mapCryptedKeys.empty()) {
220 encrypted_batch =
nullptr;
226 keys_to_encrypt.swap(mapKeys);
227 for (
const KeyMap::value_type &mKey : keys_to_encrypt) {
228 const CKey &key = mKey.second;
231 std::vector<uint8_t> vchCryptedSecret;
234 encrypted_batch =
nullptr;
238 encrypted_batch =
nullptr;
242 encrypted_batch =
nullptr;
264 int64_t index,
bool internal) {
279 int64_t target_size =
290 int64_t missing = std::max(target_size - kp_size, (int64_t)0);
294 for (int64_t i = missing; i > 0; --i) {
299 HexStr(seed_id), missing);
302 HexStr(seed_id), missing);
312 std::map<CKeyID, int64_t>::const_iterator mi =
316 "keys up to this key as used\n",
322 "%s: Topping up keypool failed (locked wallet)\n",
330 auto it = mapKeyMetadata.find(keyid);
331 if (it != mapKeyMetadata.end()) {
357 for (
auto &meta_pair : mapKeyMetadata) {
369 std::copy(master_id.
begin(), master_id.
begin() + 4,
372 throw std::runtime_error(
"Invalid stored hdKeypath");
381 if (
GetPubKey(meta_pair.first, pubkey)) {
382 batch->WriteKeyMetadata(meta, pubkey,
true);
407 bool keypool_has_keys;
409 keypool_has_keys = setInternalKeyPool.size() > 0;
414 if (!keypool_has_keys) {
417 return keypool_has_keys;
422 bool hd_upgrade =
false;
423 bool split_upgrade =
false;
446 error =
_(
"Unable to generate keys");
455 return !mapKeys.empty() || !mapCryptedKeys.empty();
460 setInternalKeyPool.clear();
461 setExternalKeyPool.clear();
470 if (setKeyPool.empty()) {
475 int64_t nIndex = *(setKeyPool.begin());
476 if (!batch.
ReadPool(nIndex, keypool)) {
477 throw std::runtime_error(std::string(__func__) +
478 ": read oldest key in keypool failed");
482 return keypool.
nTime;
495 if (!set_pre_split_keypool.empty()) {
507 return setExternalKeyPool.size() + set_pre_split_keypool.size();
512 return setInternalKeyPool.size() + setExternalKeyPool.size() +
513 set_pre_split_keypool.size();
518 return nTimeFirstKey;
521std::unique_ptr<SigningProvider>
523 return std::make_unique<LegacySigningProvider>(*
this);
528 IsMineResult ismine = IsMineInner(*
this, script, IsMineSigVersion::TOP,
530 if (ismine == IsMineResult::SPENDABLE ||
531 ismine == IsMineResult::WATCH_ONLY) {
543 bool has_privkeys =
false;
544 for (
const auto &key_sig_pair : sigdata.
signatures) {
545 has_privkeys |=
HaveKey(key_sig_pair.first);
554 SigHashType sighash, std::map<int, std::string> &input_errors)
const {
560 std::string &str_sig)
const {
575 bool bip32derivs)
const {
576 for (
size_t i = 0; i < psbtx.
tx->vin.size(); ++i) {
601 for (
size_t i = 0; i < psbtx.
tx->vout.size(); ++i) {
609std::unique_ptr<CKeyMetadata>
615 auto it = mapKeyMetadata.find(key_id);
616 if (it != mapKeyMetadata.end()) {
617 return std::make_unique<CKeyMetadata>(it->second);
622 auto it = m_script_metadata.find(
CScriptID(scriptPubKey));
623 if (it != m_script_metadata.end()) {
624 return std::make_unique<CKeyMetadata>(it->second);
640 if (nCreateTime <= 1) {
644 }
else if (!nTimeFirstKey || nCreateTime < nTimeFirstKey) {
645 nTimeFirstKey = nCreateTime;
671 bool needsDB = !encrypted_batch;
673 encrypted_batch = &batch;
677 encrypted_batch =
nullptr;
683 encrypted_batch =
nullptr;
700 mapKeyMetadata[pubkey.
GetID()]);
713 std::string strAddr =
716 "of size %i which exceeds maximum size %i thus can "
717 "never be redeemed. Do not use address %s.\n",
730 mapKeyMetadata[keyID] = meta;
737 m_script_metadata[script_id] = meta;
751 std::vector<uint8_t> vchCryptedSecret;
755 return EncryptSecret(encryption_key, vchSecret,
756 pubkey.GetHash(), vchCryptedSecret);
768 const CPubKey &vchPubKey,
const std::vector<uint8_t> &vchCryptedSecret,
769 bool checksum_valid) {
771 if (!checksum_valid) {
779 const CPubKey &vchPubKey,
const std::vector<uint8_t> &vchCryptedSecret) {
783 mapCryptedKeys[vchPubKey.
GetID()] = make_pair(vchPubKey, vchCryptedSecret);
788 const CPubKey &vchPubKey,
const std::vector<uint8_t> &vchCryptedSecret) {
794 if (encrypted_batch) {
795 return encrypted_batch->WriteCryptedKey(
796 vchPubKey, vchCryptedSecret, mapKeyMetadata[vchPubKey.
GetID()]);
801 mapKeyMetadata[vchPubKey.
GetID()]);
806 return setWatchOnly.count(dest) > 0;
811 return (!setWatchOnly.empty());
815 std::vector<std::vector<uint8_t>> solutions;
817 (pubKeyOut =
CPubKey(solutions[0])).IsFullyValid();
823 setWatchOnly.erase(dest);
826 mapWatchKeys.erase(pubKey.
GetID());
843 setWatchOnly.insert(dest);
846 mapWatchKeys[pubKey.
GetID()] = pubKey;
852 const CScript &dest) {
869 int64_t create_time) {
870 m_script_metadata[
CScriptID(dest)].nCreateTime = create_time;
880 int64_t nCreateTime) {
881 m_script_metadata[
CScriptID(dest)].nCreateTime = nCreateTime;
894 throw std::runtime_error(std::string(__func__) +
895 ": writing chain failed");
917 return mapCryptedKeys.count(address) > 0;
926 CryptedKeyMap::const_iterator mi = mapCryptedKeys.find(address);
927 if (mi != mapCryptedKeys.end()) {
928 const CPubKey &vchPubKey = (*mi).second.first;
929 const std::vector<uint8_t> &vchCryptedSecret = (*mi).second.second;
932 return DecryptKey(encryption_key, vchCryptedSecret, vchPubKey,
944 auto it = mapKeyMetadata.find(keyID);
945 if (it != mapKeyMetadata.end()) {
963 WatchKeyMap::const_iterator it = mapWatchKeys.find(address);
964 if (it != mapWatchKeys.end()) {
965 pubkey_out = it->second;
981 CryptedKeyMap::const_iterator mi = mapCryptedKeys.find(address);
982 if (mi != mapCryptedKeys.end()) {
983 vchPubKeyOut = (*mi).second.first;
1003 int64_t nCreationTime =
GetTime();
1010 batch, metadata, secret, hd_chain,
1024 mapKeyMetadata[pubkey.
GetID()] = metadata;
1028 throw std::runtime_error(std::string(__func__) +
": AddKey failed");
1052 throw std::runtime_error(std::string(__func__) +
": seed not found");
1064 accountKey.
Derive(chainChildKey,
1095 secret = childKey.
key;
1098 std::copy(master_id.
begin(), master_id.
begin() + 4,
1104 throw std::runtime_error(std::string(__func__) +
1105 ": writing HD chain model failed");
1113 set_pre_split_keypool.insert(nIndex);
1115 setInternalKeyPool.insert(nIndex);
1117 setExternalKeyPool.insert(nIndex);
1119 m_max_keypool_index = std::max(m_max_keypool_index, nIndex);
1126 if (mapKeyMetadata.count(keyid) == 0) {
1146 int64_t nCreationTime =
GetTime();
1161 mapKeyMetadata[seed.
GetID()] = metadata;
1165 throw std::runtime_error(std::string(__func__) +
1166 ": AddKeyPubKey failed");
1198 for (
const int64_t nIndex : setInternalKeyPool) {
1201 setInternalKeyPool.clear();
1203 for (
const int64_t nIndex : setExternalKeyPool) {
1206 setExternalKeyPool.clear();
1208 for (int64_t nIndex : set_pre_split_keypool) {
1211 set_pre_split_keypool.clear();
1219 WalletLogPrintf(
"LegacyScriptPubKeyMan::NewKeyPool rewrote keypool\n");
1235 unsigned int nTargetSize;
1237 nTargetSize = kpSize;
1239 nTargetSize = std::max<int64_t>(
1246 int64_t missingExternal = std::max<int64_t>(
1247 std::max<int64_t>(nTargetSize, 1) - setExternalKeyPool.size(), 0);
1248 int64_t missingInternal = std::max<int64_t>(
1249 std::max<int64_t>(nTargetSize, 1) - setInternalKeyPool.size(), 0);
1253 missingInternal = 0;
1255 bool internal =
false;
1257 for (int64_t i = missingInternal + missingExternal; i--;) {
1258 if (i < missingInternal) {
1265 if (missingInternal + missingExternal > 0) {
1267 "keypool added %d keys (%d internal), size=%u (%u internal)\n",
1268 missingInternal + missingExternal, missingInternal,
1269 setInternalKeyPool.size() + setExternalKeyPool.size() +
1270 set_pre_split_keypool.size(),
1271 setInternalKeyPool.size());
1279 const bool internal,
1283 assert(m_max_keypool_index < std::numeric_limits<int64_t>::max());
1284 int64_t index = ++m_max_keypool_index;
1286 throw std::runtime_error(std::string(__func__) +
1287 ": writing imported pubkey failed");
1290 setInternalKeyPool.insert(index);
1292 setExternalKeyPool.insert(index);
1316 setInternalKeyPool.insert(nIndex);
1317 }
else if (!set_pre_split_keypool.empty()) {
1318 set_pre_split_keypool.insert(nIndex);
1320 setExternalKeyPool.insert(nIndex);
1359 bool fRequestedInternal) {
1365 bool fReturningInternal = fRequestedInternal;
1366 fReturningInternal &=
1369 bool use_split_keypool = set_pre_split_keypool.empty();
1370 std::set<int64_t> &setKeyPool =
1372 ? (fReturningInternal ? setInternalKeyPool : setExternalKeyPool)
1373 : set_pre_split_keypool;
1376 if (setKeyPool.empty()) {
1382 auto it = setKeyPool.begin();
1384 setKeyPool.erase(it);
1385 if (!batch.
ReadPool(nIndex, keypool)) {
1386 throw std::runtime_error(std::string(__func__) +
": read failed");
1390 throw std::runtime_error(std::string(__func__) +
1391 ": unknown key in key pool");
1394 if (use_split_keypool && keypool.
fInternal != fReturningInternal) {
1395 throw std::runtime_error(std::string(__func__) +
1396 ": keypool entry misclassified");
1399 throw std::runtime_error(std::string(__func__) +
1400 ": keypool entry invalid");
1423 bool internal = setInternalKeyPool.count(keypool_id);
1425 assert(setExternalKeyPool.count(keypool_id) ||
1426 set_pre_split_keypool.count(keypool_id));
1429 std::set<int64_t> *setKeyPool =
1430 internal ? &setInternalKeyPool
1431 : (set_pre_split_keypool.empty() ? &setExternalKeyPool
1432 : &set_pre_split_keypool);
1433 auto it = setKeyPool->begin();
1436 while (it != std::end(*setKeyPool)) {
1437 const int64_t &index = *(it);
1438 if (index > keypool_id) {
1444 if (batch.
ReadPool(index, keypool)) {
1451 it = setKeyPool->erase(it);
1457 std::vector<CScript> dummy;
1461 std::vector<CKeyID> ret;
1462 for (
const auto &entry : out.
pubkeys) {
1463 ret.push_back(entry.first);
1470 for (
auto it = setExternalKeyPool.begin();
1471 it != setExternalKeyPool.end();) {
1472 int64_t index = *it;
1474 if (!batch.
ReadPool(index, keypool)) {
1475 throw std::runtime_error(std::string(__func__) +
1476 ": read keypool entry failed");
1480 throw std::runtime_error(std::string(__func__) +
1481 ": writing modified keypool entry failed");
1483 set_pre_split_keypool.insert(index);
1484 it = setExternalKeyPool.erase(it);
1494 const CScript &redeemScript) {
1510 mapKeyMetadata[pubkey.
GetID()].key_origin.fingerprint);
1511 mapKeyMetadata[pubkey.
GetID()].key_origin.path = info.
path;
1512 mapKeyMetadata[pubkey.
GetID()].has_key_origin =
true;
1518 int64_t timestamp) {
1520 for (
const auto &entry : scripts) {
1531 if (timestamp > 0) {
1532 m_script_metadata[
CScriptID(entry)].nCreateTime = timestamp;
1535 if (timestamp > 0) {
1543 const std::map<CKeyID, CKey> &privkey_map,
const int64_t timestamp) {
1545 for (
const auto &entry : privkey_map) {
1546 const CKey &key = entry.second;
1548 const CKeyID &
id = entry.first;
1556 mapKeyMetadata[id].nCreateTime = timestamp;
1567 const std::vector<CKeyID> &ordered_pubkeys,
1568 const std::map<CKeyID, CPubKey> &pubkey_map,
1569 const std::map<
CKeyID, std::pair<CPubKey, KeyOriginInfo>> &key_origins,
1570 const bool add_keypool,
const bool internal,
const int64_t timestamp) {
1572 for (
const auto &entry : key_origins) {
1575 for (
const CKeyID &
id : ordered_pubkeys) {
1576 auto entry = pubkey_map.find(
id);
1577 if (entry == pubkey_map.end()) {
1580 const CPubKey &pubkey = entry->second;
1591 mapKeyMetadata[id].nCreateTime = timestamp;
1603 const std::set<CScript> &script_pub_keys,
const bool have_solving_data,
1604 const int64_t timestamp) {
1606 for (
const CScript &script : script_pub_keys) {
1607 if (!have_solving_data || !
IsMine(script)) {
1623 std::set<CKeyID> set_address;
1624 for (
const auto &mi : mapCryptedKeys) {
1625 set_address.insert(mi.first);
1634 std::string &
error) {
1639 error =
"No addresses available";
1645 assert(m_wallet_descriptor.descriptor->IsSingleType());
1646 std::optional<OutputType> desc_addr_type =
1647 m_wallet_descriptor.descriptor->GetOutputType();
1649 if (type != *desc_addr_type) {
1650 throw std::runtime_error(std::string(__func__) +
1651 ": Types are inconsistent");
1658 std::vector<CScript> scripts_temp;
1661 error =
"Error: Keypool ran out, please call keypoolrefill first";
1664 if (!m_wallet_descriptor.descriptor->ExpandFromCache(
1665 m_wallet_descriptor.next_index, m_wallet_descriptor.cache,
1666 scripts_temp, out_keys)) {
1668 error =
"Error: Keypool ran out, please call keypoolrefill first";
1672 std::optional<OutputType> out_script_type =
1673 m_wallet_descriptor.descriptor->GetOutputType();
1674 if (out_script_type && out_script_type == type) {
1677 throw std::runtime_error(
1678 std::string(__func__) +
1679 ": Types are inconsistent. Stored type does not match type of "
1680 "newly generated address");
1682 m_wallet_descriptor.next_index++;
1691 if (m_map_script_pub_keys.count(script) > 0) {
1700 if (!m_map_keys.empty()) {
1705 bool keyPass = m_map_crypted_keys.empty();
1706 bool keyFail =
false;
1707 for (
const auto &mi : m_map_crypted_keys) {
1708 const CPubKey &pubkey = mi.second.first;
1709 const std::vector<uint8_t> &crypted_secret = mi.second.second;
1711 if (!
DecryptKey(master_key, crypted_secret, pubkey, key)) {
1720 if (keyPass && keyFail) {
1721 LogPrintf(
"The wallet is probably corrupted: Some keys decrypt but not "
1723 throw std::runtime_error(
1724 "Error unlocking wallet: some keys decrypt but not all. Your "
1725 "wallet file may be corrupt.");
1727 if (keyFail || (!keyPass && !accept_no_keys)) {
1737 if (!m_map_crypted_keys.empty()) {
1741 for (
const KeyMap::value_type &key_in : m_map_keys) {
1742 const CKey &key = key_in.second;
1745 std::vector<uint8_t> crypted_secret;
1750 m_map_crypted_keys[pubkey.
GetID()] = make_pair(pubkey, crypted_secret);
1765 index = m_wallet_descriptor.next_index - 1;
1773 if (m_wallet_descriptor.next_index - 1 == index) {
1774 m_wallet_descriptor.next_index--;
1785 for (
auto key_pair : m_map_crypted_keys) {
1786 const CPubKey &pubkey = key_pair.second.first;
1787 const std::vector<uint8_t> &crypted_secret = key_pair.second.second;
1791 return DecryptKey(encryption_key, crypted_secret, pubkey,
1794 keys[pubkey.
GetID()] = key;
1803 unsigned int target_size;
1807 target_size = std::max(
1812 int32_t new_range_end =
1813 std::max(m_wallet_descriptor.next_index + int32_t(target_size),
1814 m_wallet_descriptor.range_end);
1818 if (!m_wallet_descriptor.descriptor->IsRange()) {
1820 m_wallet_descriptor.range_end = 1;
1821 m_wallet_descriptor.range_start = 0;
1831 std::vector<CScript> scripts_temp;
1834 if (!m_wallet_descriptor.descriptor->ExpandFromCache(
1835 i, m_wallet_descriptor.cache, scripts_temp, out_keys)) {
1836 if (!m_wallet_descriptor.descriptor->Expand(
1837 i, provider, scripts_temp, out_keys, &temp_cache)) {
1842 for (
const CScript &script : scripts_temp) {
1843 m_map_script_pub_keys[script] = i;
1845 for (
const auto &pk_pair : out_keys.
pubkeys) {
1846 const CPubKey &pubkey = pk_pair.second;
1847 if (m_map_pubkeys.count(pubkey) != 0) {
1854 m_map_pubkeys[pubkey] = i;
1857 for (
const auto &parent_xpub_pair :
1860 if (m_wallet_descriptor.cache.GetCachedParentExtPubKey(
1861 parent_xpub_pair.first, xpub)) {
1862 if (xpub != parent_xpub_pair.second) {
1863 throw std::runtime_error(
1864 std::string(__func__) +
1865 ": New cached parent xpub does not match already "
1866 "cached parent xpub");
1871 parent_xpub_pair.first)) {
1872 throw std::runtime_error(std::string(__func__) +
1873 ": writing cache item failed");
1875 m_wallet_descriptor.cache.CacheParentExtPubKey(
1876 parent_xpub_pair.first, parent_xpub_pair.second);
1878 for (
const auto &derived_xpub_map_pair :
1880 for (
const auto &derived_xpub_pair : derived_xpub_map_pair.second) {
1882 if (m_wallet_descriptor.cache.GetCachedDerivedExtPubKey(
1883 derived_xpub_map_pair.first, derived_xpub_pair.first,
1885 if (xpub != derived_xpub_pair.second) {
1886 throw std::runtime_error(
1887 std::string(__func__) +
1888 ": New cached derived xpub does not match already "
1889 "cached derived xpub");
1894 derived_xpub_pair.second,
id,
1895 derived_xpub_map_pair.first, derived_xpub_pair.first)) {
1896 throw std::runtime_error(std::string(__func__) +
1897 ": writing cache item failed");
1899 m_wallet_descriptor.cache.CacheDerivedExtPubKey(
1900 derived_xpub_map_pair.first, derived_xpub_pair.first,
1901 derived_xpub_pair.second);
1906 m_wallet_descriptor.range_end = new_range_end;
1919 int32_t index = m_map_script_pub_keys[script];
1920 if (index >= m_wallet_descriptor.next_index) {
1922 "mark all keypool items up to this item as used\n",
1924 m_wallet_descriptor.next_index = index + 1;
1938 throw std::runtime_error(std::string(__func__) +
1939 ": writing descriptor private key failed");
1950 if (m_map_keys.find(pubkey.
GetID()) != m_map_keys.end() ||
1951 m_map_crypted_keys.find(pubkey.
GetID()) != m_map_crypted_keys.end()) {
1960 std::vector<uint8_t> crypted_secret;
1964 return EncryptSecret(encryption_key, secret,
1965 pubkey.GetHash(), crypted_secret);
1970 m_map_crypted_keys[pubkey.
GetID()] = make_pair(pubkey, crypted_secret);
1973 m_map_keys[pubkey.
GetID()] = key;
1984 if (m_wallet_descriptor.descriptor) {
1988 int64_t creation_time =
GetTime();
1993 std::string desc_prefix;
1994 std::string desc_suffix =
"/*)";
1995 switch (addr_type) {
1997 desc_prefix =
"pkh(" + xpub +
"/44'";
2001 assert(!desc_prefix.empty());
2005 desc_prefix +=
"/1'";
2007 desc_prefix +=
"/0'";
2010 std::string internal_path =
m_internal ?
"/1" :
"/0";
2011 std::string desc_str = desc_prefix +
"/0'" + internal_path + desc_suffix;
2016 std::unique_ptr<Descriptor> desc =
Parse(desc_str, keys,
error,
false);
2018 m_wallet_descriptor = w_desc;
2024 throw std::runtime_error(
2025 std::string(__func__) +
2026 ": writing descriptor master private key failed");
2029 throw std::runtime_error(std::string(__func__) +
2030 ": writing descriptor failed");
2042 return m_wallet_descriptor.descriptor->IsRange();
2050 return m_wallet_descriptor.descriptor->IsSingleType() &&
2051 m_wallet_descriptor.descriptor->IsRange() &&
2053 m_wallet_descriptor.next_index < m_wallet_descriptor.range_end);
2058 return m_map_keys.size() > 0 || m_map_crypted_keys.size() > 0;
2077 return m_wallet_descriptor.range_end - m_wallet_descriptor.next_index;
2082 return m_wallet_descriptor.creation_time;
2085std::unique_ptr<FlatSigningProvider>
2087 bool include_private)
const {
2091 auto it = m_map_script_pub_keys.find(script);
2092 if (it == m_map_script_pub_keys.end()) {
2095 int32_t index = it->second;
2100std::unique_ptr<FlatSigningProvider>
2105 auto it = m_map_pubkeys.find(pubkey);
2106 if (it == m_map_pubkeys.end()) {
2109 int32_t index = it->second;
2116std::unique_ptr<FlatSigningProvider>
2118 bool include_private)
const {
2121 std::unique_ptr<FlatSigningProvider> out_keys =
2122 std::make_unique<FlatSigningProvider>();
2123 std::vector<CScript> scripts_temp;
2124 if (!m_wallet_descriptor.descriptor->ExpandFromCache(
2125 index, m_wallet_descriptor.cache, scripts_temp, *out_keys)) {
2132 m_wallet_descriptor.descriptor->ExpandPrivate(index, master_provider,
2139std::unique_ptr<SigningProvider>
2151 SigHashType sighash, std::map<int, std::string> &input_errors)
const {
2152 std::unique_ptr<FlatSigningProvider> keys =
2153 std::make_unique<FlatSigningProvider>();
2154 for (
const auto &coin_pair : coins) {
2155 std::unique_ptr<FlatSigningProvider> coin_keys =
2160 *keys =
Merge(*keys, *coin_keys);
2169 std::string &str_sig)
const {
2170 std::unique_ptr<FlatSigningProvider> keys =
2177 if (!keys->GetKey(
ToKeyID(pkhash), key)) {
2190 bool bip32derivs)
const {
2191 for (
size_t i = 0; i < psbtx.
tx->vin.size(); ++i) {
2215 std::unique_ptr<FlatSigningProvider> keys =
2216 std::make_unique<FlatSigningProvider>();
2217 std::unique_ptr<FlatSigningProvider> script_keys =
2220 *keys =
Merge(*keys, *script_keys);
2223 script_keys = std::make_unique<FlatSigningProvider>();
2225 const CPubKey &pubkey = pk_pair.first;
2226 std::unique_ptr<FlatSigningProvider> pk_keys =
2229 *keys =
Merge(*keys, *pk_keys);
2235 psbtx, i, sighash_type);
2240 for (
size_t i = 0; i < psbtx.
tx->vout.size(); ++i) {
2241 std::unique_ptr<SigningProvider> keys =
2253std::unique_ptr<CKeyMetadata>
2255 std::unique_ptr<SigningProvider> provider =
2260 if (provider->GetKeyOrigin(key_id, orig)) {
2262 std::unique_ptr<CKeyMetadata> meta =
2263 std::make_unique<CKeyMetadata>();
2264 meta->key_origin = orig;
2265 meta->has_key_origin =
true;
2266 meta->nCreateTime = m_wallet_descriptor.creation_time;
2275 std::string desc_str = m_wallet_descriptor.descriptor->ToString();
2278 .
Write((uint8_t *)desc_str.data(), desc_str.size())
2289 m_wallet_descriptor.cache = cache;
2290 for (int32_t i = m_wallet_descriptor.range_start;
2291 i < m_wallet_descriptor.range_end; ++i) {
2293 std::vector<CScript> scripts_temp;
2294 if (!m_wallet_descriptor.descriptor->ExpandFromCache(
2295 i, m_wallet_descriptor.cache, scripts_temp, out_keys)) {
2296 throw std::runtime_error(
2297 "Error: Unable to expand wallet descriptor from cache");
2300 for (
const CScript &script : scripts_temp) {
2301 if (m_map_script_pub_keys.count(script) != 0) {
2302 throw std::runtime_error(
2303 strprintf(
"Error: Already loaded script at index %d as "
2304 "being at index %d",
2305 i, m_map_script_pub_keys[script]));
2307 m_map_script_pub_keys[script] = i;
2309 for (
const auto &pk_pair : out_keys.
pubkeys) {
2310 const CPubKey &pubkey = pk_pair.second;
2311 if (m_map_pubkeys.count(pubkey) != 0) {
2318 m_map_pubkeys[pubkey] = i;
2326 m_map_keys[key_id] = key;
2332 const std::vector<uint8_t> &crypted_key) {
2334 if (!m_map_keys.empty()) {
2338 m_map_crypted_keys[key_id] = make_pair(pubkey, crypted_key);
2345 return m_wallet_descriptor.descriptor !=
nullptr &&
2347 m_wallet_descriptor.descriptor->ToString() ==
2355 throw std::runtime_error(std::string(__func__) +
2356 ": writing descriptor failed");
2361 return m_wallet_descriptor;
2366 std::vector<CScript> script_pub_keys;
2367 script_pub_keys.reserve(m_map_script_pub_keys.size());
2369 for (
auto const &script_pub_key : m_map_script_pub_keys) {
2370 script_pub_keys.push_back(script_pub_key.first);
2372 return script_pub_keys;
2380 throw std::runtime_error(std::string(__func__) +
": " +
error);
2383 m_map_pubkeys.clear();
2384 m_map_script_pub_keys.clear();
2386 m_wallet_descriptor = descriptor;
2393 error =
"can only update matching descriptor";
2397 if (descriptor.
range_start > m_wallet_descriptor.range_start ||
2398 descriptor.
range_end < m_wallet_descriptor.range_end) {
2400 error =
strprintf(
"new range must include current range = [%d,%d]",
2401 m_wallet_descriptor.range_start,
2402 m_wallet_descriptor.range_end - 1);
bool ParseHDKeypath(const std::string &keypath_str, std::vector< uint32_t > &keypath)
Parse an HD keypaths like "m/7/0'/2000".
std::string WriteHDKeypath(const std::vector< uint32_t > &keypath)
Write HD keypaths as strings.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
bool IsTestChain() const
If this chain is exclusively used for testing.
static const int VERSION_HD_BASE
uint32_t nInternalChainCounter
CKeyID seed_id
seed hash160
static const int VERSION_HD_CHAIN_SPLIT
uint32_t nExternalChainCounter
An encapsulated secp256k1 private key.
const uint8_t * begin() const
CPrivKey GetPrivKey() const
Convert the private key to a CPrivKey (serialized OpenSSL private key data).
void MakeNewKey(bool fCompressed)
Generate a new private key using a cryptographic PRNG.
CPubKey GetPubKey() const
Compute the public key from a private key.
bool VerifyPubKey(const CPubKey &vchPubKey) const
Verify thoroughly whether a private key and a public key match.
const uint8_t * end() const
A reference to a CKey: the Hash160 of its serialized public key.
A key from a CWallet's keypool.
bool fInternal
Whether this keypool entry is in the internal keypool (for change outputs)
CPubKey vchPubKey
The public key.
int64_t nTime
The time at which the key was generated. Set in AddKeypoolPubKeyWithDB.
bool m_pre_split
Whether this key was generated for a keypool before the wallet was upgraded to HD-split.
A mutable version of CTransaction.
An encapsulated public key.
CKeyID GetID() const
Get the KeyID of this public key (hash of its serialization)
uint256 GetHash() const
Get the 256-bit hash of this public key.
A hasher class for SHA-256.
CSHA256 & Write(const uint8_t *data, size_t len)
void Finalize(uint8_t hash[OUTPUT_SIZE])
A reference to a CScript: the Hash160 of its serialization (see script.h)
Cache for single descriptor's derived extended pubkeys.
const ExtPubKeyMap GetCachedParentExtPubKeys() const
Retrieve all cached parent xpubs.
const std::unordered_map< uint32_t, ExtPubKeyMap > GetCachedDerivedExtPubKeys() const
Retrieve all cached derived xpubs.
int64_t GetOldestKeyPoolTime() const override
void ReturnDestination(int64_t index, bool internal, const CTxDestination &addr) override
bool AddKey(const CKeyID &key_id, const CKey &key)
void MarkUnusedAddresses(const CScript &script) override
Mark unused addresses as being used.
bool HavePrivateKeys() const override
bool AddCryptedKey(const CKeyID &key_id, const CPubKey &pubkey, const std::vector< uint8_t > &crypted_key)
SigningResult SignMessage(const std::string &message, const PKHash &pkhash, std::string &str_sig) const override
Sign a message with the given script.
bool CanUpdateToWalletDescriptor(const WalletDescriptor &descriptor, std::string &error)
TransactionError FillPSBT(PartiallySignedTransaction &psbt, SigHashType sighash_type=SigHashType().withForkId(), bool sign=true, bool bip32derivs=false) const override
Adds script and derivation path information to a PSBT, and optionally signs it.
bool TopUp(unsigned int size=0) override
Fills internal address pool.
void SetInternal(bool internal) override
std::unique_ptr< SigningProvider > GetSolvingProvider(const CScript &script) const override
bool HasWalletDescriptor(const WalletDescriptor &desc) const
int64_t GetTimeFirstKey() const override
bool CanProvide(const CScript &script, SignatureData &sigdata) override
Whether this ScriptPubKeyMan can provide a SigningProvider (via GetSolvingProvider) that,...
bool GetReservedDestination(const OutputType type, bool internal, CTxDestination &address, int64_t &index, CKeyPool &keypool) override
bool GetNewDestination(const OutputType type, CTxDestination &dest, std::string &error) override
RecursiveMutex cs_desc_man
unsigned int GetKeyPoolSize() const override
bool SetupDescriptorGeneration(const CExtKey &master_key, OutputType addr_type)
Setup descriptors based on the given CExtkey.
void AddDescriptorKey(const CKey &key, const CPubKey &pubkey)
std::unique_ptr< CKeyMetadata > GetMetadata(const CTxDestination &dest) const override
size_t KeypoolCountExternalKeys() const override
int32_t m_max_cached_index
bool SignTransaction(CMutableTransaction &tx, const std::map< COutPoint, Coin > &coins, SigHashType sighash, std::map< int, std::string > &input_errors) const override
Creates new signatures and adds them to the transaction.
bool m_decryption_thoroughly_checked
keeps track of whether Unlock has run a thorough check before
KeyMap GetKeys() const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man)
std::unique_ptr< FlatSigningProvider > GetSigningProvider(const CScript &script, bool include_private=false) const
const std::vector< CScript > GetScriptPubKeys() const
std::map< CKeyID, CKey > KeyMap
bool Encrypt(const CKeyingMaterial &master_key, WalletBatch *batch) override
bool AddDescriptorKeyWithDB(WalletBatch &batch, const CKey &key, const CPubKey &pubkey) EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man)
void UpdateWalletDescriptor(WalletDescriptor &descriptor)
void SetCache(const DescriptorCache &cache)
uint256 GetID() const override
const WalletDescriptor GetWalletDescriptor() const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man)
isminetype IsMine(const CScript &script) const override
bool CheckDecryptionKey(const CKeyingMaterial &master_key, bool accept_no_keys=false) override
Check that the given decryption key is valid for this ScriptPubKeyMan, i.e.
bool IsHDEnabled() const override
bool CanGetAddresses(bool internal=false) const override
Returns true if the wallet can give out new addresses.
virtual bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey)
virtual bool GetPubKey(const CKeyID &address, CPubKey &vchPubKeyOut) const override
virtual bool GetCScript(const CScriptID &hash, CScript &redeemScriptOut) const override
virtual bool GetKey(const CKeyID &address, CKey &keyOut) const override
virtual bool AddCScript(const CScript &redeemScript)
virtual std::set< CKeyID > GetKeys() const
std::map< CKeyID, CKey > KeyMap
virtual bool HaveCScript(const CScriptID &hash) const override
RecursiveMutex cs_KeyStore
virtual bool HaveKey(const CKeyID &address) const override
bool GetKeyOrigin(const CKeyID &keyid, KeyOriginInfo &info) const override
std::map< int64_t, CKeyID > m_index_to_reserved_key
void UpgradeKeyMetadata()
Upgrade stored CKeyMetadata objects to store key origin info as KeyOriginInfo.
bool AddCryptedKeyInner(const CPubKey &vchPubKey, const std::vector< uint8_t > &vchCryptedSecret)
bool fDecryptionThoroughlyChecked
keeps track of whether Unlock has run a thorough check before
int64_t GetOldestKeyPoolTime() const override
bool GetReservedDestination(const OutputType type, bool internal, CTxDestination &address, int64_t &index, CKeyPool &keypool) override
uint256 GetID() const override
bool LoadWatchOnly(const CScript &dest)
Adds a watch-only address to the store, without saving it to disk (used by LoadWallet)
std::unique_ptr< SigningProvider > GetSolvingProvider(const CScript &script) const override
void MarkUnusedAddresses(const CScript &script) override
Mark unused addresses as being used.
bool HaveWatchOnly() const
Returns whether there are any watch-only things in the wallet.
bool RemoveWatchOnly(const CScript &dest)
Remove a watch only script from the keystore.
bool GetNewDestination(const OutputType type, CTxDestination &dest, std::string &error) override
bool AddWatchOnlyInMem(const CScript &dest)
void UpdateTimeFirstKey(int64_t nCreateTime) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
Update wallet first key creation time.
void AddKeypoolPubkeyWithDB(const CPubKey &pubkey, const bool internal, WalletBatch &batch)
size_t KeypoolCountExternalKeys() const override
void ReturnDestination(int64_t index, bool internal, const CTxDestination &) override
void SetHDSeed(const CPubKey &key)
bool LoadCryptedKey(const CPubKey &vchPubKey, const std::vector< uint8_t > &vchCryptedSecret, bool checksum_valid)
Adds an encrypted key to the store, without saving it to disk (used by LoadWallet)
std::unordered_map< CKeyID, CHDChain, SaltedSipHasher > m_inactive_hd_chains
bool GetKey(const CKeyID &address, CKey &keyOut) const override
void LearnAllRelatedScripts(const CPubKey &key)
Same as LearnRelatedScripts, but when the OutputType is not known (and could be anything).
bool Encrypt(const CKeyingMaterial &master_key, WalletBatch *batch) override
isminetype IsMine(const CScript &script) const override
bool ImportScripts(const std::set< CScript > scripts, int64_t timestamp) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
std::unique_ptr< CKeyMetadata > GetMetadata(const CTxDestination &dest) const override
bool HaveKey(const CKeyID &address) const override
bool ImportPrivKeys(const std::map< CKeyID, CKey > &privkey_map, const int64_t timestamp) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
bool TopUpInactiveHDChain(const CKeyID seed_id, int64_t index, bool internal)
Like TopUp() but adds keys for inactive HD chains.
bool CanGetAddresses(bool internal=false) const override
Returns true if the wallet can give out new addresses.
bool AddKeyPubKeyInner(const CKey &key, const CPubKey &pubkey)
void AddHDChain(const CHDChain &chain)
Set the HD chain model (chain child index counters) and writes it to the database.
bool CheckDecryptionKey(const CKeyingMaterial &master_key, bool accept_no_keys=false) override
Check that the given decryption key is valid for this ScriptPubKeyMan, i.e.
bool CanGenerateKeys() const
void LoadKeyPool(int64_t nIndex, const CKeyPool &keypool)
Load a keypool entry.
bool AddCryptedKey(const CPubKey &vchPubKey, const std::vector< uint8_t > &vchCryptedSecret)
Adds an encrypted key to the store, and saves it to disk.
bool Upgrade(int prev_version, bilingual_str &error) override
Upgrades the wallet to the specified version.
bool IsHDEnabled() const override
bool AddWatchOnlyWithDB(WalletBatch &batch, const CScript &dest) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
bool LoadKey(const CKey &key, const CPubKey &pubkey)
Adds a key to the store, without saving it to disk (used by LoadWallet)
bool ImportPubKeys(const std::vector< CKeyID > &ordered_pubkeys, const std::map< CKeyID, CPubKey > &pubkey_map, const std::map< CKeyID, std::pair< CPubKey, KeyOriginInfo > > &key_origins, const bool add_keypool, const bool internal, const int64_t timestamp) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
bool AddKeyOriginWithDB(WalletBatch &batch, const CPubKey &pubkey, const KeyOriginInfo &info)
Add a KeyOriginInfo to the wallet.
bool AddWatchOnly(const CScript &dest) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
Private version of AddWatchOnly method which does not accept a timestamp, and which will reset the wa...
bool TopUp(unsigned int size=0) override
Fills internal address pool.
void LoadKeyMetadata(const CKeyID &keyID, const CKeyMetadata &metadata)
Load metadata (used by LoadWallet)
void MarkReserveKeysAsUsed(int64_t keypool_id) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
Marks all keys in the keypool up to and including reserve_key as used.
void LoadHDChain(const CHDChain &chain)
Load a HD chain model (used by LoadWallet)
bool GetPubKey(const CKeyID &address, CPubKey &vchPubKeyOut) const override
void AddInactiveHDChain(const CHDChain &chain)
bool GetWatchPubKey(const CKeyID &address, CPubKey &pubkey_out) const
Fetches a pubkey from mapWatchKeys if it exists there.
TransactionError FillPSBT(PartiallySignedTransaction &psbt, SigHashType sighash_type=SigHashType().withForkId(), bool sign=true, bool bip32derivs=false) const override
Adds script and derivation path information to a PSBT, and optionally signs it.
void LearnRelatedScripts(const CPubKey &key, OutputType)
Explicitly make the wallet learn the related scripts for outputs to the given key.
bool NewKeyPool()
Mark old keypool keys as used, and generate all new keys.
bool ReserveKeyFromKeyPool(int64_t &nIndex, CKeyPool &keypool, bool fRequestedInternal)
Reserves a key from the keypool and sets nIndex to its index.
std::set< CKeyID > GetKeys() const override
void KeepDestination(int64_t index, const OutputType &type) override
bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey) override
Adds a key to the store, and saves it to disk.
CPubKey GenerateNewKey(WalletBatch &batch, CHDChain &hd_chain, bool internal=false) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
Generate a new key.
void MarkPreSplitKeys() EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
unsigned int GetKeyPoolSize() const override
bool HavePrivateKeys() const override
bool HaveWatchOnly(const CScript &dest) const
Returns whether the watch-only script is in the wallet.
void SetInternal(bool internal) override
bool SetupGeneration(bool force=false) override
Sets up the key generation stuff, i.e.
CPubKey GenerateNewSeed()
bool ImportScriptPubKeys(const std::set< CScript > &script_pub_keys, const bool have_solving_data, const int64_t timestamp) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
bool AddKeyPubKeyWithDB(WalletBatch &batch, const CKey &key, const CPubKey &pubkey) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
Adds a key to the store, and saves it to disk.
void RewriteDB() override
The action to do when the DB needs rewrite.
CPubKey DeriveNewSeed(const CKey &key)
bool CanProvide(const CScript &script, SignatureData &sigdata) override
Whether this ScriptPubKeyMan can provide a SigningProvider (via GetSolvingProvider) that,...
int64_t GetTimeFirstKey() const override
bool SignTransaction(CMutableTransaction &tx, const std::map< COutPoint, Coin > &coins, SigHashType sighash, std::map< int, std::string > &input_errors) const override
Creates new signatures and adds them to the transaction.
void LoadScriptMetadata(const CScriptID &script_id, const CKeyMetadata &metadata)
SigningResult SignMessage(const std::string &message, const PKHash &pkhash, std::string &str_sig) const override
Sign a message with the given script.
bool LoadCScript(const CScript &redeemScript)
Adds a CScript to the store.
bool AddCScript(const CScript &redeemScript) override
bool AddCScriptWithDB(WalletBatch &batch, const CScript &script)
Adds a script to the store and saves it to disk.
std::map< CKeyID, int64_t > m_pool_key_to_index
bool GetKeyFromPool(CPubKey &key, const OutputType type, bool internal=false)
Fetches a key from the keypool.
void DeriveNewChildKey(WalletBatch &batch, CKeyMetadata &metadata, CKey &secret, CHDChain &hd_chain, bool internal=false) EXCLUSIVE_LOCKS_REQUIRED(cs_KeyStore)
WalletStorage & m_storage
boost::signals2::signal< void()> NotifyCanGetAddressesChanged
Keypool has new keys.
boost::signals2::signal< void(bool fHaveWatchOnly)> NotifyWatchonlyChanged
Watch-only address added.
void WalletLogPrintf(std::string fmt, Params... parameters) const
Prepends the wallet name in logging output to ease debugging in multi-wallet use cases.
Signature hash type wrapper class.
uint32_t getRawSigHashType() const
An interface to be implemented by keystores that support signing.
Access to the wallet database.
bool WriteDescriptor(const uint256 &desc_id, const WalletDescriptor &descriptor)
bool WriteDescriptorDerivedCache(const CExtPubKey &xpub, const uint256 &desc_id, uint32_t key_exp_index, uint32_t der_index)
bool ErasePool(int64_t nPool)
bool WriteDescriptorParentCache(const CExtPubKey &xpub, const uint256 &desc_id, uint32_t key_exp_index)
bool WriteCScript(const uint160 &hash, const CScript &redeemScript)
bool EraseWatchOnly(const CScript &script)
bool WriteDescriptorKey(const uint256 &desc_id, const CPubKey &pubkey, const CPrivKey &privkey)
bool ReadPool(int64_t nPool, CKeyPool &keypool)
bool WriteKey(const CPubKey &vchPubKey, const CPrivKey &vchPrivKey, const CKeyMetadata &keyMeta)
bool WriteHDChain(const CHDChain &chain)
write the hdchain model (external chain child index counter)
bool WriteKeyMetadata(const CKeyMetadata &meta, const CPubKey &pubkey, const bool overwrite)
bool WriteWatchOnly(const CScript &script, const CKeyMetadata &keymeta)
bool WritePool(int64_t nPool, const CKeyPool &keypool)
bool WriteCryptedKey(const CPubKey &vchPubKey, const std::vector< uint8_t > &vchCryptedSecret, const CKeyMetadata &keyMeta)
bool WriteCryptedDescriptorKey(const uint256 &desc_id, const CPubKey &pubkey, const std::vector< uint8_t > &secret)
Descriptor with some wallet metadata.
std::shared_ptr< Descriptor > descriptor
virtual bool IsWalletFlagSet(uint64_t) const =0
virtual bool HasEncryptionKeys() const =0
virtual bool WithEncryptionKey(const std::function< bool(const CKeyingMaterial &)> &cb) const =0
Pass the encryption key to cb().
virtual WalletDatabase & GetDatabase()=0
virtual bool IsLocked() const =0
virtual void UnsetBlankWalletFlag(WalletBatch &)=0
virtual void SetMinVersion(enum WalletFeature, WalletBatch *=nullptr, bool=false)=0
virtual const CChainParams & GetChainParams() const =0
virtual bool CanSupportFeature(enum WalletFeature) const =0
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
const Config & GetConfig()
bool DecryptKey(const CKeyingMaterial &vMasterKey, const std::vector< uint8_t > &vchCryptedSecret, const CPubKey &vchPubKey, CKey &key)
bool EncryptSecret(const CKeyingMaterial &vMasterKey, const CKeyingMaterial &vchPlaintext, const uint256 &nIV, std::vector< uint8_t > &vchCiphertext)
std::vector< uint8_t, secure_allocator< uint8_t > > CKeyingMaterial
std::unique_ptr< Descriptor > InferDescriptor(const CScript &script, const SigningProvider &provider)
Find a descriptor for the specified script, using information from provider where possible.
uint160 Hash160(const T1 &in1)
Compute the 160-bit hash an object.
isminetype
IsMine() return codes.
std::string EncodeDestination(const CTxDestination &dest, const Config &config)
std::string EncodeExtPubKey(const CExtPubKey &key)
bool error(const char *fmt, const Args &...args)
bool MessageSign(const CKey &privkey, const std::string &message, std::string &signature)
Sign a message.
@ PRIVATE_KEY_NOT_AVAILABLE
CTxDestination GetDestinationForKey(const CPubKey &key, OutputType type)
Get a destination of the requested type (if possible) to the specified key.
void UpdatePSBTOutput(const SigningProvider &provider, PartiallySignedTransaction &psbt, int index)
Updates a PSBTOutput with information from provider.
bool PSBTInputSigned(const PSBTInput &input)
Checks whether a PSBTInput is already signed.
bool SignPSBTInput(const SigningProvider &provider, PartiallySignedTransaction &psbt, int index, SigHashType sighash, SignatureData *out_sigdata, bool use_dummy)
Signs a PSBTInput, verifying that all provided data matches what is being signed.
void SignTransaction(CMutableTransaction &mtx, const SigningProvider *keystore, const std::map< COutPoint, Coin > &coins, const UniValue &hashType, UniValue &result)
Sign a transaction with the given keystore and previous transactions.
static const unsigned int MAX_SCRIPT_ELEMENT_SIZE
std::vector< uint8_t > valtype
static bool ExtractPubKey(const CScript &dest, CPubKey &pubKeyOut)
std::vector< CKeyID > GetAffectedKeys(const CScript &spk, const SigningProvider &provider)
const uint32_t BIP32_HARDENED_KEY_LIMIT
Value for the first BIP 32 hardened derivation.
static int64_t GetOldestKeyTimeInPool(const std::set< int64_t > &setKeyPool, WalletBatch &batch)
static const unsigned int DEFAULT_KEYPOOL_SIZE
Default for -keypool.
std::vector< uint8_t > valtype
bool ProduceSignature(const SigningProvider &provider, const BaseSignatureCreator &creator, const CScript &fromPubKey, SignatureData &sigdata)
Produce a script signature using a generic signature creator.
const BaseSignatureCreator & DUMMY_SIGNATURE_CREATOR
A signature creator that just produces 71-byte empty signatures.
const SigningProvider & DUMMY_SIGNING_PROVIDER
FlatSigningProvider Merge(const FlatSigningProvider &a, const FlatSigningProvider &b)
CKeyID GetKeyForDestination(const SigningProvider &store, const CTxDestination &dest)
Return the CKeyID of the key involved in a script (if there is a unique one).
bool ExtractDestination(const CScript &scriptPubKey, CTxDestination &addressRet)
Parse a standard scriptPubKey for the destination address.
TxoutType Solver(const CScript &scriptPubKey, std::vector< std::vector< uint8_t > > &vSolutionsRet)
Parse a scriptPubKey and identify script type for standard scripts.
CScript GetScriptForRawPubKey(const CPubKey &pubKey)
Generate a P2PK script for the given pubkey.
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
CKeyID ToKeyID(const PKHash &key_hash)
std::variant< CNoDestination, PKHash, ScriptHash > CTxDestination
A txout script template with a specific destination.
std::string ToString(const T &t)
Locale-independent version of std::to_string.
CExtPubKey Neuter() const
bool Derive(CExtKey &out, unsigned int nChild) const
void SetSeed(Span< const std::byte > seed)
std::map< CKeyID, CPubKey > pubkeys
std::map< CKeyID, CKey > keys
std::vector< uint32_t > path
uint8_t fingerprint[4]
First 32 bits of the Hash160 of the public key at the root of the path.
A version of CTransaction with the PSBT format.
std::vector< PSBTInput > inputs
std::optional< CMutableTransaction > tx
std::map< CKeyID, SigPair > signatures
BIP 174 style partial signatures for the input.
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
bilingual_str _(const char *psz)
Translation function.
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
@ WALLET_FLAG_DISABLE_PRIVATE_KEYS
@ WALLET_FLAG_KEY_ORIGIN_METADATA
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
@ WALLET_FLAG_BLANK_WALLET
Flag set when a wallet contains no HD seed and no private keys, scripts, addresses,...
@ FEATURE_PRE_SPLIT_KEYPOOL