bankai_types/api/mod.rs
1//! API request and response types
2//!
3//! This module contains all types used for interacting with the Bankai API.
4//! These types represent the JSON structures sent to and received from API endpoints.
5
6/// Block query types and responses
7pub mod blocks;
8
9/// Chain configuration and metadata
10pub mod chains;
11
12/// API error types
13pub mod error;
14
15/// Proof request and response types (re-exports from root proofs module)
16pub mod proofs;
17
18/// Chain statistics and metrics
19pub mod stats;