MEV-Boost Payloads
Summary
Historical dataset of MEV-Boost block payloads delivered collected from known MEV-Boost relays.
Join the conversation
See our post on the Flashbots forum ↗
Process
We ETL data from MEV-Boost Relays from the endpoint /proposer_payload_delivered
, store and make the data available in BigQuery. Our dataset contains public information provided by each relay from their API.
- Relays:
- Flashbots
- Eden Network
- Ultrasound
- Aestus
- Agnostic
- Manifold
- BloxrouteMaxProfit
- BloxrouteRegulated
- MEV-Boost Relay Reference ↗
BigQuery
By making the data available in BigQuery, it can be queried and joined with other public datasets, like the Ethereum Blockchain dataset or simply exported.
- Dataset:
eden-data-public.mev_boost
Open in BigQuery ↗ - Table:
eden-data-public.mev_boost.payloads
Open in BigQuery ↗ - Update frequency: 60 mins
- Partitioning: Daily
BigQuery Access
You need to be logged into your Google Account with a Project selected
Example Query
SELECT *
FROM `eden-data-public.mev_boost.payloads`
WHERE DATE(block_timestamp) = CURRENT_DATE()
Working with Partioned Tables
You should usually use a WHERE clause on partitioned data to save on query costs. Learn more