mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
18 lines
587 B
Rust
18 lines
587 B
Rust
#![allow(unused)]
|
|
use alloy_chains::{Chain, NamedChain};
|
|
use core::any::Any;
|
|
use reth_chainspec::ForkCondition;
|
|
use reth_ethereum_forks::{ChainHardforks, EthereumHardfork, Hardfork, hardfork};
|
|
|
|
hardfork!(
|
|
/// The name of a hl hardfork.
|
|
///
|
|
/// When building a list of hardforks for a chain, it's still expected to mix with [`EthereumHardfork`].
|
|
/// There is no name for these hardforks; just some bugfixes on the evm chain.
|
|
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
HlHardfork {
|
|
/// Initial version
|
|
V1,
|
|
}
|
|
);
|