zksync_node_api_server 29.13.0-non-semver-compat

ZKsync API server
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone)]
pub struct Web3Namespace;

impl Web3Namespace {
    pub fn client_version_impl(&self) -> String {
        "zkSync/v2.0".to_string()
    }
}

// `sha3` method is intentionally not implemented for the main server implementation:
// it can easily be implemented on the user side.