kenobi9270trend of number of swaps
    Updated 2022-04-05
    with tbl1 as (select count(distinct to_address) as active_users,to_date(block_timestamp) as date,platform from ethereum.dex_swaps
    where platform!='curve'
    group by date,platform)
    , tbl2 as (select count(*) as swap_number ,date(block_timestamp) as date,platform from ethereum.dex_swaps
    where platform!='curve'
    group by date,platform)

    select * from tbl2

    Run a query to Download Data