mattkstewCelsius Swaps 2
    Updated 2022-06-17
    with tab1 as (
    select
    address


    from flipside_prod_db.crosschain.address_labels
    where project_name like 'celsius network'
    )

    select
    date_trunc('day', block_timestamp),
    symbol_out,
    count(*)


    from ethereum.sushi.ez_swaps
    where ORIGIN_FROM_ADDRESS in (select * from tab1 )
    group by 1,2
    Run a query to Download Data