anvil/eth/beacon/
mod.rs

1//! Beacon API types and utilities for Anvil
2//!
3//! This module provides types and utilities for implementing Beacon API endpoints
4//! in Anvil, allowing testing of blob-based transactions with standard beacon chain APIs.
5
6pub mod error;
7pub mod response;
8
9pub use error::BeaconError;
10pub use response::BeaconResponse;