Updated 2023-02-23
    with t1 as
    (select sum(AMOUNT) as volume, TO_ADDRESS
    from
    ethereum.core.ez_token_transfers
    where
    CONTRACT_ADDRESS='0x5283d291dbcf85356a21ba090e6db59121208b44'
    and
    FROM_ADDRESS='0xf2d15c0a89428c9251d71a0e29b39ff1e86bce25'
    group by 2)

    select width_bucket(volume, 0, 33*1e6, 33000)*1000 , sum(volume) AS volume
    from t1

    group by 1
    Run a query to Download Data