agglayer_evm_client/
lib.rs1mod alloy_rpc;
2mod get_block_hash;
3mod get_block_number;
4#[cfg(feature = "testutils")]
5mod mock_rpc;
6
7pub use alloy_rpc::AlloyRpc;
8pub use get_block_hash::GetBlockHash;
9pub use get_block_number::GetBlockNumber;
10#[cfg(feature = "testutils")]
11pub use mock_rpc::MockRpc;