Monero
Loading...
Searching...
No Matches
wallet2.h
Go to the documentation of this file.
1// Copyright (c) 2014-2022, The Monero Project
2//
3// All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without modification, are
6// permitted provided that the following conditions are met:
7//
8// 1. Redistributions of source code must retain the above copyright notice, this list of
9// conditions and the following disclaimer.
10//
11// 2. Redistributions in binary form must reproduce the above copyright notice, this list
12// of conditions and the following disclaimer in the documentation and/or other
13// materials provided with the distribution.
14//
15// 3. Neither the name of the copyright holder nor the names of its contributors may be
16// used to endorse or promote products derived from this software without specific
17// prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30
31#pragma once
32
33#include <memory>
34#include <unordered_set>
35
36#include <boost/program_options/options_description.hpp>
37#include <boost/program_options/variables_map.hpp>
38#if BOOST_VERSION >= 107400
39#include <boost/serialization/library_version_type.hpp>
40#endif
41#include <boost/serialization/list.hpp>
42#include <boost/serialization/vector.hpp>
43#include <boost/serialization/deque.hpp>
44#include <boost/thread/lock_guard.hpp>
45#include <atomic>
46#include <random>
47
48#include "include_base_utils.h"
52#include "net/http.h"
58#include "common/util.h"
59#include "crypto/chacha.h"
60#include "crypto/hash.h"
61#include "ringct/rctTypes.h"
62#include "ringct/rctOps.h"
66#include "serialization/pair.h"
67#include "serialization/tuple.h"
69
70#include "wallet_errors.h"
71#include "common/password.h"
72#include "node_rpc_proxy.h"
73#include "message_store.h"
74#include "wallet_light_rpc.h"
75#include "wallet_rpc_helpers.h"
76
77#undef MONERO_DEFAULT_LOG_CATEGORY
78#define MONERO_DEFAULT_LOG_CATEGORY "wallet.wallet2"
79
80#define THROW_ON_RPC_RESPONSE_ERROR(r, error, res, method, ...) \
81 do { \
82 handle_payment_changes(res, std::integral_constant<bool, HasCredits<decltype(res)>::Has>()); \
83 throw_on_rpc_response_error(r, error, res.status, method); \
84 THROW_WALLET_EXCEPTION_IF(res.status != CORE_RPC_STATUS_OK, ## __VA_ARGS__); \
85 } while(0)
86
87#define THROW_ON_RPC_RESPONSE_ERROR_GENERIC(r, err, res, method) \
88 THROW_ON_RPC_RESPONSE_ERROR(r, err, res, method, tools::error::wallet_generic_rpc_error, method, res.status)
89
90class Serialization_portability_wallet_Test;
92
93namespace tools
94{
95 class ringdb;
96 class wallet2;
97 class Notify;
98
100 {
101 public:
102 uint64_t pick();
103 gamma_picker(const std::vector<uint64_t> &rct_offsets);
104 gamma_picker(const std::vector<uint64_t> &rct_offsets, double shape, double scale);
106
107 private:
109 {
111 static constexpr result_type min() { return 0; }
112 static constexpr result_type max() { return std::numeric_limits<result_type>::max(); }
115
116private:
117 std::gamma_distribution<double> gamma;
118 const std::vector<uint64_t> &rct_offsets;
122 };
123
125 {
126 public:
127 wallet_keys_unlocker(wallet2 &w, const boost::optional<tools::password_container> &password);
130 private:
132 bool locked;
133 crypto::chacha_key key;
134 static boost::mutex lockers_lock;
135 static unsigned int lockers;
136 };
137
139 {
140 public:
141 // Full wallet callbacks
142 virtual void on_new_block(uint64_t height, const cryptonote::block& block) {}
143 virtual void on_reorg(uint64_t height, uint64_t blocks_detached, size_t transfers_detached) {}
144 virtual void on_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, uint64_t burnt, const cryptonote::subaddress_index& subaddr_index, bool is_change, uint64_t unlock_time) {}
145 virtual void on_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index) {}
146 virtual void on_money_spent(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& in_tx, uint64_t amount, const cryptonote::transaction& spend_tx, const cryptonote::subaddress_index& subaddr_index) {}
147 virtual void on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx) {}
148 virtual boost::optional<epee::wipeable_string> on_get_password(const char *reason) { return boost::none; }
149 // Light wallet callbacks
150 virtual void on_lw_new_block(uint64_t height) {}
151 virtual void on_lw_money_received(uint64_t height, const crypto::hash &txid, uint64_t amount) {}
152 virtual void on_lw_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, uint64_t amount) {}
153 virtual void on_lw_money_spent(uint64_t height, const crypto::hash &txid, uint64_t amount) {}
154 // Device callbacks
156 virtual void on_device_button_pressed() {}
157 virtual boost::optional<epee::wipeable_string> on_device_pin_request() { return boost::none; }
158 virtual boost::optional<epee::wipeable_string> on_device_passphrase_request(bool & on_device) { on_device = true; return boost::none; }
159 virtual void on_device_progress(const hw::device_progress& event) {};
160 // Common callbacks
161 virtual void on_pool_tx_removed(const crypto::hash &txid) {}
163 };
164
166 {
167 public:
169 void on_button_request(uint64_t code=0) override;
170 void on_button_pressed() override;
171 boost::optional<epee::wipeable_string> on_pin_request() override;
172 boost::optional<epee::wipeable_string> on_passphrase_request(bool & on_device) override;
173 void on_progress(const hw::device_progress& event) override;
174 private:
176 };
177
179 {
183
184 tx_dust_policy(uint64_t a_dust_threshold = 0, bool an_add_to_fee = true, cryptonote::account_public_address an_addr_for_dust = cryptonote::account_public_address())
185 : dust_threshold(a_dust_threshold)
186 , add_to_fee(an_add_to_fee)
187 , addr_for_dust(an_addr_for_dust)
188 {
189 }
190 };
191
193 {
194 public:
195 hashchain(): m_genesis(crypto::null_hash), m_offset(0) {}
196
197 size_t size() const { return m_blockchain.size() + m_offset; }
198 size_t offset() const { return m_offset; }
199 const crypto::hash &genesis() const { return m_genesis; }
200 void push_back(const crypto::hash &hash) { if (m_offset == 0 && m_blockchain.empty()) m_genesis = hash; m_blockchain.push_back(hash); }
201 bool is_in_bounds(size_t idx) const { return idx >= m_offset && idx < size(); }
202 const crypto::hash &operator[](size_t idx) const { return m_blockchain[idx - m_offset]; }
203 crypto::hash &operator[](size_t idx) { return m_blockchain[idx - m_offset]; }
204 void crop(size_t height) { m_blockchain.resize(height - m_offset); }
205 void clear() { m_offset = 0; m_blockchain.clear(); }
206 bool empty() const { return m_blockchain.empty() && m_offset == 0; }
207 void trim(size_t height) { while (height > m_offset && m_blockchain.size() > 1) { m_blockchain.pop_front(); ++m_offset; } m_blockchain.shrink_to_fit(); }
208 void refill(const crypto::hash &hash) { m_blockchain.push_back(hash); --m_offset; }
209
210 template <class t_archive>
211 inline void serialize(t_archive &a, const unsigned int ver)
212 {
213 a & m_offset;
214 a & m_genesis;
215 a & m_blockchain;
216 }
217
224
225 private:
226 size_t m_offset;
228 std::deque<crypto::hash> m_blockchain;
229 };
230
233 {
234 friend class ::Serialization_portability_wallet_Test;
235 friend class ::wallet_accessor_test;
238 public:
239 static constexpr const std::chrono::seconds rpc_timeout = std::chrono::minutes(3) + std::chrono::seconds(30);
240
247
253
259
265
266 static BackgroundSyncType background_sync_type_from_str(const std::string &background_sync_type_str)
267 {
268 if (background_sync_type_str == "off") return BackgroundSyncOff;
269 if (background_sync_type_str == "reuse-wallet-password") return BackgroundSyncReusePassword;
270 if (background_sync_type_str == "custom-background-password") return BackgroundSyncCustomPassword;
271 throw std::logic_error("Unknown background sync type");
272 };
273
277 };
278
279 static const char* tr(const char* str);
280
281 static bool has_testnet_option(const boost::program_options::variables_map& vm);
282 static bool has_stagenet_option(const boost::program_options::variables_map& vm);
283 static std::string device_name_option(const boost::program_options::variables_map& vm);
284 static std::string device_derivation_path_option(const boost::program_options::variables_map &vm);
285 static void init_options(boost::program_options::options_description& desc_params);
286
288 static std::pair<std::unique_ptr<wallet2>, password_container> make_from_json(const boost::program_options::variables_map& vm, bool unattended, const std::string& json_file, const std::function<boost::optional<password_container>(const char *, bool)> &password_prompter);
289
291 static std::pair<std::unique_ptr<wallet2>, password_container>
292 make_from_file(const boost::program_options::variables_map& vm, bool unattended, const std::string& wallet_file, const std::function<boost::optional<password_container>(const char *, bool)> &password_prompter);
293
295 static std::pair<std::unique_ptr<wallet2>, password_container> make_new(const boost::program_options::variables_map& vm, bool unattended, const std::function<boost::optional<password_container>(const char *, bool)> &password_prompter);
296
298 static std::unique_ptr<wallet2> make_dummy(const boost::program_options::variables_map& vm, bool unattended, const std::function<boost::optional<password_container>(const char *, bool)> &password_prompter);
299
300 static bool verify_password(const std::string& keys_file_name, const epee::wipeable_string& password, bool no_spend_key, hw::device &hwdev, uint64_t kdf_rounds)
301 {
303 return verify_password(keys_file_name, password, no_spend_key, hwdev, kdf_rounds, spend_key);
304 };
305 static bool verify_password(const std::string& keys_file_name, const epee::wipeable_string& password, bool no_spend_key, hw::device &hwdev, uint64_t kdf_rounds, crypto::secret_key &spend_key_out);
306 static bool query_device(hw::device::device_type& device_type, const std::string& keys_file_name, const epee::wipeable_string& password, uint64_t kdf_rounds = 1);
307
308 wallet2(cryptonote::network_type nettype = cryptonote::MAINNET, uint64_t kdf_rounds = 1, bool unattended = false, std::unique_ptr<epee::net_utils::http::http_client_factory> http_client_factory = std::unique_ptr<epee::net_utils::http::http_client_factory>(new net::http::client_factory()));
309 ~wallet2();
310
312 {
313 struct LR
314 {
317
319 FIELD(m_L)
320 FIELD(m_R)
322 };
323
324 crypto::public_key m_signer;
326 std::vector<crypto::key_image> m_partial_key_images; // one per key the participant has
327
330 FIELD(m_LR)
333 };
334
347
349 {
358 crypto::key_image m_key_image; //TODO: key_image stored twice :(
361 bool m_rct;
363 bool m_key_image_request; // view wallets: we want to request it; cold wallets: it was requested
367 std::vector<rct::key> m_multisig_k;
368 std::vector<multisig_info> m_multisig_info; // one per other participant
369 std::vector<std::pair<uint64_t, crypto::hash>> m_uses;
370
371 bool is_rct() const { return m_rct; }
372 uint64_t amount() const { return m_amount; }
374 crypto::public_key output_public_key;
376 error::wallet_internal_error, "Too few outputs, outputs may be corrupted");
377 THROW_WALLET_EXCEPTION_IF(!get_output_public_key(m_tx.vout[m_internal_output_index], output_public_key),
378 error::wallet_internal_error, "Unable to get output public key from output");
379 return output_public_key;
380 };
381
383 FIELD(m_block_height)
384 FIELD(m_tx)
385 FIELD(m_txid)
386 FIELD(m_internal_output_index)
387 FIELD(m_global_output_index)
388 FIELD(m_spent)
389 FIELD(m_frozen)
390 FIELD(m_spent_height)
391 FIELD(m_key_image)
392 FIELD(m_mask)
393 FIELD(m_amount)
394 FIELD(m_rct)
395 FIELD(m_key_image_known)
396 FIELD(m_key_image_request)
397 FIELD(m_pk_index)
398 FIELD(m_subaddr_index)
399 FIELD(m_key_image_partial)
400 FIELD(m_multisig_k)
401 FIELD(m_multisig_info)
402 FIELD(m_uses)
404 };
405
445
472
474 {
477 };
478
490
492 {
498 std::vector<cryptonote::tx_destination_entry> m_dests;
500 enum { pending, pending_in_pool, failed } m_state;
502 uint32_t m_subaddr_account; // subaddress account of your wallet to be used in this transfer
503 std::set<uint32_t> m_subaddr_indices; // set of address indices used as inputs in this transfer
504 std::vector<std::pair<crypto::key_image, std::vector<uint64_t>>> m_rings; // relative
505
508 FIELD(m_tx)
515 if (version >= 1)
522 };
523
525 {
531 std::vector<cryptonote::tx_destination_entry> m_dests;
535 uint32_t m_subaddr_account; // subaddress account of your wallet to be used in this transfer
536 std::set<uint32_t> m_subaddr_indices; // set of address indices used as inputs in this transfer
537 std::vector<std::pair<crypto::key_image, std::vector<uint64_t>>> m_rings; // relative
538
542
545 if (version >= 1)
546 FIELD(m_tx)
547 VARINT_FIELD(m_amount_in)
548 VARINT_FIELD(m_amount_out)
549 VARINT_FIELD(m_change)
550 VARINT_FIELD(m_block_height)
551 FIELD(m_dests)
552 FIELD(m_payment_id)
553 VARINT_FIELD(m_timestamp)
554 VARINT_FIELD(m_unlock_time)
555 VARINT_FIELD(m_subaddr_account)
556 FIELD(m_subaddr_indices)
557 FIELD(m_rings)
559 };
560
562 {
563 std::vector<cryptonote::tx_source_entry> sources;
565 std::vector<cryptonote::tx_destination_entry> splitted_dsts; // split, includes change
566 std::vector<size_t> selected_transfers;
567 std::vector<uint8_t> extra;
572 std::vector<cryptonote::tx_destination_entry> dests; // original setup, does not include change
573 uint32_t subaddr_account; // subaddress account of your wallet to be used in this transfer
574 std::set<uint32_t> subaddr_indices; // set of address indices used as inputs in this transfer
575
577 {
578 _use_rct = 1 << 0, // 00000001
579 _use_view_tags = 1 << 1 // 00000010
580 // next flag = 1 << 2 // 00000100
581 // ...
582 // final flag = 1 << 7 // 10000000
583 };
585
591 FIELD(extra)
593
594 // converted `use_rct` field into construction_flags when view tags
595 // were introduced to maintain backwards compatibility
596 if (!typename Archive<W>::is_saving())
597 {
598 FIELD_N("use_rct", construction_flags)
601 }
602 else
603 {
609
610 FIELD_N("use_rct", construction_flags)
611 }
612
613 FIELD(rct_config)
614 FIELD(dests)
615 FIELD(subaddr_account)
616 FIELD(subaddr_indices)
618 };
619
620 typedef std::vector<transfer_details> transfer_container;
622 typedef std::set<uint32_t> unique_index_container;
623
625 {
627 std::unordered_set<crypto::public_key> ignore;
628 std::unordered_set<rct::key> used_L;
629 std::unordered_set<crypto::public_key> signing_keys;
631
636
640 return false;
641 FIELD(sigs)
645 FIELD(msout)
648 FIELD(c_0)
649 FIELD(s)
651 };
652
653 // The convention for destinations is:
654 // dests does not include change
655 // splitted_dsts (in construction_data) does
694
695 // The term "Unsigned tx" is not really a tx since it's not signed yet.
696 // It doesnt have tx hash, key and the integrated address is not separated into addr + payment id.
698 {
699 std::vector<tx_construction_data> txes;
700 std::tuple<uint64_t, uint64_t, wallet2::transfer_container> transfers;
701 std::tuple<uint64_t, uint64_t, std::vector<wallet2::exported_transfer_details>> new_transfers;
702
705 FIELD(txes)
706 if (version == 0)
707 {
708 std::pair<size_t, wallet2::transfer_container> v0_transfers;
709 FIELD(v0_transfers);
710 std::get<0>(transfers) = std::get<0>(v0_transfers);
711 std::get<1>(transfers) = std::get<0>(v0_transfers) + std::get<1>(v0_transfers).size();
712 std::get<2>(transfers) = std::get<1>(v0_transfers);
713 return true;
714 }
715 if (version == 1)
716 {
717 std::pair<size_t, std::vector<wallet2::exported_transfer_details>> v1_transfers;
718 FIELD(v1_transfers);
719 std::get<0>(new_transfers) = std::get<0>(v1_transfers);
720 std::get<1>(new_transfers) = std::get<0>(v1_transfers) + std::get<1>(v1_transfers).size();
721 std::get<2>(new_transfers) = std::get<1>(v1_transfers);
722 return true;
723 }
724
725 FIELD(new_transfers)
727 };
728
742
744 {
745 std::vector<pending_tx> m_ptx;
746 std::unordered_set<crypto::public_key> m_signers;
747
749 FIELD(m_ptx)
752 };
753
755 {
756 crypto::chacha_iv iv;
757 std::string account_data;
758
760 FIELD(iv)
763 };
764
766 {
767 crypto::chacha_iv iv;
768 std::string cache_data;
769
771 FIELD(iv)
774 };
775
776 // GUI Address book
794
814
838
862
863 typedef std::tuple<uint64_t, crypto::public_key, rct::key> get_outs_entry;
864
873
875 {
878 std::vector<boost::optional<cryptonote::subaddress_receive_info>> received;
879 };
880
882 {
883 std::vector<cryptonote::tx_extra_field> tx_extra_fields;
884 std::vector<is_out_data> primary;
885 std::vector<is_out_data> additional;
886
887 bool empty() const { return tx_extra_fields.empty() && primary.empty() && additional.empty(); }
888 };
889
891 {
894 std::unordered_set<crypto::hash> detached_tx_hashes;
895 std::unordered_map<crypto::hash, std::vector<cryptonote::tx_destination_entry>> detached_confirmed_txs_dests;
896 };
897
904
913
922 void generate(const std::string& wallet_, const epee::wipeable_string& password,
923 const epee::wipeable_string& multisig_data, bool create_address_file = false);
924
935 crypto::secret_key generate(const std::string& wallet, const epee::wipeable_string& password,
936 const crypto::secret_key& recovery_param = crypto::secret_key(), bool recover = false,
937 bool two_random = false, bool create_address_file = false);
947 void generate(const std::string& wallet, const epee::wipeable_string& password,
948 const cryptonote::account_public_address &account_public_address,
949 const crypto::secret_key& spendkey, const crypto::secret_key& viewkey, bool create_address_file = false);
958 void generate(const std::string& wallet, const epee::wipeable_string& password,
959 const cryptonote::account_public_address &account_public_address,
960 const crypto::secret_key& viewkey = crypto::secret_key(), bool create_address_file = false);
968 void restore(const std::string& wallet_, const epee::wipeable_string& password, const std::string &device_name, bool create_address_file = false);
969
975 std::string make_multisig(const epee::wipeable_string &password,
976 const std::vector<std::string> &kex_messages,
977 const std::uint32_t threshold);
983 std::string exchange_multisig_keys(const epee::wipeable_string &password,
984 const std::vector<std::string> &kex_messages,
985 const bool force_update_use_with_caution = false);
990 std::string get_multisig_first_kex_msg() const;
1002 size_t import_multisig(std::vector<cryptonote::blobdata> info, bool refresh_after_import = true);
1008 void rewrite(const std::string& wallet_name, const epee::wipeable_string& password);
1009 void write_watch_only_wallet(const std::string& wallet_name, const epee::wipeable_string& password, std::string &new_keys_filename);
1010 void load(const std::string& wallet, const epee::wipeable_string& password, const std::string& keys_buf = "", const std::string& cache_buf = "");
1011 void store();
1027 void store_to(const std::string &path, const epee::wipeable_string &password, bool force_rewrite_keys = false);
1035 boost::optional<wallet2::keys_file_data> get_keys_file_data(const epee::wipeable_string& password, bool watch_only);
1040 boost::optional<wallet2::cache_file_data> get_cache_file_data();
1041
1042 std::string path() const;
1043
1048 bool has_proxy_option() const;
1049
1054 bool verify_password(const epee::wipeable_string& password, crypto::secret_key &spend_key_out);
1057
1058 void encrypt_keys(const crypto::chacha_key &key);
1059 void encrypt_keys(const epee::wipeable_string &password);
1060 void decrypt_keys(const crypto::chacha_key &key);
1061 void decrypt_keys(const epee::wipeable_string &password);
1062
1065
1068
1071
1072 bool deinit();
1073 bool init(std::string daemon_address = "http://localhost:8080",
1074 boost::optional<epee::net_utils::http::login> daemon_login = boost::none,
1075 const std::string &proxy = "",
1076 uint64_t upper_transaction_weight_limit = 0,
1077 bool trusted_daemon = true,
1079 bool set_daemon(std::string daemon_address = "http://localhost:8080",
1080 boost::optional<epee::net_utils::http::login> daemon_login = boost::none, bool trusted_daemon = true,
1082 const std::string &proxy = "");
1083 bool set_proxy(const std::string &address);
1084
1085 void stop() { m_run.store(false, std::memory_order_relaxed); m_message_store.stop(); }
1086
1089
1090 bool is_trusted_daemon() const { return m_trusted_daemon; }
1091 void set_trusted_daemon(bool trusted) { m_trusted_daemon = trusted; }
1092
1096 bool is_deterministic() const;
1097 bool get_seed(epee::wipeable_string& electrum_words, const epee::wipeable_string &passphrase = epee::wipeable_string()) const;
1098
1102 bool light_wallet() const { return m_light_wallet; }
1106
1110 const std::string &get_seed_language() const;
1114 void set_seed_language(const std::string &language);
1115
1116 // Subaddress scheme
1117 cryptonote::account_public_address get_subaddress(const cryptonote::subaddress_index& index) const;
1119 boost::optional<cryptonote::subaddress_index> get_subaddress_index(const cryptonote::account_public_address& address) const;
1120 crypto::public_key get_subaddress_spend_public_key(const cryptonote::subaddress_index& index) const;
1121 std::vector<crypto::public_key> get_subaddress_spend_public_keys(uint32_t account, uint32_t begin, uint32_t end) const;
1122 std::string get_subaddress_as_str(const cryptonote::subaddress_index& index) const;
1123 std::string get_address_as_str() const { return get_subaddress_as_str({0, 0}); }
1124 std::string get_integrated_address_as_str(const crypto::hash8& payment_id) const;
1125 void add_subaddress_account(const std::string& label);
1126 size_t get_num_subaddress_accounts() const { return m_subaddress_labels.size(); }
1127 size_t get_num_subaddresses(uint32_t index_major) const { return index_major < m_subaddress_labels.size() ? m_subaddress_labels[index_major].size() : 0; }
1128 void add_subaddress(uint32_t index_major, const std::string& label); // throws when index is out of bound
1136 void expand_subaddresses(const cryptonote::subaddress_index& index);
1137 void create_one_off_subaddress(const cryptonote::subaddress_index& index);
1138 std::string get_subaddress_label(const cryptonote::subaddress_index& index) const;
1139 void set_subaddress_label(const cryptonote::subaddress_index &index, const std::string &label);
1140 void set_subaddress_lookahead(size_t major, size_t minor);
1145 bool is_deprecated() const;
1146 void refresh(bool trusted_daemon);
1147 void refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched);
1148 void refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched, bool& received_money, bool check_pool = true, bool try_incremental = true, uint64_t max_blocks = std::numeric_limits<uint64_t>::max());
1149 bool refresh(bool trusted_daemon, uint64_t & blocks_fetched, bool& received_money, bool& ok);
1150
1151 void set_refresh_type(RefreshType refresh_type) { m_refresh_type = refresh_type; }
1153
1155 bool watch_only() const { return m_watch_only; }
1156 bool multisig(bool *ready = NULL, uint32_t *threshold = NULL, uint32_t *total = NULL) const;
1158 bool has_multisig_partial_key_images() const;
1159 bool has_unknown_key_images() const;
1160 bool get_multisig_seed(epee::wipeable_string& seed, const epee::wipeable_string &passphrase = std::string()) const;
1163 bool reconnect_device();
1164
1165 // locked & unlocked balance of given or current subaddress account
1166 uint64_t balance(uint32_t subaddr_index_major, bool strict) const;
1167 uint64_t unlocked_balance(uint32_t subaddr_index_major, bool strict, uint64_t *blocks_to_unlock = NULL, uint64_t *time_to_unlock = NULL);
1168 // locked & unlocked balance per subaddress of given or current subaddress account
1169 std::map<uint32_t, uint64_t> balance_per_subaddress(uint32_t subaddr_index_major, bool strict) const;
1170 std::map<uint32_t, std::pair<uint64_t, std::pair<uint64_t, uint64_t>>> unlocked_balance_per_subaddress(uint32_t subaddr_index_major, bool strict);
1171 // all locked & unlocked balances of all subaddress accounts
1172 uint64_t balance_all(bool strict) const;
1173 uint64_t unlocked_balance_all(bool strict, uint64_t *blocks_to_unlock = NULL, uint64_t *time_to_unlock = NULL);
1174 template<typename T>
1175 void transfer_selected(const std::vector<cryptonote::tx_destination_entry>& dsts, const std::vector<size_t>& selected_transfers, size_t fake_outputs_count,
1176 std::vector<std::vector<tools::wallet2::get_outs_entry>> &outs, std::unordered_set<crypto::public_key> &valid_public_keys_cache,
1177 uint64_t fee, const std::vector<uint8_t>& extra, T destination_split_strategy, const tx_dust_policy& dust_policy, cryptonote::transaction& tx, pending_tx &ptx, const bool use_view_tags);
1178 void transfer_selected_rct(std::vector<cryptonote::tx_destination_entry> dsts, const std::vector<size_t>& selected_transfers, size_t fake_outputs_count,
1179 std::vector<std::vector<tools::wallet2::get_outs_entry>> &outs, std::unordered_set<crypto::public_key> &valid_public_keys_cache,
1180 uint64_t fee, const std::vector<uint8_t>& extra, cryptonote::transaction& tx, pending_tx &ptx, const rct::RCTConfig &rct_config, const bool use_view_tags);
1181
1182 void commit_tx(pending_tx& ptx_vector);
1183 void commit_tx(std::vector<pending_tx>& ptx_vector);
1184 bool save_tx(const std::vector<pending_tx>& ptx_vector, const std::string &filename) const;
1185 std::string dump_tx_to_str(const std::vector<pending_tx> &ptx_vector) const;
1186 std::string save_multisig_tx(multisig_tx_set txs);
1187 bool save_multisig_tx(const multisig_tx_set &txs, const std::string &filename);
1188 std::string save_multisig_tx(const std::vector<pending_tx>& ptx_vector);
1189 bool save_multisig_tx(const std::vector<pending_tx>& ptx_vector, const std::string &filename);
1190 multisig_tx_set make_multisig_tx_set(const std::vector<pending_tx>& ptx_vector) const;
1191 // load unsigned tx from file and sign it. Takes confirmation callback as argument. Used by the cli wallet
1192 bool sign_tx(const std::string &unsigned_filename, const std::string &signed_filename, std::vector<wallet2::pending_tx> &ptx, std::function<bool(const unsigned_tx_set&)> accept_func = NULL, bool export_raw = false);
1193 // sign unsigned tx. Takes unsigned_tx_set as argument. Used by GUI
1194 bool sign_tx(unsigned_tx_set &exported_txs, const std::string &signed_filename, std::vector<wallet2::pending_tx> &ptx, bool export_raw = false);
1195 bool sign_tx(unsigned_tx_set &exported_txs, std::vector<wallet2::pending_tx> &ptx, signed_tx_set &signed_txs);
1196 std::string sign_tx_dump_to_str(unsigned_tx_set &exported_txs, std::vector<wallet2::pending_tx> &ptx, signed_tx_set &signed_txes);
1197 // load unsigned_tx_set from file.
1198 bool load_unsigned_tx(const std::string &unsigned_filename, unsigned_tx_set &exported_txs) const;
1199 bool parse_unsigned_tx_from_str(const std::string &unsigned_tx_st, unsigned_tx_set &exported_txs) const;
1200 bool load_tx(const std::string &signed_filename, std::vector<tools::wallet2::pending_tx> &ptx, std::function<bool(const signed_tx_set&)> accept_func = NULL);
1201 bool parse_tx_from_str(const std::string &signed_tx_st, std::vector<tools::wallet2::pending_tx> &ptx, std::function<bool(const signed_tx_set &)> accept_func);
1202 std::vector<wallet2::pending_tx> create_transactions_2(std::vector<cryptonote::tx_destination_entry> dsts, const size_t fake_outs_count, uint32_t priority, const std::vector<uint8_t>& extra, uint32_t subaddr_account, std::set<uint32_t> subaddr_indices, const unique_index_container& subtract_fee_from_outputs = {}); // pass subaddr_indices by value on purpose
1203 std::vector<wallet2::pending_tx> create_transactions_all(uint64_t below, const cryptonote::account_public_address &address, bool is_subaddress, const size_t outputs, const size_t fake_outs_count, uint32_t priority, const std::vector<uint8_t>& extra, uint32_t subaddr_account, std::set<uint32_t> subaddr_indices);
1204 std::vector<wallet2::pending_tx> create_transactions_single(const crypto::key_image &ki, const cryptonote::account_public_address &address, bool is_subaddress, const size_t outputs, const size_t fake_outs_count, uint32_t priority, const std::vector<uint8_t>& extra);
1205 std::vector<wallet2::pending_tx> create_transactions_from(const cryptonote::account_public_address &address, bool is_subaddress, const size_t outputs, std::vector<size_t> unused_transfers_indices, std::vector<size_t> unused_dust_indices, const size_t fake_outs_count, uint32_t priority, const std::vector<uint8_t>& extra);
1206 bool sanity_check(const std::vector<wallet2::pending_tx> &ptx_vector, const std::vector<cryptonote::tx_destination_entry>& dsts, const unique_index_container& subtract_fee_from_outputs = {}) const;
1207 void cold_tx_aux_import(const std::vector<pending_tx>& ptx, const std::vector<std::string>& tx_device_aux);
1208 void cold_sign_tx(const std::vector<pending_tx>& ptx_vector, signed_tx_set &exported_txs, std::vector<cryptonote::address_parse_info> &dsts_info, std::vector<std::string> & tx_device_aux);
1209 uint64_t cold_key_image_sync(uint64_t &spent, uint64_t &unspent);
1210 void device_show_address(uint32_t account_index, uint32_t address_index, const boost::optional<crypto::hash8> &payment_id);
1211 bool parse_multisig_tx_from_str(std::string multisig_tx_st, multisig_tx_set &exported_txs) const;
1212 bool load_multisig_tx(cryptonote::blobdata blob, multisig_tx_set &exported_txs, std::function<bool(const multisig_tx_set&)> accept_func = NULL);
1213 bool load_multisig_tx_from_file(const std::string &filename, multisig_tx_set &exported_txs, std::function<bool(const multisig_tx_set&)> accept_func = NULL);
1214 bool sign_multisig_tx_from_file(const std::string &filename, std::vector<crypto::hash> &txids, std::function<bool(const multisig_tx_set&)> accept_func);
1215 bool sign_multisig_tx(multisig_tx_set &exported_txs_inout, std::vector<crypto::hash> &txids);
1216 bool sign_multisig_tx_to_file(multisig_tx_set &exported_txs, const std::string &filename, std::vector<crypto::hash> &txids);
1217 std::vector<pending_tx> create_unmixable_sweep_transactions();
1218 void discard_unmixable_outputs();
1219 bool check_connection(uint32_t *version = NULL, bool *ssl = NULL, uint32_t timeout = 200000, bool *wallet_is_outdated = NULL, bool *daemon_is_outdated = NULL);
1220 bool check_version(uint32_t *version, bool *wallet_is_outdated, bool *daemon_is_outdated);
1221 bool check_hard_fork_version(cryptonote::network_type nettype, const std::vector<std::pair<uint8_t, uint64_t>> &daemon_hard_forks, const uint64_t height, const uint64_t target_height, bool *wallet_is_outdated, bool *daemon_is_outdated);
1222 void get_transfers(wallet2::transfer_container& incoming_transfers) const;
1223 void get_payments(const crypto::hash& payment_id, std::list<wallet2::payment_details>& payments, uint64_t min_height = 0, const boost::optional<uint32_t>& subaddr_account = boost::none, const std::set<uint32_t>& subaddr_indices = {}) const;
1224 void get_payments(std::list<std::pair<crypto::hash,wallet2::payment_details>>& payments, uint64_t min_height, uint64_t max_height = (uint64_t)-1, const boost::optional<uint32_t>& subaddr_account = boost::none, const std::set<uint32_t>& subaddr_indices = {}) const;
1225 void get_payments_out(std::list<std::pair<crypto::hash,wallet2::confirmed_transfer_details>>& confirmed_payments,
1226 uint64_t min_height, uint64_t max_height = (uint64_t)-1, const boost::optional<uint32_t>& subaddr_account = boost::none, const std::set<uint32_t>& subaddr_indices = {}) const;
1227 void get_unconfirmed_payments_out(std::list<std::pair<crypto::hash,wallet2::unconfirmed_transfer_details>>& unconfirmed_payments, const boost::optional<uint32_t>& subaddr_account = boost::none, const std::set<uint32_t>& subaddr_indices = {}) const;
1228 void get_unconfirmed_payments(std::list<std::pair<crypto::hash,wallet2::pool_payment_details>>& unconfirmed_payments, const boost::optional<uint32_t>& subaddr_account = boost::none, const std::set<uint32_t>& subaddr_indices = {}) const;
1229
1231 void rescan_spent();
1232 void rescan_blockchain(bool hard, bool refresh = true, bool keep_key_images = false);
1233 bool is_transfer_unlocked(const transfer_details& td);
1234 bool is_transfer_unlocked(uint64_t unlock_time, uint64_t block_height);
1235
1238
1239 std::vector<cryptonote::public_node> get_public_nodes(bool white_only = true);
1240
1241 template <class t_archive>
1242 inline void serialize(t_archive &a, const unsigned int ver)
1243 {
1244 uint64_t dummy_refresh_height = 0; // moved to keys file
1245 if(ver < 5)
1246 return;
1247 if (ver < 19)
1248 {
1249 std::vector<crypto::hash> blockchain;
1250 a & blockchain;
1251 m_blockchain.clear();
1252 for (const auto &b: blockchain)
1253 {
1254 m_blockchain.push_back(b);
1255 }
1256 }
1257 else
1258 {
1259 a & m_blockchain;
1260 }
1261 a & m_transfers;
1263 a & m_key_images.parent();
1264 if(ver < 6)
1265 return;
1266 a & m_unconfirmed_txs.parent();
1267 if(ver < 7)
1268 return;
1269 a & m_payments.parent();
1270 if(ver < 8)
1271 return;
1272 a & m_tx_keys.parent();
1273 if(ver < 9)
1274 return;
1275 a & m_confirmed_txs.parent();
1276 if(ver < 11)
1277 return;
1278 a & dummy_refresh_height;
1279 if(ver < 12)
1280 return;
1281 a & m_tx_notes.parent();
1282 if(ver < 13)
1283 return;
1284 if (ver < 17)
1285 {
1286 // we're loading an old version, where m_unconfirmed_payments was a std::map
1287 std::unordered_map<crypto::hash, payment_details> m;
1288 a & m;
1289 m_unconfirmed_payments.clear();
1290 for (std::unordered_map<crypto::hash, payment_details>::const_iterator i = m.begin(); i != m.end(); ++i)
1291 m_unconfirmed_payments.insert(std::make_pair(i->first, pool_payment_details{i->second, false}));
1292 }
1293 if(ver < 14)
1294 return;
1295 if(ver < 15)
1296 {
1297 // we're loading an older wallet without a pubkey map, rebuild it
1298 m_pub_keys.clear();
1299 for (size_t i = 0; i < m_transfers.size(); ++i)
1300 {
1301 const transfer_details &td = m_transfers[i];
1302 m_pub_keys.emplace(td.get_public_key(), i);
1303 }
1304 return;
1305 }
1306 a & m_pub_keys.parent();
1307 if(ver < 16)
1308 return;
1309 a & m_address_book;
1310 if(ver < 17)
1311 return;
1312 if (ver < 22)
1313 {
1314 // we're loading an old version, where m_unconfirmed_payments payload was payment_details
1315 std::unordered_multimap<crypto::hash, payment_details> m;
1316 a & m;
1317 m_unconfirmed_payments.clear();
1318 for (const auto &i: m)
1319 m_unconfirmed_payments.insert(std::make_pair(i.first, pool_payment_details{i.second, false}));
1320 }
1321 if(ver < 18)
1322 return;
1323 a & m_scanned_pool_txs[0];
1324 a & m_scanned_pool_txs[1];
1325 if (ver < 20)
1326 return;
1327 a & m_subaddresses.parent();
1328 std::unordered_map<cryptonote::subaddress_index, crypto::public_key> dummy_subaddresses_inv;
1329 a & dummy_subaddresses_inv;
1331 a & m_additional_tx_keys.parent();
1332 if(ver < 21)
1333 return;
1334 a & m_attributes.parent();
1335 if(ver < 22)
1336 return;
1337 a & m_unconfirmed_payments.parent();
1338 if(ver < 23)
1339 return;
1340 a & (std::pair<std::map<std::string, std::string>, std::vector<std::string>>&)m_account_tags;
1341 if(ver < 24)
1342 return;
1344 if(ver < 25)
1345 return;
1347 if(ver < 26)
1348 return;
1349 a & m_tx_device.parent();
1350 if(ver < 27)
1351 return;
1353 if(ver < 28)
1354 return;
1355 a & m_cold_key_images.parent();
1356 if(ver < 29)
1357 return;
1359 if(ver < 30)
1360 {
1362 return;
1363 }
1365 if(ver < 31)
1366 {
1368 return;
1369 }
1371 }
1372
1374 MAGIC_FIELD("monero wallet cache")
1375 VERSION_FIELD(2)
1376 FIELD(m_blockchain)
1377 FIELD(m_transfers)
1378 FIELD(m_account_public_address)
1379 FIELD(m_key_images)
1380 FIELD(m_unconfirmed_txs)
1381 FIELD(m_payments)
1382 FIELD(m_tx_keys)
1383 FIELD(m_confirmed_txs)
1384 FIELD(m_tx_notes)
1385 FIELD(m_unconfirmed_payments)
1386 FIELD(m_pub_keys)
1387 FIELD(m_address_book)
1388 FIELD(m_scanned_pool_txs[0])
1389 FIELD(m_scanned_pool_txs[1])
1390 FIELD(m_subaddresses)
1391 FIELD(m_subaddress_labels)
1392 FIELD(m_additional_tx_keys)
1393 FIELD(m_attributes)
1394 FIELD(m_account_tags)
1395 FIELD(m_ring_history_saved)
1396 FIELD(m_last_block_reward)
1397 FIELD(m_tx_device)
1398 FIELD(m_device_last_key_image_sync)
1399 FIELD(m_cold_key_images)
1400 FIELD(m_rpc_client_secret_key)
1402 {
1404 return true;
1405 }
1406 FIELD(m_has_ever_refreshed_from_node)
1408 {
1410 return true;
1411 }
1412 FIELD(m_background_sync_data)
1414
1415
1421 static void wallet_exists(const std::string& file_path, bool& keys_file_exists, bool& wallet_file_exists);
1427 static bool wallet_valid_path_format(const std::string& file_path);
1428 static std::string make_background_wallet_file_name(const std::string &wallet_file);
1429 static std::string make_background_keys_file_name(const std::string &wallet_file);
1430 static bool parse_long_payment_id(const std::string& payment_id_str, crypto::hash& payment_id);
1431 static bool parse_short_payment_id(const std::string& payment_id_str, crypto::hash8& payment_id);
1432 static bool parse_payment_id(const std::string& payment_id_str, crypto::hash& payment_id);
1433
1438 bool store_tx_info() const { return m_store_tx_info; }
1444 bool auto_refresh() const { return m_auto_refresh; }
1445 void auto_refresh(bool r) { m_auto_refresh = r; }
1452 void merge_destinations(bool merge) { m_merge_destinations = merge; }
1454 bool confirm_backlog() const { return m_confirm_backlog; }
1455 void confirm_backlog(bool always) { m_confirm_backlog = always; }
1476 bool track_uses() const { return m_track_uses; }
1479 void setup_background_sync(BackgroundSyncType background_sync_type, const epee::wipeable_string &wallet_password, const boost::optional<epee::wipeable_string> &background_cache_password);
1487 const std::string & device_name() const { return m_device_name; }
1488 void device_name(const std::string & device_name) { m_device_name = device_name; }
1489 const std::string & device_derivation_path() const { return m_device_derivation_path; }
1491 const ExportFormat & export_format() const { return m_export_format; }
1496 void persistent_rpc_client_id(bool persistent) { m_persistent_rpc_client_id = persistent; }
1502 void credits_target(uint64_t threshold) { m_credits_target = threshold; }
1504 void enable_multisig(bool enable) { m_enable_multisig = enable; }
1506 void allow_mismatched_daemon_version(bool allow_mismatch) { m_allow_mismatched_daemon_version = allow_mismatch; }
1507
1508 bool get_tx_key_cached(const crypto::hash &txid, crypto::secret_key &tx_key, std::vector<crypto::secret_key> &additional_tx_keys) const;
1509 void set_tx_key(const crypto::hash &txid, const crypto::secret_key &tx_key, const std::vector<crypto::secret_key> &additional_tx_keys, const boost::optional<cryptonote::account_public_address> &single_destination_subaddress = boost::none);
1510 bool get_tx_key(const crypto::hash &txid, crypto::secret_key &tx_key, std::vector<crypto::secret_key> &additional_tx_keys);
1511 void check_tx_key(const crypto::hash &txid, const crypto::secret_key &tx_key, const std::vector<crypto::secret_key> &additional_tx_keys, const cryptonote::account_public_address &address, uint64_t &received, bool &in_pool, uint64_t &confirmations);
1512 void check_tx_key_helper(const crypto::hash &txid, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, const cryptonote::account_public_address &address, uint64_t &received, bool &in_pool, uint64_t &confirmations);
1513 void check_tx_key_helper(const cryptonote::transaction &tx, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, const cryptonote::account_public_address &address, uint64_t &received) const;
1514 bool is_out_to_acc(const cryptonote::account_public_address &address, const crypto::public_key& out_key, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, const size_t output_index, const boost::optional<crypto::view_tag> &view_tag_opt, crypto::key_derivation &found_derivation) const;
1515 std::string get_tx_proof(const crypto::hash &txid, const cryptonote::account_public_address &address, bool is_subaddress, const std::string &message);
1516 std::string get_tx_proof(const cryptonote::transaction &tx, const crypto::secret_key &tx_key, const std::vector<crypto::secret_key> &additional_tx_keys, const cryptonote::account_public_address &address, bool is_subaddress, const std::string &message) const;
1517 bool check_tx_proof(const crypto::hash &txid, const cryptonote::account_public_address &address, bool is_subaddress, const std::string &message, const std::string &sig_str, uint64_t &received, bool &in_pool, uint64_t &confirmations);
1518 bool check_tx_proof(const cryptonote::transaction &tx, const cryptonote::account_public_address &address, bool is_subaddress, const std::string &message, const std::string &sig_str, uint64_t &received) const;
1519
1520 std::string get_spend_proof(const crypto::hash &txid, const std::string &message);
1521 bool check_spend_proof(const crypto::hash &txid, const std::string &message, const std::string &sig_str);
1522
1523 void scan_tx(const std::unordered_set<crypto::hash> &txids);
1524
1532 std::string get_reserve_proof(const boost::optional<std::pair<uint32_t, uint64_t>> &account_minreserve, const std::string &message);
1542 bool check_reserve_proof(const cryptonote::account_public_address &address, const std::string &message, const std::string &sig_str, uint64_t &total, uint64_t &spent);
1543
1547 std::vector<address_book_row> get_address_book() const { return m_address_book; }
1548 bool add_address_book_row(const cryptonote::account_public_address &address, const crypto::hash8 *payment_id, const std::string &description, bool is_subaddress);
1549 bool set_address_book_row(size_t row_id, const cryptonote::account_public_address &address, const crypto::hash8 *payment_id, const std::string &description, bool is_subaddress);
1550 bool delete_address_book_row(std::size_t row_id);
1551
1552 uint64_t get_num_rct_outputs();
1553 size_t get_num_transfer_details() const { return m_transfers.size(); }
1554 const transfer_details &get_transfer_details(size_t idx) const;
1555
1556 uint8_t get_current_hard_fork();
1557 void get_hard_fork_info(uint8_t version, uint64_t &earliest_height);
1558 bool use_fork_rules(uint8_t version, int64_t early_blocks = 0);
1559 int get_fee_algorithm();
1560
1561 std::string get_wallet_file() const;
1562 std::string get_keys_file() const;
1563 std::string get_daemon_address() const;
1564 const boost::optional<epee::net_utils::http::login>& get_daemon_login() const { return m_daemon_login; }
1565 std::string get_daemon_proxy() const { return m_proxy; }
1566 uint64_t get_daemon_blockchain_height(std::string& err);
1567 uint64_t get_daemon_blockchain_target_height(std::string& err);
1568 uint64_t get_daemon_adjusted_time();
1569
1573 uint64_t get_approximate_blockchain_height() const;
1574 uint64_t estimate_blockchain_height();
1575 std::vector<size_t> select_available_outputs_from_histogram(uint64_t count, bool atleast, bool unlocked, bool allow_rct);
1576 std::vector<size_t> select_available_outputs(const std::function<bool(const transfer_details &td)> &f);
1577 std::vector<size_t> select_available_unmixable_outputs();
1578 std::vector<size_t> select_available_mixable_outputs();
1579
1580 size_t pop_best_value_from(const transfer_container &transfers, std::vector<size_t> &unused_dust_indices, const std::vector<size_t>& selected_transfers, bool smallest = false) const;
1581 size_t pop_best_value(std::vector<size_t> &unused_dust_indices, const std::vector<size_t>& selected_transfers, bool smallest = false) const;
1582
1583 void set_tx_note(const crypto::hash &txid, const std::string &note);
1584 std::string get_tx_note(const crypto::hash &txid) const;
1585
1586 void set_tx_device_aux(const crypto::hash &txid, const std::string &aux);
1587 std::string get_tx_device_aux(const crypto::hash &txid) const;
1588
1589 void set_description(const std::string &description);
1590 std::string get_description() const;
1591
1596 const std::pair<serializable_map<std::string, std::string>, std::vector<std::string>>& get_account_tags();
1602 void set_account_tag(const std::set<uint32_t> &account_indices, const std::string& tag);
1608 void set_account_tag_description(const std::string& tag, const std::string& description);
1609
1611 std::string sign(const std::string &data, message_signature_type_t signature_type, cryptonote::subaddress_index index = {0, 0}) const;
1613 message_signature_result_t verify(const std::string &data, const cryptonote::account_public_address &address, const std::string &signature) const;
1614
1621 std::string sign_multisig_participant(const std::string& data) const;
1629 bool verify_with_public_key(const std::string &data, const crypto::public_key &public_key, const std::string &signature) const;
1630
1631 // Import/Export wallet data
1632 std::tuple<uint64_t, uint64_t, std::vector<tools::wallet2::exported_transfer_details>> export_outputs(bool all = false, uint32_t start = 0, uint32_t count = 0xffffffff) const;
1633 std::string export_outputs_to_str(bool all = false, uint32_t start = 0, uint32_t count = 0xffffffff) const;
1634 size_t import_outputs(const std::tuple<uint64_t, uint64_t, std::vector<tools::wallet2::exported_transfer_details>> &outputs);
1635 size_t import_outputs(const std::tuple<uint64_t, uint64_t, std::vector<tools::wallet2::transfer_details>> &outputs);
1636 size_t import_outputs_from_str(const std::string &outputs_st);
1638 void import_payments(const payment_container &payments);
1639 void import_payments_out(const std::list<std::pair<crypto::hash,wallet2::confirmed_transfer_details>> &confirmed_payments);
1640 std::tuple<size_t, crypto::hash, std::vector<crypto::hash>> export_blockchain() const;
1641 void import_blockchain(const std::tuple<size_t, crypto::hash, std::vector<crypto::hash>> &bc);
1642 bool export_key_images(const std::string &filename, bool all = false) const;
1643 std::pair<uint64_t, std::vector<std::pair<crypto::key_image, crypto::signature>>> export_key_images(bool all = false) const;
1644 uint64_t import_key_images(const std::vector<std::pair<crypto::key_image, crypto::signature>> &signed_key_images, size_t offset, uint64_t &spent, uint64_t &unspent, bool check_spent = true);
1645 uint64_t import_key_images(const std::string &filename, uint64_t &spent, uint64_t &unspent);
1646 bool import_key_images(std::vector<crypto::key_image> key_images, size_t offset=0, boost::optional<std::unordered_set<size_t>> selected_transfers=boost::none);
1647 bool import_key_images(signed_tx_set & signed_tx, size_t offset=0, bool only_selected_transfers=false);
1649
1650 void update_pool_state(std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &process_txs, bool refreshed = false, bool try_incremental = false);
1651 void process_pool_state(const std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &txs);
1652 void remove_obsolete_pool_txs(const std::vector<crypto::hash> &tx_hashes, bool remove_if_found);
1653 void remove_obsolete_pool_txs(const std::unordered_set<crypto::hash> &tx_hashes, bool remove_if_found);
1654
1655 std::string encrypt(const char *plaintext, size_t len, const crypto::secret_key &skey, bool authenticated = true) const;
1656 std::string encrypt(const epee::span<char> &span, const crypto::secret_key &skey, bool authenticated = true) const;
1657 std::string encrypt(const std::string &plaintext, const crypto::secret_key &skey, bool authenticated = true) const;
1658 std::string encrypt(const epee::wipeable_string &plaintext, const crypto::secret_key &skey, bool authenticated = true) const;
1659 std::string encrypt_with_view_secret_key(const std::string &plaintext, bool authenticated = true) const;
1660 template<typename T=std::string> T decrypt(const std::string &ciphertext, const crypto::secret_key &skey, bool authenticated = true) const;
1661 std::string decrypt_with_view_secret_key(const std::string &ciphertext, bool authenticated = true) const;
1662
1663 std::string make_uri(const std::string &address, const std::string &payment_id, uint64_t amount, const std::string &tx_description, const std::string &recipient_name, std::string &error) const;
1664 bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector<std::string> &unknown_parameters, std::string &error);
1665
1666 uint64_t get_blockchain_height_by_date(uint16_t year, uint8_t month, uint8_t day); // 1<=month<=12, 1<=day<=31
1667
1668 bool is_synced();
1669
1670 std::vector<std::pair<uint64_t, uint64_t>> estimate_backlog(const std::vector<std::pair<double, double>> &fee_levels);
1671 std::vector<std::pair<uint64_t, uint64_t>> estimate_backlog(uint64_t min_tx_weight, uint64_t max_tx_weight, const std::vector<uint64_t> &fees);
1672
1673 static uint64_t estimate_fee(bool use_per_byte_fee, bool use_rct, int n_inputs, int mixin, int n_outputs, size_t extra_size, bool bulletproof, bool clsag, bool bulletproof_plus, bool use_view_tags, uint64_t base_fee, uint64_t fee_quantization_mask);
1674 uint64_t get_fee_multiplier(uint32_t priority, int fee_algorithm = -1);
1675 uint64_t get_base_fee(uint32_t priority);
1681
1683
1684 bool is_unattended() const { return m_unattended; }
1685
1686 std::pair<size_t, uint64_t> estimate_tx_size_and_weight(bool use_rct, int n_inputs, int ring_size, int n_outputs, size_t extra_size);
1687
1688 bool get_rpc_payment_info(bool mining, bool &payment_required, uint64_t &credits, uint64_t &diff, uint64_t &credits_per_hash_found, cryptonote::blobdata &hashing_blob, uint64_t &height, uint64_t &seed_height, crypto::hash &seed_hash, crypto::hash &next_seed_hash, uint32_t &cookie);
1689 bool daemon_requires_payment();
1690 bool make_rpc_payment(uint32_t nonce, uint32_t cookie, uint64_t &credits, uint64_t &balance);
1691 bool search_for_rpc_payment(uint64_t credits_target, uint32_t n_threads, const std::function<bool(uint64_t, uint64_t)> &startfunc, const std::function<bool(unsigned)> &contfunc, const std::function<bool(uint64_t)> &foundfunc = NULL, const std::function<void(const std::string&)> &errorfunc = NULL);
1692 template<typename T> void handle_payment_changes(const T &res, std::true_type) {
1694 m_rpc_payment_state.credits = res.credits;
1695 if (res.top_hash != m_rpc_payment_state.top_hash)
1696 {
1697 m_rpc_payment_state.top_hash = res.top_hash;
1698 m_rpc_payment_state.stale = true;
1699 }
1700 }
1701 template<typename T> void handle_payment_changes(const T &res, std::false_type) {}
1702
1703 // Light wallet specific functions
1704 // fetch unspent outs from lw node and store in m_transfers
1705 void light_wallet_get_unspent_outs();
1706 // fetch txs and store in m_payments
1707 void light_wallet_get_address_txs();
1708 // get_address_info
1709 bool light_wallet_get_address_info(tools::COMMAND_RPC_GET_ADDRESS_INFO::response &response);
1710 // Login. new_address is true if address hasn't been used on lw node before.
1711 bool light_wallet_login(bool &new_address);
1712 // Send an import request to lw node. returns info about import fee, address and payment_id
1713 bool light_wallet_import_wallet_request(tools::COMMAND_RPC_IMPORT_WALLET_REQUEST::response &response);
1714 // get random outputs from light wallet server
1715 void light_wallet_get_outs(std::vector<std::vector<get_outs_entry>> &outs, const std::vector<size_t> &selected_transfers, size_t fake_outputs_count);
1716 // Parse rct string
1717 bool light_wallet_parse_rct_str(const std::string& rct_string, const crypto::public_key& tx_pub_key, uint64_t internal_output_index, rct::key& decrypted_mask, rct::key& rct_commit, bool decrypt) const;
1718 // check if key image is ours
1719 bool light_wallet_key_image_is_ours(const crypto::key_image& key_image, const crypto::public_key& tx_public_key, uint64_t out_index);
1720
1721 /*
1722 * "attributes" are a mechanism to store an arbitrary number of string values
1723 * on the level of the wallet as a whole, identified by keys. Their introduction,
1724 * technically the unordered map m_attributes stored as part of a wallet file,
1725 * led to a new wallet file version, but now new singular pieces of info may be added
1726 * without the need for a new version.
1727 *
1728 * The first and so far only value stored as such an attribute is the description.
1729 * It's stored under the standard key ATTRIBUTE_DESCRIPTION (see method set_description).
1730 *
1731 * The mechanism is open to all clients and allows them to use it for storing basically any
1732 * single string values in a wallet. To avoid the problem that different clients possibly
1733 * overwrite or misunderstand each other's attributes, a two-part key scheme is
1734 * proposed: <client name>.<value name>
1735 */
1736 const char* const ATTRIBUTE_DESCRIPTION = "wallet2.description";
1737 void set_attribute(const std::string &key, const std::string &value);
1738 bool get_attribute(const std::string &key, std::string &value) const;
1739
1743
1744 template<class t_request, class t_response>
1745 inline bool invoke_http_json(const boost::string_ref uri, const t_request& req, t_response& res, std::chrono::milliseconds timeout = std::chrono::seconds(15), const boost::string_ref http_method = "POST")
1746 {
1747 if (m_offline) return false;
1748 boost::lock_guard<boost::recursive_mutex> lock(m_daemon_rpc_mutex);
1749 return epee::net_utils::invoke_http_json(uri, req, res, *m_http_client, timeout, http_method);
1750 }
1751 template<class t_request, class t_response>
1752 inline bool invoke_http_bin(const boost::string_ref uri, const t_request& req, t_response& res, std::chrono::milliseconds timeout = std::chrono::seconds(15), const boost::string_ref http_method = "POST")
1753 {
1754 if (m_offline) return false;
1755 boost::lock_guard<boost::recursive_mutex> lock(m_daemon_rpc_mutex);
1756 return epee::net_utils::invoke_http_bin(uri, req, res, *m_http_client, timeout, http_method);
1757 }
1758 template<class t_request, class t_response>
1759 inline bool invoke_http_json_rpc(const boost::string_ref uri, const std::string& method_name, const t_request& req, t_response& res, std::chrono::milliseconds timeout = std::chrono::seconds(15), const boost::string_ref http_method = "POST", const std::string& req_id = "0")
1760 {
1761 if (m_offline) return false;
1762 boost::lock_guard<boost::recursive_mutex> lock(m_daemon_rpc_mutex);
1763 return epee::net_utils::invoke_http_json_rpc(uri, method_name, req, res, *m_http_client, timeout, http_method, req_id);
1764 }
1765
1766 bool set_ring_database(const std::string &filename);
1767 const std::string get_ring_database() const { return m_ring_database; }
1768 bool get_ring(const crypto::key_image &key_image, std::vector<uint64_t> &outs);
1769 bool get_rings(const crypto::hash &txid, std::vector<std::pair<crypto::key_image, std::vector<uint64_t>>> &outs);
1770 bool get_rings(const crypto::chacha_key &key, const std::vector<crypto::key_image> &key_images, std::vector<std::vector<uint64_t>> &outs);
1771 bool set_ring(const crypto::key_image &key_image, const std::vector<uint64_t> &outs, bool relative);
1772 bool set_rings(const std::vector<std::pair<crypto::key_image, std::vector<uint64_t>>> &rings, bool relative);
1773 bool unset_ring(const std::vector<crypto::key_image> &key_images);
1774 bool unset_ring(const crypto::hash &txid);
1775 [[deprecated]] bool find_and_save_rings(bool force = true);
1776
1777 bool blackball_output(const std::pair<uint64_t, uint64_t> &output);
1778 bool set_blackballed_outputs(const std::vector<std::pair<uint64_t, uint64_t>> &outputs, bool add = false);
1779 bool unblackball_output(const std::pair<uint64_t, uint64_t> &output);
1780 bool is_output_blackballed(const std::pair<uint64_t, uint64_t> &output) const;
1781
1782 void freeze(size_t idx);
1783 void thaw(size_t idx);
1784 bool frozen(size_t idx) const;
1785 void freeze(const crypto::key_image &ki);
1786 void thaw(const crypto::key_image &ki);
1787 bool frozen(const crypto::key_image &ki) const;
1788 bool frozen(const transfer_details &td) const;
1789 bool frozen(const multisig_tx_set& txs) const; // does partially signed txset contain frozen enotes?
1790
1791 bool save_to_file(const std::string& path_to_file, const std::string& binary, bool is_printable = false) const;
1792 static bool load_from_file(const std::string& path_to_file, std::string& target_str, size_t max_size = 1000000000);
1793
1794 uint64_t get_bytes_sent() const;
1795 uint64_t get_bytes_received() const;
1796
1797 void start_background_sync();
1798 void stop_background_sync(const epee::wipeable_string &wallet_password, const crypto::secret_key &spend_secret_key = crypto::null_skey);
1799
1800 // MMS -------------------------------------------------------------------------------------------------
1803 mms::multisig_wallet_state get_multisig_wallet_state() const;
1804
1805 bool lock_keys_file();
1806 bool unlock_keys_file();
1807 bool is_keys_file_locked() const;
1808
1809 void change_password(const std::string &filename, const epee::wipeable_string &original_password, const epee::wipeable_string &new_password);
1810
1811 void set_tx_notify(const std::shared_ptr<tools::Notify> &notify) { m_tx_notify = notify; }
1812
1813 bool is_tx_spendtime_unlocked(uint64_t unlock_time, uint64_t block_height);
1814 void hash_m_transfer(const transfer_details & transfer, crypto::hash &hash) const;
1815 uint64_t hash_m_transfers(boost::optional<uint64_t> transfer_height, crypto::hash &hash) const;
1816 void finish_rescan_bc_keep_key_images(uint64_t transfer_height, const crypto::hash &hash);
1817 void enable_dns(bool enable) { m_use_dns = enable; }
1818 void set_offline(bool offline = true);
1819 bool is_offline() const { return m_offline; }
1820
1821 uint64_t credits() const { return m_rpc_payment_state.credits; }
1822 void credit_report(uint64_t &expected_spent, uint64_t &discrepancy) const { expected_spent = m_rpc_payment_state.expected_spent; discrepancy = m_rpc_payment_state.discrepancy; }
1823
1825
1826 private:
1834 bool store_keys(const std::string& keys_file_name, const epee::wipeable_string& password, bool watch_only = false);
1835 bool store_keys(const std::string& keys_file_name, const crypto::chacha_key& key, bool watch_only = false, bool background_keys_file = false);
1836 boost::optional<wallet2::keys_file_data> get_keys_file_data(const crypto::chacha_key& key, bool watch_only = false, bool background_keys_file = false);
1837 bool store_keys_file_data(const std::string& keys_file_name, wallet2::keys_file_data &keys_file_data, bool background_keys_file = false);
1843 bool load_keys(const std::string& keys_file_name, const epee::wipeable_string& password);
1849 bool load_keys_buf(const std::string& keys_buf, const epee::wipeable_string& password);
1850 bool load_keys_buf(const std::string& keys_buf, const epee::wipeable_string& password, boost::optional<crypto::chacha_key>& keys_to_encrypt);
1851 void load_wallet_cache(const bool use_fs, const std::string& cache_buf = "");
1852 void process_new_transaction(const crypto::hash &txid, const cryptonote::transaction& tx, const std::vector<uint64_t> &o_indices, uint64_t height, uint8_t block_version, uint64_t ts, bool miner_tx, bool pool, bool double_spend_seen, const tx_cache_data &tx_cache_data, std::map<std::pair<uint64_t, uint64_t>, size_t> *output_tracker_cache = NULL, bool ignore_callbacks = false);
1853 bool should_skip_block(const cryptonote::block &b, uint64_t height) const;
1854 void process_new_blockchain_entry(const cryptonote::block& b, const cryptonote::block_complete_entry& bche, const parsed_block &parsed_block, const crypto::hash& bl_id, uint64_t height, const std::vector<tx_cache_data> &tx_cache_data, size_t tx_cache_data_offset, std::map<std::pair<uint64_t, uint64_t>, size_t> *output_tracker_cache = NULL);
1855 detached_blockchain_data detach_blockchain(uint64_t height, std::map<std::pair<uint64_t, uint64_t>, size_t> *output_tracker_cache = NULL);
1856 void handle_reorg(uint64_t height, std::map<std::pair<uint64_t, uint64_t>, size_t> *output_tracker_cache = NULL);
1857 void get_short_chain_history(std::list<crypto::hash>& ids, uint64_t granularity = 1) const;
1858 bool clear();
1859 void clear_soft(bool keep_key_images=false);
1860 /*
1861 * clear_user_data clears data created by the user, which is mostly data
1862 * that a view key cannot identify on chain. This function was initially
1863 * added to ensure that a "background" wallet (a wallet that syncs with just
1864 * a view key hot in memory) does not have any sensitive data loaded that it
1865 * does not need in order to sync. Future devs should take care to ensure
1866 * that this function deletes data that is not useful for background syncing
1867 */
1868 void clear_user_data();
1869 void pull_blocks(bool first, bool try_incremental, uint64_t start_height, uint64_t& blocks_start_height, const std::list<crypto::hash> &short_chain_history, std::vector<cryptonote::block_complete_entry> &blocks, std::vector<cryptonote::COMMAND_RPC_GET_BLOCKS_FAST::block_output_indices> &o_indices, uint64_t &current_height);
1870 void pull_hashes(uint64_t start_height, uint64_t& blocks_start_height, const std::list<crypto::hash> &short_chain_history, std::vector<crypto::hash> &hashes);
1871 void fast_refresh(uint64_t stop_height, uint64_t &blocks_start_height, std::list<crypto::hash> &short_chain_history, bool force = false);
1872 void pull_and_parse_next_blocks(bool first, bool try_incremental, uint64_t start_height, uint64_t &blocks_start_height, std::list<crypto::hash> &short_chain_history, const std::vector<cryptonote::block_complete_entry> &prev_blocks, const std::vector<parsed_block> &prev_parsed_blocks, std::vector<cryptonote::block_complete_entry> &blocks, std::vector<parsed_block> &parsed_blocks, bool &last, bool &error, std::exception_ptr &exception);
1873 void process_parsed_blocks(uint64_t start_height, const std::vector<cryptonote::block_complete_entry> &blocks, const std::vector<parsed_block> &parsed_blocks, uint64_t& blocks_added, std::map<std::pair<uint64_t, uint64_t>, size_t> *output_tracker_cache = NULL);
1874 bool accept_pool_tx_for_processing(const crypto::hash &txid, const std::unordered_set<crypto::hash> &payments_tx_hashes);
1875 void process_unconfirmed_transfer(bool incremental, const crypto::hash &txid, wallet2::unconfirmed_transfer_details &tx_details, bool seen_in_pool, std::chrono::system_clock::time_point now, bool refreshed);
1876 void process_pool_info_extent(const cryptonote::COMMAND_RPC_GET_BLOCKS_FAST::response &res, std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &process_txs, bool refreshed);
1877 void update_pool_state_by_pool_query(std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &process_txs, bool refreshed = false);
1878 void update_pool_state_from_pool_data(bool incremental, const std::vector<crypto::hash> &removed_pool_txids, const std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &added_pool_txs, std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> &process_txs, bool refreshed);
1879 uint64_t select_transfers(uint64_t needed_money, std::vector<size_t> unused_transfers_indices, std::vector<size_t>& selected_transfers) const;
1880 bool prepare_file_names(const std::string& file_path);
1881 void process_unconfirmed(const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t height);
1882 void process_outgoing(const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t height, uint64_t ts, uint64_t spent, uint64_t received, uint32_t subaddr_account, const std::set<uint32_t>& subaddr_indices);
1883 void add_unconfirmed_tx(const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount_in, const std::vector<cryptonote::tx_destination_entry> &dests, const crypto::hash &payment_id, uint64_t change_amount, uint32_t subaddr_account, const std::set<uint32_t>& subaddr_indices);
1884 void generate_genesis(cryptonote::block& b) const;
1885 void check_genesis(const crypto::hash& genesis_hash) const; //throws
1886 bool generate_chacha_key_from_secret_keys(crypto::chacha_key &key) const;
1887 void generate_chacha_key_from_password(const epee::wipeable_string &pass, crypto::chacha_key &key) const;
1888 crypto::hash get_payment_id(const pending_tx &ptx) const;
1889 void check_acc_out_precomp(const cryptonote::tx_out &o, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, size_t i, tx_scan_info_t &tx_scan_info) const;
1890 void check_acc_out_precomp(const cryptonote::tx_out &o, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, size_t i, const is_out_data *is_out_data, tx_scan_info_t &tx_scan_info) const;
1891 void check_acc_out_precomp_once(const cryptonote::tx_out &o, const crypto::key_derivation &derivation, const std::vector<crypto::key_derivation> &additional_derivations, size_t i, const is_out_data *is_out_data, tx_scan_info_t &tx_scan_info, bool &already_seen) const;
1892 void parse_block_round(const cryptonote::blobdata &blob, cryptonote::block &bl, crypto::hash &bl_id, bool &error) const;
1893 uint64_t get_upper_transaction_weight_limit();
1894 std::vector<uint64_t> get_unspent_amounts_vector(bool strict);
1895 uint64_t get_dynamic_base_fee_estimate();
1896 float get_output_relatedness(const transfer_details &td0, const transfer_details &td1) const;
1897 std::vector<size_t> pick_preferred_rct_inputs(uint64_t needed_money, uint32_t subaddr_account, const std::set<uint32_t> &subaddr_indices);
1898 void set_spent(size_t idx, uint64_t height);
1899 void set_unspent(size_t idx);
1900 bool is_spent(const transfer_details &td, bool strict = true) const;
1901 bool is_spent(size_t idx, bool strict = true) const;
1902 void get_outs(std::vector<std::vector<get_outs_entry>> &outs, const std::vector<size_t> &selected_transfers, size_t fake_outputs_count, bool rct, std::unordered_set<crypto::public_key> &valid_public_keys_cache);
1903 void get_outs(std::vector<std::vector<get_outs_entry>> &outs, const std::vector<size_t> &selected_transfers, size_t fake_outputs_count, std::vector<uint64_t> &rct_offsets, std::unordered_set<crypto::public_key> &valid_public_keys_cache);
1904 bool tx_add_fake_output(std::vector<std::vector<tools::wallet2::get_outs_entry>> &outs, uint64_t global_index, const crypto::public_key& tx_public_key, const rct::key& mask, uint64_t real_index, bool unlocked, std::unordered_set<crypto::public_key> &valid_public_keys_cache) const;
1905 bool should_pick_a_second_output(bool use_rct, size_t n_transfers, const std::vector<size_t> &unused_transfers_indices, const std::vector<size_t> &unused_dust_indices) const;
1906 std::vector<size_t> get_only_rct(const std::vector<size_t> &unused_dust_indices, const std::vector<size_t> &unused_transfers_indices) const;
1907 void scan_output(const cryptonote::transaction &tx, bool miner_tx, const crypto::public_key &tx_pub_key, size_t i, tx_scan_info_t &tx_scan_info, int &num_vouts_received, std::unordered_map<cryptonote::subaddress_index, uint64_t> &tx_money_got_in_outs, std::vector<size_t> &outs, bool pool);
1908 void trim_hashchain();
1910 rct::multisig_kLRki get_multisig_composite_kLRki(size_t n, const std::unordered_set<crypto::public_key> &ignore_set, std::unordered_set<rct::key> &used_L, std::unordered_set<rct::key> &new_used_L) const;
1911 rct::multisig_kLRki get_multisig_kLRki(size_t n, const rct::key &k) const;
1912 void get_multisig_k(size_t idx, const std::unordered_set<rct::key> &used_L, rct::key &nonce);
1914 void update_multisig_rescan_info(const std::vector<std::vector<rct::key>> &multisig_k, const std::vector<std::vector<tools::wallet2::multisig_info>> &info, size_t n);
1915 bool add_rings(const crypto::chacha_key &key, const cryptonote::transaction_prefix &tx);
1918 bool get_ring(const crypto::chacha_key &key, const crypto::key_image &key_image, std::vector<uint64_t> &outs);
1919 crypto::chacha_key get_ringdb_key();
1920 void setup_keys(const epee::wipeable_string &password);
1921 const crypto::chacha_key get_cache_key();
1923 void verify_password_with_cached_key(const crypto::chacha_key &key);
1924 size_t get_transfer_details(const crypto::key_image &ki) const;
1925 tx_entry_data get_tx_entries(const std::unordered_set<crypto::hash> &txids);
1926 void sort_scan_tx_entries(std::vector<process_tx_entry_t> &unsorted_tx_entries);
1927 void process_scan_txs(const tx_entry_data &txs_to_scan, const tx_entry_data &txs_to_reprocess, const std::unordered_set<crypto::hash> &tx_hashes_to_reprocess, detached_blockchain_data &dbd);
1928 void write_background_sync_wallet(const epee::wipeable_string &wallet_password, const epee::wipeable_string &background_cache_password);
1930 void process_background_cache(const background_sync_data_t &background_sync_data, const hashchain &background_chain, uint64_t last_block_reward);
1931 void reset_background_sync_data(background_sync_data_t &background_sync_data);
1932 void store_background_cache(const crypto::chacha_key &custom_background_key, const bool do_reset_background_sync_data = true);
1933 void store_background_keys(const crypto::chacha_key &custom_background_key);
1934
1935 bool lock_background_keys_file(const std::string &background_keys_file);
1937 bool is_background_keys_file_locked() const;
1938
1939 void register_devices();
1940 hw::device& lookup_device(const std::string & device_descriptor);
1941
1942 bool get_rct_distribution(uint64_t &start_height, std::vector<uint64_t> &distribution);
1943
1945
1947 std::shared_ptr<std::map<std::pair<uint64_t, uint64_t>, size_t>> create_output_tracker_cache() const;
1948
1949 void init_type(hw::device::device_type device_type);
1950 void setup_new_blockchain();
1951 void create_keys_file(const std::string &wallet_, bool watch_only, const epee::wipeable_string &password, bool create_address_file);
1952
1956 boost::optional<epee::wipeable_string> on_device_pin_request();
1957 boost::optional<epee::wipeable_string> on_device_passphrase_request(bool & on_device);
1958 void on_device_progress(const hw::device_progress& event);
1959
1960 std::string get_rpc_status(const std::string &s) const;
1961 void throw_on_rpc_response_error(bool r, const epee::json_rpc::error &error, const std::string &status, const char *method) const;
1962
1963 std::string get_client_signature() const;
1964 void check_rpc_cost(const char *call, uint64_t post_call_credits, uint64_t pre_credits, double expected_cost);
1965
1966 bool should_expand(const cryptonote::subaddress_index &index) const;
1968
1970 boost::optional<epee::net_utils::http::login> m_daemon_login;
1971 std::string m_daemon_address;
1972 std::string m_proxy;
1973 std::string m_wallet_file;
1974 std::string m_keys_file;
1975 std::string m_mms_file;
1976 const std::unique_ptr<epee::net_utils::http::abstract_http_client> m_http_client;
1984
1991 std::vector<std::vector<std::string>> m_subaddress_labels;
1994 std::vector<tools::wallet2::address_book_row> m_address_book;
1995 std::pair<serializable_map<std::string, std::string>, std::vector<std::string>> m_account_tags;
1996 uint64_t m_upper_transaction_weight_limit; //TODO: auto-calc this value or request from daemon, now use some fixed value
1997 std::vector<std::vector<tools::wallet2::multisig_info>> m_multisig_rescan_info;
1998 std::vector<std::vector<rct::key>> m_multisig_rescan_k;
2000
2001 std::atomic<bool> m_run;
2002
2003 boost::recursive_mutex m_daemon_rpc_mutex;
2004
2010 std::string seed_language;
2015 std::vector<crypto::public_key> m_multisig_signers;
2016 //in case of general M/N multisig wallet we should perform N - M + 1 key exchange rounds and remember how many rounds are passed.
2018 std::vector<crypto::public_key> m_multisig_derivations;
2028 // If m_refresh_from_block_height is explicitly set to zero we need this to differentiate it from the case that
2029 // m_refresh_from_block_height was defaulted to zero.*/
2032 std::vector<std::tuple<cryptonote::transaction, crypto::hash, bool>> m_process_pool_txs;
2034 // m_skip_to_height is useful when we don't want to modify the wallet's restore height.
2035 // m_refresh_from_block_height is also a wallet's restore height which should remain constant unless explicitly modified by the user.
2062 std::unordered_set<crypto::hash> m_scanned_pool_txs[2];
2064 std::string m_device_name;
2075
2076 // Aux transaction data from device
2078
2079 // Light wallet
2080 bool m_light_wallet; /* sends view key to daemon for scanning */
2087 // Light wallet info needed to populate m_payment requires 2 separate api calls (get_address_txs and get_unspent_outs)
2088 // We save the info from the first call in m_light_wallet_address_txs for easier lookup.
2089 std::unordered_map<crypto::hash, address_tx> m_light_wallet_address_txs;
2090 // store calculated key image for faster lookup
2092
2093 std::string m_ring_database;
2095 std::unique_ptr<ringdb> m_ringdb;
2096 boost::optional<crypto::chacha_key> m_ringdb_key;
2097
2099 std::unique_ptr<tools::file_locker> m_keys_file_locker;
2100 std::unique_ptr<tools::file_locker> m_background_keys_file_locker;
2101
2106
2107 crypto::chacha_key m_cache_key;
2108 boost::optional<crypto::chacha_key> m_custom_background_key = boost::none;
2109 std::shared_ptr<wallet_keys_unlocker> m_encrypt_keys_after_refresh;
2110
2113
2114 std::shared_ptr<tools::Notify> m_tx_notify;
2115 std::unique_ptr<wallet_device_callback> m_device_callback;
2116
2119
2121
2122 static boost::mutex default_daemon_address_lock;
2123 static std::string default_daemon_address;
2124
2128 };
2129}
2131BOOST_CLASS_VERSION(tools::wallet2::transfer_details, 12)
2132BOOST_CLASS_VERSION(tools::wallet2::multisig_info, 1)
2133BOOST_CLASS_VERSION(tools::wallet2::multisig_info::LR, 0)
2134BOOST_CLASS_VERSION(tools::wallet2::multisig_tx_set, 1)
2135BOOST_CLASS_VERSION(tools::wallet2::payment_details, 5)
2136BOOST_CLASS_VERSION(tools::wallet2::pool_payment_details, 1)
2137BOOST_CLASS_VERSION(tools::wallet2::unconfirmed_transfer_details, 8)
2138BOOST_CLASS_VERSION(tools::wallet2::confirmed_transfer_details, 6)
2139BOOST_CLASS_VERSION(tools::wallet2::address_book_row, 18)
2140BOOST_CLASS_VERSION(tools::wallet2::reserve_proof_entry, 0)
2142BOOST_CLASS_VERSION(tools::wallet2::signed_tx_set, 1)
2143BOOST_CLASS_VERSION(tools::wallet2::tx_construction_data, 4)
2144BOOST_CLASS_VERSION(tools::wallet2::pending_tx, 3)
2145BOOST_CLASS_VERSION(tools::wallet2::multisig_sig, 1)
2146BOOST_CLASS_VERSION(tools::wallet2::background_synced_tx_t, 0)
2147BOOST_CLASS_VERSION(tools::wallet2::background_sync_data_t, 0)
2148
2149namespace boost
2150{
2151 namespace serialization
2152 {
2153 template<class Archive, class F, class S, class T>
2154 inline void serialize(
2155 Archive & ar,
2156 std::tuple<F, S, T> & t,
2157 const unsigned int /* file_version */
2158 ){
2159 ar & boost::serialization::make_nvp("f", std::get<0>(t));
2160 ar & boost::serialization::make_nvp("s", std::get<1>(t));
2161 ar & boost::serialization::make_nvp("t", std::get<2>(t));
2162 }
2163
2164 template <class Archive>
2165 inline typename std::enable_if<!Archive::is_loading::value, void>::type initialize_transfer_details(Archive &a, tools::wallet2::transfer_details &x, const boost::serialization::version_type ver)
2166 {
2167 }
2168 template <class Archive>
2169 inline typename std::enable_if<Archive::is_loading::value, void>::type initialize_transfer_details(Archive &a, tools::wallet2::transfer_details &x, const boost::serialization::version_type ver)
2170 {
2171 if (ver < 1)
2172 {
2173 x.m_mask = rct::identity();
2174 x.m_amount = x.m_tx.vout[x.m_internal_output_index].amount;
2175 }
2176 if (ver < 2)
2177 {
2178 x.m_spent_height = 0;
2179 }
2180 if (ver < 4)
2181 {
2182 x.m_rct = x.m_tx.vout[x.m_internal_output_index].amount == 0;
2183 }
2184 if (ver < 6)
2185 {
2186 x.m_key_image_known = true;
2187 }
2188 if (ver < 7)
2189 {
2190 x.m_pk_index = 0;
2191 }
2192 if (ver < 8)
2193 {
2194 x.m_subaddr_index = {};
2195 }
2196 if (ver < 9)
2197 {
2198 x.m_key_image_partial = false;
2199 x.m_multisig_k.clear();
2200 x.m_multisig_info.clear();
2201 }
2202 if (ver < 10)
2203 {
2204 x.m_key_image_request = false;
2205 }
2206 if (ver < 12)
2207 {
2208 x.m_frozen = false;
2209 }
2210 }
2211
2212 template <class Archive>
2213 inline void serialize(Archive &a, tools::wallet2::transfer_details &x, const boost::serialization::version_type ver)
2214 {
2215 a & x.m_block_height;
2218 if (ver < 3)
2219 {
2221 a & tx;
2224 }
2225 else
2226 {
2227 a & x.m_tx;
2228 }
2229 a & x.m_spent;
2230 a & x.m_key_image;
2231 if (ver < 1)
2232 {
2233 // ensure mask and amount are set
2235 return;
2236 }
2237 a & x.m_mask;
2238 a & x.m_amount;
2239 if (ver < 2)
2240 {
2242 return;
2243 }
2244 a & x.m_spent_height;
2245 if (ver < 3)
2246 {
2248 return;
2249 }
2250 a & x.m_txid;
2251 if (ver < 4)
2252 {
2254 return;
2255 }
2256 a & x.m_rct;
2257 if (ver < 5)
2258 {
2260 return;
2261 }
2262 if (ver < 6)
2263 {
2264 // v5 did not properly initialize
2265 uint8_t u;
2266 a & u;
2267 x.m_key_image_known = true;
2268 return;
2269 }
2270 a & x.m_key_image_known;
2271 if (ver < 7)
2272 {
2274 return;
2275 }
2276 a & x.m_pk_index;
2277 if (ver < 8)
2278 {
2280 return;
2281 }
2282 a & x.m_subaddr_index;
2283 if (ver < 9)
2284 {
2286 return;
2287 }
2288 a & x.m_multisig_info;
2289 a & x.m_multisig_k;
2291 if (ver < 10)
2292 {
2294 return;
2295 }
2297 if (ver < 11)
2298 {
2300 return;
2301 }
2302 a & x.m_uses;
2303 if (ver < 12)
2304 {
2306 return;
2307 }
2308 a & x.m_frozen;
2309 }
2310
2311 template <class Archive>
2312 inline void serialize(Archive &a, tools::wallet2::multisig_info::LR &x, const boost::serialization::version_type ver)
2313 {
2314 a & x.m_L;
2315 a & x.m_R;
2316 }
2317
2318 template <class Archive>
2319 inline void serialize(Archive &a, tools::wallet2::multisig_info &x, const boost::serialization::version_type ver)
2320 {
2321 a & x.m_signer;
2322 a & x.m_LR;
2324 }
2325
2326 template <class Archive>
2327 inline void serialize(Archive &a, tools::wallet2::multisig_tx_set &x, const boost::serialization::version_type ver)
2328 {
2329 a & x.m_ptx;
2330 a & x.m_signers;
2331 }
2332
2333 template <class Archive>
2334 inline void serialize(Archive &a, tools::wallet2::unconfirmed_transfer_details &x, const boost::serialization::version_type ver)
2335 {
2336 a & x.m_change;
2337 a & x.m_sent_time;
2338 if (ver < 5)
2339 {
2341 a & tx;
2343 }
2344 else
2345 {
2346 a & x.m_tx;
2347 }
2348 if (ver < 1)
2349 return;
2350 a & x.m_dests;
2351 a & x.m_payment_id;
2352 if (ver < 2)
2353 return;
2354 a & x.m_state;
2355 if (ver < 3)
2356 return;
2357 a & x.m_timestamp;
2358 if (ver < 4)
2359 return;
2360 a & x.m_amount_in;
2361 a & x.m_amount_out;
2362 if (ver < 6)
2363 {
2364 // v<6 may not have change accumulated in m_amount_out, which is a pain,
2365 // as it's readily understood to be sum of outputs.
2366 // We convert it to include change from v6
2367 if (!typename Archive::is_saving() && x.m_change != (uint64_t)-1)
2368 x.m_amount_out += x.m_change;
2369 }
2370 if (ver < 7)
2371 {
2372 x.m_subaddr_account = 0;
2373 return;
2374 }
2375 a & x.m_subaddr_account;
2376 a & x.m_subaddr_indices;
2377 if (ver < 8)
2378 return;
2379 a & x.m_rings;
2380 }
2381
2382 template <class Archive>
2383 inline void serialize(Archive &a, tools::wallet2::confirmed_transfer_details &x, const boost::serialization::version_type ver)
2384 {
2385 a & x.m_amount_in;
2386 a & x.m_amount_out;
2387 a & x.m_change;
2388 a & x.m_block_height;
2389 if (ver < 1)
2390 return;
2391 a & x.m_dests;
2392 a & x.m_payment_id;
2393 if (ver < 2)
2394 return;
2395 a & x.m_timestamp;
2396 if (ver < 3)
2397 {
2398 // v<3 may not have change accumulated in m_amount_out, which is a pain,
2399 // as it's readily understood to be sum of outputs. Whether it got added
2400 // or not depends on whether it came from a unconfirmed_transfer_details
2401 // (not included) or not (included). We can't reliably tell here, so we
2402 // check whether either yields a "negative" fee, or use the other if so.
2403 // We convert it to include change from v3
2404 if (!typename Archive::is_saving() && x.m_change != (uint64_t)-1)
2405 {
2406 if (x.m_amount_in > (x.m_amount_out + x.m_change))
2407 x.m_amount_out += x.m_change;
2408 }
2409 }
2410 if (ver < 4)
2411 {
2412 if (!typename Archive::is_saving())
2413 x.m_unlock_time = 0;
2414 return;
2415 }
2416 a & x.m_unlock_time;
2417 if (ver < 5)
2418 {
2419 x.m_subaddr_account = 0;
2420 return;
2421 }
2422 a & x.m_subaddr_account;
2423 a & x.m_subaddr_indices;
2424 if (ver < 6)
2425 return;
2426 a & x.m_rings;
2427 }
2428
2429 template <class Archive>
2430 inline void serialize(Archive& a, tools::wallet2::payment_details& x, const boost::serialization::version_type ver)
2431 {
2432 a & x.m_tx_hash;
2433 a & x.m_amount;
2434 a & x.m_block_height;
2435 a & x.m_unlock_time;
2436 if (ver < 1)
2437 return;
2438 a & x.m_timestamp;
2439 if (ver < 2)
2440 {
2441 x.m_coinbase = false;
2442 x.m_subaddr_index = {};
2443 return;
2444 }
2445 a & x.m_subaddr_index;
2446 if (ver < 3)
2447 {
2448 x.m_coinbase = false;
2449 x.m_fee = 0;
2450 return;
2451 }
2452 a & x.m_fee;
2453 if (ver < 4)
2454 {
2455 x.m_coinbase = false;
2456 return;
2457 }
2458 a & x.m_coinbase;
2459 if (ver < 5)
2460 return;
2461 a & x.m_amounts;
2462 }
2463
2464 template <class Archive>
2465 inline void serialize(Archive& a, tools::wallet2::pool_payment_details& x, const boost::serialization::version_type ver)
2466 {
2467 a & x.m_pd;
2469 }
2470
2471 template <class Archive>
2472 inline void serialize(Archive& a, tools::wallet2::address_book_row& x, const boost::serialization::version_type ver)
2473 {
2474 a & x.m_address;
2475 if (ver < 18)
2476 {
2477 crypto::hash payment_id;
2478 a & payment_id;
2479 x.m_has_payment_id = !(payment_id == crypto::null_hash);
2480 if (x.m_has_payment_id)
2481 {
2482 bool is_long = false;
2483 for (int i = 8; i < 32; ++i)
2484 is_long |= payment_id.data[i];
2485 if (is_long)
2486 {
2487 MWARNING("Long payment ID ignored on address book load");
2489 x.m_has_payment_id = false;
2490 }
2491 else
2492 memcpy(x.m_payment_id.data, payment_id.data, 8);
2493 }
2494 }
2495 a & x.m_description;
2496 if (ver < 17)
2497 {
2498 x.m_is_subaddress = false;
2499 return;
2500 }
2501 a & x.m_is_subaddress;
2502 if (ver < 18)
2503 return;
2504 a & x.m_has_payment_id;
2505 if (x.m_has_payment_id)
2506 a & x.m_payment_id;
2507 }
2508
2509 template <class Archive>
2510 inline void serialize(Archive& a, tools::wallet2::reserve_proof_entry& x, const boost::serialization::version_type ver)
2511 {
2512 a & x.txid;
2513 a & x.index_in_tx;
2514 a & x.shared_secret;
2515 a & x.key_image;
2516 a & x.shared_secret_sig;
2517 a & x.key_image_sig;
2518 }
2519
2520 template <class Archive>
2521 inline void serialize(Archive &a, tools::wallet2::unsigned_tx_set &x, const boost::serialization::version_type ver)
2522 {
2523 a & x.txes;
2524 if (ver == 0)
2525 {
2526 // load old version
2527 std::pair<size_t, tools::wallet2::transfer_container> old_transfers;
2528 a & old_transfers;
2529 std::get<0>(x.transfers) = std::get<0>(old_transfers);
2530 std::get<1>(x.transfers) = std::get<0>(old_transfers) + std::get<1>(old_transfers).size();
2531 std::get<2>(x.transfers) = std::get<1>(old_transfers);
2532 return;
2533 }
2534 throw std::runtime_error("Boost serialization not supported for newest unsigned_tx_set");
2535 }
2536
2537 template <class Archive>
2538 inline void serialize(Archive &a, tools::wallet2::signed_tx_set &x, const boost::serialization::version_type ver)
2539 {
2540 a & x.ptx;
2541 a & x.key_images;
2542 if (ver < 1)
2543 return;
2544 a & x.tx_key_images.parent();
2545 }
2546
2547 template <class Archive>
2548 inline void serialize(Archive &a, tools::wallet2::tx_construction_data &x, const boost::serialization::version_type ver)
2549 {
2550 a & x.sources;
2551 a & x.change_dts;
2552 a & x.splitted_dsts;
2553 if (ver < 2)
2554 {
2555 // load list to vector
2556 std::list<size_t> selected_transfers;
2557 a & selected_transfers;
2558 x.selected_transfers.clear();
2559 x.selected_transfers.reserve(selected_transfers.size());
2560 for (size_t t: selected_transfers)
2561 x.selected_transfers.push_back(t);
2562 }
2563 a & x.extra;
2564 a & x.unlock_time;
2565 a & x.use_rct;
2566 a & x.dests;
2567 if (ver < 1)
2568 {
2569 x.subaddr_account = 0;
2570 return;
2571 }
2572 a & x.subaddr_account;
2573 a & x.subaddr_indices;
2574 if (ver < 2)
2575 {
2576 if (!typename Archive::is_saving())
2578 return;
2579 }
2581 if (ver < 3)
2582 {
2583 if (!typename Archive::is_saving())
2585 return;
2586 }
2587 if (ver < 4)
2588 {
2589 bool use_bulletproofs = x.rct_config.range_proof_type != rct::RangeProofBorromean;
2590 a & use_bulletproofs;
2591 if (!typename Archive::is_saving())
2593 return;
2594 }
2595 a & x.rct_config;
2596 }
2597
2598 template <class Archive>
2599 inline void serialize(Archive &a, tools::wallet2::multisig_sig &x, const boost::serialization::version_type ver)
2600 {
2601 a & x.sigs;
2602 a & x.ignore;
2603 a & x.used_L;
2604 a & x.signing_keys;
2605 a & x.msout;
2606 if (ver < 1)
2607 return;
2608 a & x.total_alpha_G;
2609 a & x.total_alpha_H;
2610 a & x.c_0;
2611 a & x.s;
2612 }
2613
2614 template <class Archive>
2615 inline void serialize(Archive &a, tools::wallet2::pending_tx &x, const boost::serialization::version_type ver)
2616 {
2617 a & x.tx;
2618 a & x.dust;
2619 a & x.fee;
2620 a & x.dust_added_to_fee;
2621 a & x.change_dts;
2622 if (ver < 2)
2623 {
2624 // load list to vector
2625 std::list<size_t> selected_transfers;
2626 a & selected_transfers;
2627 x.selected_transfers.clear();
2628 x.selected_transfers.reserve(selected_transfers.size());
2629 for (size_t t: selected_transfers)
2630 x.selected_transfers.push_back(t);
2631 }
2632 a & x.key_images;
2633 a & x.tx_key;
2634 a & x.dests;
2635 a & x.construction_data;
2636 if (ver < 1)
2637 return;
2639 if (ver < 2)
2640 return;
2642 if (ver < 3)
2643 return;
2644 a & x.multisig_sigs;
2645 }
2646
2647 template <class Archive>
2648 inline void serialize(Archive& a, tools::wallet2::background_synced_tx_t &x, const boost::serialization::version_type ver)
2649 {
2651 a & x.tx;
2652 a & x.output_indices;
2653 a & x.height;
2654 a & x.block_timestamp;
2655 a & x.double_spend_seen;
2656 }
2657
2658 template <class Archive>
2659 inline void serialize(Archive& a, tools::wallet2::background_sync_data_t &x, const boost::serialization::version_type ver)
2660 {
2662 a & x.start_height;
2663 a & x.txs.parent();
2668 }
2669 }
2670}
2671
2672namespace tools
2673{
2674
2675 namespace detail
2676 {
2677 //----------------------------------------------------------------------------------------------------
2678 inline void digit_split_strategy(const std::vector<cryptonote::tx_destination_entry>& dsts,
2679 const cryptonote::tx_destination_entry& change_dst, uint64_t dust_threshold,
2680 std::vector<cryptonote::tx_destination_entry>& splitted_dsts, std::vector<cryptonote::tx_destination_entry> &dust_dsts)
2681 {
2682 splitted_dsts.clear();
2683 dust_dsts.clear();
2684
2685 for(auto& de: dsts)
2686 {
2688 [&](uint64_t chunk) { splitted_dsts.push_back(cryptonote::tx_destination_entry(chunk, de.addr, de.is_subaddress)); },
2689 [&](uint64_t a_dust) { splitted_dsts.push_back(cryptonote::tx_destination_entry(a_dust, de.addr, de.is_subaddress)); } );
2690 }
2691
2693 [&](uint64_t chunk) {
2694 if (chunk <= dust_threshold)
2695 dust_dsts.push_back(cryptonote::tx_destination_entry(chunk, change_dst.addr, false));
2696 else
2697 splitted_dsts.push_back(cryptonote::tx_destination_entry(chunk, change_dst.addr, false));
2698 },
2699 [&](uint64_t a_dust) { dust_dsts.push_back(cryptonote::tx_destination_entry(a_dust, change_dst.addr, false)); } );
2700 }
2701 //----------------------------------------------------------------------------------------------------
2702 inline void null_split_strategy(const std::vector<cryptonote::tx_destination_entry>& dsts,
2703 const cryptonote::tx_destination_entry& change_dst, uint64_t dust_threshold,
2704 std::vector<cryptonote::tx_destination_entry>& splitted_dsts, std::vector<cryptonote::tx_destination_entry> &dust_dsts)
2705 {
2706 splitted_dsts = dsts;
2707
2708 dust_dsts.clear();
2709 uint64_t change = change_dst.amount;
2710
2711 if (0 != change)
2712 {
2713 splitted_dsts.push_back(cryptonote::tx_destination_entry(change, change_dst.addr, false));
2714 }
2715 }
2716 //----------------------------------------------------------------------------------------------------
2718 {
2719 std::string indexes;
2720 std::for_each(src.outputs.begin(), src.outputs.end(), [&](const cryptonote::tx_source_entry::output_entry& s_e) { indexes += boost::to_string(s_e.first) + " "; });
2721 LOG_PRINT_L0("amount=" << cryptonote::print_money(src.amount) << ", real_output=" <<src.real_output << ", real_output_in_tx_index=" << src.real_output_in_tx_index << ", indexes: " << indexes);
2722 }
2723 //----------------------------------------------------------------------------------------------------
2724 }
2725 //----------------------------------------------------------------------------------------------------
2726}
#define s(x, c)
Definition aesb.c:47
struct block_ block
cryptonote::block b
Definition block.cpp:40
static boost::multiprecision::uint128_t fees
Definition blockchain_stats.cpp:58
Definition account.h:74
A container for blockchain checkpoints.
Definition checkpoints.h:53
Definition cryptonote_basic.h:171
std::vector< tx_out > vout
Definition cryptonote_basic.h:179
Definition cryptonote_basic.h:205
Definition net_ssl.h:77
Non-owning sequence of data. Does not deep copy.
Definition span.h:55
Definition wipeable_string.h:41
Definition device.hpp:71
Definition device.hpp:87
device_type
Definition device.hpp:104
@ SOFTWARE
Definition device.hpp:105
Definition device.hpp:77
Definition message_store.h:268
Definition http.h:46
Definition containers.h:49
std::unordered_map< K, V > & parent()
Definition containers.h:52
Definition containers.h:71
Definition node_rpc_proxy.h:43
const std::vector< uint64_t > & rct_offsets
Definition wallet2.h:118
uint64_t num_rct_outputs
Definition wallet2.h:120
double average_output_time
Definition wallet2.h:121
const uint64_t * end
Definition wallet2.h:119
std::gamma_distribution< double > gamma
Definition wallet2.h:117
struct tools::gamma_picker::gamma_engine engine
const uint64_t * begin
Definition wallet2.h:119
uint64_t get_num_rct_outs() const
Definition wallet2.h:105
gamma_picker(const std::vector< uint64_t > &rct_offsets)
Definition wallet2.cpp:1054
uint64_t pick()
Definition wallet2.cpp:1056
Definition wallet2.h:193
void crop(size_t height)
Definition wallet2.h:204
crypto::hash & operator[](size_t idx)
Definition wallet2.h:203
void clear()
Definition wallet2.h:205
bool is_in_bounds(size_t idx) const
Definition wallet2.h:201
size_t offset() const
Definition wallet2.h:198
size_t m_offset
Definition wallet2.h:226
void trim(size_t height)
Definition wallet2.h:207
void push_back(const crypto::hash &hash)
Definition wallet2.h:200
bool empty() const
Definition wallet2.h:206
const crypto::hash & operator[](size_t idx) const
Definition wallet2.h:202
hashchain()
Definition wallet2.h:195
void serialize(t_archive &a, const unsigned int ver)
Definition wallet2.h:211
void refill(const crypto::hash &hash)
Definition wallet2.h:208
crypto::hash m_genesis
Definition wallet2.h:227
std::deque< crypto::hash > m_blockchain
Definition wallet2.h:228
size_t size() const
Definition wallet2.h:197
const crypto::hash & genesis() const
Definition wallet2.h:199
Definition wallet2.h:139
virtual boost::optional< epee::wipeable_string > on_device_passphrase_request(bool &on_device)
Definition wallet2.h:158
virtual void on_money_spent(uint64_t height, const crypto::hash &txid, const cryptonote::transaction &in_tx, uint64_t amount, const cryptonote::transaction &spend_tx, const cryptonote::subaddress_index &subaddr_index)
Definition wallet2.h:146
virtual boost::optional< epee::wipeable_string > on_device_pin_request()
Definition wallet2.h:157
virtual void on_device_button_pressed()
Definition wallet2.h:156
virtual boost::optional< epee::wipeable_string > on_get_password(const char *reason)
Definition wallet2.h:148
virtual void on_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction &tx, uint64_t amount, uint64_t burnt, const cryptonote::subaddress_index &subaddr_index, bool is_change, uint64_t unlock_time)
Definition wallet2.h:144
virtual void on_pool_tx_removed(const crypto::hash &txid)
Definition wallet2.h:161
virtual void on_lw_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, uint64_t amount)
Definition wallet2.h:152
virtual void on_device_button_request(uint64_t code)
Definition wallet2.h:155
virtual void on_lw_money_spent(uint64_t height, const crypto::hash &txid, uint64_t amount)
Definition wallet2.h:153
virtual void on_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction &tx, uint64_t amount, const cryptonote::subaddress_index &subaddr_index)
Definition wallet2.h:145
virtual void on_new_block(uint64_t height, const cryptonote::block &block)
Definition wallet2.h:142
virtual ~i_wallet2_callback()
Definition wallet2.h:162
virtual void on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction &tx)
Definition wallet2.h:147
virtual void on_lw_money_received(uint64_t height, const crypto::hash &txid, uint64_t amount)
Definition wallet2.h:151
virtual void on_reorg(uint64_t height, uint64_t blocks_detached, size_t transfers_detached)
Definition wallet2.h:143
virtual void on_lw_new_block(uint64_t height)
Definition wallet2.h:150
virtual void on_device_progress(const hw::device_progress &event)
Definition wallet2.h:159
Definition password.h:41
Definition wallet2.h:233
uint64_t m_segregation_height
Definition wallet2.h:2048
transfer_container m_transfers
Definition wallet2.h:1985
bool m_confirm_non_default_ring_size
Definition wallet2.h:2036
BackgroundMiningSetupType m_setup_background_mining
Definition wallet2.h:2057
bool m_is_background_wallet
Definition wallet2.h:2053
void on_device_progress(const hw::device_progress &event)
Definition wallet2.cpp:15971
const mms::message_store & get_message_store() const
Definition wallet2.h:1802
void allow_mismatched_daemon_version(bool allow_mismatch)
Definition wallet2.h:1506
cryptonote::account_base m_account
Definition wallet2.h:1969
void load_deprecated_formats(bool load)
Definition wallet2.h:1494
bool parse_unsigned_tx_from_str(const std::string &unsigned_tx_st, unsigned_tx_set &exported_txs) const
Definition wallet2.cpp:7712
NodeRPCProxy m_node_rpc_proxy
Definition wallet2.h:2061
uint32_t get_confirm_backlog_threshold() const
Definition wallet2.h:1457
BackgroundSyncType m_background_sync_type
Definition wallet2.h:2054
void update_multisig_rescan_info(const std::vector< std::vector< rct::key > > &multisig_k, const std::vector< std::vector< tools::wallet2::multisig_info > > &info, size_t n)
Definition wallet2.cpp:15357
void max_reorg_depth(uint64_t depth)
Definition wallet2.h:1069
cryptonote::blobdata export_multisig()
Definition wallet2.cpp:15286
bool segregate_pre_fork_outputs() const
Definition wallet2.h:1462
void auto_mine_for_rpc_payment_threshold(float threshold)
Definition wallet2.h:1497
void auto_refresh(bool r)
Definition wallet2.h:1445
void key_reuse_mitigation2(bool value)
Definition wallet2.h:1465
void ignore_outputs_below(uint64_t value)
Definition wallet2.h:1475
bool m_merge_destinations
Definition wallet2.h:2041
bool is_unattended() const
Definition wallet2.h:1684
bool load_unsigned_tx(const std::string &unsigned_filename, unsigned_tx_set &exported_txs) const
Definition wallet2.cpp:7693
bool m_explicit_refresh_from_block_height
Definition wallet2.h:2030
crypto::public_key get_multisig_signing_public_key(size_t idx) const
Definition wallet2.cpp:15179
bool watch_only() const
Definition wallet2.h:1155
boost::optional< epee::net_utils::http::login > m_daemon_login
Definition wallet2.h:1970
std::string m_device_derivation_path
Definition wallet2.h:2065
boost::optional< crypto::chacha_key > m_ringdb_key
Definition wallet2.h:2096
void set_rpc_client_secret_key(const crypto::secret_key &key)
Definition wallet2.h:1500
void set_trusted_daemon(bool trusted)
Definition wallet2.h:1091
bool m_confirm_backlog
Definition wallet2.h:2042
bool merge_destinations() const
Definition wallet2.h:1453
void always_confirm_transfers(bool always)
Definition wallet2.h:1435
void inactivity_lock_timeout(uint32_t seconds)
Definition wallet2.h:1486
static uint64_t estimate_fee(bool use_per_byte_fee, bool use_rct, int n_inputs, int mixin, int n_outputs, size_t extra_size, bool bulletproof, bool clsag, bool bulletproof_plus, bool use_view_tags, uint64_t base_fee, uint64_t fee_quantization_mask)
Definition wallet2.cpp:8501
bool load_deprecated_formats() const
Definition wallet2.h:1493
void scan_output(const cryptonote::transaction &tx, bool miner_tx, const crypto::public_key &tx_pub_key, size_t i, tx_scan_info_t &tx_scan_info, int &num_vouts_received, std::unordered_map< cryptonote::subaddress_index, uint64_t > &tx_money_got_in_outs, std::vector< size_t > &outs, bool pool)
Definition wallet2.cpp:2217
bool m_original_keys_available
Definition wallet2.h:2103
void default_mixin(uint32_t m)
Definition wallet2.h:1441
serializable_unordered_map< std::string, std::string > m_attributes
Definition wallet2.h:1993
void remove_obsolete_pool_txs(const std::vector< crypto::hash > &tx_hashes, bool remove_if_found)
Definition wallet2.cpp:3569
bool export_key_images(const std::string &filename, bool all=false) const
Definition wallet2.cpp:13895
hw::device::device_type m_key_device_type
Definition wallet2.h:2007
boost::optional< crypto::chacha_key > m_custom_background_key
Definition wallet2.h:2108
const boost::optional< epee::net_utils::http::login > & get_daemon_login() const
Definition wallet2.h:1564
rct::multisig_kLRki get_multisig_composite_kLRki(size_t n, const std::unordered_set< crypto::public_key > &ignore_set, std::unordered_set< rct::key > &used_L, std::unordered_set< rct::key > &new_used_L) const
Definition wallet2.cpp:15239
uint64_t m_last_block_reward
Definition wallet2.h:2098
void track_uses(bool value)
Definition wallet2.h:1477
boost::optional< wallet2::keys_file_data > get_keys_file_data(const epee::wipeable_string &password, bool watch_only)
get_keys_file_data Get wallet keys data which can be stored to a wallet file.
Definition wallet2.cpp:4623
void set_default_priority(uint32_t p)
Definition wallet2.h:1443
std::string seed_language
Definition wallet2.h:2010
bool m_ignore_fractional_outputs
Definition wallet2.h:2049
bool add_rings(const crypto::chacha_key &key, const cryptonote::transaction_prefix &tx)
Definition wallet2.cpp:8816
bool m_print_ring_members
Definition wallet2.h:2020
void enable_dns(bool enable)
Definition wallet2.h:1817
void store()
Definition wallet2.cpp:6804
bool invoke_http_json(const boost::string_ref uri, const t_request &req, t_response &res, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref http_method="POST")
Definition wallet2.h:1745
bool m_background_syncing
Definition wallet2.h:2125
void callback(i_wallet2_callback *callback)
Definition wallet2.h:1088
serializable_unordered_map< crypto::public_key, size_t > m_pub_keys
Definition wallet2.h:1988
std::string make_uri(const std::string &address, const std::string &payment_id, uint64_t amount, const std::string &tx_description, const std::string &recipient_name, std::string &error) const
Definition wallet2.cpp:15584
bool should_expand(const cryptonote::subaddress_index &index) const
Definition wallet2.cpp:1604
void merge_destinations(bool merge)
Definition wallet2.h:1452
uint32_t m_multisig_rounds_passed
Definition wallet2.h:2017
void set_tx_notify(const std::shared_ptr< tools::Notify > &notify)
Definition wallet2.h:1811
std::vector< tools::wallet2::address_book_row > m_address_book
Definition wallet2.h:1994
bool m_load_deprecated_formats
Definition wallet2.h:2118
bool m_track_uses
Definition wallet2.h:2052
uint64_t m_light_wallet_unlocked_balance
Definition wallet2.h:2086
bool m_key_reuse_mitigation2
Definition wallet2.h:2047
uint32_t m_multisig_threshold
Definition wallet2.h:2014
const transfer_details & get_transfer_details(size_t idx) const
Definition wallet2.cpp:12344
void store_background_keys(const crypto::chacha_key &custom_background_key)
Definition wallet2.cpp:14536
std::atomic< bool > m_run
Definition wallet2.h:2001
void on_device_button_request(uint64_t code)
Definition wallet2.cpp:15943
void transfer_selected_rct(std::vector< cryptonote::tx_destination_entry > dsts, const std::vector< size_t > &selected_transfers, size_t fake_outputs_count, std::vector< std::vector< tools::wallet2::get_outs_entry > > &outs, std::unordered_set< crypto::public_key > &valid_public_keys_cache, uint64_t fee, const std::vector< uint8_t > &extra, cryptonote::transaction &tx, pending_tx &ptx, const rct::RCTConfig &rct_config, const bool use_view_tags)
Definition wallet2.cpp:10052
uint64_t get_min_output_value() const
Definition wallet2.h:1451
uint32_t m_min_output_count
Definition wallet2.h:2039
void on_device_button_pressed()
Definition wallet2.cpp:15949
void explicit_refresh_from_block_height(bool expl)
Definition wallet2.h:1066
bool load_tx(const std::string &signed_filename, std::vector< tools::wallet2::pending_tx > &ptx, std::function< bool(const signed_tx_set &)> accept_func=NULL)
Definition wallet2.cpp:8006
serializable_unordered_map< crypto::public_key, serializable_map< uint64_t, crypto::key_image > > m_key_image_cache
Definition wallet2.h:2091
uint64_t segregation_height() const
Definition wallet2.h:1466
tx_entry_data get_tx_entries(const std::unordered_set< crypto::hash > &txids)
Definition wallet2.cpp:1691
uint64_t m_ignore_outputs_above
Definition wallet2.h:2050
bool ignore_fractional_outputs() const
Definition wallet2.h:1468
message_signature_type_t
Definition wallet2.h:1610
@ sign_with_view_key
Definition wallet2.h:1610
@ sign_with_spend_key
Definition wallet2.h:1610
void set_export_format(const ExportFormat &export_format)
Definition wallet2.h:1492
uint64_t m_device_last_key_image_sync
Definition wallet2.h:2066
std::string get_multisig_first_kex_msg() const
Get initial message to start multisig key exchange (before 'make_multisig()' is called).
Definition wallet2.cpp:6147
std::pair< serializable_map< std::string, std::string >, std::vector< std::string > > m_account_tags
Definition wallet2.h:1995
void ask_password(AskPasswordType ask)
Definition wallet2.h:1447
friend class wallet_device_callback
Definition wallet2.h:237
void write_background_sync_wallet(const epee::wipeable_string &wallet_password, const epee::wipeable_string &background_cache_password)
Definition wallet2.cpp:14559
bool m_unattended
Definition wallet2.h:2111
BackgroundMiningSetupType setup_background_mining() const
Definition wallet2.h:1483
serializable_unordered_map< crypto::hash, std::vector< crypto::secret_key > > m_additional_tx_keys
Definition wallet2.h:1983
uint64_t get_segregation_fork_height() const
Definition wallet2.cpp:15895
crypto::secret_key m_original_view_secret_key
Definition wallet2.h:2105
uint64_t m_ignore_outputs_below
Definition wallet2.h:2051
serializable_unordered_map< crypto::hash, crypto::secret_key > m_tx_keys
Definition wallet2.h:1981
std::tuple< uint64_t, crypto::public_key, rct::key > get_outs_entry
Definition wallet2.h:863
std::string m_daemon_address
Definition wallet2.h:1971
rct::multisig_kLRki get_multisig_kLRki(size_t n, const rct::key &k) const
Definition wallet2.cpp:15229
std::string encrypt(const epee::span< char > &span, const crypto::secret_key &skey, bool authenticated=true) const
void restore(const std::string &wallet_, const epee::wipeable_string &password, const std::string &device_name, bool create_address_file=false)
Restore a wallet hold by an HW.
Definition wallet2.cpp:5884
size_t get_num_subaddress_accounts() const
Definition wallet2.h:1126
void setup_keys(const epee::wipeable_string &password)
Definition wallet2.cpp:4859
void load(const std::string &wallet, const epee::wipeable_string &password, const std::string &keys_buf="", const std::string &cache_buf="")
Definition wallet2.cpp:6474
std::string m_wallet_file
Definition wallet2.h:1973
const crypto::chacha_key get_cache_key()
Definition wallet2.cpp:4913
payment_container m_payments
Definition wallet2.h:1986
bool parse_tx_from_str(const std::string &signed_tx_st, std::vector< tools::wallet2::pending_tx > &ptx, std::function< bool(const signed_tx_set &)> accept_func)
Definition wallet2.cpp:8027
serializable_unordered_map< crypto::hash, std::string > m_tx_notes
Definition wallet2.h:1992
uint64_t get_min_ring_size()
Definition wallet2.cpp:8647
boost::optional< epee::wipeable_string > on_device_passphrase_request(bool &on_device)
Definition wallet2.cpp:15962
hashchain m_blockchain
Definition wallet2.h:1977
void device_name(const std::string &device_name)
Definition wallet2.h:1488
void ignore_outputs_above(uint64_t value)
Definition wallet2.h:1473
const std::string & device_derivation_path() const
Definition wallet2.h:1489
bool confirm_backlog() const
Definition wallet2.h:1454
bool m_segregate_pre_fork_outputs
Definition wallet2.h:2046
static std::string get_default_daemon_address()
Definition wallet2.h:1824
AskPasswordType
Definition wallet2.h:248
@ AskPasswordToDecrypt
Definition wallet2.h:251
@ AskPasswordOnAction
Definition wallet2.h:250
@ AskPasswordNever
Definition wallet2.h:249
bool m_allow_mismatched_daemon_version
Definition wallet2.h:2074
void set_min_output_count(uint32_t count)
Definition wallet2.h:1448
bool sign_tx(unsigned_tx_set &exported_txs, const std::string &signed_filename, std::vector< wallet2::pending_tx > &ptx, bool export_raw=false)
cryptonote::account_base & get_account()
Definition wallet2.h:1055
void verify_password_with_cached_key(const epee::wipeable_string &password)
Definition wallet2.cpp:4927
void setup_background_mining(BackgroundMiningSetupType value)
Definition wallet2.h:1484
void check_rpc_cost(const char *call, uint64_t post_call_credits, uint64_t pre_credits, double expected_cost)
Definition wallet_rpc_payments.cpp:207
size_t import_multisig(std::vector< cryptonote::blobdata > info, bool refresh_after_import=true)
Definition wallet2.cpp:15379
const cryptonote::account_base & get_account() const
Definition wallet2.h:1056
uint64_t m_credits_target
Definition wallet2.h:2072
std::string m_device_name
Definition wallet2.h:2064
bool confirm_non_default_ring_size() const
Definition wallet2.h:1470
void show_wallet_name_when_locked(bool value)
Definition wallet2.h:1482
std::vector< std::vector< std::string > > m_subaddress_labels
Definition wallet2.h:1991
void set_light_wallet(bool light_wallet)
Definition wallet2.h:1103
static std::string default_daemon_address
Definition wallet2.h:2123
std::pair< size_t, size_t > get_subaddress_lookahead() const
Definition wallet2.h:1141
size_t get_num_transfer_details() const
Definition wallet2.h:1553
uint64_t ignore_outputs_above() const
Definition wallet2.h:1472
std::vector< std::vector< tools::wallet2::multisig_info > > m_multisig_rescan_info
Definition wallet2.h:1997
bool m_light_wallet_connected
Definition wallet2.h:2084
if(version< 1)
Definition wallet2.h:1401
void process_pool_state(const std::vector< std::tuple< cryptonote::transaction, crypto::hash, bool > > &txs)
Definition wallet2.cpp:3916
cryptonote::account_public_address m_original_address
Definition wallet2.h:2104
void set_refresh_from_block_height(uint64_t height)
Definition wallet2.h:1063
bool persistent_rpc_client_id() const
Definition wallet2.h:1495
bool print_ring_members() const
Definition wallet2.h:1436
cryptonote::account_public_address m_account_public_address
Definition wallet2.h:1989
uint64_t m_kdf_rounds
Definition wallet2.h:2009
payment_container export_payments() const
Definition wallet2.cpp:14763
size_t import_outputs(const std::tuple< uint64_t, uint64_t, std::vector< tools::wallet2::exported_transfer_details > > &outputs)
Definition wallet2.cpp:14969
crypto::secret_key m_rpc_client_secret_key
Definition wallet2.h:2070
bool is_synced()
Definition wallet2.cpp:15813
boost::optional< wallet2::cache_file_data > get_cache_file_data()
get_cache_file_data Get wallet cache data which can be stored to a wallet file.
Definition wallet2.cpp:6982
std::shared_ptr< tools::Notify > m_tx_notify
Definition wallet2.h:2114
std::vector< std::pair< uint64_t, uint64_t > > estimate_backlog(const std::vector< std::pair< double, double > > &fee_levels)
Definition wallet2.cpp:15822
void handle_payment_changes(const T &res, std::true_type)
Definition wallet2.h:1692
AskPasswordType ask_password() const
Definition wallet2.h:1446
uint64_t get_blockchain_height_by_date(uint16_t year, uint8_t month, uint8_t day)
Definition wallet2.cpp:15716
uint64_t m_light_wallet_scanned_block_height
Definition wallet2.h:2081
uint64_t m_light_wallet_blockchain_height
Definition wallet2.h:2082
void device_derivation_path(const std::string &device_derivation_path)
Definition wallet2.h:1490
bool is_multisig_enabled() const
Definition wallet2.h:1503
std::vector< transfer_details > transfer_container
Definition wallet2.h:620
bool m_enable_multisig
Definition wallet2.h:2073
size_t import_outputs_from_str(const std::string &outputs_st)
Definition wallet2.cpp:15072
void get_multisig_k(size_t idx, const std::unordered_set< rct::key > &used_L, rct::key &nonce)
Definition wallet2.cpp:15186
void confirm_non_default_ring_size(bool always)
Definition wallet2.h:1471
uint64_t get_fee_multiplier(uint32_t priority, int fee_algorithm=-1)
Definition wallet2.cpp:8515
void import_blockchain(const std::tuple< size_t, crypto::hash, std::vector< crypto::hash > > &bc)
Definition wallet2.cpp:14801
bool always_confirm_transfers() const
Definition wallet2.h:1434
std::string sign_multisig_participant(const std::string &data) const
sign_multisig_participant signs given message with the multisig public signer key
Definition wallet2.cpp:13813
uint64_t get_light_wallet_blockchain_height() const
Definition wallet2.h:1105
std::shared_ptr< wallet_keys_unlocker > m_encrypt_keys_after_refresh
Definition wallet2.h:2109
bool m_is_initialized
Definition wallet2.h:2060
wallet_device_callback * get_device_callback()
Definition wallet2.cpp:15936
bool get_rct_distribution(uint64_t &start_height, std::vector< uint64_t > &distribution)
Definition wallet2.cpp:4338
bool track_uses() const
Definition wallet2.h:1476
std::string m_ring_database
Definition wallet2.h:2093
boost::recursive_mutex m_daemon_rpc_mutex
Definition wallet2.h:2003
bool is_old_file_format
Definition wallet2.h:2011
void credits_target(uint64_t threshold)
Definition wallet2.h:1502
bool m_multisig
Definition wallet2.h:2013
std::unique_ptr< tools::file_locker > m_keys_file_locker
Definition wallet2.h:2099
BackgroundSyncType
Definition wallet2.h:260
@ BackgroundSyncOff
Definition wallet2.h:261
@ BackgroundSyncReusePassword
Definition wallet2.h:262
@ BackgroundSyncCustomPassword
Definition wallet2.h:263
uint64_t get_max_ring_size()
Definition wallet2.cpp:8662
std::unique_ptr< ringdb > m_ringdb
Definition wallet2.h:2095
bool show_wallet_name_when_locked() const
Definition wallet2.h:1481
uint64_t get_last_block_reward() const
Definition wallet2.h:1236
std::set< uint32_t > unique_index_container
Definition wallet2.h:622
RefreshType
Definition wallet2.h:241
@ RefreshFull
Definition wallet2.h:242
@ RefreshDefault
Definition wallet2.h:245
@ RefreshOptimizeCoinbase
Definition wallet2.h:243
@ RefreshNoCoinbase
Definition wallet2.h:244
void init_type(hw::device::device_type device_type)
Definition wallet2.cpp:5626
cryptonote::checkpoints m_checkpoints
Definition wallet2.h:1982
uint64_t adjust_mixin(uint64_t mixin)
Definition wallet2.cpp:8671
void process_background_cache(const background_sync_data_t &background_sync_data, const hashchain &background_chain, uint64_t last_block_reward)
Definition wallet2.cpp:14390
bool lock_background_keys_file(const std::string &background_keys_file)
Definition wallet2.cpp:9019
void confirm_backlog(bool always)
Definition wallet2.h:1455
void stop()
Definition wallet2.h:1085
void process_background_cache_on_open()
Definition wallet2.cpp:6689
void set_refresh_type(RefreshType refresh_type)
Definition wallet2.h:1151
const char *const ATTRIBUTE_DESCRIPTION
Definition wallet2.h:1736
serializable_unordered_multimap< crypto::hash, pool_payment_details > m_unconfirmed_payments
Definition wallet2.h:1980
void transfer_selected(const std::vector< cryptonote::tx_destination_entry > &dsts, const std::vector< size_t > &selected_transfers, size_t fake_outputs_count, std::vector< std::vector< tools::wallet2::get_outs_entry > > &outs, std::unordered_set< crypto::public_key > &valid_public_keys_cache, uint64_t fee, const std::vector< uint8_t > &extra, T destination_split_strategy, const tx_dust_policy &dust_policy, cryptonote::transaction &tx, pending_tx &ptx, const bool use_view_tags)
bool m_show_wallet_name_when_locked
Definition wallet2.h:2055
void trim_hashchain()
Definition wallet2.cpp:6760
uint64_t get_fee_quantization_mask()
Definition wallet2.cpp:8618
const std::string get_ring_database() const
Definition wallet2.h:1767
RefreshType m_refresh_type
Definition wallet2.h:2024
hw::device & lookup_device(const std::string &device_descriptor)
Definition wallet2.cpp:8807
uint64_t ignore_outputs_below() const
Definition wallet2.h:1474
bool m_trusted_daemon
Definition wallet2.h:2005
bool tx_add_fake_output(std::vector< std::vector< tools::wallet2::get_outs_entry > > &outs, uint64_t global_index, const crypto::public_key &tx_public_key, const rct::key &mask, uint64_t real_index, bool unlocked, std::unordered_set< crypto::public_key > &valid_public_keys_cache) const
Definition wallet2.cpp:9047
std::unordered_set< crypto::hash > m_scanned_pool_txs[2]
Definition wallet2.h:2062
uint32_t m_default_mixin
Definition wallet2.h:2022
void sort_scan_tx_entries(std::vector< process_tx_entry_t > &unsorted_tx_entries)
Definition wallet2.cpp:1737
void set_attribute(const std::string &key, const std::string &value)
Definition wallet2.cpp:13620
void throw_on_rpc_response_error(bool r, const epee::json_rpc::error &error, const std::string &status, const char *method) const
Definition wallet2.cpp:15988
void import_payments(const payment_container &payments)
Definition wallet2.cpp:14772
bool key_reuse_mitigation2() const
Definition wallet2.h:1464
static bool verify_password(const std::string &keys_file_name, const epee::wipeable_string &password, bool no_spend_key, hw::device &hwdev, uint64_t kdf_rounds)
Definition wallet2.h:300
uint64_t credits() const
Definition wallet2.h:1821
size_t m_subaddress_lookahead_minor
Definition wallet2.h:2063
bool get_ring(const crypto::key_image &key_image, std::vector< uint64_t > &outs)
Definition wallet2.cpp:8877
background_sync_data_t m_background_sync_data
Definition wallet2.h:2127
void update_pool_state(std::vector< std::tuple< cryptonote::transaction, crypto::hash, bool > > &process_txs, bool refreshed=false, bool try_incremental=false)
Definition wallet2.cpp:3730
bool m_offline
Definition wallet2.h:2068
std::unique_ptr< wallet_device_callback > m_device_callback
Definition wallet2.h:2115
uint64_t m_min_output_value
Definition wallet2.h:2040
void persistent_rpc_client_id(bool persistent)
Definition wallet2.h:1496
bool sign_tx(const std::string &unsigned_filename, const std::string &signed_filename, std::vector< wallet2::pending_tx > &ptx, std::function< bool(const unsigned_tx_set &)> accept_func=NULL, bool export_raw=false)
void auto_low_priority(bool value)
Definition wallet2.h:1461
const std::unique_ptr< epee::net_utils::http::abstract_http_client > m_http_client
Definition wallet2.h:1976
std::string exchange_multisig_keys(const epee::wipeable_string &password, const std::vector< std::string > &kex_messages, const bool force_update_use_with_caution=false)
Increment the multisig key exchange round.
Definition wallet2.cpp:6028
std::tuple< uint64_t, uint64_t, std::vector< tools::wallet2::exported_transfer_details > > export_outputs(bool all=false, uint32_t start=0, uint32_t count=0xffffffff) const
Definition wallet2.cpp:14821
uint32_t get_default_priority() const
Definition wallet2.h:1442
uint64_t m_light_wallet_balance
Definition wallet2.h:2085
std::string m_mms_file
Definition wallet2.h:1975
uint64_t get_device_last_key_image_sync() const
Definition wallet2.h:1237
wallet2(cryptonote::network_type nettype=cryptonote::MAINNET, uint64_t kdf_rounds=1, bool unattended=false, std::unique_ptr< epee::net_utils::http::http_client_factory > http_client_factory=std::unique_ptr< epee::net_utils::http::http_client_factory >(new net::http::client_factory()))
Definition wallet2.cpp:1193
crypto::public_key get_multisig_signer_public_key() const
Definition wallet2.cpp:15163
uint64_t m_upper_transaction_weight_limit
Definition wallet2.h:1996
uint32_t get_min_output_count() const
Definition wallet2.h:1449
bool m_confirm_export_overwrite
Definition wallet2.h:2044
bool m_has_ever_refreshed_from_node
Definition wallet2.h:2120
void store_to(const std::string &path, const epee::wipeable_string &password, bool force_rewrite_keys=false)
store_to Stores wallet to another file(s), deleting old ones
Definition wallet2.cpp:6810
uint32_t m_default_priority
Definition wallet2.h:2023
void enable_multisig(bool enable)
Definition wallet2.h:1504
uint32_t m_confirm_backlog_threshold
Definition wallet2.h:2043
void handle_payment_changes(const T &res, std::false_type)
Definition wallet2.h:1701
void store_background_cache(const crypto::chacha_key &custom_background_key, const bool do_reset_background_sync_data=true)
Definition wallet2.cpp:14494
void process_scan_txs(const tx_entry_data &txs_to_scan, const tx_entry_data &txs_to_reprocess, const std::unordered_set< crypto::hash > &tx_hashes_to_reprocess, detached_blockchain_data &dbd)
Definition wallet2.cpp:1827
bool save_tx(const std::vector< pending_tx > &ptx_vector, const std::string &filename) const
Definition wallet2.cpp:7654
std::string decrypt_with_view_secret_key(const std::string &ciphertext, bool authenticated=true) const
Definition wallet2.cpp:15579
std::string get_daemon_proxy() const
Definition wallet2.h:1565
serializable_unordered_map< crypto::public_key, cryptonote::subaddress_index > m_subaddresses
Definition wallet2.h:1990
bool m_first_refresh_done
Definition wallet2.h:2026
bool has_proxy_option() const
has_proxy_option Check the global proxy (–proxy) has been defined or not.
Definition wallet2.cpp:1293
size_t get_num_subaddresses(uint32_t index_major) const
Definition wallet2.h:1127
std::vector< address_book_row > get_address_book() const
GUI Address book get/store.
Definition wallet2.h:1547
void setup_new_blockchain()
Definition wallet2.cpp:5547
cryptonote::network_type m_nettype
Definition wallet2.h:2008
uint64_t get_blockchain_current_height() const
Definition wallet2.h:1230
mms::message_store m_message_store
Definition wallet2.h:2102
std::string get_rpc_status(const std::string &s) const
Definition wallet2.cpp:15977
crypto::chacha_key m_cache_key
Definition wallet2.h:2107
std::vector< size_t > get_only_rct(const std::vector< size_t > &unused_dust_indices, const std::vector< size_t > &unused_transfers_indices) const
Definition wallet2.cpp:10517
bool store_tx_info() const
Definition wallet2.h:1438
void serialize(t_archive &a, const unsigned int ver)
Definition wallet2.h:1242
std::vector< crypto::public_key > m_multisig_signers
Definition wallet2.h:2015
std::unordered_map< crypto::hash, address_tx > m_light_wallet_address_txs
Definition wallet2.h:2089
bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector< std::string > &unknown_parameters, std::string &error)
Definition wallet2.cpp:15633
std::string m_proxy
Definition wallet2.h:1972
T decrypt(const std::string &ciphertext, const crypto::secret_key &skey, bool authenticated=true) const
BackgroundSyncType background_sync_type() const
Definition wallet2.h:1478
uint64_t max_reorg_depth() const
Definition wallet2.h:1070
bool is_background_keys_file_locked() const
Definition wallet2.cpp:9040
std::vector< crypto::public_key > m_multisig_derivations
Definition wallet2.h:2018
bool m_processing_background_cache
Definition wallet2.h:2126
std::unique_ptr< tools::file_locker > m_background_keys_file_locker
Definition wallet2.h:2100
message_signature_result_t verify(const std::string &data, const cryptonote::account_public_address &address, const std::string &signature) const
Definition wallet2.cpp:13770
bool m_light_wallet
Definition wallet2.h:2080
serializable_unordered_map< crypto::hash, unconfirmed_transfer_details > m_unconfirmed_txs
Definition wallet2.h:1978
RefreshType get_refresh_type() const
Definition wallet2.h:1152
bool verify_with_public_key(const std::string &data, const crypto::public_key &public_key, const std::string &signature) const
verify_with_public_key verifies message was signed with given public key
Definition wallet2.cpp:13825
void reset_background_sync_data(background_sync_data_t &background_sync_data)
Definition wallet2.cpp:14482
size_t m_subaddress_lookahead_major
Definition wallet2.h:2063
uint32_t adjust_priority(uint32_t priority)
Definition wallet2.cpp:8688
float m_auto_mine_for_rpc_payment_threshold
Definition wallet2.h:2059
std::string save_multisig_tx(multisig_tx_set txs)
Definition wallet2.cpp:8134
void get_outs(std::vector< std::vector< get_outs_entry > > &outs, const std::vector< size_t > &selected_transfers, size_t fake_outputs_count, bool rct, std::unordered_set< crypto::public_key > &valid_public_keys_cache)
AskPasswordType m_ask_password
Definition wallet2.h:2037
friend class wallet_keys_unlocker
Definition wallet2.h:236
uint64_t get_refresh_from_block_height() const
Definition wallet2.h:1064
BackgroundMiningSetupType
Definition wallet2.h:254
@ BackgroundMiningNo
Definition wallet2.h:257
@ BackgroundMiningMaybe
Definition wallet2.h:255
@ BackgroundMiningYes
Definition wallet2.h:256
bool key_on_device() const
Definition wallet2.h:1161
ExportFormat
Definition wallet2.h:274
@ Ascii
Definition wallet2.h:276
@ Binary
Definition wallet2.h:275
std::tuple< size_t, crypto::hash, std::vector< crypto::hash > > export_blockchain() const
Definition wallet2.cpp:14789
cryptonote::account_public_address get_subaddress(const cryptonote::subaddress_index &index) const
Definition wallet2.cpp:1558
bool is_background_syncing() const
Definition wallet2.h:1480
rpc_payment_state_t m_rpc_payment_state
Definition wallet2.h:2071
void generate(const std::string &wallet, const epee::wipeable_string &password, const cryptonote::account_public_address &account_public_address, const crypto::secret_key &viewkey=crypto::secret_key(), bool create_address_file=false)
Creates a watch only wallet from a public address and a view secret key.
boost::optional< epee::wipeable_string > on_device_pin_request()
Definition wallet2.cpp:15955
uint64_t get_base_fee(uint32_t priority)
Definition wallet2.cpp:8584
mms::message_store & get_message_store()
Definition wallet2.h:1801
void confirm_export_overwrite(bool always)
Definition wallet2.h:1459
uint64_t import_key_images(const std::vector< std::pair< crypto::key_image, crypto::signature > > &signed_key_images, size_t offset, uint64_t &spent, uint64_t &unspent, bool check_spent=true)
Definition wallet2.cpp:14033
bool get_attribute(const std::string &key, std::string &value) const
Definition wallet2.cpp:13625
multisig_tx_set make_multisig_tx_set(const std::vector< pending_tx > &ptx_vector) const
Definition wallet2.cpp:8181
uint32_t m_rpc_version
Definition wallet2.h:2069
void rewrite(const std::string &wallet_name, const epee::wipeable_string &password)
Rewrites to the wallet file for wallet upgrade (doesn't generate key, assumes it's already there).
Definition wallet2.cpp:6199
bool m_use_dns
Definition wallet2.h:2067
bool auto_refresh() const
Definition wallet2.h:1444
bool remove_rings(const cryptonote::transaction_prefix &tx)
Definition wallet2.cpp:8830
serializable_unordered_map< crypto::hash, std::string > m_tx_device
Definition wallet2.h:2077
bool is_trusted_daemon() const
Definition wallet2.h:1090
uint32_t m_inactivity_lock_timeout
Definition wallet2.h:2056
void segregation_height(uint64_t height)
Definition wallet2.h:1467
static boost::mutex default_daemon_address_lock
Definition wallet2.h:2122
bool explicit_refresh_from_block_height() const
Definition wallet2.h:1067
bool confirm_export_overwrite() const
Definition wallet2.h:1458
std::string get_subaddress_as_str(const cryptonote::subaddress_index &index) const
Definition wallet2.cpp:1578
void segregate_pre_fork_outputs(bool value)
Definition wallet2.h:1463
void store_tx_info(bool store)
Definition wallet2.h:1439
uint64_t credits_target() const
Definition wallet2.h:1501
hw::device::device_type get_device_type() const
Definition wallet2.h:1162
void import_payments_out(const std::list< std::pair< crypto::hash, wallet2::confirmed_transfer_details > > &confirmed_payments)
Definition wallet2.cpp:14780
std::shared_ptr< std::map< std::pair< uint64_t, uint64_t >, size_t > > create_output_tracker_cache() const
Definition wallet2.cpp:4043
void set_confirm_backlog_threshold(uint32_t threshold)
Definition wallet2.h:1456
void write_watch_only_wallet(const std::string &wallet_name, const epee::wipeable_string &password, std::string &new_keys_filename)
Writes to a file named based on the normal wallet (doesn't generate key, assumes it's already there).
Definition wallet2.cpp:6234
std::string dump_tx_to_str(const std::vector< pending_tx > &ptx_vector) const
Definition wallet2.cpp:7663
bool verify_password(const epee::wipeable_string &password)
verifies given password is correct for default wallet keys file
Definition wallet2.h:1053
uint64_t m_max_reorg_depth
Definition wallet2.h:2038
serializable_unordered_map< crypto::public_key, crypto::key_image > m_cold_key_images
Definition wallet2.h:1999
std::vector< uint64_t > amounts_container
Definition wallet2.h:446
bool m_devices_registered
Definition wallet2.h:2112
bool invoke_http_bin(const boost::string_ref uri, const t_request &req, t_response &res, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref http_method="POST")
Definition wallet2.h:1752
i_wallet2_callback * m_callback
Definition wallet2.h:2006
std::string encrypt_with_view_secret_key(const std::string &plaintext, bool authenticated=true) const
Definition wallet2.cpp:15546
bool auto_low_priority() const
Definition wallet2.h:1460
bool should_pick_a_second_output(bool use_rct, size_t n_transfers, const std::vector< size_t > &unused_transfers_indices, const std::vector< size_t > &unused_dust_indices) const
Definition wallet2.cpp:10484
crypto::chacha_key get_ringdb_key()
Definition wallet2.cpp:8791
crypto::secret_key generate(const std::string &wallet, const epee::wipeable_string &password, const crypto::secret_key &recovery_param=crypto::secret_key(), bool recover=false, bool two_random=false, bool create_address_file=false)
Generates a wallet or restores one.
uint64_t m_light_wallet_per_kb_fee
Definition wallet2.h:2083
uint64_t m_pool_info_query_time
Definition wallet2.h:2031
std::string export_outputs_to_str(bool all=false, uint32_t start=0, uint32_t count=0xffffffff) const
Definition wallet2.cpp:14870
const ExportFormat & export_format() const
Definition wallet2.h:1491
std::vector< wallet2::pending_tx > create_transactions_2(std::vector< cryptonote::tx_destination_entry > dsts, const size_t fake_outs_count, uint32_t priority, const std::vector< uint8_t > &extra, uint32_t subaddr_account, std::set< uint32_t > subaddr_indices, const unique_index_container &subtract_fee_from_outputs={})
Definition wallet2.cpp:11023
bool m_store_tx_info
Definition wallet2.h:2021
i_wallet2_callback * callback() const
Definition wallet2.h:1087
serializable_unordered_map< crypto::key_image, size_t > m_key_images
Definition wallet2.h:1987
void register_devices()
Definition wallet2.cpp:8803
serializable_unordered_multimap< crypto::hash, payment_details > payment_container
Definition wallet2.h:621
static constexpr const std::chrono::seconds rpc_timeout
Definition wallet2.h:239
void commit_tx(pending_tx &ptx_vector)
Definition wallet2.cpp:7560
void generate(const std::string &wallet, const epee::wipeable_string &password, const cryptonote::account_public_address &account_public_address, const crypto::secret_key &spendkey, const crypto::secret_key &viewkey, bool create_address_file=false)
Creates a wallet from a public address and a spend/view secret key pair.
void print_ring_members(bool value)
Definition wallet2.h:1437
void credit_report(uint64_t &expected_spent, uint64_t &discrepancy) const
Definition wallet2.h:1822
void create_keys_file(const std::string &wallet_, bool watch_only, const epee::wipeable_string &password, bool create_address_file)
Definition wallet2.cpp:5556
uint64_t m_refresh_from_block_height
Definition wallet2.h:2027
std::vector< std::tuple< cryptonote::transaction, crypto::hash, bool > > m_process_pool_txs
Definition wallet2.h:2032
bool m_auto_refresh
Definition wallet2.h:2025
bool invoke_http_json_rpc(const boost::string_ref uri, const std::string &method_name, const t_request &req, t_response &res, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref http_method="POST", const std::string &req_id="0")
Definition wallet2.h:1759
std::string get_address_as_str() const
Definition wallet2.h:1123
bool m_ring_history_saved
Definition wallet2.h:2094
void clear_multisig_k_and_store(const multisig_tx_set &txs)
Definition wallet2.cpp:15208
bool m_persistent_rpc_client_id
Definition wallet2.h:2058
std::string sign_tx_dump_to_str(unsigned_tx_set &exported_txs, std::vector< wallet2::pending_tx > &ptx, signed_tx_set &signed_txes)
Definition wallet2.cpp:7979
uint32_t default_mixin() const
Definition wallet2.h:1440
std::vector< crypto::public_key > get_subaddress_spend_public_keys(uint32_t account, uint32_t begin, uint32_t end) const
bool unlock_background_keys_file()
Definition wallet2.cpp:9029
bool m_watch_only
Definition wallet2.h:2012
uint64_t m_skip_to_height
Definition wallet2.h:2033
bool is_offline() const
Definition wallet2.h:1819
uint64_t get_light_wallet_scanned_block_height() const
Definition wallet2.h:1104
void set_min_output_value(uint64_t value)
Definition wallet2.h:1450
std::string path() const
Definition wallet2.cpp:6799
cryptonote::network_type nettype() const
Definition wallet2.h:1154
bool is_background_wallet() const
Definition wallet2.h:1157
bool spends_one_of_ours(const cryptonote::transaction &tx) const
Definition wallet2.cpp:2307
void cache_tx_data(const cryptonote::transaction &tx, const crypto::hash &txid, tx_cache_data &tx_cache_data) const
Definition wallet2.cpp:2271
static BackgroundSyncType background_sync_type_from_str(const std::string &background_sync_type_str)
Definition wallet2.h:266
std::string get_client_signature() const
Definition wallet_rpc_payments.cpp:55
float auto_mine_for_rpc_payment_threshold() const
Definition wallet2.h:1498
serializable_unordered_map< crypto::hash, confirmed_transfer_details > m_confirmed_txs
Definition wallet2.h:1979
std::string make_multisig(const epee::wipeable_string &password, const std::vector< std::string > &kex_messages, const std::uint32_t threshold)
Creates a multisig wallet.
Definition wallet2.cpp:5919
bool light_wallet() const
Checks if light wallet. A light wallet sends view key to a server where the blockchain is scanned.
Definition wallet2.h:1102
std::string m_keys_file
Definition wallet2.h:1974
ExportFormat m_export_format
Definition wallet2.h:2117
bool m_auto_low_priority
Definition wallet2.h:2045
std::vector< std::vector< rct::key > > m_multisig_rescan_k
Definition wallet2.h:1998
cryptonote::account_public_address get_address() const
Definition wallet2.h:1118
uint32_t inactivity_lock_timeout() const
Definition wallet2.h:1485
crypto::secret_key get_rpc_client_secret_key() const
Definition wallet2.h:1499
bool m_always_confirm_transfers
Definition wallet2.h:2019
bool is_mismatched_daemon_version_allowed() const
Definition wallet2.h:1505
crypto::key_image get_multisig_composite_key_image(size_t n) const
Definition wallet2.cpp:15269
void ignore_fractional_outputs(bool value)
Definition wallet2.h:1469
const std::string & device_name() const
Definition wallet2.h:1487
boost::optional< epee::wipeable_string > on_passphrase_request(bool &on_device) override
Definition wallet2.cpp:1178
void on_button_pressed() override
Definition wallet2.cpp:1165
void on_button_request(uint64_t code=0) override
Definition wallet2.cpp:1159
wallet_device_callback(wallet2 *wallet)
Definition wallet2.h:168
void on_progress(const hw::device_progress &event) override
Definition wallet2.cpp:1187
boost::optional< epee::wipeable_string > on_pin_request() override
Definition wallet2.cpp:1171
Definition wallet2.h:125
crypto::chacha_key key
Definition wallet2.h:133
static boost::mutex lockers_lock
Definition wallet2.h:134
static unsigned int lockers
Definition wallet2.h:135
bool locked
Definition wallet2.h:132
~wallet_keys_unlocker()
Definition wallet2.cpp:1137
wallet2 & w
Definition wallet2.h:131
wallet_keys_unlocker(wallet2 &w, const boost::optional< tools::password_container > &password)
Definition wallet2.cpp:1107
Definition wallet_tools.h:52
const uint8_t seed[32]
Definition code-generator.cpp:37
binary_archive< false > ar
Definition cold-outputs.cpp:54
crypto::secret_key spendkey
Definition cold-outputs.cpp:44
size_t n_outputs
Definition cold-outputs.cpp:56
std::tuple< uint64_t, uint64_t, std::vector< tools::wallet2::transfer_details > > outputs
Definition cold-outputs.cpp:53
wallet set_subaddress_lookahead(1, 1)
std::vector< tools::wallet2::pending_tx > ptx
Definition cold-transaction.cpp:56
tools::wallet2::unsigned_tx_set exported_txs
Definition cold-transaction.cpp:53
#define tr(x)
Definition common_defines.h:4
#define CORE_RPC_STATUS_PAYMENT_REQUIRED
Definition core_rpc_server_commands_defs.h:81
#define CORE_RPC_STATUS_OK
Definition core_rpc_server_commands_defs.h:78
#define FEE_PER_KB
Definition cryptonote_config.h:70
conn start()
static const char * code
Definition generate_translations_header.c:25
void * memcpy(void *a, const void *b, size_t c)
Definition glibc_compat.cpp:16
#define BEGIN_SERIALIZE_OBJECT()
#define true
#define FIELD(f)
#define FIELD_N(t, f)
#define false
#define VERSION_FIELD(v)
#define MAGIC_FIELD(m)
#define END_SERIALIZE()
#define VARINT_FIELD(f)
const char * res
Definition hmac_keccak.cpp:42
const char * key
Definition hmac_keccak.cpp:40
static void init()
Definition logging.cpp:42
static MDB_envinfo info
Definition mdb_load.c:37
static int version
Definition mdb_load.c:29
Definition blockchain.py:1
Definition blocks.cpp:13
std::enable_if<!Archive::is_loading::value, void >::type initialize_transfer_details(Archive &a, tools::wallet2::transfer_details &x, const boost::serialization::version_type ver)
Definition wallet2.h:2165
Definition portable_binary_archive.hpp:29
crypto namespace.
Definition crypto.cpp:60
static constexpr crypto::hash8 null_hash8
Definition hash.h:103
T rand()
Definition crypto.h:174
POD_CLASS signature
Definition crypto.h:98
const crypto::secret_key null_skey
Definition crypto.cpp:75
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition crypto.h:72
POD_CLASS hash8
Definition hash.h:52
POD_CLASS key_derivation
Definition crypto.h:91
POD_CLASS public_key
Definition crypto.h:64
static constexpr crypto::hash null_hash
Definition hash.h:102
POD_CLASS key_image
Definition crypto.h:95
POD_CLASS hash
Definition hash.h:49
network_type
Definition cryptonote_config.h:302
@ MAINNET
Definition cryptonote_config.h:303
void decompose_amount_into_digits(uint64_t amount, uint64_t dust_threshold, const chunk_handler_t &chunk_handler, const dust_handler_t &dust_handler)
Definition cryptonote_format_utils.h:217
std::string print_money(uint64_t amount, unsigned int decimal_point)
Definition cryptonote_format_utils.cpp:1184
crypto::hash get_transaction_hash(const transaction &t)
Definition cryptonote_format_utils.cpp:1277
std::string blobdata
Definition blobdatatype.h:39
declaration and default definition for the functions used the API
Definition expect.cpp:34
bool invoke_http_bin(const boost::string_ref uri, const t_request &out_struct, t_response &result_struct, t_transport &transport, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref method="POST")
Definition http_abstract_invoke.h:76
bool invoke_http_json_rpc(const boost::string_ref uri, std::string method_name, const t_request &out_struct, t_response &result_struct, epee::json_rpc::error &error_struct, t_transport &transport, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref http_method="POST", const std::string &req_id="0")
Definition http_abstract_invoke.h:110
bool invoke_http_json(const boost::string_ref uri, const t_request &out_struct, t_response &result_struct, t_transport &transport, std::chrono::milliseconds timeout=std::chrono::seconds(15), const boost::string_ref method="POST")
Definition http_abstract_invoke.h:42
@ e_ssl_support_autodetect
Definition net_ssl.h:52
Definition mining.py:1
Definition multisig.cpp:46
Definition bulletproofs.cc:64
std::vector< key > keyV
Definition rctTypes.h:89
std::vector< keyV > keyM
Definition rctTypes.h:90
@ RangeProofBorromean
Definition rctTypes.h:307
@ RangeProofPaddedBulletproof
Definition rctTypes.h:307
key identity()
Definition rctOps.h:73
Definition binary_utils.h:36
Definition enums.h:68
void print_source_entry(const cryptonote::tx_source_entry &src)
Definition wallet2.h:2717
void digit_split_strategy(const std::vector< cryptonote::tx_destination_entry > &dsts, const cryptonote::tx_destination_entry &change_dst, uint64_t dust_threshold, std::vector< cryptonote::tx_destination_entry > &splitted_dsts, std::vector< cryptonote::tx_destination_entry > &dust_dsts)
Definition wallet2.h:2678
void null_split_strategy(const std::vector< cryptonote::tx_destination_entry > &dsts, const cryptonote::tx_destination_entry &change_dst, uint64_t dust_threshold, std::vector< cryptonote::tx_destination_entry > &splitted_dsts, std::vector< cryptonote::tx_destination_entry > &dust_dsts)
Definition wallet2.h:2702
Definition wallet_errors.h:47
Various Tools.
Definition apply_permutation.h:40
Definition transfer.py:1
Definition uri.py:1
Definition wallet.py:1
BOOST_CLASS_VERSION(nodetool::peerlist_types, nodetool::CURRENT_PEERLIST_STORAGE_ARCHIVE_VER)
void generate(randomx::Program &p, uint32_t nonce)
Definition perf-simulation.cpp:62
const GenericPointer< typename T::ValueType > T2 value
Definition pointer.h:1225
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1124
void serialize(Archive &a, unsigned_tx_set &x, const boost::serialization::version_type ver)
Definition serialization.cpp:912
static cryptonote::account_public_address address
Definition signature.cpp:38
#define ts
Definition skein.c:522
static __thread int depth
Definition threadpool.cpp:34
static std::string decrypt(const std::string &ciphertext, const crypto::key_image &key_image, const crypto::chacha_key &key, uint8_t field)
Definition ringdb.cpp:136
static std::string encrypt(const std::string &plaintext, const crypto::key_image &key_image, const crypto::chacha_key &key, uint8_t field)
Definition ringdb.cpp:121
unsigned short uint16_t
Definition stdint.h:125
signed __int64 int64_t
Definition stdint.h:135
unsigned int uint32_t
Definition stdint.h:126
unsigned char uint8_t
Definition stdint.h:124
unsigned __int64 uint64_t
Definition stdint.h:136
Definition core_rpc_server_commands_defs.h:205
epee::misc_utils::struct_init< response_t > response
Definition core_rpc_server_commands_defs.h:264
Definition core_rpc_server_commands_defs.h:393
Definition cryptonote_basic.h:512
Definition cryptonote_protocol_defs.h:133
Definition cryptonote_basic.h:475
Definition cryptonote_basic.h:539
Definition subaddress_index.h:39
Definition cryptonote_tx_utils.h:75
uint64_t amount
Definition cryptonote_tx_utils.h:77
account_public_address addr
Definition cryptonote_tx_utils.h:78
Definition cryptonote_basic.h:158
Definition cryptonote_tx_utils.h:43
uint64_t amount
Definition cryptonote_tx_utils.h:51
uint64_t real_output
Definition cryptonote_tx_utils.h:47
uint64_t real_output_in_tx_index
Definition cryptonote_tx_utils.h:50
std::vector< output_entry > outputs
Definition cryptonote_tx_utils.h:46
std::pair< uint64_t, rct::ctkey > output_entry
Definition cryptonote_tx_utils.h:44
Definition jsonrpc_structs.h:32
Definition message_store.h:242
Definition chaingen.h:294
Definition rctTypes.h:308
RangeProofType range_proof_type
Definition rctTypes.h:309
Definition rctTypes.h:79
Definition rctTypes.h:113
Definition rctTypes.h:122
Definition rctTypes.h:613
epee::misc_utils::struct_init< response_t > response
Definition wallet_light_rpc.h:179
epee::misc_utils::struct_init< response_t > response
Definition wallet_light_rpc.h:317
Definition wallet_errors.h:171
Definition wallet2.h:109
static constexpr result_type min()
Definition wallet2.h:111
result_type operator()()
Definition wallet2.h:113
uint64_t result_type
Definition wallet2.h:110
static constexpr result_type max()
Definition wallet2.h:112
Definition wallet_rpc_helpers.h:50
Definition wallet2.h:179
bool add_to_fee
Definition wallet2.h:181
cryptonote::account_public_address addr_for_dust
Definition wallet2.h:182
tx_dust_policy(uint64_t a_dust_threshold=0, bool an_add_to_fee=true, cryptonote::account_public_address an_addr_for_dust=cryptonote::account_public_address())
Definition wallet2.h:184
uint64_t dust_threshold
Definition wallet2.h:180
Definition wallet2.h:778
bool m_is_subaddress
Definition wallet2.h:782
crypto::hash8 m_payment_id
Definition wallet2.h:780
bool m_has_payment_id
Definition wallet2.h:783
std::string m_description
Definition wallet2.h:781
cryptonote::account_public_address m_address
Definition wallet2.h:779
Definition wallet2.h:474
bool m_incoming
Definition wallet2.h:476
bool m_mempool
Definition wallet2.h:475
RefreshType wallet_refresh_type
Definition wallet2.h:849
uint64_t start_height
Definition wallet2.h:842
size_t subaddress_lookahead_minor
Definition wallet2.h:848
size_t subaddress_lookahead_major
Definition wallet2.h:847
uint64_t wallet_refresh_from_block_height
Definition wallet2.h:846
serializable_unordered_map< crypto::hash, background_synced_tx_t > txs
Definition wallet2.h:843
bool first_refresh_done
Definition wallet2.h:841
std::vector< uint64_t > output_indices
Definition wallet2.h:819
if(!tx.serialize_base(ar)) return false
uint64_t block_timestamp
Definition wallet2.h:821
cryptonote::transaction tx
Definition wallet2.h:818
uint64_t height
Definition wallet2.h:820
bool double_spend_seen
Definition wallet2.h:822
uint64_t index_in_background_sync_data
Definition wallet2.h:817
Definition wallet2.h:766
crypto::chacha_iv iv
Definition wallet2.h:767
std::string cache_data
Definition wallet2.h:768
uint64_t m_amount_out
Definition wallet2.h:528
std::vector< std::pair< crypto::key_image, std::vector< uint64_t > > > m_rings
Definition wallet2.h:537
uint64_t m_block_height
Definition wallet2.h:530
uint64_t m_change
Definition wallet2.h:529
uint32_t m_subaddr_account
Definition wallet2.h:535
uint64_t m_amount_in
Definition wallet2.h:527
confirmed_transfer_details(const unconfirmed_transfer_details &utd, uint64_t height)
Definition wallet2.h:540
crypto::hash m_payment_id
Definition wallet2.h:532
confirmed_transfer_details()
Definition wallet2.h:539
uint64_t m_timestamp
Definition wallet2.h:533
std::set< uint32_t > m_subaddr_indices
Definition wallet2.h:536
std::vector< cryptonote::tx_destination_entry > m_dests
Definition wallet2.h:531
cryptonote::transaction_prefix m_tx
Definition wallet2.h:526
uint64_t m_unlock_time
Definition wallet2.h:534
size_t original_chain_size
Definition wallet2.h:893
hashchain detached_blockchain
Definition wallet2.h:892
std::unordered_map< crypto::hash, std::vector< cryptonote::tx_destination_entry > > detached_confirmed_txs_dests
Definition wallet2.h:895
std::unordered_set< crypto::hash > detached_tx_hashes
Definition wallet2.h:894
uint8_t m_key_image_request
Definition wallet2.h:420
uint32_t m_subaddr_index_minor
Definition wallet2.h:428
uint64_t m_internal_output_index
Definition wallet2.h:409
uint32_t m_subaddr_index_major
Definition wallet2.h:427
uint64_t m_global_output_index
Definition wallet2.h:410
uint8_t m_key_image_partial
Definition wallet2.h:421
crypto::public_key m_pubkey
Definition wallet2.h:408
uint8_t m_frozen
Definition wallet2.h:417
crypto::public_key m_tx_pubkey
Definition wallet2.h:411
uint8_t m_key_image_known
Definition wallet2.h:419
union tools::wallet2::exported_transfer_details::@235156020043222030134347344201344211372114005107 m_flags
uint8_t m_rct
Definition wallet2.h:418
uint8_t flags
Definition wallet2.h:423
uint8_t m_spent
Definition wallet2.h:416
uint64_t m_amount
Definition wallet2.h:425
std::vector< crypto::public_key > m_additional_tx_keys
Definition wallet2.h:426
Definition wallet2.h:875
std::vector< boost::optional< cryptonote::subaddress_receive_info > > received
Definition wallet2.h:878
crypto::public_key pkey
Definition wallet2.h:876
crypto::key_derivation derivation
Definition wallet2.h:877
Definition wallet2.h:755
std::string account_data
Definition wallet2.h:757
crypto::chacha_iv iv
Definition wallet2.h:756
bool old
Definition wallet2.h:1612
bool valid
Definition wallet2.h:1612
unsigned version
Definition wallet2.h:1612
message_signature_type_t type
Definition wallet2.h:1612
Definition wallet2.h:314
rct::key m_R
Definition wallet2.h:316
rct::key m_L
Definition wallet2.h:315
Definition wallet2.h:312
crypto::public_key m_signer
Definition wallet2.h:324
std::vector< crypto::key_image > m_partial_key_images
Definition wallet2.h:326
std::vector< LR > m_LR
Definition wallet2.h:325
Definition wallet2.h:625
std::unordered_set< crypto::public_key > ignore
Definition wallet2.h:627
rct::keyM total_alpha_H
Definition wallet2.h:633
if(version< 1) return false
rct::multisig_out msout
Definition wallet2.h:630
rct::rctSig sigs
Definition wallet2.h:626
rct::keyV c_0
Definition wallet2.h:634
rct::keyM total_alpha_G
Definition wallet2.h:632
std::unordered_set< crypto::public_key > signing_keys
Definition wallet2.h:629
rct::keyV s
Definition wallet2.h:635
std::unordered_set< rct::key > used_L
Definition wallet2.h:628
Definition wallet2.h:744
std::unordered_set< crypto::public_key > m_signers
Definition wallet2.h:746
std::vector< pending_tx > m_ptx
Definition wallet2.h:745
Definition wallet2.h:866
bool error
Definition wallet2.h:871
cryptonote::COMMAND_RPC_GET_BLOCKS_FAST::block_output_indices o_indices
Definition wallet2.h:870
cryptonote::block block
Definition wallet2.h:868
std::vector< cryptonote::transaction > txes
Definition wallet2.h:869
crypto::hash hash
Definition wallet2.h:867
Definition wallet2.h:448
bool m_coinbase
Definition wallet2.h:456
amounts_container m_amounts
Definition wallet2.h:451
crypto::hash m_tx_hash
Definition wallet2.h:449
uint64_t m_fee
Definition wallet2.h:452
uint64_t m_timestamp
Definition wallet2.h:455
uint64_t m_unlock_time
Definition wallet2.h:454
uint64_t m_amount
Definition wallet2.h:450
uint64_t m_block_height
Definition wallet2.h:453
cryptonote::subaddress_index m_subaddr_index
Definition wallet2.h:457
Definition wallet2.h:657
tx_construction_data construction_data
Definition wallet2.h:670
std::vector< size_t > selected_transfers
Definition wallet2.h:662
crypto::secret_key multisig_tx_key_entropy
Definition wallet2.h:668
bool dust_added_to_fee
Definition wallet2.h:660
crypto::secret_key tx_key
Definition wallet2.h:664
std::vector< cryptonote::tx_destination_entry > dests
Definition wallet2.h:666
std::vector< multisig_sig > multisig_sigs
Definition wallet2.h:667
cryptonote::transaction tx
Definition wallet2.h:658
std::vector< crypto::secret_key > additional_tx_keys
Definition wallet2.h:665
if(version< 1)
Definition wallet2.h:686
std::string key_images
Definition wallet2.h:663
uint64_t fee
Definition wallet2.h:659
cryptonote::tx_destination_entry change_dts
Definition wallet2.h:661
uint64_t dust
Definition wallet2.h:659
Definition wallet2.h:480
bool m_double_spend_seen
Definition wallet2.h:482
payment_details m_pd
Definition wallet2.h:481
Definition wallet2.h:899
cryptonote::transaction tx
Definition wallet2.h:901
cryptonote::COMMAND_RPC_GET_TRANSACTIONS::entry tx_entry
Definition wallet2.h:900
crypto::hash tx_hash
Definition wallet2.h:902
Definition wallet2.h:796
crypto::public_key shared_secret
Definition wallet2.h:799
crypto::signature key_image_sig
Definition wallet2.h:802
crypto::signature shared_secret_sig
Definition wallet2.h:801
uint64_t index_in_tx
Definition wallet2.h:798
crypto::key_image key_image
Definition wallet2.h:800
crypto::hash txid
Definition wallet2.h:797
Definition wallet2.h:730
serializable_unordered_map< crypto::public_key, crypto::key_image > tx_key_images
Definition wallet2.h:733
std::vector< crypto::key_image > key_images
Definition wallet2.h:732
std::vector< pending_tx > ptx
Definition wallet2.h:731
Definition wallet2.h:349
uint64_t m_amount
Definition wallet2.h:360
bool m_key_image_request
Definition wallet2.h:363
bool m_frozen
Definition wallet2.h:356
rct::key m_mask
Definition wallet2.h:359
uint64_t m_pk_index
Definition wallet2.h:364
bool m_spent
Definition wallet2.h:355
uint64_t m_global_output_index
Definition wallet2.h:354
crypto::key_image m_key_image
Definition wallet2.h:358
uint64_t amount() const
Definition wallet2.h:372
std::vector< std::pair< uint64_t, crypto::hash > > m_uses
Definition wallet2.h:369
std::vector< multisig_info > m_multisig_info
Definition wallet2.h:368
uint64_t m_internal_output_index
Definition wallet2.h:353
cryptonote::subaddress_index m_subaddr_index
Definition wallet2.h:365
uint64_t m_spent_height
Definition wallet2.h:357
uint64_t m_block_height
Definition wallet2.h:350
crypto::hash m_txid
Definition wallet2.h:352
const crypto::public_key get_public_key() const
Definition wallet2.h:373
bool m_rct
Definition wallet2.h:361
cryptonote::transaction_prefix m_tx
Definition wallet2.h:351
bool is_rct() const
Definition wallet2.h:371
bool m_key_image_partial
Definition wallet2.h:366
bool m_key_image_known
Definition wallet2.h:362
std::vector< rct::key > m_multisig_k
Definition wallet2.h:367
Definition wallet2.h:882
std::vector< cryptonote::tx_extra_field > tx_extra_fields
Definition wallet2.h:883
std::vector< is_out_data > primary
Definition wallet2.h:884
bool empty() const
Definition wallet2.h:887
std::vector< is_out_data > additional
Definition wallet2.h:885
Definition wallet2.h:562
construction_flags_
Definition wallet2.h:577
@ _use_view_tags
Definition wallet2.h:579
@ _use_rct
Definition wallet2.h:578
std::vector< uint8_t > extra
Definition wallet2.h:567
std::vector< cryptonote::tx_source_entry > sources
Definition wallet2.h:563
uint8_t construction_flags
Definition wallet2.h:584
std::vector< cryptonote::tx_destination_entry > splitted_dsts
Definition wallet2.h:565
rct::RCTConfig rct_config
Definition wallet2.h:570
std::vector< cryptonote::tx_destination_entry > dests
Definition wallet2.h:572
uint64_t unlock_time
Definition wallet2.h:568
bool use_view_tags
Definition wallet2.h:571
std::vector< size_t > selected_transfers
Definition wallet2.h:566
if(!typename Archive< W >::is_saving())
Definition wallet2.h:596
std::set< uint32_t > subaddr_indices
Definition wallet2.h:574
uint32_t subaddr_account
Definition wallet2.h:573
bool use_rct
Definition wallet2.h:569
cryptonote::tx_destination_entry change_dts
Definition wallet2.h:564
Definition wallet2.h:906
uint64_t lowest_height
Definition wallet2.h:908
uint64_t highest_height
Definition wallet2.h:909
tx_entry_data()
Definition wallet2.h:911
std::vector< process_tx_entry_t > tx_entries
Definition wallet2.h:907
Definition wallet2.h:336
boost::optional< cryptonote::subaddress_receive_info > received
Definition wallet2.h:343
uint64_t amount
Definition wallet2.h:340
rct::key mask
Definition wallet2.h:339
cryptonote::keypair in_ephemeral
Definition wallet2.h:337
uint64_t money_transfered
Definition wallet2.h:341
tx_scan_info_t()
Definition wallet2.h:345
bool error
Definition wallet2.h:342
crypto::key_image ki
Definition wallet2.h:338
uint32_t m_subaddr_account
Definition wallet2.h:502
@ pending_in_pool
Definition wallet2.h:500
time_t m_sent_time
Definition wallet2.h:497
uint64_t m_amount_out
Definition wallet2.h:495
uint64_t m_timestamp
Definition wallet2.h:501
crypto::hash m_payment_id
Definition wallet2.h:499
enum tools::wallet2::unconfirmed_transfer_details::@260155015112004341314113103351237224307052312356 m_state
cryptonote::transaction_prefix m_tx
Definition wallet2.h:493
std::vector< std::pair< crypto::key_image, std::vector< uint64_t > > > m_rings
Definition wallet2.h:504
std::vector< cryptonote::tx_destination_entry > m_dests
Definition wallet2.h:498
uint64_t m_amount_in
Definition wallet2.h:494
std::set< uint32_t > m_subaddr_indices
Definition wallet2.h:503
uint64_t m_change
Definition wallet2.h:496
Definition wallet2.h:698
std::vector< tx_construction_data > txes
Definition wallet2.h:699
if(version==0)
Definition wallet2.h:706
std::tuple< uint64_t, uint64_t, wallet2::transfer_container > transfers
Definition wallet2.h:700
std::tuple< uint64_t, uint64_t, std::vector< wallet2::exported_transfer_details > > new_transfers
Definition wallet2.h:701
Definition serialization.cpp:907
#define CRITICAL_REGION_LOCAL(x)
Definition syncobj.h:153
std::string data
Definition base58.cpp:37
struct hash_func hashes[]
randomx_vm * vm
Definition tests.cpp:20
cryptonote::transaction tx
Definition transaction.cpp:40
string daemon_address
Definition transfers.cpp:41
static crypto::public_key get_tx_pub_key_from_received_outs(const tools::wallet2::transfer_details &td)
Definition trezor_tests.cpp:413
static std::string get_payment_id(const std::vector< uint8_t > &tx_extra)
Definition trezor_tests.cpp:473
#define THROW_WALLET_EXCEPTION_IF(cond, err_type,...)
Definition wallet_errors.h:1036
#define T(x)