1//! EIP-7918: Blob Base Fee Bounded by Execution Cost
2//!
3//! Constants for blob base fee calculation with execution cost bounds.
45/// Minimum base fee for blobs, if price of the blob is less than this value, this value will be used.
6pub const BLOB_BASE_COST: u64 = 2_u64.pow(14);