> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# rollup_economics_ethereum.l2_revenue

> L2 rollup revenue — transaction fees collected from users on each rollup.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

The `rollup_economics_ethereum.l2_revenue` table contains daily gas fee revenue earned by each Ethereum L2 rollup.

## Table Schema

| Column       | Type        | Description                    |
| ------------ | ----------- | ------------------------------ |
| `day`        | `TIMESTAMP` | Day when transactions occurred |
| `name`       | `VARCHAR`   | Rollup name                    |
| `l2_rev`     | `DOUBLE`    | L2 gas fee revenue in ETH      |
| `l2_rev_usd` | `DOUBLE`    | L2 gas fee revenue in USD      |

## Table sample

<TableSample tableSchema="rollup_economics_ethereum" tableName="l2_revenue" />
