mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
15 lines
354 B
Rust
15 lines
354 B
Rust
//! Hard forks of HyperEVM.
|
|
#![allow(unused)]
|
|
pub mod hl;
|
|
|
|
use hl::HlHardfork;
|
|
use reth_chainspec::{EthereumHardforks, ForkCondition};
|
|
use std::sync::Arc;
|
|
|
|
/// Extends [`EthereumHardforks`] with hl helper methods.
|
|
///
|
|
/// Currently a placeholder for future use.
|
|
pub trait HlHardforks: EthereumHardforks {}
|
|
|
|
impl<T: HlHardforks> HlHardforks for Arc<T> {}
|