Go to Dune
- ethereum.blocks
- ethereum.contracts
- ethereum.logs
- ethereum.traces
- ethereum.transactions
What is the question you want to ask?
-
- Select blockchain
-
- Select dataset (e.g. ethereum.transactions or uniswap_v3 mint evt) | Search for all minting events and we can see all the fields
-
- Write the query | SQL Cheat sheet
very simple example
SELECT "evt_block_time","amount", "amount0","amount1" FROM uniswap_v3."Pair_evt_Mint"
ORDER BY "evt_block_time" DESC
LIMIT 15
in the above example we sorting all minting events on uniswap_v3 by block time.
-
- Create visualization (Graph, Chart, Map, etc)
-
- Embed visualization Copy IFrame code and paste into HTML
-
- Create Dashboard
- The power of events in a smart contract.