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
use crate::{
bytes::Bytes,
hash::{Address, H256},
uint::{self, Uint},
};
#[derive(Debug, PartialEq, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
pub struct Params {
pub account_start_nonce: Option<Uint>,
pub maximum_extra_data_size: Uint,
pub min_gas_limit: Uint,
#[serde(rename = "networkID")]
pub network_id: Uint,
#[serde(rename = "chainID")]
pub chain_id: Option<Uint>,
pub subprotocol_name: Option<String>,
pub fork_block: Option<Uint>,
#[serde(rename = "forkCanonHash")]
pub fork_hash: Option<H256>,
pub eip150_transition: Option<Uint>,
pub eip160_transition: Option<Uint>,
pub eip161abc_transition: Option<Uint>,
pub eip161d_transition: Option<Uint>,
pub eip98_transition: Option<Uint>,
pub eip155_transition: Option<Uint>,
pub validate_chain_id_transition: Option<Uint>,
pub validate_receipts_transition: Option<Uint>,
pub eip140_transition: Option<Uint>,
pub eip210_transition: Option<Uint>,
pub eip210_contract_address: Option<Address>,
pub eip210_contract_code: Option<Bytes>,
pub eip210_contract_gas: Option<Uint>,
pub eip211_transition: Option<Uint>,
pub eip145_transition: Option<Uint>,
pub eip214_transition: Option<Uint>,
pub eip658_transition: Option<Uint>,
pub eip1052_transition: Option<Uint>,
pub eip1283_transition: Option<Uint>,
pub eip1283_disable_transition: Option<Uint>,
pub eip1283_reenable_transition: Option<Uint>,
pub eip1014_transition: Option<Uint>,
pub eip1706_transition: Option<Uint>,
pub eip1344_transition: Option<Uint>,
pub eip1884_transition: Option<Uint>,
pub eip2028_transition: Option<Uint>,
pub eip2315_transition: Option<Uint>,
pub eip2929_transition: Option<Uint>,
pub eip2930_transition: Option<Uint>,
pub eip1559_transition: Option<Uint>,
pub eip3198_transition: Option<Uint>,
pub eip3529_transition: Option<Uint>,
pub eip3541_transition: Option<Uint>,
pub eip3607_transition: Option<Uint>,
pub dust_protection_transition: Option<Uint>,
pub nonce_cap_increment: Option<Uint>,
pub remove_dust_contracts: Option<bool>,
#[serde(deserialize_with = "uint::validate_non_zero")]
pub gas_limit_bound_divisor: Uint,
pub registrar: Option<Address>,
pub apply_reward: Option<bool>,
pub node_permission_contract: Option<Address>,
pub max_code_size: Option<Uint>,
pub max_transaction_size: Option<Uint>,
pub max_code_size_transition: Option<Uint>,
pub transaction_permission_contract: Option<Address>,
pub transaction_permission_contract_transition: Option<Uint>,
pub wasm_activation_transition: Option<Uint>,
pub wasm_disable_transition: Option<Uint>,
pub kip4_transition: Option<Uint>,
pub kip6_transition: Option<Uint>,
pub eip1559_base_fee_max_change_denominator: Option<Uint>,
pub eip1559_elasticity_multiplier: Option<Uint>,
pub eip1559_base_fee_initial_value: Option<Uint>,
pub eip1559_base_fee_min_value: Option<Uint>,
pub eip1559_base_fee_min_value_transition: Option<Uint>,
pub eip1559_fee_collector: Option<Address>,
pub eip1559_fee_collector_transition: Option<Uint>,
pub validate_service_transactions_transition: Option<Uint>,
}
#[cfg(test)]
mod tests {
use crate::{spec::params::Params, uint::Uint};
use ethereum_types::U256;
use serde_json;
#[test]
fn params_deserialization() {
let s = r#"{
"maximumExtraDataSize": "0x20",
"networkID" : "0x1",
"chainID" : "0x15",
"subprotocolName" : "exp",
"minGasLimit": "0x1388",
"accountStartNonce": "0x01",
"gasLimitBoundDivisor": "0x20",
"maxCodeSize": "0x1000",
"wasmActivationTransition": "0x1010",
"wasmDisableTransition": "0x2010"
}"#;
let deserialized: Params = serde_json::from_str(s).unwrap();
assert_eq!(deserialized.maximum_extra_data_size, Uint(U256::from(0x20)));
assert_eq!(deserialized.network_id, Uint(U256::from(0x1)));
assert_eq!(deserialized.chain_id, Some(Uint(U256::from(0x15))));
assert_eq!(deserialized.subprotocol_name, Some("exp".to_owned()));
assert_eq!(deserialized.min_gas_limit, Uint(U256::from(0x1388)));
assert_eq!(
deserialized.account_start_nonce,
Some(Uint(U256::from(0x01)))
);
assert_eq!(deserialized.gas_limit_bound_divisor, Uint(U256::from(0x20)));
assert_eq!(deserialized.max_code_size, Some(Uint(U256::from(0x1000))));
assert_eq!(
deserialized.wasm_activation_transition,
Some(Uint(U256::from(0x1010)))
);
assert_eq!(
deserialized.wasm_disable_transition,
Some(Uint(U256::from(0x2010)))
);
}
#[test]
#[should_panic(expected = "a non-zero value")]
fn test_zero_value_divisor() {
let s = r#"{
"maximumExtraDataSize": "0x20",
"networkID" : "0x1",
"chainID" : "0x15",
"subprotocolName" : "exp",
"minGasLimit": "0x1388",
"accountStartNonce": "0x01",
"gasLimitBoundDivisor": "0x0",
"maxCodeSize": "0x1000"
}"#;
let _deserialized: Params = serde_json::from_str(s).unwrap();
}
}