anvil_zksync_api_server/impls/
eth.rs

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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
use crate::error::RpcError;
use anvil_zksync_api_decl::EthNamespaceServer;
use anvil_zksync_core::node::InMemoryNode;
use jsonrpsee::core::{async_trait, RpcResult};
use zksync_types::api::state_override::StateOverride;
use zksync_types::api::{
    Block, BlockIdVariant, BlockNumber, FeeHistory, Log, Transaction, TransactionReceipt,
    TransactionVariant,
};
use zksync_types::transaction_request::CallRequest;
use zksync_types::web3::{Bytes, Index, SyncState, U64Number};
use zksync_types::{api, Address, H256, U256, U64};
use zksync_web3_decl::types::{Filter, FilterChanges};

pub struct EthNamespace {
    node: InMemoryNode,
}

impl EthNamespace {
    pub fn new(node: InMemoryNode) -> Self {
        Self { node }
    }
}

#[async_trait]
impl EthNamespaceServer for EthNamespace {
    async fn get_block_number(&self) -> RpcResult<U64> {
        Ok(self
            .node
            .get_block_number_impl()
            .await
            .map_err(RpcError::from)?)
    }

    async fn chain_id(&self) -> RpcResult<U64> {
        Ok(self
            .node
            .get_chain_id()
            .await
            .map(U64::from)
            .map_err(RpcError::from)?)
    }

    async fn call(
        &self,
        req: CallRequest,
        // TODO: Support
        _block: Option<BlockIdVariant>,
        // TODO: Support
        _state_override: Option<StateOverride>,
    ) -> RpcResult<Bytes> {
        Ok(self.node.call_impl(req).await.map_err(RpcError::from)?)
    }

    async fn estimate_gas(
        &self,
        req: CallRequest,
        block: Option<BlockNumber>,
        // TODO: Support
        _state_override: Option<StateOverride>,
    ) -> RpcResult<U256> {
        Ok(self
            .node
            .estimate_gas_impl(req, block)
            .await
            .map_err(RpcError::from)?)
    }

    async fn gas_price(&self) -> RpcResult<U256> {
        Ok(self.node.gas_price_impl().await.map_err(RpcError::from)?)
    }

    async fn new_filter(&self, filter: Filter) -> RpcResult<U256> {
        Ok(self
            .node
            .new_filter_impl(filter)
            .await
            .map_err(RpcError::from)?)
    }

    async fn new_block_filter(&self) -> RpcResult<U256> {
        Ok(self
            .node
            .new_block_filter_impl()
            .await
            .map_err(RpcError::from)?)
    }

    async fn uninstall_filter(&self, idx: U256) -> RpcResult<bool> {
        Ok(self
            .node
            .uninstall_filter_impl(idx)
            .await
            .map_err(RpcError::from)?)
    }

