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
use crate::{
bytes::Bytes,
hash::{Address, H256},
spec::Seal,
uint::{self, Uint},
};
#[derive(Debug, PartialEq, Deserialize)]
#[serde(deny_unknown_fields)]
#[serde(rename_all = "camelCase")]
pub struct Genesis {
pub seal: Seal,
pub difficulty: Uint,
pub author: Option<Address>,
pub timestamp: Option<Uint>,
pub parent_hash: Option<H256>,
#[serde(deserialize_with = "uint::validate_non_zero")]
pub gas_limit: Uint,
pub transactions_root: Option<H256>,
pub receipts_root: Option<H256>,
pub state_root: Option<H256>,
pub gas_used: Option<Uint>,
pub extra_data: Option<Bytes>,
pub base_fee_per_gas: Option<Uint>,
}
#[cfg(test)]
mod tests {
use crate::{
bytes::Bytes,
hash::{Address, H256, H64},
spec::{genesis::Genesis, Ethereum, Seal},
uint::Uint,
};
use ethereum_types::{H160, H256 as Eth256, H64 as Eth64, U256};
use serde_json;
use std::str::FromStr;
#[test]
fn genesis_deserialization() {
let s = r#"{
"difficulty": "0x400000000",
"seal": {
"ethereum": {
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"nonce": "0x00006d6f7264656e"
}
},
"author": "0x1000000000000000000000000000000000000001",
"timestamp": "0x07",
"parentHash": "0x9000000000000000000000000000000000000000000000000000000000000000",
"extraData": "0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa",
"gasLimit": "0x1388",
"stateRoot": "0xd7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544"
}"#;
let deserialized: Genesis = serde_json::from_str(s).unwrap();
assert_eq!(
deserialized,
Genesis {
seal: Seal::Ethereum(Ethereum {
nonce: H64(Eth64::from_str("00006d6f7264656e").unwrap()),
mix_hash: H256(
Eth256::from_str(
"0000000000000000000000000000000000000000000000000000000000000000"
)
.unwrap()
)
}),
difficulty: Uint(U256::from(0x400000000u64)),
author: Some(Address(
H160::from_str("1000000000000000000000000000000000000001").unwrap()
)),
timestamp: Some(Uint(U256::from(0x07))),
parent_hash: Some(H256(
Eth256::from_str(
"9000000000000000000000000000000000000000000000000000000000000000"
)
.unwrap()
)),
gas_limit: Uint(U256::from(0x1388)),
transactions_root: None,
receipts_root: None,
state_root: Some(H256(
Eth256::from_str(
"d7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544"
)
.unwrap()
)),
gas_used: None,
extra_data: Some(
Bytes::from_str(
"11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa"
)
.unwrap()
),
base_fee_per_gas: None,
}
);
}
}