bachiDaily TVL trend - sushi pools on ethereum
    Updated 2022-04-10
    select
    date(block_timestamp) as day,
    pool_name,
    sum(amount_in/pow(10,9)) as tvl
    from ethereum.dex_swaps
    where platform ='sushiswap' and amount_in > 0 and amount_in is not null and pool_name like '%SLP'
    group by day, pool_name
    order by tvl desc
    Run a query to Download Data