KisoQuickswap token volume copy
    Updated 2024-08-17
    -- forked from Quickswap token volume @ https://flipsidecrypto.xyz/edit/queries/9b651546-31d1-4409-9169-704b58923546

    SELECT
    --date_trunc('day', block_timestamp) as Date,
    count(distinct origin_from_address),
    --event_name,
    --platform,
    symbol_in
    --sum(amount_in_usd) as amount_in_usd
    --tx_hash

    from
    polygon.defi.ez_dex_swaps

    where
    amount_in_usd is not null
    and platform='quickswap-v3'
    --and event_name='Swap'
    and Date(block_timestamp) >= '2023-01-01'

    group by 2
    order by 1 DESC

    LIMIT 100



    QueryRunArchived: QueryRun has been archived