mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
10 lines
280 B
Rust
10 lines
280 B
Rust
pub(crate) mod output;
|
|
pub(crate) mod transaction;
|
|
pub(crate) mod block;
|
|
|
|
pub(crate) const DAI: [u8; 20] =
|
|
match const_hex::const_decode_to_array(b"0x6B175474E89094C44Da98b954EedeAC495271d0F") {
|
|
Ok(res) => res,
|
|
Err(_) => panic!("invalid non-test DAI hex address"),
|
|
};
|