hessDaily Swap
    Updated 2025-02-21
    with base as ( select block_timestamp,
    tx_hash,
    origin_from_address::string as swapper,
    contract_address,
    symbol,
    amount,
    to_address,
    event_index,
    from_address
    from sei.core_evm.ez_token_transfers
    where tx_hash in (select tx_hash
    from sei.core_evm.fact_event_logs
    where topics[0]::string = '0xd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822'
    )
    and block_timestamp::date >= '2024-05-27')
    ,
    index as ( select tx_hash,
    event_index as max,
    rank() over (partition by tx_hash order by event_index desc) as rank
    from sei.core_evm.ez_token_transfers
    where tx_hash in (select tx_hash from base)
    qualify rank <= 2
    )
    ,
    min_index as ( select tx_hash,
    min(event_index) as min
    from sei.core_evm.ez_token_transfers
    where tx_hash in (select tx_hash from base)
    group by 1
    )
    ,
    token_in as ( select block_timestamp,
    a.tx_hash,
    swapper,
    contract_address as token_in_address,
    symbol as symbol_in,
    Last run: about 2 months ago
    DATE
    VOLUME_USD
    SWAPS
    SWAPPERS
    Average Volume Per User
    Avg Trade Volume
    Median Trade Volume
    Max Trade Volume
    FROM_TOKENS
    TO_TOKENS
    1
    2024-08-17 00:00:00.000378525.9366107384020561674.73428985994.91623285126.28106818710350.9331242524
    2
    2024-09-14 00:00:00.000490541.5285984124727576851.634598261104.10473866710.58722320614550.942142030
    3
    2024-12-26 00:00:00.00058123.2886661283301324179.39286625317.8401745451.9976026293613.803346343850
    4
    2024-10-30 00:00:00.000498149.4701444323948979508.835005255130.09910424240.91200598851084.3636474934661
    5
    2024-10-09 00:00:00.0001725759.3018439275724773617.944029023231.18008062266.5325109634010.5130344060
    6
    2025-01-24 00:00:00.000101613.7569824494283514197.69213420723.9598578121.59031412819.640842083444
    7
    2025-01-15 00:00:00.000192352.0049268233493270712.41483306256.2761863454.01350613552630.7020345964245
    8
    2024-07-02 00:00:00.000655066.57571200946411614068.736495106141.178141317100.5122481257741.8425446411815
    9
    2025-01-08 00:00:00.000129014.2358455954273726177.70555901630.5576115223.14950154655844.0182654545
    10
    2024-06-16 00:00:00.000164617.2423236181359193852.939079397121.66832396412.3454332055.7548204741515
    11
    2024-12-15 00:00:00.000102239.1297950783973339301.59035337825.9292746122.9515884994.7585334560
    12
    2024-07-20 00:00:00.0001014334.5379997860203622802.029110497169.055756333102.43927757117914.6161042125
    13
    2024-12-29 00:00:00.00044630.7872634492316273163.48273722919.6784776294.375365679919.8182733734047
    14
    2025-02-21 00:00:00.000174535.306926453909506344.93143661445.869988682.12973811325247.7293963455
    15
    2025-02-03 00:00:00.0001380718.65627593105383523922.496182602131.42191664516.64907544272297.8408338753244
    16
    2024-10-26 00:00:00.000256456.0745792862227479535.398903088117.58646243940.34568328339720.8768512914157
    17
    2024-12-24 00:00:00.000264015.6085222863482454581.53217736276.8828213523.62851241778720.852953947
    18
    2024-10-17 00:00:00.0001281208.13400489733211611103.538444449178.31706805984.06593437823672.0313776955962
    19
    2024-05-31 00:00:00.000486989.4210380963846665732.314918854128.29015306635.3670449026361.7683318673134
    20
    2024-06-04 00:00:00.000235950.8662757538361741356.039461355284.62106909196.9745811015130.882550161717
    ...
    270
    30KB
    62s