Afonso_DiazTop 100 swappers
    Updated 18 hours ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address as swapper,
    symbol_in,
    symbol_out,
    token_in,
    token_out,
    greatest(symbol_in, symbol_out) || ' - ' || least(symbol_in, symbol_out) as token_pair,
    nvl(amount_in_usd, amount_out_usd) as amount_usd
    from
    bsc.defi.ez_dex_swaps
    where
    amount_usd < 1e7
    and platform ilike 'dodo%'
    )

    select
    swapper,
    count(distinct tx_hash) as swaps,
    sum(amount_usd) as volume_usd,
    avg(amount_usd) as average_amount_usd
    from
    main
    where
    block_timestamp between '{{ start_date }}' and '{{ end_date }}'
    group by 1
    order by volume_usd desc
    limit 100


    Last run: about 18 hours ago
    SWAPPER
    SWAPS
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    1
    0x21442343c7c6e133be8d6910ef6e5c042caada202407496274215.58206179.566090569
    2
    0x2feefe024193c110e2e9bc0d19a395aef00283e62366434791491.81183766.480054945
    3
    0x99e71e85676af59eb7d1584b0b376004360063881432350726603.08244920.812206704
    4
    0xe4b45d13ebba2357b6760b1587d48237a686e63a2127342422882.03160988.661039022
    5
    0xcc69e7f9c896acc66837a1cbec715e05ad4b63071633329769614.72201940.976558481
    6
    0x0e07c8f2781a1f35a4ff183f6db58c9a9bdeea34700190504828.76272149.755371429
    7
    0xd161d70751f974f96bc16af52c8eac2e1cc6a8b2610166335995.83272681.960377049
    8
    0x31eaf8923ea786baed08510ce21ac25e7b5799821271137673523.59105658.882264006
    9
    0xe41f1c3dcb812b67c4cf7b6193e3602efc3d66ae503121525280.01241600.954294235
    10
    0x61124f46d41de23e692aae97a7cb11d5049dec2f431120776271.02280223.366635731
    11
    0x3c59e5663e0ba85f8f3bf541268641a2eb059153426113610513.43266691.346079812
    12
    0xfdc92ac0dff3acf91a16d0a0222e776c07f81ff71352102661372.3675932.967721893
    13
    0xa43898a0ff23a7ceb0531c6e2a31e04910fc460871396119869.59134810.47628331
    14
    0xc94a967c11c9258f48bfeb9dc0b127e896aa902362396011278.62154111.201637239
    15
    0x1111e09c4d899ba268dc0d6e5a3bb13379ac60512423893438090.563828.017967143
    16
    0x041e6a523f32bbd9ab21f0fe87e593820801618e30993279328.26301874.848737864
    17
    0x23ea12973e37099db89f14ad42b709474f87edec117792802321.7878846.492591334
    18
    0xe7435f45cc2f589f79709cd398eeaff3d9f71013120190364814.4575241.310949209
    19
    0x91f47f2b895d511c1e54f232b3cfe4d85e95809539388923972.11226269.64913486
    20
    0xe1354adc6806edb245dc2140d80fde5cb4bea6f061788250794.4143032.081685575
    100
    8KB
    24s