/ Aave Active Borrowers by Hourly DoW @johaya
About queries and results
Dune Analytics lets you explore, create, and share Ethereum analytics. You can find an endless amount of great queries and dashboards on Dune.
We have decoded Ethereum smart contract data so you can do powerful analysis with simple SQL queries and visualise the query results into beautiful graphs.
Dune Analytics is free for everyone forever. If you want extra features like private queries, export your results and more check out our Pro plan.
SQL query results
SQL query
1
2SELECT
3date_part('hour', evt_block_time) as hour,
4extract(dow from evt_block_time) as Day_of_week,
5count(distinct "_user") as borrowers FROM aave."LendingPool_evt_Borrow"
6where date(evt_block_time)>='{{ Date }}'
7GROUP BY 1,2
8