rollup_economics_ethereum.l1_fees table contains daily fees paid by each Ethereum L2 rollup to post data and proofs on L1, broken down by calldata, blob, and verification costs.
Table Schema
| Column | Type | Description |
|---|---|---|
day | TIMESTAMP | Day when transactions occurred |
name | VARCHAR | Rollup name |
data_fee_native | DOUBLE | Calldata gas fee in ETH |
data_fee_usd | DOUBLE | Calldata gas fee in USD |
calldata_gas_used | BIGINT | Calldata gas consumed |
verification_fee_native | DOUBLE | Proof verification fee in ETH |
verification_fee_usd | DOUBLE | Proof verification fee in USD |
blob_fee_native | DOUBLE | Blob gas fee in ETH |
blob_fee_usd | DOUBLE | Blob gas fee in USD |
l1_fee_native | DOUBLE | Total L1 fees paid in ETH |
l1_fee_usd | DOUBLE | Total L1 fees paid in USD |