fantaSHIB : AMOUNT IN Transactions
    Updated 2022-03-21
    select sum(amount_in) as amount_in,date(block_timestamp) as date from ethereum.dex_swaps
    where token_address='0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce'
    and amount_in is not null
    group by date
    order by amount_in DESC
    limit 10
    Run a query to Download Data