    async fn new_pending_transaction_filter(&self) -> RpcResult<U256> {
        Ok(self
            .node
            .new_pending_transaction_filter_impl()
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_logs(&self, filter: Filter) -> RpcResult<Vec<Log>> {
        Ok(self
            .node
            .get_logs_impl(filter)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_filter_logs(&self, filter_index: U256) -> RpcResult<FilterChanges> {
        Ok(self
            .node
            .get_filter_logs_impl(filter_index)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_filter_changes(&self, filter_index: U256) -> RpcResult<FilterChanges> {
        Ok(self
            .node
            .get_filter_changes_impl(filter_index)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_balance(
        &self,
        address: Address,
        block: Option<BlockIdVariant>,
    ) -> RpcResult<U256> {
        Ok(self
            .node
            .get_balance_impl(address, block)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_block_by_number(
        &self,
        block_number: BlockNumber,
        full_transactions: bool,
    ) -> RpcResult<Option<Block<TransactionVariant>>> {
        Ok(self
            .node
            .get_block_impl(api::BlockId::Number(block_number), full_transactions)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_block_by_hash(
        &self,
        hash: H256,
        full_transactions: bool,
    ) -> RpcResult<Option<Block<TransactionVariant>>> {
        Ok(self
            .node
            .get_block_impl(api::BlockId::Hash(hash), full_transactions)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_block_transaction_count_by_number(
        &self,
        block_number: BlockNumber,
    ) -> RpcResult<Option<U256>> {
        Ok(self
            .node
            .get_block_transaction_count_impl(api::BlockId::Number(block_number))
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_block_receipts(
        &self,
        _block_id: api::BlockId,
    ) -> RpcResult<Option<Vec<TransactionReceipt>>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_block_transaction_count_by_hash(
        &self,
        block_hash: H256,
    ) -> RpcResult<Option<U256>> {
        Ok(self
            .node
            .get_block_transaction_count_impl(api::BlockId::Hash(block_hash))
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_code(&self, address: Address, block: Option<BlockIdVariant>) -> RpcResult<Bytes> {
        Ok(self
            .node
            .get_code_impl(address, block)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_storage_at(
        &self,
        address: Address,
        idx: U256,
        block: Option<BlockIdVariant>,
    ) -> RpcResult<H256> {
        Ok(self
            .node
            .get_storage_impl(address, idx, block)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_transaction_count(
        &self,
        address: Address,
        block: Option<BlockIdVariant>,
    ) -> RpcResult<U256> {
        Ok(self
            .node
            .get_transaction_count_impl(address, block)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_transaction_by_hash(&self, hash: H256) -> RpcResult<Option<Transaction>> {
        Ok(self
            .node
            .get_transaction_by_hash_impl(hash)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_transaction_by_block_hash_and_index(
        &self,
        block_hash: H256,
        index: Index,
    ) -> RpcResult<Option<Transaction>> {
        Ok(self
            .node
            .get_transaction_by_block_and_index_impl(api::BlockId::Hash(block_hash), index)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_transaction_by_block_number_and_index(
        &self,
        block_number: BlockNumber,
        index: Index,
    ) -> RpcResult<Option<Transaction>> {
        Ok(self
            .node
            .get_transaction_by_block_and_index_impl(api::BlockId::Number(block_number), index)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_transaction_receipt(&self, hash: H256) -> RpcResult<Option<TransactionReceipt>> {
        Ok(self
            .node
            .get_transaction_receipt_impl(hash)
            .await
            .map_err(RpcError::from)?)
    }

    async fn protocol_version(&self) -> RpcResult<String> {
        Ok(self.node.protocol_version_impl())
    }

    async fn send_raw_transaction(&self, tx_bytes: Bytes) -> RpcResult<H256> {
        Ok(self
            .node
            .send_raw_transaction_impl(tx_bytes)
            .await
            .map_err(RpcError::from)?)
    }

    async fn syncing(&self) -> RpcResult<SyncState> {
        Ok(self.node.syncing_impl())
    }

    async fn accounts(&self) -> RpcResult<Vec<Address>> {
        Ok(self.node.accounts_impl().await.map_err(RpcError::from)?)
    }

    async fn coinbase(&self) -> RpcResult<Address> {
        Err(RpcError::Unsupported.into())
    }

    async fn compilers(&self) -> RpcResult<Vec<String>> {
        Err(RpcError::Unsupported.into())
    }

    async fn hashrate(&self) -> RpcResult<U256> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_uncle_count_by_block_hash(&self, _hash: H256) -> RpcResult<Option<U256>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_uncle_count_by_block_number(
        &self,
        _number: BlockNumber,
    ) -> RpcResult<Option<U256>> {
        Err(RpcError::Unsupported.into())
    }

    async fn mining(&self) -> RpcResult<bool> {
        Err(RpcError::Unsupported.into())
    }

    async fn fee_history(
        &self,
        block_count: U64Number,
        newest_block: BlockNumber,
        reward_percentiles: Option<Vec<f32>>,
    ) -> RpcResult<FeeHistory> {
        Ok(self
            .node
            .fee_history_impl(block_count.into(), newest_block, reward_percentiles)
            .await
            .map_err(RpcError::from)?)
    }

    async fn max_priority_fee_per_gas(&self) -> RpcResult<U256> {
        Err(RpcError::Unsupported.into())
    }
}