Skip to main content

hashiverse_lib/protocol/rpc/
mod.rs

1//! # RPC packet encoding, dispatch, and verification
2//!
3//! The request/response packet formats, the proof-of-work search and verification
4//! that gate them, the server-identity signature that binds a response to the
5//! request it answers, and the high-level helpers that wrap the whole round trip
6//! for callers.
7
8pub mod rpc;
9pub mod rpc_request;
10pub mod rpc_response;
11