Monero
Loading...
Searching...
No Matches
cryptonote_config.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 <cstdint>
34#include <stdexcept>
35#include <string>
36#include <boost/uuid/uuid.hpp>
37
38#define CRYPTONOTE_DNS_TIMEOUT_MS 20000
39
40#define CRYPTONOTE_MAX_BLOCK_NUMBER 500000000
41#define CRYPTONOTE_MAX_TX_SIZE 1000000
42#define CRYPTONOTE_MAX_TX_PER_BLOCK 0x10000000
43#define CRYPTONOTE_PUBLIC_ADDRESS_TEXTBLOB_VER 0
44#define CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW 60
45#define CURRENT_TRANSACTION_VERSION 2
46#define CURRENT_BLOCK_MAJOR_VERSION 1
47#define CURRENT_BLOCK_MINOR_VERSION 0
48#define CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT 60*60*2
49#define CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE 10
50
51#define BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW 60
52
53// MONEY_SUPPLY - total number coins to be generated
54#define MONEY_SUPPLY ((uint64_t)(-1))
55#define EMISSION_SPEED_FACTOR_PER_MINUTE (20)
56#define FINAL_SUBSIDY_PER_MINUTE ((uint64_t)300000000000) // 3 * pow(10, 11)
57
58#define CRYPTONOTE_REWARD_BLOCKS_WINDOW 100
59#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V2 60000 //size of block (bytes) after which reward for block calculated using block size
60#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V1 20000 //size of block (bytes) after which reward for block calculated using block size - before first fork
61#define CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V5 300000 //size of block (bytes) after which reward for block calculated using block size - second change, from v5
62#define CRYPTONOTE_LONG_TERM_BLOCK_WEIGHT_WINDOW_SIZE 100000 // size in blocks of the long term block weight median window
63#define CRYPTONOTE_SHORT_TERM_BLOCK_WEIGHT_SURGE_FACTOR 50
64#define CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE 600
65#define CRYPTONOTE_DISPLAY_DECIMAL_POINT 12
66// COIN - number of smallest units in one coin
67#define COIN ((uint64_t)1000000000000) // pow(10, 12)
68
69#define FEE_PER_KB_OLD ((uint64_t)10000000000) // pow(10, 10)
70#define FEE_PER_KB ((uint64_t)2000000000) // 2 * pow(10, 9)
71#define FEE_PER_BYTE ((uint64_t)300000)
72#define DYNAMIC_FEE_PER_KB_BASE_FEE ((uint64_t)2000000000) // 2 * pow(10,9)
73#define DYNAMIC_FEE_PER_KB_BASE_BLOCK_REWARD ((uint64_t)10000000000000) // 10 * pow(10,12)
74#define DYNAMIC_FEE_PER_KB_BASE_FEE_V5 ((uint64_t)2000000000 * (uint64_t)CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V2 / CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V5)
75#define DYNAMIC_FEE_REFERENCE_TRANSACTION_WEIGHT ((uint64_t)3000)
76
77#define ORPHANED_BLOCKS_MAX_COUNT 100
78
79
80#define DIFFICULTY_TARGET_V2 120 // seconds
81#define DIFFICULTY_TARGET_V1 60 // seconds - before first fork
82#define DIFFICULTY_WINDOW 720 // blocks
83#define DIFFICULTY_LAG 15 // !!!
84#define DIFFICULTY_CUT 60 // timestamps to cut after sorting
85#define DIFFICULTY_BLOCKS_COUNT DIFFICULTY_WINDOW + DIFFICULTY_LAG
86
87
88#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V1 DIFFICULTY_TARGET_V1 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
89#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_SECONDS_V2 DIFFICULTY_TARGET_V2 * CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS
90#define CRYPTONOTE_LOCKED_TX_ALLOWED_DELTA_BLOCKS 1
91
92
93#define DIFFICULTY_BLOCKS_ESTIMATE_TIMESPAN DIFFICULTY_TARGET_V1 //just alias; used by tests
94
95
96#define BLOCKS_IDS_SYNCHRONIZING_DEFAULT_COUNT 10000 //by default, blocks ids count in synchronizing
97#define BLOCKS_IDS_SYNCHRONIZING_MAX_COUNT 25000 //max blocks ids count in synchronizing
98#define BLOCKS_SYNCHRONIZING_DEFAULT_COUNT_PRE_V4 100 //by default, blocks count in blocks downloading
99#define BLOCKS_SYNCHRONIZING_DEFAULT_COUNT 20 //by default, blocks count in blocks downloading
100#define BLOCKS_SYNCHRONIZING_MAX_COUNT 2048 //must be a power of 2, greater than 128, equal to SEEDHASH_EPOCH_BLOCKS
101
102#define CRYPTONOTE_MEMPOOL_TX_LIVETIME (86400*3) //seconds, three days
103#define CRYPTONOTE_MEMPOOL_TX_FROM_ALT_BLOCK_LIVETIME 604800 //seconds, one week
104
105
106#define CRYPTONOTE_DANDELIONPP_STEMS 2 // number of outgoing stem connections per epoch
107#define CRYPTONOTE_DANDELIONPP_FLUFF_PROBABILITY 20 // out of 100
108#define CRYPTONOTE_DANDELIONPP_MIN_EPOCH 10 // minutes
109#define CRYPTONOTE_DANDELIONPP_EPOCH_RANGE 30 // seconds
110#define CRYPTONOTE_DANDELIONPP_FLUSH_AVERAGE 5 // seconds average for poisson distributed fluff flush
111#define CRYPTONOTE_DANDELIONPP_EMBARGO_AVERAGE 39 // seconds (see tx_pool.cpp for more info)
112
113// see src/cryptonote_protocol/levin_notify.cpp
114#define CRYPTONOTE_NOISE_MIN_EPOCH 5 // minutes
115#define CRYPTONOTE_NOISE_EPOCH_RANGE 30 // seconds
116#define CRYPTONOTE_NOISE_MIN_DELAY 10 // seconds
117#define CRYPTONOTE_NOISE_DELAY_RANGE 5 // seconds
118#define CRYPTONOTE_NOISE_BYTES 3*1024 // 3 KiB
119#define CRYPTONOTE_NOISE_CHANNELS 2 // Max outgoing connections per zone used for noise/covert sending
120
121// Both below are in seconds. The idea is to delay forwarding from i2p/tor
122// to ipv4/6, such that 2+ incoming connections _could_ have sent the tx
123#define CRYPTONOTE_FORWARD_DELAY_BASE (CRYPTONOTE_NOISE_MIN_DELAY + CRYPTONOTE_NOISE_DELAY_RANGE)
124#define CRYPTONOTE_FORWARD_DELAY_AVERAGE (CRYPTONOTE_FORWARD_DELAY_BASE + (CRYPTONOTE_FORWARD_DELAY_BASE / 2))
125
126#define CRYPTONOTE_MAX_FRAGMENTS 20 // ~20 * NOISE_BYTES max payload size for covert/noise send
127
128#define COMMAND_RPC_GET_BLOCKS_FAST_MAX_BLOCK_COUNT 1000
129#define COMMAND_RPC_GET_BLOCKS_FAST_MAX_TX_COUNT 20000
130#define DEFAULT_RPC_MAX_CONNECTIONS_PER_PUBLIC_IP 3
131#define DEFAULT_RPC_MAX_CONNECTIONS_PER_PRIVATE_IP 25
132#define DEFAULT_RPC_MAX_CONNECTIONS 100
133#define DEFAULT_RPC_SOFT_LIMIT_SIZE 25 * 1024 * 1024 // 25 MiB
134#define MAX_RPC_CONTENT_LENGTH 1048576 // 1 MB
135
136#define P2P_LOCAL_WHITE_PEERLIST_LIMIT 1000
137#define P2P_LOCAL_GRAY_PEERLIST_LIMIT 5000
138
139#define P2P_DEFAULT_CONNECTIONS_COUNT 12
140#define P2P_DEFAULT_HANDSHAKE_INTERVAL 60 //secondes
141#define P2P_DEFAULT_PACKET_MAX_SIZE 50000000 //50000000 bytes maximum packet size
142#define P2P_DEFAULT_PEERS_IN_HANDSHAKE 250
143#define P2P_MAX_PEERS_IN_HANDSHAKE 250
144#define P2P_DEFAULT_CONNECTION_TIMEOUT 5000 //5 seconds
145#define P2P_DEFAULT_SOCKS_CONNECT_TIMEOUT 45 // seconds
146#define P2P_DEFAULT_PING_CONNECTION_TIMEOUT 2000 //2 seconds
147#define P2P_DEFAULT_INVOKE_TIMEOUT 60*2*1000 //2 minutes
148#define P2P_DEFAULT_HANDSHAKE_INVOKE_TIMEOUT 5000 //5 seconds
149#define P2P_DEFAULT_WHITELIST_CONNECTIONS_PERCENT 70
150#define P2P_DEFAULT_ANCHOR_CONNECTIONS_COUNT 2
151#define P2P_DEFAULT_SYNC_SEARCH_CONNECTIONS_COUNT 2
152#define P2P_DEFAULT_LIMIT_RATE_UP 8192 // kB/s
153#define P2P_DEFAULT_LIMIT_RATE_DOWN 32768 // kB/s
154
155#define P2P_FAILED_ADDR_FORGET_SECONDS (60*60) //1 hour
156#define P2P_IP_BLOCKTIME (60*60*24) //24 hour
157#define P2P_IP_FAILS_BEFORE_BLOCK 10
158#define P2P_IDLE_CONNECTION_KILL_INTERVAL (5*60) //5 minutes
159
160#define P2P_SUPPORT_FLAG_FLUFFY_BLOCKS 0x01
161#define P2P_SUPPORT_FLAGS P2P_SUPPORT_FLAG_FLUFFY_BLOCKS
162
163#define RPC_IP_FAILS_BEFORE_BLOCK 3
164
165#define CRYPTONOTE_NAME "bitmonero"
166#define CRYPTONOTE_BLOCKCHAINDATA_FILENAME "data.mdb"
167#define CRYPTONOTE_BLOCKCHAINDATA_LOCK_FILENAME "lock.mdb"
168#define P2P_NET_DATA_FILENAME "p2pstate.bin"
169#define RPC_PAYMENTS_DATA_FILENAME "rpcpayments.bin"
170#define MINER_CONFIG_FILE_NAME "miner_conf.json"
171
172#define THREAD_STACK_SIZE 5 * 1024 * 1024
173
174#define HF_VERSION_DYNAMIC_FEE 4
175#define HF_VERSION_MIN_MIXIN_4 6
176#define HF_VERSION_MIN_MIXIN_6 7
177#define HF_VERSION_MIN_MIXIN_10 8
178#define HF_VERSION_MIN_MIXIN_15 15
179#define HF_VERSION_ENFORCE_RCT 6
180#define HF_VERSION_PER_BYTE_FEE 8
181#define HF_VERSION_SMALLER_BP 10
182#define HF_VERSION_LONG_TERM_BLOCK_WEIGHT 10
183#define HF_VERSION_MIN_2_OUTPUTS 12
184#define HF_VERSION_MIN_V2_COINBASE_TX 12
185#define HF_VERSION_SAME_MIXIN 12
186#define HF_VERSION_REJECT_SIGS_IN_COINBASE 12
187#define HF_VERSION_ENFORCE_MIN_AGE 12
188#define HF_VERSION_EFFECTIVE_SHORT_TERM_MEDIAN_IN_PENALTY 12
189#define HF_VERSION_EXACT_COINBASE 13
190#define HF_VERSION_CLSAG 13
191#define HF_VERSION_DETERMINISTIC_UNLOCK_TIME 13
192#define HF_VERSION_BULLETPROOF_PLUS 15
193#define HF_VERSION_VIEW_TAGS 15
194#define HF_VERSION_2021_SCALING 15
195
196#define PER_KB_FEE_QUANTIZATION_DECIMALS 8
197#define CRYPTONOTE_SCALING_2021_FEE_ROUNDING_PLACES 2
198
199#define HASH_OF_HASHES_STEP 512
200
201#define DEFAULT_TXPOOL_MAX_WEIGHT 648000000ull // 3 days at 300000, in bytes
202
203#define BULLETPROOF_MAX_OUTPUTS 16
204#define BULLETPROOF_PLUS_MAX_OUTPUTS 16
205
206#define CRYPTONOTE_PRUNING_STRIPE_SIZE 4096 // the smaller, the smoother the increase
207#define CRYPTONOTE_PRUNING_LOG_STRIPES 3 // the higher, the more space saved
208#define CRYPTONOTE_PRUNING_TIP_BLOCKS 5500 // the smaller, the more space saved
209
210#define RPC_CREDITS_PER_HASH_SCALE ((float)(1<<24))
211
212#define DNS_BLOCKLIST_LIFETIME (86400 * 8)
213
214//The limit is enough for the mandatory transaction content with 16 outputs (547 bytes),
215//a custom tag (1 byte) and up to 32 bytes of custom data for each recipient.
216// (1+32) + (1+1+16*32) + (1+16*32) = 1060
217#define MAX_TX_EXTRA_SIZE 1060
218
219// New constants are intended to go here
220namespace config
221{
222 uint64_t const DEFAULT_FEE_ATOMIC_XMR_PER_KB = 500; // Just a placeholder! Change me!
224 uint64_t const DEFAULT_DUST_THRESHOLD = ((uint64_t)2000000000); // 2 * pow(10, 9)
225 uint64_t const BASE_REWARD_CLAMP_THRESHOLD = ((uint64_t)100000000); // pow(10, 8)
226
233 boost::uuids::uuid const NETWORK_ID = { {
234 0x12 ,0x30, 0xF1, 0x71 , 0x61, 0x04 , 0x41, 0x61, 0x17, 0x31, 0x00, 0x82, 0x16, 0xA1, 0xA1, 0x10
235 } }; // Bender's nightmare
236 std::string const GENESIS_TX = "013c01ff0001ffffffffffff03029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd08807121017767aafcde9be00dcfd098715ebcf7f410daebc582fda69d24a28e9d0bc890d1";
237 uint32_t const GENESIS_NONCE = 10000;
238
239 // Hash domain separators
240 const char HASH_KEY_BULLETPROOF_EXPONENT[] = "bulletproof";
241 const char HASH_KEY_BULLETPROOF_PLUS_EXPONENT[] = "bulletproof_plus";
242 const char HASH_KEY_BULLETPROOF_PLUS_TRANSCRIPT[] = "bulletproof_plus_transcript";
243 const char HASH_KEY_RINGDB[] = "ringdsb";
244 const char HASH_KEY_SUBADDRESS[] = "SubAddr";
245 const unsigned char HASH_KEY_ENCRYPTED_PAYMENT_ID = 0x8d;
246 const unsigned char HASH_KEY_WALLET = 0x8c;
247 const unsigned char HASH_KEY_WALLET_CACHE = 0x8d;
248 const unsigned char HASH_KEY_BACKGROUND_CACHE = 0x8e;
249 const unsigned char HASH_KEY_BACKGROUND_KEYS_FILE = 0x8f;
250 const unsigned char HASH_KEY_RPC_PAYMENT_NONCE = 0x58;
251 const unsigned char HASH_KEY_MEMORY = 'k';
252 const unsigned char HASH_KEY_MULTISIG[] = {'M', 'u', 'l', 't' , 'i', 's', 'i', 'g', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
253 const unsigned char HASH_KEY_MULTISIG_KEY_AGGREGATION[] = "Multisig_key_agg";
254 const unsigned char HASH_KEY_CLSAG_ROUND_MULTISIG[] = "CLSAG_round_ms_merge_factor";
255 const unsigned char HASH_KEY_TXPROOF_V2[] = "TXPROOF_V2";
256 const unsigned char HASH_KEY_CLSAG_ROUND[] = "CLSAG_round";
257 const unsigned char HASH_KEY_CLSAG_AGG_0[] = "CLSAG_agg_0";
258 const unsigned char HASH_KEY_CLSAG_AGG_1[] = "CLSAG_agg_1";
259 const char HASH_KEY_MESSAGE_SIGNING[] = "MoneroMessageSignature";
260 const unsigned char HASH_KEY_MM_SLOT = 'm';
261 const constexpr char HASH_KEY_MULTISIG_TX_PRIVKEYS_SEED[] = "multisig_tx_privkeys_seed";
262 const constexpr char HASH_KEY_MULTISIG_TX_PRIVKEYS[] = "multisig_tx_privkeys";
263 const constexpr char HASH_KEY_TXHASH_AND_MIXRING[] = "txhash_and_mixring";
264
265 // Multisig
267
268 namespace testnet
269 {
276 boost::uuids::uuid const NETWORK_ID = { {
277 0x12 ,0x30, 0xF1, 0x71 , 0x61, 0x04 , 0x41, 0x61, 0x17, 0x31, 0x00, 0x82, 0x16, 0xA1, 0xA1, 0x11
278 } }; // Bender's daydream
279 std::string const GENESIS_TX = "013c01ff0001ffffffffffff03029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd08807121017767aafcde9be00dcfd098715ebcf7f410daebc582fda69d24a28e9d0bc890d1";
280 uint32_t const GENESIS_NONCE = 10001;
281 }
282
283 namespace stagenet
284 {
291 boost::uuids::uuid const NETWORK_ID = { {
292 0x12 ,0x30, 0xF1, 0x71 , 0x61, 0x04 , 0x41, 0x61, 0x17, 0x31, 0x00, 0x82, 0x16, 0xA1, 0xA1, 0x12
293 } }; // Bender's daydream
294 std::string const GENESIS_TX = "013c01ff0001ffffffffffff0302df5d56da0c7d643ddd1ce61901c7bdc5fb1738bfe39fbe69c28a3a7032729c0f2101168d0c4ca86fb55a4cf6a36d31431be1c53a3bd7411bb24e8832410289fa6f3b";
295 uint32_t const GENESIS_NONCE = 10002;
296 }
297}
298
299namespace cryptonote
300{
321 inline const config_t& get_config(network_type nettype)
322 {
323 static const config_t mainnet = {
333 };
334 static const config_t testnet = {
344 };
345 static const config_t stagenet = {
355 };
356 switch (nettype)
357 {
358 case MAINNET: return mainnet;
359 case TESTNET: return testnet;
360 case STAGENET: return stagenet;
361 case FAKECHAIN: return mainnet;
362 default: throw std::runtime_error("Invalid network type");
363 }
364 };
365}
Definition cryptonote_config.h:284
boost::uuids::uuid const NETWORK_ID
Definition cryptonote_config.h:291
uint32_t const GENESIS_NONCE
Definition cryptonote_config.h:295
uint64_t const CRYPTONOTE_PUBLIC_SUBADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:287
uint16_t const ZMQ_RPC_DEFAULT_PORT
Definition cryptonote_config.h:290
uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:285
uint64_t const CRYPTONOTE_PUBLIC_INTEGRATED_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:286
uint16_t const P2P_DEFAULT_PORT
Definition cryptonote_config.h:288
uint16_t const RPC_DEFAULT_PORT
Definition cryptonote_config.h:289
std::string const GENESIS_TX
Definition cryptonote_config.h:294
Definition cryptonote_config.h:269
uint16_t const ZMQ_RPC_DEFAULT_PORT
Definition cryptonote_config.h:275
uint16_t const RPC_DEFAULT_PORT
Definition cryptonote_config.h:274
boost::uuids::uuid const NETWORK_ID
Definition cryptonote_config.h:276
uint32_t const GENESIS_NONCE
Definition cryptonote_config.h:280
uint64_t const CRYPTONOTE_PUBLIC_SUBADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:272
uint16_t const P2P_DEFAULT_PORT
Definition cryptonote_config.h:273
uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:270
std::string const GENESIS_TX
Definition cryptonote_config.h:279
uint64_t const CRYPTONOTE_PUBLIC_INTEGRATED_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:271
Definition cryptonote_config.h:221
const unsigned char HASH_KEY_RPC_PAYMENT_NONCE
Definition cryptonote_config.h:250
const constexpr char HASH_KEY_MULTISIG_TX_PRIVKEYS_SEED[]
Definition cryptonote_config.h:261
const unsigned char HASH_KEY_TXPROOF_V2[]
Definition cryptonote_config.h:255
const unsigned char HASH_KEY_WALLET_CACHE
Definition cryptonote_config.h:247
std::string const GENESIS_TX
Definition cryptonote_config.h:236
uint64_t const CRYPTONOTE_PUBLIC_INTEGRATED_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:228
const unsigned char HASH_KEY_BACKGROUND_CACHE
Definition cryptonote_config.h:248
uint16_t const RPC_DEFAULT_PORT
Definition cryptonote_config.h:231
uint64_t const DEFAULT_DUST_THRESHOLD
Definition cryptonote_config.h:224
const constexpr char HASH_KEY_MULTISIG_TX_PRIVKEYS[]
Definition cryptonote_config.h:262
const unsigned char HASH_KEY_MULTISIG_KEY_AGGREGATION[]
Definition cryptonote_config.h:253
const unsigned char HASH_KEY_WALLET
Definition cryptonote_config.h:246
boost::uuids::uuid const NETWORK_ID
Definition cryptonote_config.h:233
const unsigned char HASH_KEY_CLSAG_ROUND_MULTISIG[]
Definition cryptonote_config.h:254
const unsigned char HASH_KEY_CLSAG_AGG_0[]
Definition cryptonote_config.h:257
uint32_t const GENESIS_NONCE
Definition cryptonote_config.h:237
uint16_t const ZMQ_RPC_DEFAULT_PORT
Definition cryptonote_config.h:232
const unsigned char HASH_KEY_ENCRYPTED_PAYMENT_ID
Definition cryptonote_config.h:245
uint8_t const FEE_CALCULATION_MAX_RETRIES
Definition cryptonote_config.h:223
uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:227
const unsigned char HASH_KEY_MM_SLOT
Definition cryptonote_config.h:260
const unsigned char HASH_KEY_BACKGROUND_KEYS_FILE
Definition cryptonote_config.h:249
const unsigned char HASH_KEY_CLSAG_ROUND[]
Definition cryptonote_config.h:256
const char HASH_KEY_SUBADDRESS[]
Definition cryptonote_config.h:244
uint64_t const BASE_REWARD_CLAMP_THRESHOLD
Definition cryptonote_config.h:225
const char HASH_KEY_MESSAGE_SIGNING[]
Definition cryptonote_config.h:259
const char HASH_KEY_RINGDB[]
Definition cryptonote_config.h:243
uint16_t const P2P_DEFAULT_PORT
Definition cryptonote_config.h:230
const char HASH_KEY_BULLETPROOF_PLUS_EXPONENT[]
Definition cryptonote_config.h:241
uint64_t const DEFAULT_FEE_ATOMIC_XMR_PER_KB
Definition cryptonote_config.h:222
const char HASH_KEY_BULLETPROOF_EXPONENT[]
Definition cryptonote_config.h:240
uint64_t const CRYPTONOTE_PUBLIC_SUBADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:229
const uint32_t MULTISIG_MAX_SIGNERS
Definition cryptonote_config.h:266
const constexpr char HASH_KEY_TXHASH_AND_MIXRING[]
Definition cryptonote_config.h:263
const char HASH_KEY_BULLETPROOF_PLUS_TRANSCRIPT[]
Definition cryptonote_config.h:242
const unsigned char HASH_KEY_CLSAG_AGG_1[]
Definition cryptonote_config.h:258
const unsigned char HASH_KEY_MEMORY
Definition cryptonote_config.h:251
const unsigned char HASH_KEY_MULTISIG[]
Definition cryptonote_config.h:252
Holds cryptonote related classes and helpers.
Definition blockchain_db.cpp:45
network_type
Definition cryptonote_config.h:302
@ UNDEFINED
Definition cryptonote_config.h:307
@ FAKECHAIN
Definition cryptonote_config.h:306
@ TESTNET
Definition cryptonote_config.h:304
@ MAINNET
Definition cryptonote_config.h:303
@ STAGENET
Definition cryptonote_config.h:305
const config_t & get_config(network_type nettype)
Definition cryptonote_config.h:321
unsigned short uint16_t
Definition stdint.h:125
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 cryptonote_config.h:310
boost::uuids::uuid const NETWORK_ID
Definition cryptonote_config.h:317
std::string const GENESIS_TX
Definition cryptonote_config.h:318
uint16_t const ZMQ_RPC_DEFAULT_PORT
Definition cryptonote_config.h:316
uint32_t const GENESIS_NONCE
Definition cryptonote_config.h:319
uint64_t const CRYPTONOTE_PUBLIC_SUBADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:313
uint16_t const RPC_DEFAULT_PORT
Definition cryptonote_config.h:315
uint64_t const CRYPTONOTE_PUBLIC_INTEGRATED_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:312
uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX
Definition cryptonote_config.h:311
uint16_t const P2P_DEFAULT_PORT
Definition cryptonote_config.h:314