[go: up one dir, main page]

fuel-core-relayer 0.17.9

Fuel Relayer
Documentation
//! # Fuel Relayer

#![deny(unused_crate_dependencies)]
#![forbid(unsafe_code)]
#![deny(missing_docs)]

pub(crate) mod abi;
pub(crate) mod config;
pub(crate) mod log;

mod service;

#[cfg(any(test, feature = "test-helpers"))]
pub mod mock_db;
pub mod ports;
#[cfg(any(test, feature = "test-helpers"))]
pub mod test_helpers;

#[cfg(any(test, feature = "test-helpers"))]
pub use abi::*;
#[cfg(any(test, feature = "test-helpers"))]
pub use service::new_service_test;

pub use config::Config;
pub use ethers_core::types::{
    H160,
    H256,
};
pub use service::{
    new_service,
    Service,
    SharedState,
};

#[cfg(test)]
fuel_core_trace::enable_tracing!();