raho2023-03-01 03:22 PM copy
    Updated 2023-03-01
    select
    date_trunc('day',BLOCK_TIMESTAMP),
    balance/1e18 as balance
    from ethereum.core.fact_token_balances
    where USER_ADDRESS = lower('0x25F2226B597E8F9514B3F68F00f494cF4f286491')
    and contract_address = '0x4da27a545c0c5b758a6ba100e3a049001de870f5'
    and block_timestamp BETWEEN '2022-10-01' and '2023-01-01'
    group by 1,2
    order by 1 asc


    Run a query to Download Data