hessDaily Swap
    Updated 2025-05-23
    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: 21 days ago
    DATE
    VOLUME_USD
    SWAPS
    SWAPPERS
    Average Volume Per User
    Avg Trade Volume
    Median Trade Volume
    Max Trade Volume
    FROM_TOKENS
    TO_TOKENS
    1
    2025-01-08 00:00:00.00076895.2453194273726105.91631586627.9619073892.13766955844.0182654545
    2
    2024-06-16 00:00:00.000146039.1603281359193756.679587192125.89582786917.9666911678.5569131515
    3
    2024-07-02 00:00:00.000582232.46718146411613616.350727832142.285549164107.2569037576.4660881815
    4
    2025-01-24 00:00:00.00020410.320466428351439.7087946817.9201864441.1503681218.0117783444
    5
    2025-01-15 00:00:00.00023693.036597349327087.75198739614.6072975321.6003851993.1093254245
    6
    2024-12-12 00:00:00.00052431.4309045528439119.4337833819.2197327362.11885053537.488555159
    7
    2024-09-21 00:00:00.0001717021.050966112928352056.312635887258.860402678249.90878210644.7424352646
    8
    2024-06-18 00:00:00.000721096.1991137821335421.775933158198.157790357249.6799942677.8328571014
    9
    2025-02-20 00:00:00.00057896.476618656879173.19402859416.7524527256.16266752090.0546044147
    10
    2024-07-07 00:00:00.000508286.78312938471583217.004956513144.56393149313050001513
    11
    2024-06-02 00:00:00.000169692.7888691222302561.896651884376.258955364281.2987183289.6971911718
    12
    2025-02-18 00:00:00.00017391.739662243221780.14626572410.9382010451.38764051221.8288472743
    13
    2024-08-28 00:00:00.0001894914.87259994726392965.437985288312.795456025249.942586536367.8623742726
    14
    2025-01-14 00:00:00.00012285.161688270626147.0695850119.3069406731.50197051102.002783442
    15
    2024-12-23 00:00:00.000368310.16319242053671003.569926954172.1075528932.894393599310.551884252
    16
    2024-07-11 00:00:00.000709711.30143250843482039.400291471170.112967745161.110937580001817
    17
    2025-05-05 00:00:00.0003058049.60645796169617717277.1164206661825.7012575872.3278561462797.465141282739
    18
    2024-10-10 00:00:00.0001357957.72073274928801543.133773559299.571524538249.94480516596.0482563354
    19
    2025-03-19 00:00:00.000247659.63555456723512351053.870789594106.3830049638.56986220311862.3533949413344
    20
    2025-03-29 00:00:00.000212934.34380011321301691259.966531362100.67817673813.06526578717053.0154484682832
    ...
    361
    38KB
    26s