mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-10 23:15:34 -05:00
* transaction verification * Add providers to interfaces * add receipt check in executor verify * Removed receipts, added bloom * post merge header checks * fmt clippy * gas price type removal * rm leftover * move consts to contstant.rs
15 lines
495 B
Rust
15 lines
495 B
Rust
use crate::H256;
|
|
use hex_literal::hex;
|
|
|
|
/// The Ethereum mainnet genesis hash.
|
|
pub const MAINNET_GENESIS: H256 =
|
|
H256(hex!("d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"));
|
|
|
|
/// Keccak256 over empty array.
|
|
pub const KECCAK_EMPTY: H256 =
|
|
H256(hex!("c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"));
|
|
|
|
/// Ommer root of empty list.
|
|
pub const EMPTY_OMMER_ROOT: H256 =
|
|
H256(hex!("1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"));
|