fuel_relayer/
lib.rs

1//! # Fuel Relayer
2
3#![forbid(unsafe_code)]
4#![deny(missing_docs)]
5
6pub(crate) mod abi;
7pub(crate) mod config;
8pub(crate) mod log;
9
10mod relayer;
11
12#[cfg(any(test, feature = "test-helpers"))]
13pub mod mock_db;
14#[cfg(any(test, feature = "test-helpers"))]
15pub mod test_helpers;
16
17#[cfg(any(test, feature = "test-helpers"))]
18pub use abi::*;
19
20pub use config::Config;
21pub use ethers_core::types::{
22    H160,
23    H256,
24};
25pub use relayer::{
26    RelayerHandle,
27    RelayerSynced,
28};