anvil_zksync_api_server/impls/
anvil_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
use crate::error::RpcError;
use anvil_zksync_api_decl::AnvilZksNamespaceServer;
use anvil_zksync_l1_sidecar::L1Sidecar;
use jsonrpsee::core::{async_trait, RpcResult};
use zksync_types::{L1BatchNumber, H256};

pub struct AnvilZksNamespace {
    l1_sidecar: L1Sidecar,
}

impl AnvilZksNamespace {
    pub fn new(l1_sidecar: L1Sidecar) -> Self {
        Self { l1_sidecar }
    }
}

#[async_trait]
impl AnvilZksNamespaceServer for AnvilZksNamespace {
    async fn commit_batch(&self, batch_number: L1BatchNumber) -> RpcResult<H256> {
        Ok(self
            .l1_sidecar
            .commit_batch(batch_number)
            .await
            .map_err(RpcError::from)?)
    }

    async fn prove_batch(&self, batch_number: L1BatchNumber) -> RpcResult<H256> {
        Ok(self
            .l1_sidecar
            .prove_batch(batch_number)
            .await
            .map_err(RpcError::from)?)
    }

    async fn execute_batch(&self, batch_number: L1BatchNumber) -> RpcResult<H256> {
        Ok(self
            .l1_sidecar
            .execute_batch(batch_number)
            .await
            .map_err(RpcError::from)?)
    }
}