flipside
GROWTH MCP
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Total Deposits amount and number of transactions on Ethereum per month
khanh
Total Deposits amount and number of transactions on Ethereum per month
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
(
supplied_usd
)
as
total_deposited_usd
from
ethereum
.
aave
.
ez_deposits
where
aave_version
ilike
'Aave V2'
group
by
month
order
by
month
Results
Run a query to Download Data