nsa2000Global activity metrics
    Updated 2022-11-03
    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