flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Total Borrows amount and number of transactions on Ethereum per monthly
khanh
Total Borrows amount and number of transactions on Ethereum per monthly
Updated 2022-09-23
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
select
date_trunc
(
'month'
,
block_timestamp
)
as
month
,
count
(
distinct
(
tx_hash
)
)
as
tx_num
,
sum
(
borrowed_usd
)
as
total_borrowed_usd
from
ethereum
.
aave
.
ez_borrows
where
aave_version
ilike
'Aave V2'
group
by
month
order
by
month
Results
Run a query to Download Data