anvil_zksync_api_server/impls/
debug.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
use crate::error::RpcError;
use anvil_zksync_api_decl::DebugNamespaceServer;
use anvil_zksync_core::node::InMemoryNode;
use jsonrpsee::core::{async_trait, RpcResult};
use zksync_types::api::{BlockNumber, CallTracerBlockResult, CallTracerResult, TracerConfig};
use zksync_types::transaction_request::CallRequest;
use zksync_types::{api, H256};

pub struct DebugNamespace {
    node: InMemoryNode,
}

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

#[async_trait]
impl DebugNamespaceServer for DebugNamespace {
    async fn trace_block_by_number(
        &self,
        block: BlockNumber,
        options: Option<TracerConfig>,
    ) -> RpcResult<CallTracerBlockResult> {
        Ok(self
            .node
            .trace_block_impl(api::BlockId::Number(block), options)
            .await
            .map_err(RpcError::from)?)
    }

    async fn trace_block_by_hash(
        &self,
        hash: H256,
        options: Option<TracerConfig>,
    ) -> RpcResult<CallTracerBlockResult> {
        Ok(self
            .node
            .trace_block_impl(api::BlockId::Hash(hash), options)
            .await
            .map_err(RpcError::from)?)
    }

    async fn trace_call(
        &self,
        request: CallRequest,
        block: Option<api::BlockId>,
        options: Option<TracerConfig>,
    ) -> RpcResult<CallTracerResult> {
        Ok(self
            .node
            .trace_call_impl(request, block, options)
            .await
            .map_err(RpcError::from)?)
    }

    async fn trace_transaction(
        &self,
        tx_hash: H256,
        options: Option<TracerConfig>,
    ) -> RpcResult<Option<CallTracerResult>> {
        Ok(self
            .node
            .trace_transaction_impl(tx_hash, options)
            .await
            .map_err(RpcError::from)?)
    }
}