anvil_zksync_api_server/impls/
zks.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
use crate::error::RpcError;
use anvil_zksync_api_decl::ZksNamespaceServer;
use anvil_zksync_core::node::InMemoryNode;
use anvil_zksync_l1_sidecar::L1Sidecar;
use jsonrpsee::core::{async_trait, RpcResult};
use std::collections::HashMap;
use zksync_types::api::state_override::StateOverride;
use zksync_types::api::{
    BlockDetails, BridgeAddresses, L1BatchDetails, L2ToL1LogProof, Proof, ProtocolVersion,
    TransactionDetailedResult, TransactionDetails,
};
use zksync_types::fee::Fee;
use zksync_types::fee_model::{FeeParams, PubdataIndependentBatchFeeModelInput};
use zksync_types::transaction_request::CallRequest;
use zksync_types::web3::Bytes;
use zksync_types::{Address, L1BatchNumber, L2BlockNumber, Transaction, H256, U256, U64};
use zksync_web3_decl::types::Token;

pub struct ZksNamespace {
    node: InMemoryNode,
    l1_sidecar: L1Sidecar,
}

impl ZksNamespace {
    pub fn new(node: InMemoryNode, l1_sidecar: L1Sidecar) -> Self {
        Self { node, l1_sidecar }
    }
}

#[async_trait]
impl ZksNamespaceServer for ZksNamespace {
    async fn estimate_fee(
        &self,
        req: CallRequest,
        // TODO: Support
        _state_override: Option<StateOverride>,
    ) -> RpcResult<Fee> {
        Ok(self
            .node
            .estimate_fee_impl(req)
            .await
            .map_err(RpcError::from)?)
    }

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

    async fn get_bridgehub_contract(&self) -> RpcResult<Option<Address>> {
        Ok(Some(
            self.l1_sidecar
                .contracts_config()
                .map_err(RpcError::from)?
                .ecosystem_contracts
                .bridgehub_proxy_addr,
        ))
    }

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

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

    async fn get_bridge_contracts(&self) -> RpcResult<BridgeAddresses> {
        if let Ok(contracts_config) = self.l1_sidecar.contracts_config() {
            return Ok(BridgeAddresses {
                l1_shared_default_bridge: Some(contracts_config.bridges.shared.l1_address),
                l2_shared_default_bridge: contracts_config.bridges.shared.l2_address,
                l1_erc20_default_bridge: Some(contracts_config.bridges.erc20.l1_address),
                l2_erc20_default_bridge: contracts_config.bridges.erc20.l2_address,
                l1_weth_bridge: None,
                l2_weth_bridge: None,
                l2_legacy_shared_bridge: contracts_config.l2.legacy_shared_bridge_addr,
            });
        }

        Ok(self
            .node
            .get_bridge_contracts_impl()
            .await
            .map_err(RpcError::from)?)
    }

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

    async fn l1_chain_id(&self) -> RpcResult<U64> {
        Ok(U64::from(
            self.l1_sidecar
                .genesis_config()
                .map_err(RpcError::from)?
                .l1_chain_id
                .0,
        ))
    }

    async fn get_confirmed_tokens(&self, from: u32, limit: u8) -> RpcResult<Vec<Token>> {
        Ok(self
            .node
            .get_confirmed_tokens_impl(from, limit)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_all_account_balances(
        &self,
        address: Address,
    ) -> RpcResult<HashMap<Address, U256>> {
        Ok(self
            .node
            .get_all_account_balances_impl(address)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_l2_to_l1_msg_proof(
        &self,
        _block: L2BlockNumber,
        _sender: Address,
        _msg: H256,
        _l2_log_position: Option<usize>,
    ) -> RpcResult<Option<L2ToL1LogProof>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_l2_to_l1_log_proof(
        &self,
        tx_hash: H256,
        index: Option<usize>,
    ) -> RpcResult<Option<L2ToL1LogProof>> {
        Ok(self
            .node
            .get_l2_to_l1_log_proof_impl(tx_hash, index)
            .await
            .map_err(RpcError::from)?)
    }

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

    async fn get_l2_block_range(&self, _batch: L1BatchNumber) -> RpcResult<Option<(U64, U64)>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_block_details(
        &self,
        block_number: L2BlockNumber,
    ) -> RpcResult<Option<BlockDetails>> {
        Ok(self
            .node
            .get_block_details_impl(block_number)
            .await
            .map_err(RpcError::from)?)
    }

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

    async fn get_raw_block_transactions(
        &self,
        block_number: L2BlockNumber,
    ) -> RpcResult<Vec<Transaction>> {
        Ok(self
            .node
            .get_raw_block_transactions_impl(block_number)
            .await
            .map_err(RpcError::from)?)
    }

    async fn get_l1_batch_details(
        &self,
        _batch: L1BatchNumber,
    ) -> RpcResult<Option<L1BatchDetails>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_bytecode_by_hash(&self, hash: H256) -> RpcResult<Option<Vec<u8>>> {
        Ok(self
            .node
            .get_bytecode_by_hash_impl(hash)
            .await
            .map_err(RpcError::from)?)
    }

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

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

    async fn get_protocol_version(
        &self,
        _version_id: Option<u16>,
    ) -> RpcResult<Option<ProtocolVersion>> {
        Err(RpcError::Unsupported.into())
    }

    async fn get_proof(
        &self,
        _address: Address,
        _keys: Vec<H256>,
        _l1_batch_number: L1BatchNumber,
    ) -> RpcResult<Option<Proof>> {
        Err(RpcError::Unsupported.into())
    }

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

    async fn send_raw_transaction_with_detailed_output(
        &self,
        _tx_bytes: Bytes,
    ) -> RpcResult<TransactionDetailedResult> {
        Err(RpcError::Unsupported.into())
    }

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