zksync_node_api_server 0.1.0

ZKsync API server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Actual implementation of Web3 API namespaces logic, not tied to the backend
//! used to create a JSON RPC server.

mod debug;
mod en;
pub(crate) mod eth;
mod net;
mod snapshots;
mod unstable;
mod web3;
mod zks;

pub(super) use self::{
    debug::DebugNamespace, en::EnNamespace, eth::EthNamespace, net::NetNamespace,
    snapshots::SnapshotsNamespace, unstable::UnstableNamespace, web3::Web3Namespace,
    zks::ZksNamespace,
};