alloy-eips 2.0.1

Ethereum Improvement Proprosal (EIP) implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [EIP-1559] constants, helpers, and types.
//!
//! [EIP-1559]: https://eips.ethereum.org/EIPS/eip-1559

mod basefee;
pub use basefee::BaseFeeParams;

mod constants;
pub use constants::*;

mod helpers;
pub use helpers::{
    calc_effective_gas_price, calc_next_block_base_fee, calculate_block_gas_limit,
    Eip1559Estimation,
};