Monero
Loading...
Searching...
No Matches
cryptonote_tx_utils.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
33#include <boost/serialization/vector.hpp>
34#include <boost/serialization/utility.hpp>
35#include "ringct/rctOps.h"
36
37namespace cryptonote
38{
39 //---------------------------------------------------------------
40 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);
41
43 {
44 typedef std::pair<uint64_t, rct::ctkey> output_entry;
45
46 std::vector<output_entry> outputs; //index + key + optional ringct commitment
47 uint64_t real_output; //index in outputs vector of real output_entry
48 crypto::public_key real_out_tx_key; //incoming real tx public key
49 std::vector<crypto::public_key> real_out_additional_tx_keys; //incoming real tx additional public keys
50 uint64_t real_output_in_tx_index; //index in transaction outputs vector
52 bool rct; //true if the output is rct
53 rct::key mask; //ringct amount mask
55
56 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)}))); }
57
65 FIELD(rct)
66 FIELD(mask)
68
70 return false;
72 };
73
75 {
76 std::string original;
78 account_public_address addr; //destination address
81
85
86 std::string address(network_type nettype, const crypto::hash &payment_id) const
87 {
88 if (!original.empty())
89 {
90 return original;
91 }
92
93 if (is_integrated)
94 {
95 return get_account_integrated_address_as_str(nettype, addr, reinterpret_cast<const crypto::hash8 &>(payment_id));
96 }
97
99 }
100
102 FIELD(original)
104 FIELD(addr)
105 FIELD(is_subaddress)
106 FIELD(is_integrated)
108 };
109
110 //---------------------------------------------------------------
111
118
119 //---------------------------------------------------------------
120 crypto::public_key get_destination_view_key_pub(const std::vector<tx_destination_entry> &destinations, const boost::optional<cryptonote::account_public_address>& change_addr);
121 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);
122 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, 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 }, bool shuffle_outs = true, bool use_view_tags = false);
123 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, crypto::secret_key &tx_key, std::vector<crypto::secret_key> &additional_tx_keys, bool rct = false, const rct::RCTConfig &rct_config = { rct::RangeProofBorromean, 0 }, bool use_view_tags = false);
124 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,
125 const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
126 const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
127 std::vector<crypto::public_key> &additional_tx_public_keys,
128 std::vector<rct::key> &amount_keys,
129 crypto::public_key &out_eph_public_key,
130 const bool use_view_tags, crypto::view_tag &view_tag) ;
131
132 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,
133 const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
134 const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
135 std::vector<crypto::public_key> &additional_tx_public_keys,
136 std::vector<rct::key> &amount_keys,
137 crypto::public_key &out_eph_public_key,
138 const bool use_view_tags, crypto::view_tag &view_tag) ;
139
141 block& bl
142 , std::string const & genesis_tx
143 , uint32_t nonce
144 );
145
146 class Blockchain;
147 bool get_block_longhash(const Blockchain *pb, const blobdata& bd, crypto::hash& res, const uint64_t height, const int major_version, const crypto::hash *seed_hash, const int miners = 0);
148 bool get_block_longhash(const Blockchain *pb, const block& b, crypto::hash& res, const uint64_t height, const crypto::hash *seed_hash = nullptr, const int miners = 0);
149 crypto::hash get_block_longhash(const Blockchain *pb, const block& b, const uint64_t height, const crypto::hash *seed_hash = nullptr, const int miners = 0);
150 void get_altblock_longhash(const block& b, crypto::hash& res, const crypto::hash& seed_hash);
151
152}
153
155BOOST_CLASS_VERSION(cryptonote::tx_destination_entry, 2)
156
157namespace boost
158{
159 namespace serialization
160 {
161 template <class Archive>
162 inline void serialize(Archive &a, cryptonote::tx_source_entry &x, const boost::serialization::version_type ver)
163 {
164 a & x.outputs;
165 a & x.real_output;
166 a & x.real_out_tx_key;
168 a & x.amount;
169 a & x.rct;
170 a & x.mask;
171 if (ver < 1)
172 return;
173 a & x.multisig_kLRki;
175 }
176
177 template <class Archive>
178 inline void serialize(Archive& a, cryptonote::tx_destination_entry& x, const boost::serialization::version_type ver)
179 {
180 a & x.amount;
181 a & x.addr;
182 if (ver < 1)
183 return;
184 a & x.is_subaddress;
185 if (ver < 2)
186 {
187 x.is_integrated = false;
188 return;
189 }
190 a & x.original;
191 a & x.is_integrated;
192 }
193 }
194}
cryptonote::block b
Definition block.cpp:40
Definition blockchain.h:103
Definition cryptonote_basic.h:205
std::tuple< uint64_t, uint64_t, std::vector< tools::wallet2::transfer_details > > outputs
Definition cold-outputs.cpp:53
#define BEGIN_SERIALIZE_OBJECT()
#define FIELD(f)
#define false
#define END_SERIALIZE()
#define VARINT_FIELD(f)
const char * res
Definition hmac_keccak.cpp:42
#define AUTO_VAL_INIT(v)
Definition misc_language.h:36
Definition portable_binary_archive.hpp:29
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition crypto.h:72
POD_CLASS hash8
Definition hash.h:52
POD_CLASS view_tag
Definition crypto.h:103
POD_CLASS public_key
Definition crypto.h:64
POD_CLASS hash
Definition hash.h:49
Holds cryptonote related classes and helpers.
Definition blockchain_db.cpp:45
network_type
Definition cryptonote_config.h:302
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:184
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)
Definition cryptonote_tx_utils.cpp:639
void get_altblock_longhash(const block &b, crypto::hash &res, const crypto::hash &seed_hash)
Definition cryptonote_tx_utils.cpp:674
std::string get_account_address_as_str(network_type nettype, bool subaddress, account_public_address const &adr)
Definition cryptonote_basic_impl.cpp:150
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, crypto::secret_key &tx_key, std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, bool use_view_tags)
Definition cryptonote_tx_utils.cpp:609
std::string blobdata
Definition blobdatatype.h:39
bool get_block_longhash(const Blockchain *pbc, const blobdata &bd, crypto::hash &res, const uint64_t height, const int major_version, const crypto::hash *seed_hash, const int miners)
Definition cryptonote_tx_utils.cpp:680
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, const crypto::secret_key &tx_key, const std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, bool shuffle_outs, bool use_view_tags)
Definition cryptonote_tx_utils.cpp:206
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)
Definition cryptonote_tx_utils.cpp:78
bool generate_genesis_block(block &bl, std::string const &genesis_tx, uint32_t nonce)
Definition cryptonote_tx_utils.cpp:649
std::string get_account_integrated_address_as_str(network_type nettype, account_public_address const &adr, crypto::hash8 const &payment_id)
Definition cryptonote_basic_impl.cpp:161
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, const bool use_view_tags, crypto::view_tag &view_tag)
Definition bulletproofs.cc:64
key zeroCommit(xmr_amount amount)
Definition rctOps.cpp:322
@ RangeProofBorromean
Definition rctTypes.h:307
static const rct::key & pk2rct(const crypto::public_key &pk)
Definition rctTypes.h:739
Definition binary_utils.h:36
BOOST_CLASS_VERSION(nodetool::peerlist_types, nodetool::CURRENT_PEERLIST_STORAGE_ARCHIVE_VER)
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:898
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 account.h:41
Definition cryptonote_basic.h:512
Definition cryptonote_basic.h:475
Definition cryptonote_tx_utils.h:113
uint64_t fee
Definition cryptonote_tx_utils.h:116
uint64_t weight
Definition cryptonote_tx_utils.h:115
crypto::hash id
Definition cryptonote_tx_utils.h:114
Definition cryptonote_tx_utils.h:75
bool is_subaddress
Definition cryptonote_tx_utils.h:79
std::string address(network_type nettype, const crypto::hash &payment_id) const
Definition cryptonote_tx_utils.h:86
tx_destination_entry()
Definition cryptonote_tx_utils.h:82
bool is_integrated
Definition cryptonote_tx_utils.h:80
tx_destination_entry(uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition cryptonote_tx_utils.h:83
std::string original
Definition cryptonote_tx_utils.h:76
uint64_t amount
Definition cryptonote_tx_utils.h:77
tx_destination_entry(const std::string &o, uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition cryptonote_tx_utils.h:84
account_public_address addr
Definition cryptonote_tx_utils.h:78
Definition cryptonote_tx_utils.h:43
std::vector< crypto::public_key > real_out_additional_tx_keys
Definition cryptonote_tx_utils.h:49
crypto::public_key real_out_tx_key
Definition cryptonote_tx_utils.h:48
uint64_t amount
Definition cryptonote_tx_utils.h:51
rct::multisig_kLRki multisig_kLRki
Definition cryptonote_tx_utils.h:54
bool rct
Definition cryptonote_tx_utils.h:52
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
rct::key mask
Definition cryptonote_tx_utils.h:53
void push_output(uint64_t idx, const crypto::public_key &k, uint64_t amount)
Definition cryptonote_tx_utils.h:56
std::pair< uint64_t, rct::ctkey > output_entry
Definition cryptonote_tx_utils.h:44
if(real_output >=outputs.size()) return false
Definition chaingen.h:294
Definition rctTypes.h:308
Definition rctTypes.h:97
Definition rctTypes.h:79
Definition rctTypes.h:113
cryptonote::transaction tx
Definition transaction.cpp:40