MrftiTrading Platforms
    Updated 18 hours ago

    with tbl AS (
    select
    Block_timestamp as "Date",
    'Buy' as "Buy/Sell",
    TX_HASH as "Transaction hash",
    trader as "Trader address",
    PLATFORM as "Platform",
    AMOUNT_Out_USD as "Trade volume (USD)"
    from
    crosschain.defi.ez_dex_swaps
    where
    token_in = lower('0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB')
    and blockchain = 'ethereum'
    UNION ALL
    select
    Block_timestamp as "Date",
    'Sell' as "Buy/Sell",
    TX_HASH as "Transaction hash",
    trader as "Trader address",
    PLATFORM as "Platform",
    AMOUNT_In_USD as "Trade volume (USD)"
    from
    crosschain.defi.ez_dex_swaps
    where
    token_out = lower('0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB')
    and blockchain = 'ethereum')
    select
    "Platform",
    sum ("Trade volume (USD)") as "Total trading volume (USD)",
    count (DISTINCT "Trader address") as "Total unique traders",
    count (DISTINCT "Transaction hash") as "Total trades"
    from tbl
    GROUP by 1

    Last run: about 18 hours agoAuto-refreshes every 12 hours
    Platform
    Total trading volume (USD)
    Total unique traders
    Total trades
    1
    uniswap-v210067.098961186
    2
    woofi52205.581828
    3
    uniswap-v3365336381.8341293141958
    4
    hashflow-v34245485.27306811
    4
    135B
    28s