Afonso_DiazTop users
    Updated 4 days ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address as user,
    nvl(amount_in_usd, amount_out_usd) as amount_usd,
    symbol_in,
    symbol_out,
    iff(symbol_in > symbol_out, symbol_in || ' - ' || symbol_out, symbol_out || ' - ' || symbol_in) as token_pair
    from
    base.defi.ez_dex_swaps
    where
    platform = 'aerodrome'
    and amount_usd > 0
    and amount_usd < 1e6
    )

    select
    user,
    count(distinct tx_hash) as txns,
    sum(amount_usd) as volume_usd,
    avg(amount_usd) as average_amount_usd,
    median(amount_usd) as median_amount_usd
    from main
    group by 1
    order by volume_usd desc
    limit 10





    Last run: 4 days ago
    USER
    TXNS
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    MEDIAN_AMOUNT_USD
    1
    0x751b77c43643a63362ab024d466fcc1d75354295188833360172958.191907.3623688131561.86
    2
    0x4b9773f7da8e3757eacb6054b70f9dcb7c0f2ed718488293886626.4614505.7564886488734.78
    3
    0xfb1c505c975e229a7c9746141971abdab71f46c4251923281358475.221116.843143421662.99
    4
    0xe75df324cb1ffa8810f4644431b3737a49c92426286849250799358.06874.325370003391.6
    5
    0x2ae25cd7f366d3e194e3635808b5e399f55d6fbd56127250789761.354468.2552309943360
    6
    0xd13da05b9288ba4961973110594bd0fe3428791f200831223859442.141114.665774407604.39
    7
    0xe1b602fb1d4379ae1d6ad9e60b71e7142e6453823456209376608.5217745.284220697266.99
    8
    0x2dfc00f5ca5a92ff33a933beaba5f5500162837132851186120121.965665.2397637965106.74
    9
    0x310fbfe67d134f952571287a75f9f4031fa70a9a48079177175472.433685.0906306291246.61
    10
    0xb0bada5d45d939a03c6d211d24a61a4418d7cd13206067142918267.56441.75885818825.03
    10
    885B
    53s