Electroneum
cryptonote_tx_utils.h
Go to the documentation of this file.
1 // Copyrights(c) 2017-2020, The Electroneum Project
2 // Copyrights(c) 2014-2019, The Monero Project
3 //
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without modification, are
7 // permitted provided that the following conditions are met:
8 //
9 // 1. Redistributions of source code must retain the above copyright notice, this list of
10 // conditions and the following disclaimer.
11 //
12 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
13 // of conditions and the following disclaimer in the documentation and/or other
14 // materials provided with the distribution.
15 //
16 // 3. Neither the name of the copyright holder nor the names of its contributors may be
17 // used to endorse or promote products derived from this software without specific
18 // prior written permission.
19 //
20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
21 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
31 
32 #pragma once
34 #include <boost/serialization/vector.hpp>
35 #include <boost/serialization/utility.hpp>
36 #include "ringct/rctOps.h"
37 
38 namespace cryptonote
39 {
40  //---------------------------------------------------------------
41  bool construct_miner_tx(size_t height, size_t median_weight, uint64_t already_generated_coins, size_t current_block_weight, uint64_t fee, const account_public_address &miner_address, transaction& tx, const blobdata& extra_nonce = blobdata(), size_t max_outs = 999, uint8_t hard_fork_version = 1, network_type nettype = MAINNET);
42 
44  {
45  typedef std::pair<uint64_t, rct::ctkey> output_entry;
46 
47  std::vector<output_entry> outputs; //index + key + optional ringct commitment
48  size_t real_output; //index in outputs vector of real output_entry
49  crypto::public_key real_out_tx_key; //incoming real tx public key
50  std::vector<crypto::public_key> real_out_additional_tx_keys; //incoming real tx additional public keys
51  size_t real_output_in_tx_index; //index in transaction outputs vector
52  uint64_t amount; //money
53  bool rct; //true if the output is rct
54  rct::key mask; //ringct amount mask
56 
57  void push_output(uint64_t idx, const crypto::public_key &k, uint64_t amount) { outputs.push_back(std::make_pair(idx, rct::ctkey({rct::pk2rct(k), rct::zeroCommit(amount)}))); }
58 
60  FIELD(outputs)
65  FIELD(amount)
66  FIELD(rct)
67  FIELD(mask)
69 
70  if (real_output >= outputs.size())
71  return false;
73  };
74 
76  {
77  std::string original;
78  uint64_t amount; //money
79  account_public_address addr; //destination address
82 
83  tx_destination_entry() : amount(0), addr(AUTO_VAL_INIT(addr)), is_subaddress(false), is_integrated(false) { }
84  tx_destination_entry(uint64_t a, const account_public_address &ad, bool is_subaddress) : amount(a), addr(ad), is_subaddress(is_subaddress), is_integrated(false) { }
85  tx_destination_entry(const std::string &o, uint64_t a, const account_public_address &ad, bool is_subaddress) : original(o), amount(a), addr(ad), is_subaddress(is_subaddress), is_integrated(false) { }
86 
88  FIELD(original)
90  FIELD(addr)
91  FIELD(is_subaddress)
92  FIELD(is_integrated)
94  };
95 
96  //---------------------------------------------------------------
98  bool construct_tx(const account_keys& sender_account_keys, std::vector<tx_source_entry> &sources, const std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time);
99  bool construct_tx_with_tx_key(const account_keys& sender_account_keys, const std::unordered_map<crypto::public_key, subaddress_index>& subaddresses, std::vector<tx_source_entry>& sources, std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time, const crypto::secret_key &tx_key, const std::vector<crypto::secret_key> &additional_tx_keys, bool rct = false, const rct::RCTConfig &rct_config = { rct::RangeProofBorromean, 0 }, rct::multisig_out *msout = NULL, bool shuffle_outs = true, uint32_t account_major_offset = 0);
100  bool construct_tx_and_get_tx_key(const account_keys& sender_account_keys, const std::unordered_map<crypto::public_key, subaddress_index>& subaddresses, std::vector<tx_source_entry>& sources, std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time, crypto::secret_key &tx_key, std::vector<crypto::secret_key> &additional_tx_keys, bool rct = false, const rct::RCTConfig &rct_config = { rct::RangeProofBorromean, 0 }, rct::multisig_out *msout = NULL, uint32_t account_major_offset = 0);
101  bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key,
102  const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
103  const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
104  std::vector<crypto::public_key> &additional_tx_public_keys,
105  std::vector<rct::key> &amount_keys,
106  crypto::public_key &out_eph_public_key) ;
107 
108  bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key,
109  const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
110  const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
111  std::vector<crypto::public_key> &additional_tx_public_keys,
112  std::vector<rct::key> &amount_keys,
113  crypto::public_key &out_eph_public_key) ;
114 
116  block& bl
117  , std::string const & genesis_tx
118  , uint32_t nonce
119  );
120 
121 }
122 
124 BOOST_CLASS_VERSION(cryptonote::tx_destination_entry, 2)
125 
126 namespace boost
127 {
128  namespace serialization
129  {
130  template <class Archive>
131  inline void serialize(Archive &a, cryptonote::tx_source_entry &x, const boost::serialization::version_type ver)
132  {
133  a & x.outputs;
134  a & x.real_output;
135  a & x.real_out_tx_key;
137  a & x.amount;
138  a & x.rct;
139  a & x.mask;
140  if (ver < 1)
141  return;
142  a & x.multisig_kLRki;
144  }
145 
146  template <class Archive>
147  inline void serialize(Archive& a, cryptonote::tx_destination_entry& x, const boost::serialization::version_type ver)
148  {
149  a & x.amount;
150  a & x.addr;
151  if (ver < 1)
152  return;
153  a & x.is_subaddress;
154  if (ver < 2)
155  {
156  x.is_integrated = false;
157  return;
158  }
159  a & x.original;
160  a & x.is_integrated;
161  }
162  }
163 }
uint64_t height
Definition: blockchain.cpp:91
Definition: cryptonote_basic.h:205
string a
Definition: MakeCryptoOps.py:15
void serialize(Archive &a, cryptonote::tx_destination_entry &x, const boost::serialization::version_type ver)
Definition: cryptonote_tx_utils.h:147
Definition: unordered_containers_boost_serialization.h:39
const
Definition: build_protob.py:9
crypto namespace.
Definition: crypto.cpp:58
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition: crypto.h:82
POD_CLASS public_key
Definition: crypto.h:76
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:226
network_type
Definition: cryptonote_config.h:243
@ MAINNET
Definition: cryptonote_config.h:244
bool construct_tx_with_tx_key(const account_keys &sender_account_keys, const std::unordered_map< crypto::public_key, subaddress_index > &subaddresses, std::vector< tx_source_entry > &sources, std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time, const crypto::secret_key &tx_key, const std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, rct::multisig_out *msout, bool shuffle_outs, const uint32_t account_major_offset)
Definition: cryptonote_tx_utils.cpp:202
crypto::public_key get_destination_view_key_pub(const std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr)
Definition: cryptonote_tx_utils.cpp:180
bool construct_tx_and_get_tx_key(const account_keys &sender_account_keys, const std::unordered_map< crypto::public_key, subaddress_index > &subaddresses, std::vector< tx_source_entry > &sources, std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time, crypto::secret_key &tx_key, std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, rct::multisig_out *msout, const uint32_t account_major_offset)
Definition: cryptonote_tx_utils.cpp:612
bool construct_tx(const account_keys &sender_account_keys, std::vector< tx_source_entry > &sources, const std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time)
Definition: cryptonote_tx_utils.cpp:639
bool construct_miner_tx(size_t height, size_t median_weight, uint64_t already_generated_coins, size_t current_block_weight, uint64_t fee, const account_public_address &miner_address, transaction &tx, const blobdata &extra_nonce, size_t max_outs, uint8_t hard_fork_version, network_type nettype)
Definition: cryptonote_tx_utils.cpp:79
std::string blobdata
Definition: blobdatatype.h:39
bool generate_genesis_block(block &bl, std::string const &genesis_tx, uint32_t nonce)
Definition: cryptonote_tx_utils.cpp:649
bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key, const cryptonote::tx_destination_entry &dst_entr, const boost::optional< cryptonote::account_public_address > &change_addr, const size_t output_index, const bool &need_additional_txkeys, const std::vector< crypto::secret_key > &additional_tx_keys, std::vector< crypto::public_key > &additional_tx_public_keys, std::vector< rct::key > &amount_keys, crypto::public_key &out_eph_public_key)
Definition: bulletproofs.cc:63
key zeroCommit(etn_amount amount)
Definition: rctOps.cpp:322
static const rct::key & pk2rct(const crypto::public_key &pk)
Definition: rctTypes.h:555
@ RangeProofBorromean
Definition: rctTypes.h:235
Definition: binary_utils.h:37
Definition: blockchain_ancestry.cpp:73
BOOST_CLASS_VERSION(nodetool::peerlist_types, nodetool::CURRENT_PEERLIST_STORAGE_ARCHIVE_VER)
#define BEGIN_SERIALIZE_OBJECT()
begins the environment of the DSL \detailed for described the serialization of an object
Definition: serialization.h:190
#define FIELD(f)
tags the field with the variable name and then serializes it
Definition: serialization.h:243
#define END_SERIALIZE()
self-explanatory
Definition: serialization.h:214
#define VARINT_FIELD(f)
tags and serializes the varint f
Definition: serialization.h:263
#define false
Definition: stdbool.h:38
Definition: account.h:42
Definition: cryptonote_basic.h:453
Definition: cryptonote_basic.h:410
Definition: subaddress_index.h:39
Definition: cryptonote_tx_utils.h:76
bool is_subaddress
Definition: cryptonote_tx_utils.h:80
tx_destination_entry()
Definition: cryptonote_tx_utils.h:83
bool is_integrated
Definition: cryptonote_tx_utils.h:81
tx_destination_entry(uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition: cryptonote_tx_utils.h:84
std::string original
Definition: cryptonote_tx_utils.h:77
uint64_t amount
Definition: cryptonote_tx_utils.h:78
tx_destination_entry(const std::string &o, uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition: cryptonote_tx_utils.h:85
account_public_address addr
Definition: cryptonote_tx_utils.h:79
Definition: cryptonote_tx_utils.h:44
std::vector< crypto::public_key > real_out_additional_tx_keys
Definition: cryptonote_tx_utils.h:50
crypto::public_key real_out_tx_key
Definition: cryptonote_tx_utils.h:49
uint64_t amount
Definition: cryptonote_tx_utils.h:52
rct::multisig_kLRki multisig_kLRki
Definition: cryptonote_tx_utils.h:55
bool rct
Definition: cryptonote_tx_utils.h:53
size_t real_output
Definition: cryptonote_tx_utils.h:48
std::vector< output_entry > outputs
Definition: cryptonote_tx_utils.h:47
rct::key mask
Definition: cryptonote_tx_utils.h:54
void push_output(uint64_t idx, const crypto::public_key &k, uint64_t amount)
Definition: cryptonote_tx_utils.h:57
std::pair< uint64_t, rct::ctkey > output_entry
Definition: cryptonote_tx_utils.h:45
if(real_output >=outputs.size()) return false
size_t real_output_in_tx_index
Definition: cryptonote_tx_utils.h:51
Definition: rctTypes.h:236
Definition: rctTypes.h:96
Definition: rctTypes.h:78
Definition: rctTypes.h:104
Definition: rctTypes.h:111