alloy_ccip_read/lib.rs
1//! # Alloy CCIP-Read
2//!
3//! Provides an [alloy](https://docs.rs/alloy) reader for the [CCIP-Read](https://eips.ethereum.org/EIPS/eip-3675) standard.
4
5pub use ccip::handle_ccip;
6pub use domain_id::{namehash, DomainIdProvider, NamehashIdProvider};
7pub use errors::*;
8pub use protocols::*;
9pub use reader::CCIPReader;
10pub use types::*;
11
12mod ccip;
13pub mod consts;
14mod contracts;
15mod domain_id;
16mod errors;
17mod protocols;
18mod reader;
19mod types;
20pub mod utils;