-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathparamlist.h
More file actions
306 lines (290 loc) · 26.6 KB
/
paramlist.h
File metadata and controls
306 lines (290 loc) · 26.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
// Copyright (c) 2014-2017 Coin Sciences Ltd
// MultiChain code distributed under the GPLv3 license, see COPYING file.
#ifndef MULTICHAINPARAMLIST_H
#define MULTICHAINPARAMLIST_H
static const mc_OneMultichainParam MultichainParamArray[] =
{
{ "chainprotocol" , "chain-protocol" ,
MC_PRM_STRING | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_SPECIAL , 16, 0, 0, 0, 0.0, 10001, 0, "-mc-chainprotocol",
"chaindescription","Basic chain parameters",
"Chain protocol: multichain (permissions, native assets) or bitcoin"},
{ "chaindescription" , "chain-description" ,
MC_PRM_STRING | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_SPECIAL ,256, 0, 0, 0, 0.0, 10001, 0, "-mc-chaindescription",
"rootstreamname","",
"Chain description, embedded in genesis block coinbase, max 256 chars."},
{ "rootstreamname" , "root-stream-name" ,
MC_PRM_STRING | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_SPECIAL,256, 0, 0, 0, 0.0, 10006, 0, "-mc-rootstreamname",
"rootstreamopen","",
"Root stream name, blank means no root stream."},
{ "rootstreamopen" , "root-stream-open" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1 , 1, 0, 0, 0.0, 10006, 0, "-mc-rootstreamopen",
"chainistestnet","",
"Allow anyone to publish in root stream"},
{ "chainistestnet" , "chain-is-testnet" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-chainistestnet",
"targetblocktime","",
"Content of the 'testnet' field of API responses, for compatibility."},
{ "targetblocktime" , "target-block-time" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 15, 2, 86400, 0.0, 10001, 0, "-mc-targetblocktime",
"maximumblocksize","",
"Target time between blocks (transaction confirmation delay), seconds."},
{ "maximumblocksize" , "maximum-block-size" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 8388608, 1000,1000000000, 0.0, 10001, 0, "-mc-maximumblocksize",
"defaultnetworkport","",
"Maximum block size in bytes."},
{ "defaultnetworkport" , "default-network-port" ,
MC_PRM_UINT32 | MC_PRM_GENERATED | MC_PRM_CLONE , -1, MC_DEFAULT_NETWORK_PORT, 1024, 65535, 0.0, 10001, 0, "-mc-defaultnetworkport",
"defaultrpcport","",
"Default TCP/IP port for peer-to-peer connection with other nodes."},
{ "defaultrpcport" , "default-rpc-port" ,
MC_PRM_UINT32 | MC_PRM_GENERATED | MC_PRM_CLONE | MC_PRM_MINIMAL , -1, MC_DEFAULT_RPC_PORT, 1024, 65535, 0.0, 10001, 0, "-mc-defaultrpcport",
"anyonecanconnect","",
"Default TCP/IP port for incoming JSON-RPC API requests."},
{ "anyonecanconnect" , "anyone-can-connect" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecanconnect",
"anyonecansend","Global permissions",
"Anyone can connect, i.e. a publicly readable blockchain."},
{ "anyonecansend" , "anyone-can-send" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecansend",
"anyonecanreceive","",
"Anyone can send, i.e. transaction signing not restricted by address."},
{ "anyonecanreceive" , "anyone-can-receive" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecanreceive",
"anyonecanreceiveempty","",
"Anyone can receive, i.e. transaction outputs not restricted by address."},
{ "anyonecanreceiveempty" , "anyone-can-receive-empty" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 0, 0, 0.0, 10007, 0, "-mc-anyonecanreceiveempty",
"anyonecancreate","",
"Anyone can receive empty output, i.e. without permission grants, asset transfers and zero native currency."},
{ "anyonecancreate" , "anyone-can-create" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10006, 0, "-mc-anyonecancreate",
"anyonecanissue","",
"Anyone can create new streams."},
{ "anyonecanissue" , "anyone-can-issue" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecanissue",
"anyonecanmine","",
"Anyone can issue new native assets."},
{ "anyonecanmine" , "anyone-can-mine" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecanmine",
"anyonecanactivate","",
"Anyone can mine blocks (confirm transactions)."},
{ "anyonecanactivate" , "anyone-can-activate" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10003, 0, "-mc-anyonecanactivate",
"anyonecanadmin","",
"Anyone can grant or revoke connect, send and receive permissions."},
{ "anyonecanadmin" , "anyone-can-admin" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-anyonecanadmin",
"supportminerprecheck","",
"Anyone can grant or revoke all permissions."},
{ "supportminerprecheck" , "support-miner-precheck" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 0, 0, 0.0, 10007, 0, "-mc-supportminerprecheck",
"allowarbitraryoutputs","",
"Require special metadata output with cached scriptPubKey for input, to support advanced miner checks."},
{ "allowarbitraryoutputs" , "allow-arbitrary-outputs" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10009, 0, "-mc-allowarbitraryoutputs",
"allowp2shoutputs","",
"Allow arbitrary (without clear destination) scripts."},
{ "allowp2shoutputs" , "allow-p2sh-outputs" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 0, 0, 0.0, 10001, 0, "-mc-allowp2shoutputs",
"allowmultisigoutputs","",
"Allow pay-to-scripthash (P2SH) scripts, often used for multisig. Ignored if allow-arbitrary-outputs=true."},
{ "allowmultisigoutputs" , "allow-multisig-outputs" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 0, 0, 0.0, 10001, 0, "-mc-allowmultisigoutputs",
"setupfirstblocks","",
"Allow bare multisignature scripts, rarely used but still supported. Ignored if allow-arbitrary-outputs=true."},
{ "setupfirstblocks" , "setup-first-blocks" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 60, 1, 31536000, 0.0, 10001, 0, "-mc-setupfirstblocks",
"miningdiversity","Consensus requirements",
"Length of initial setup phase in blocks, in which mining-diversity,\nadmin-consensus-* and mining-requires-peers are not applied."},
{ "miningdiversity" , "mining-diversity" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 300000, 0, 1000000, 0.0, 10001, 0, "-mc-miningdiversity",
"adminconsensusupgrade","",
"Miners must wait <mining-diversity>*<active miners> between blocks."},
{ "adminconsensusupgrade" , "admin-consensus-upgrade" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 500000, 0, 1000000, 0.0, 10008, 0, "-mc-adminconsensusupgrade",
"adminconsensusadmin","",
"<admin-consensus-upgrade>*<active admins> needed to upgrade the chain."},
{ "adminconsensusadmin" , "admin-consensus-admin" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 500000, 0, 1000000, 0.0, 10001, 0, "-mc-adminconsensusadmin",
"adminconsensusactivate","",
"<admin-consensus-admin>*<active admins> needed to change admin perms."},
{ "adminconsensusactivate" , "admin-consensus-activate" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 500000, 0, 1000000, 0.0, 10003, 0, "-mc-adminconsensusactivate",
"adminconsensusmine","",
"<admin-consensus-activate>*<active admins> to change activate perms."},
{ "adminconsensusmine" , "admin-consensus-mine" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 500000, 0, 1000000, 0.0, 10001, 0, "-mc-adminconsensusmine",
"adminconsensuscreate","",
"<admin-consensus-mine>*<active admins> to change mining permissions."},
{ "adminconsensuscreate" , "admin-consensus-create" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 0, 0, 1000000, 0.0, 10006, 0, "-mc-adminconsensuscreate",
"adminconsensusissue","",
"<admin-consensus-create>*<active admins> to change create permissions."},
{ "adminconsensusissue" , "admin-consensus-issue" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL , -1, 0, 0, 1000000, 0.0, 10003, 0, "-mc-adminconsensusissue",
"lockadminminerounds","",
"<admin-consensus-issue>*<active admins> to change issue permissions."},
{ "lockadminminerounds" , "lock-admin-mine-rounds" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_NOHASH , -1, 10, 0, 10000, 0.0, 10007, 0, "-mc-setupfirstblocks",
"miningrequirespeers","Defaults for node runtime parameters",
"Ignore forks that reverse changes in admin or mine permissions after this many mining rounds have passed. Integer only."},
{ "miningrequirespeers" , "mining-requires-peers" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_NOHASH , -1, 1, 0, 0, 0.0, 10001, 0, "-mc-miningrequirespeers",
"mineemptyrounds","",
"Nodes only mine blocks if connected to other nodes (ignored if only one permitted miner)."},
{ "mineemptyrounds" , "mine-empty-rounds" ,
MC_PRM_INT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL | MC_PRM_NOHASH, -1, 10000000, -1000000, 1000000000, 0.0, 10007, 0, "-mc-mineemptyrounds",
"miningturnover","",
"Mine this many rounds of empty blocks before pausing to wait for new transactions. If negative, continue indefinitely (ignored if target-adjust-freq>0). Non-integer allowed."},
{ "miningturnover" , "mining-turnover" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_DECIMAL | MC_PRM_NOHASH, -1, 500000, 0, 1000000, 0.0, 10007, 0, "-mc-miningturnover",
"initialblockreward","",
"Prefer pure round robin between a subset of active miners to minimize forks (0.0) or random equal participation for all permitted miners (1.0)."},
/*
{ "minimumblocktxs" , "minimum-block-txs" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE | MC_PRM_NOHASH , -1, 0, 0, 1000, 0.0, 10007, 0, "-mc-minimumblocktxs",
"initialblockreward","",
"Recommended minimal number of transactions in block."},
*/
{ "firstblockreward" , "first-block-reward" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, -1, -1,1000000000000000000, 0.0, 10002, 0, "-mc-genesisblockreward",
"rewardhalvinginterval","",
"Different mining reward for first block only, ignored if negative."},
{ "initialblockreward" , "initial-block-reward" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0,1000000000000000000, 0.0, 10001, 0, "-mc-initialblockreward",
"firstblockreward","Native blockchain currency (likely not required)",
"Initial block mining reward in raw native currency units."},
{ "rewardhalvinginterval" , "reward-halving-interval" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 52560000, 60,4294967295U, 0.0, 10001, 0, "-mc-rewardhalvinginterval",
"rewardspendabledelay","",
"Interval for halving of mining rewards, in blocks."},
{ "rewardspendabledelay" , "reward-spendable-delay" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 1, 100000, 0.0, 10001, 0, "-mc-rewardspendabledelay",
"minimumperoutput","",
"Delay before mining reward can be spent, in blocks."},
{ "minimumperoutput" , "minimum-per-output" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 0, -1,1000000000, 0.0, 10001, 0, "-mc-minimumperoutput",
"maximumperoutput","",
"Minimum native currency per output (anti-dust), in raw units.\nIf set to -1, this is calculated from minimum-relay-fee."},
{ "maximumperoutput" , "maximum-per-output" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 100000000000000, 0,1000000000000000000, 0.0, 10001, 0, "-mc-maximumperoutput",
"minimumrelayfee","",
"Maximum native currency per output, in raw units."},
{ "minimumrelayfee" , "minimum-relay-fee" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0,1000000000, 0.0, 10001, 0, "-mc-minimumrelayfee",
"nativecurrencymultiple","",
"Minimum transaction fee, per 1000 bytes, in raw units of native currency."},
{ "nativecurrencymultiple" , "native-currency-multiple" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 100000000, 0,1000000000, 0.0, 10001, 0, "-mc-nativecurrencymultiple",
"skippowcheck","",
"Number of raw units of native currency per display unit."},
{ "skippowcheck" , "skip-pow-check" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-skippowcheck",
"powminimumbits","Advanced mining parameters",
"Skip checking whether block hashes demonstrate proof of work."},
{ "powminimumbits" , "pow-minimum-bits" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 8, 1, 32, 0.0, 10001, 0, "-mc-powminimumbits",
"targetadjustfreq","",
"Initial and minimum proof of work difficulty, in leading zero bits."},
{ "targetadjustfreq" , "target-adjust-freq" ,
MC_PRM_INT32 | MC_PRM_USER | MC_PRM_CLONE , -1, -1, -1,4294967295U, 0.0, 10001, 0, "-mc-targetadjustfreq",
"allowmindifficultyblocks","",
"Interval between proof of work difficulty adjustments, in seconds, if negative - never adjusted."},
{ "allowmindifficultyblocks" , "allow-min-difficulty-blocks" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 0, 0, 0, 0.0, 10001, 0, "-mc-allowmindifficultyblocks",
"onlyacceptstdtxs","",
"Allow lower difficulty blocks if none after 2*<target-block-time>."},
{ "onlyacceptstdtxs" , "only-accept-std-txs" ,
MC_PRM_BOOLEAN | MC_PRM_USER | MC_PRM_CLONE , -1, 1, 0, 0, 0.0, 10001, 0, "-mc-onlyacceptstdtxs",
"maxstdtxsize","Standard transaction definitions",
"Only accept and relay transactions which qualify as 'standard'."},
{ "maxstdtxsize" , "max-std-tx-size" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 4194304, 1024, 100000000, 0.0, 10001, 0, "-mc-maxstdtxsize",
"maxstdopreturnscount","",
"Maximum size of standard transactions, in bytes."},
{ "maxstdopreturnscount" , "max-std-op-returns-count" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 10, 0, 1024, 0.0, 10006, 0, "-mc-maxstdopreturnscount",
"maxstdopreturnsize","",
"Maximum number of OP_RETURN metadata outputs in standard transactions."},
{ "maxstdopreturnsize" , "max-std-op-return-size" ,
MC_PRM_UINT32 | MC_PRM_USER | MC_PRM_CLONE , -1, 2097152, 0, 67108864, 0.0, 10001, 0, "-mc-maxstdopreturnsize",
"maxstdopdropscount","",
"Maximum size of OP_RETURN metadata in standard transactions, in bytes."},
{ "maxstdopdropscount" , "max-std-op-drops-count" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 5, 0, 100, 0.0, 10001, 0, "-mc-maxstdopdropscount",
"maxstdelementsize","",
"Maximum number of OP_DROPs per output in standard transactions."},
{ "maxstdelementsize" , "max-std-element-size" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 8192, 128, 32768, 0.0, 10003, 0, "-mc-maxscriptelementsize",
"maxstdopdropsize","",
"Maximum size of data elements in standard transactions, in bytes."},
{ "maxstdopdropsize" , "max-std-op-drop-size" ,
MC_PRM_INT64 | MC_PRM_USER | MC_PRM_CLONE , -1, 64, 0, 32768, 0.0, 10001, 10003, "-mc-maxstdopdropsize",
"chainname","",
"Obsolete. Maximum size of OP_DROP metadata in standard transactions, in bytes."},
{ "chainname" , "chain-name" ,
MC_PRM_STRING | MC_PRM_GENERATED | MC_PRM_MINIMAL , MC_PRM_NETWORK_NAME_MAX_SIZE, 0, 0, 0, 0.0, 10001, 0, "",
"protocolversion","",
"Chain name, used as first argument for multichaind and multichain-cli."},
{ "protocolversion" , "protocol-version" ,
MC_PRM_UINT32 | MC_PRM_GENERATED , -1, 0, 0, 0, 0.0, 10001, 0, "",
"networkmessagestart","",
"Protocol version at the moment of blockchain genesis."},
{ "networkmessagestart" , "network-message-start" ,
MC_PRM_BINARY | MC_PRM_GENERATED | MC_PRM_MINIMAL , 4, 0, 0, 0, 0.0, 10001, 0, "",
"addresspubkeyhashversion","",
"Magic value sent as the first 4 bytes of every peer-to-peer message."},
{ "addresspubkeyhashversion" , "address-pubkeyhash-version" ,
MC_PRM_BINARY | MC_PRM_GENERATED | MC_PRM_MINIMAL , 4, 0, 0, 0, 0.0, 10001, 0, "",
"addressscripthashversion","",
"Version bytes used for pay-to-pubkeyhash addresses."},
{ "addressscripthashversion" , "address-scripthash-version" ,
MC_PRM_BINARY | MC_PRM_GENERATED , 4, 0, 0, 0, 0.0, 10001, 0, "",
"privatekeyversion","",
"Version bytes used for pay-to-scripthash addresses."},
{ "privatekeyversion" , "private-key-version" ,
MC_PRM_BINARY | MC_PRM_GENERATED , 4, 0, 0, 0, 0.0, 10001, 0, "",
"addresschecksumvalue","",
"Version bytes used for exporting private keys."},
{ "addresschecksumvalue" , "address-checksum-value" ,
MC_PRM_BINARY | MC_PRM_GENERATED | MC_PRM_MINIMAL , 4, 0, 0, 0, 0.0, 10001, 0, "",
"genesispubkey","",
"Bytes used for XOR in address checksum calculation."},
{ "genesispubkey" , "genesis-pubkey" ,
MC_PRM_BINARY | MC_PRM_CALCULATED , 65, 0, 0, 0, 0.0, 10001, 0, "",
"genesisversion","",
"Genesis block coinbase output public key."},
{ "genesisversion" , "genesis-version" ,
MC_PRM_UINT32 | MC_PRM_CALCULATED , -1, 1, 0, -1, 0.0, 10001, 0, "",
"genesistimestamp","",
"Genesis block version."},
{ "genesistimestamp" , "genesis-timestamp" ,
MC_PRM_UINT32 | MC_PRM_CALCULATED , -1, 0, 0, 0, 0.0, 10001, 0, "",
"genesisnbits","",
"Genesis block timestamp."},
{ "genesisnbits" , "genesis-nbits" ,
MC_PRM_UINT32 | MC_PRM_CALCULATED , -1, 0, 0, 0, 0.0, 10001, 0, "",
"genesisnonce","",
"Genesis block difficulty (nBits)."},
{ "genesisnonce" , "genesis-nonce" ,
MC_PRM_UINT32 | MC_PRM_CALCULATED , -1, 0, 0, 0, 0.0, 10001, 0, "",
"genesispubkeyhash","",
"Genesis block nonce."},
{ "genesispubkeyhash" , "genesis-pubkey-hash" ,
MC_PRM_BINARY | MC_PRM_CALCULATED , 20, 0, 0, 0, 0.0, 10001, 0, "",
"genesisopreturnscript","",
"Genesis block coinbase output public key hash."},
{ "genesisopreturnscript" , "genesis-op-return-script" ,
MC_PRM_BINARY | MC_PRM_CALCULATED ,300, 0, 0, 0, 0.0, 10001, 10006, "",
"genesishash","",
"Genesis block coinbase OP_RETURN script."},
{ "genesishash" , "genesis-hash" ,
MC_PRM_BINARY | MC_PRM_CALCULATED , 32, 0, 0, 0, 0.0, 10001, 0, "",
"chainparamshash","",
"Genesis block hash."},
{ "chainparamshash" , "chain-params-hash" ,
MC_PRM_BINARY | MC_PRM_CALCULATED | MC_PRM_NOHASH , 32, 0, 0, 0, 0.0, 10001, 0, "",
"","",
"Hash of blockchain parameters, to prevent accidental changes."},
};
#endif /* MULTICHAINPARAMLIST_H */