Discover
Find new Ethereum contract deployments and select the ones worth examining.
Ethereum contract discovery · 2024
A product for finding unusual Ethereum contracts. I built the path from contract discovery through source retrieval and analysis to a searchable product.
Find new Ethereum contract deployments and select the ones worth examining.
Collect verified source code and contract metadata for analysis.
Parse the implementation into features and patterns that can be compared.
Store results for discovery, search, and ranking.
The system ingested and analysed more than 70,000 Ethereum contracts.
Preserved Go and Dune-query code documents the ingestion and analysis side of the product.
The live discovery UI was not preserved locally, so this page does not manufacture screenshots or present stale results as current.
The value here is the repeatable data and indexing approach: raw chain activity becomes something a user can search and understand.
SELECT contract_address, block_time, tx_hash FROM ethereum.traces WHERE type = 'create' AND success = true ORDER BY block_time DESC; -- downstream: fetch verified source → parse → score → index