Gnosis MEV Blocker
Summary
Historical dataset of MEV-Blocker transactions collected from Gnosis. MEV-Blocker is an orderflow auction which includes decoy transactions.
Process
We ETL data from MEV-Blocker, store and make the data available in BigQuery. Our dataset contains public information provided by the API about the orderflow.
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.gnosis
Open in BigQuery ↗ - Table:
eden-data-public.gnosis.mev_blocker
Open in BigQuery ↗ - Update frequency: 15 mins
- Partitioning: Daily
BigQuery Access
You need to be logged into your Google Account with a Project selected
Example Query
You can get started with the example query below.
SELECT *
FROM `eden-data-public.gnosis.mev_blocker`
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