mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
22 lines
643 B
Rust
22 lines
643 B
Rust
#[rustfmt::skip]
|
|
#[expect(warnings)]
|
|
#[expect(needless_pass_by_value)]
|
|
#[expect(clippy::all)]
|
|
#[expect(clippy::ignored_unit_patterns)]
|
|
#[expect(clippy::redundant_closure_for_method_calls)]
|
|
mod abigen;
|
|
|
|
pub mod erc20 {
|
|
pub use super::abigen::erc20::IERC20::*;
|
|
}
|
|
pub mod deployer {
|
|
pub const BYTECODE: &str =
|
|
include_str!(concat!(env!("OUT_DIR"), "/serai-processor-ethereum-contracts/Deployer.bin"));
|
|
pub use super::abigen::deployer::Deployer::*;
|
|
}
|
|
pub mod router {
|
|
pub const BYTECODE: &str =
|
|
include_str!(concat!(env!("OUT_DIR"), "/serai-processor-ethereum-contracts/Router.bin"));
|
|
pub use super::abigen::router::Router::*;
|
|
}
|