nsa2000Global activity metrics
Updated 2022-11-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
trunc(block_timestamp,'day') as date,
count(distinct origin_from_address) as users,
sum(users) over (order by date) as cum_users,
count(distinct tx_hash) as txs,
sum(txs) over (order by date) as cum_txs,
sum(amount) as volume,
sum(volume) over (order by date) as cum_volume
from ethereum.core.ez_token_transfers
where origin_to_address = lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1')
and amount_usd < 1e9
group by 1
order by 1 asc
Run a query to Download Data