maybeyonaskashi_stables_eth_deposit
Updated 2022-07-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
with
data as (
select
block_timestamp,
tx_hash,
origin_from_address,
action,
symbol,
amount
from ethereum.sushi.ez_lending
where symbol in ('USDC','USDT','DAI','UST','FEI','FRAX','BUSD','TUSD','sUSD')
and action = 'Deposit'
)
select
date(block_timestamp) as date,
symbol,
count(tx_hash) as txs,
count(distinct origin_from_address) as users,
sum(amount) as vol
from data
where block_timestamp >= '2022-06-06'
group by 1,2
-- limit 100
Run a query to Download Data