adriaparcerisaskittypunch stableceler
    Updated 4 days ago
    with info as (
    select
    origin_from_address,
    tx_hash,
    block_timestamp,
    utils.udf_hex_to_int(SUBSTR(data, 67, 64))/POW(10,6) as token_amount
    from flow.core_evm.fact_event_logs
    where contract_address='0x073d6f03d1f1724f9daa11b7f61a45105607f88c'
    and topic_0='0x8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd97140'
    and tx_succeeded='TRUE'
    and origin_function_signature='0x3df02124'
    )
    select trunc (block_timestamp,'day') as date,
    count(distinct tx_hash) as swaps,
    sum(swaps) over (order by date) as total_swaps,
    sum(token_amount) as volume_swapped,
    sum(volume_swapped) over (order by date) as total_volume_swapped,
    avg(token_amount) as avg_volume_swapped,
    count(distinct origin_from_address) as swappers
    from info
    group by 1 order by 1 desc
    Last run: 4 days ago
    DATE
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-05-05 00:00:00.00042227335700.2427448959239.740995135.7200653331
    2
    2025-05-04 00:00:00.000592269110261.8204118953539.498251173.9291595081
    3
    2025-05-03 00:00:00.0001132263211447.2899628943277.67784101.3034509911
    4
    2025-05-02 00:00:00.00056225195287.6237318931830.38787894.4218523391
    5
    2025-05-01 00:00:00.00061224637969.2229118926542.764147130.6429985411
    6
    2025-04-30 00:00:00.000972240225748.6885438918573.541236265.4503973511
    7
    2025-04-29 00:00:00.0001062230517627.063678892824.852693166.2930534911
    8
    2025-04-28 00:00:00.0001202219924118.654128875197.789023200.9887843331
    9
    2025-04-27 00:00:00.000492207912060.6345088851079.134903246.1353981221
    10
    2025-04-26 00:00:00.000782203015283.802298839018.500395195.9461832051
    11
    2025-04-25 00:00:00.000832195221409.1796468823734.698105257.9419234461
    12
    2025-04-24 00:00:00.0001172186923337.0731758802325.518459199.4621638891
    13
    2025-04-23 00:00:00.0001392175229844.2698468778988.445284214.7069773091
    14
    2025-04-22 00:00:00.0001422161324312.8717498749144.175438171.2174066832
    15
    2025-04-21 00:00:00.0001122147111869.3930058724831.303689105.9767232591
    16
    2025-04-20 00:00:00.0001182135911638.3159778712961.91068498.6297964152
    17
    2025-04-19 00:00:00.00060212418897.3323858701323.594707148.2888730831
    18
    2025-04-18 00:00:00.00036211815813.8371028692426.262322161.4954750561
    19
    2025-04-17 00:00:00.00083211457754.2362728686612.4252293.4245333981
    20
    2025-04-16 00:00:00.0002222106224462.5788678678858.188948110.1917966982
    89
    7KB
    10s