anvil_zksync_api_server/impls/
web3.rs

1
2
3
4
5
6
7
8
9
10
use anvil_zksync_api_decl::Web3NamespaceServer;
use jsonrpsee::core::RpcResult;

pub struct Web3Namespace;

impl Web3NamespaceServer for Web3Namespace {
    fn client_version(&self) -> RpcResult<String> {
        Ok("zkSync/v2.0".to_string())
    }
}