Updated 2022-09-14
    select
    BLOCK_TIMESTAMP::date as day,
    count(distinct ORIGIN_FROM_ADDRESS) as users,
    count(tx_hash) as txn
    from ethereum.core.fact_token_transfers
    where ORIGIN_TO_ADDRESS = '0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
    and day>=CURRENT_DATE-30
    group by DAY
    order by day
    Run a query to Download Data