hbd1994Which DEXs?
    Updated 2022-09-14
    (select 'aETH || Swap Into' as "Swap Type", PLATFORM as "Platform" , count(*) as "Number of Swaps"
    from ethereum.core.ez_dex_swaps
    where token_in in ('0xe95a203b1a91a908f9b9ce46459d101078c2c3cb')
    group by 2)

    union

    (select 'aETH || Swap From' as "Swap Type", PLATFORM as "Platform" , count(*) as "Number of Swaps"
    from ethereum.core.ez_dex_swaps
    where token_out in ('0xe95a203b1a91a908f9b9ce46459d101078c2c3cb')
    group by 2
    order by 2 )

    union

    (select 'stETH || Swap Into' as "Swap Type", PLATFORM as "Platform" , count(*) as "Number of Swaps"
    from ethereum.core.ez_dex_swaps
    where token_in in ('0xae7ab96520de3a18e5e111b5eaab095312d7fe84')
    group by 2)

    union

    (select 'stETH || Swap From' as "Swap Type", PLATFORM as "Platform" , count(*) as "Number of Swaps"
    from ethereum.core.ez_dex_swaps
    where token_out in ('0xae7ab96520de3a18e5e111b5eaab095312d7fe84')
    group by 2
    order by 2 )

    union

    (select 'rETH || Swap Into' as "Swap Type", PLATFORM as "Platform" , count(*) as "Number of Swaps"
    from ethereum.core.ez_dex_swaps
    where token_in in ('0xae78736cd615f374d3085123a210448e74fc6393')
    group by 2)

    union
    Run a query to Download Data