Updated 2022-12-01
    ---credit gokcinosman
    select date_trunc('hour',block_timestamp) as date,count(distinct TO_ADDRESS) as user,sum(raw_amount)/pow(10,18) as amount,
    sum(amount) over (order by date) as cum_amount,sum(user) over (order by date) as cum_user
    from ethereum.core.fact_token_transfers where ORIGIN_TO_ADDRESS=lower('0xE50b2cEAC4f60E840Ae513924033E753e2366487')
    group by date
    order by date
    Run a query to Download Data