mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: Eip1559 params in extradata (#11887)
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -31,6 +31,8 @@ hardfork!(
|
||||
Fjord,
|
||||
/// Granite: <https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/superchain-upgrades.md#granite>
|
||||
Granite,
|
||||
/// Holocene: <https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/superchain-upgrades.md#holocene>
|
||||
Holocene,
|
||||
}
|
||||
);
|
||||
|
||||
@ -156,6 +158,7 @@ impl OptimismHardfork {
|
||||
Self::Ecotone => Some(1708534800),
|
||||
Self::Fjord => Some(1716998400),
|
||||
Self::Granite => Some(1723478400),
|
||||
Self::Holocene => None,
|
||||
},
|
||||
)
|
||||
}
|
||||
@ -190,6 +193,7 @@ impl OptimismHardfork {
|
||||
Self::Ecotone => Some(1710374401),
|
||||
Self::Fjord => Some(1720627201),
|
||||
Self::Granite => Some(1726070401),
|
||||
Self::Holocene => None,
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user