alloy-eips 2.0.0

Ethereum Improvement Proprosal (EIP) implementations
Documentation
#![doc = include_str!("../README.md")]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/alloy.jpg",
    html_favicon_url = "https://raw.githubusercontent.com/alloy-rs/core/main/assets/favicon.ico"
)]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(feature = "std"), no_std)]

#[macro_use]
extern crate alloc;

pub mod eip1559;
pub use eip1559::calc_next_block_base_fee;

pub mod eip1898;
pub use eip1898::{
    BlockHashOrNumber, BlockId, BlockNumHash, BlockNumberOrTag, ForkBlock, HashOrNumber, NumHash,
    RpcBlockHash,
};

pub mod eip2124;

pub mod eip2718;
pub use eip2718::{Decodable2718, Encodable2718, Typed2718};

pub mod eip2930;

pub mod eip2935;

pub mod eip4788;

pub mod eip4844;
pub use eip4844::{calc_blob_gasprice, calc_excess_blob_gas};

pub mod eip4895;

pub mod eip6110;
pub mod merge;

pub mod eip7002;

pub mod eip7251;

pub mod eip7594;
pub mod eip7623;

pub mod eip7685;

pub mod eip7691;

pub mod eip7702;

pub mod eip7840;

pub mod eip7892;

pub mod eip7825;

pub use eip7892::{BlobScheduleBlobParams, BlobScheduleEntry};

pub mod eip7910;

pub mod eip7928;