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
use super::{Apply, ApplyBackend, Backend, Basic, Log};
use alloc::collections::BTreeMap;
use alloc::vec::Vec;
use primitive_types::{H160, H256, U256};
#[derive(Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "with-codec", derive(codec::Encode, codec::Decode))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MemoryVicinity {
pub gas_price: U256,
pub origin: H160,
pub chain_id: U256,
pub block_hashes: Vec<H256>,
pub block_number: U256,
pub block_coinbase: H160,
pub block_timestamp: U256,
pub block_difficulty: U256,
pub block_gas_limit: U256,
pub block_base_fee_per_gas: U256,
}
#[derive(Default, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "with-codec", derive(codec::Encode, codec::Decode))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MemoryAccount {
pub nonce: U256,
pub balance: U256,
pub storage: BTreeMap<H256, H256>,
pub code: Vec<u8>,
}
#[derive(Clone, Debug)]
pub struct MemoryBackend<'vicinity> {
vicinity: &'vicinity MemoryVicinity,
state: BTreeMap<H160, MemoryAccount>,
logs: Vec<Log>,
}
impl<'vicinity> MemoryBackend<'vicinity> {
pub fn new(vicinity: &'vicinity MemoryVicinity, state: BTreeMap<H160, MemoryAccount>) -> Self {
Self {
vicinity,
state,
logs: Vec::new(),
}
}
pub fn state(&self) -> &BTreeMap<H160, MemoryAccount> {
&self.state
}
pub fn state_mut(&mut self) -> &mut BTreeMap<H160, MemoryAccount> {
&mut self.state
}
}
impl<'vicinity> Backend for MemoryBackend<'vicinity> {
fn gas_price(&self) -> U256 {
self.vicinity.gas_price
}
fn origin(&self) -> H160 {
self.vicinity.origin
}
fn block_hash(&self, number: U256) -> H256 {
if number >= self.vicinity.block_number
|| self.vicinity.block_number - number - U256::one()
>= U256::from(self.vicinity.block_hashes.len())
{
H256::default()
} else {
let index = (self.vicinity.block_number - number - U256::one()).as_usize();
self.vicinity.block_hashes[index]
}
}
fn block_number(&self) -> U256 {
self.vicinity.block_number
}
fn block_coinbase(&self) -> H160 {
self.vicinity.block_coinbase
}
fn block_timestamp(&self) -> U256 {
self.vicinity.block_timestamp
}
fn block_difficulty(&self) -> U256 {
self.vicinity.block_difficulty
}
fn block_gas_limit(&self) -> U256 {
self.vicinity.block_gas_limit
}
fn block_base_fee_per_gas(&self) -> U256 {
self.vicinity.block_base_fee_per_gas
}
fn chain_id(&self) -> U256 {
self.vicinity.chain_id
}
fn exists(&self, address: H160) -> bool {
self.state.contains_key(&address)
}
fn basic(&self, address: H160) -> Basic {
self.state
.get(&address)
.map(|a| Basic {
balance: a.balance,
nonce: a.nonce,
})
.unwrap_or_default()
}
fn code(&self, address: H160) -> Vec<u8> {
self.state
.get(&address)
.map(|v| v.code.clone())
.unwrap_or_default()
}
fn storage(&self, address: H160, index: H256) -> H256 {
self.state
.get(&address)
.map(|v| v.storage.get(&index).cloned().unwrap_or_default())
.unwrap_or_default()
}
fn original_storage(&self, address: H160, index: H256) -> Option<H256> {
Some(self.storage(address, index))
}
}
impl<'vicinity> ApplyBackend for MemoryBackend<'vicinity> {
fn apply<A, I, L>(&mut self, values: A, logs: L, delete_empty: bool)
where
A: IntoIterator<Item = Apply<I>>,
I: IntoIterator<Item = (H256, H256)>,
L: IntoIterator<Item = Log>,
{
for apply in values {
match apply {
Apply::Modify {
address,
basic,
code,
storage,
reset_storage,
} => {
let is_empty = {
let account = self.state.entry(address).or_insert_with(Default::default);
account.balance = basic.balance;
account.nonce = basic.nonce;
if let Some(code) = code {
account.code = code;
}
if reset_storage {
account.storage = BTreeMap::new();
}
let zeros = account
.storage
.iter()
.filter(|(_, v)| v == &&H256::default())
.map(|(k, _)| *k)
.collect::<Vec<H256>>();
for zero in zeros {
account.storage.remove(&zero);
}
for (index, value) in storage {
if value == H256::default() {
account.storage.remove(&index);
} else {
account.storage.insert(index, value);
}
}
account.balance == U256::zero()
&& account.nonce == U256::zero()
&& account.code.is_empty()
};
if is_empty && delete_empty {
self.state.remove(&address);
}
}
Apply::Delete { address } => {
self.state.remove(&address);
}
}
}
for log in logs {
self.logs.push(log);
}
}
}