Skip to main content

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.

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