Afonso_DiazTop swappers
    Updated 2025-03-04
    with

    main as (
    select
    tx_id,
    block_timestamp,
    trader as user,
    nvl(amount_in_usd, amount_out_usd) as amount_usd,
    token_in_symbol as symbol_in,
    token_out_symbol as symbol_out
    from
    flow.defi.ez_dex_swaps
    where
    amount_usd <= 1e6
    and platform ilike 'increment%'
    )

    select
    user,
    count(distinct tx_id) as transactions,
    sum(amount_usd) as volume_usd,
    avg(amount_usd) as average_amount_usd,
    sum(amount_usd) as platform_fee_volume_usd,
    avg(amount_usd) as average_platform_fee_usd
    from
    main
    where
    user is not null
    group by 1
    order by volume_usd desc
    limit 100
    Last run: 2 months ago
    USER
    TRANSACTIONS
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    PLATFORM_FEE_VOLUME_USD
    AVERAGE_PLATFORM_FEE_USD
    1
    0x002836e844528fe5702220540.2424658131722.0034637972220540.2424658131722.003463797
    2
    0xb2ea0fe697fdb4ff561975783.8689061821018.9773287891975783.8689061821018.977328789
    3
    0x8f8baf3f4afa57911281735719.1409211710519.5099449771735719.1409211710519.509944977
    4
    0xea48abd736c8aabe971583193.9086272113304.1504926661583193.9086272113304.150492666
    5
    0x24263c125b7770e02331457133.441878765477.9452702211457133.441878765477.945270221
    6
    0x4cc3b4e2f848d5ca301450192.7725545331525.9298381421450192.7725545331525.929838142
    7
    0x187b859ff7464547791396845.2107986413968.4521079861396845.2107986413968.452107986
    8
    0xcd2fe9ffd61cfd1359928422.91998027712216.091052372928422.91998027712216.091052372
    9
    0xf0bdf1d3b66b893219653251.9668644726130.078674579653251.9668644726130.078674579
    10
    0xeaa1a54cf681883218567646.65955408129876.139976531567646.65955408129876.139976531
    11
    0x1802fed8a061d49718567000.28256971913500.00672785567000.28256971913500.00672785
    12
    0x9847bda5eca280e212487685.58936166634834.684954405487685.58936166634834.684954405
    13
    0xc96837936f60c54645486711.4895273747264.350589961486711.4895273747264.350589961
    14
    0xe79c28b59fff8e806436809.67335272801.612225333436809.67335272801.612225333
    15
    0x1ff07a976b14f7c419433929.51951575512762.632926934433929.51951575512762.632926934
    16
    0x6995914b0e55270427371484.16241705811608.880075533371484.16241705811608.880075533
    17
    0x154129c8f7b5cc8e274342136.281310313706.893143203342136.281310313706.893143203
    18
    0x09e6fd73000f7b5715339869.34421598722657.956281066339869.34421598722657.956281066
    19
    0x0121e7c874277d869338326.4794251137591.831047234338326.4794251137591.831047234
    20
    0x6a1142285bbb752614322116.78546772123008.341819123322116.78546772123008.341819123
    100
    9KB
    3s