tempo_alloy/lib.rs
1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(test), warn(unused_crate_dependencies))]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5// Ensure HTTPS support is enabled for Alloy's reqwest HTTP transport used by RelayConnector.
6use reqwest as _;
7
8mod network;
9pub use network::*;
10
11/// Provider traits.
12pub mod provider;
13
14pub mod rpc;
15
16/// Transaction fillers.
17pub mod fillers;
18
19/// Relay transport for fee payer / sponsor support.
20pub mod transport;
21
22#[doc(inline)]
23pub use tempo_primitives as primitives;
24
25#[doc(inline)]
26pub use tempo_contracts as contracts;
27
28#[doc(inline)]
29pub use tempo_chainspec as chainspec;