Skip to main content

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.

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.

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