adriaparcerisaskittypunch StableCeler vs StableGate copy
    Updated 12 hours 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,
    contract_address
    from flow.core_evm.fact_event_logs
    where contract_address in ('0x20ca5d1c8623ba6ac8f02e41ccaffe7bb6c92b57','0x073d6f03d1f1724f9daa11b7f61a45105607f88c')
    and topic_0='0x8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd97140'
    and tx_succeeded='TRUE'
    and origin_function_signature='0x3df02124'
    )
    select trunc (block_timestamp,'day') as date, case when contract_address='0x073d6f03d1f1724f9daa11b7f61a45105607f88c' then 'StableCeler'
    else 'StableGate' end as pool,
    count(distinct tx_hash) as swaps,
    sum(swaps) over (partition by pool order by date) as total_swaps,
    sum(token_amount) as volume_swapped,
    sum(volume_swapped) over (partition by pool 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,2 order by 1 desc, 2



    Last run: about 12 hours ago
    DATE
    POOL
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-05-12 00:00:00.000StableCeler3982441451663.6360369250424.550061129.8081307441
    2
    2025-05-12 00:00:00.000StableGate13624244702.43102712568170.98473118823.2639251542
    3
    2025-05-11 00:00:00.000StableCeler2132401628073.5632399198760.914025131.800766381
    4
    2025-05-11 00:00:00.000StableGate761198030.07652712323468.55370414004.2966467144
    5
    2025-05-10 00:00:00.000StableCeler31723803103623.922229170687.350786326.8893445432
    6
    2025-05-10 00:00:00.000StableGate14604284037.09002712225438.47717720288.3635733575
    7
    2025-05-09 00:00:00.000StableCeler2712348646431.7183049067063.428566171.3347538892
    8
    2025-05-09 00:00:00.000StableGate11590149969.56528811941401.3871513633.5968443643
    9
    2025-05-08 00:00:00.000StableCeler1252321519859.9081249020631.710262158.8792649921
    10
    2025-05-08 00:00:00.000StableGate957994556.00630711791431.82186210506.2229234
    11
    2025-05-07 00:00:00.000StableCeler1222309012923.7407589000771.802138105.9323012951
    12
    2025-05-07 00:00:00.000StableGate657059190.26821911696875.8155559865.0447031672
    13
    2025-05-06 00:00:00.000StableCeler1962296824036.2636258987848.06138122.6339980871
    14
    2025-05-06 00:00:00.000StableGate956495731.46787611637685.54733610636.8297643
    15
    2025-05-05 00:00:00.000StableCeler812277210272.2995048963811.797755126.8185123951
    16
    2025-05-05 00:00:00.000StableGate355518796.2811541954.079466265.4266666672
    17
    2025-05-04 00:00:00.000StableCeler592269110261.8204118953539.498251173.9291595081
    18
    2025-05-04 00:00:00.000StableGate6552134985.24424411523157.7994622497.5407073332
    19
    2025-05-03 00:00:00.000StableCeler1132263211447.2899628943277.67784101.3034509911
    20
    2025-05-03 00:00:00.000StableGate354642758.9640511388172.55521614252.9880166671
    ...
    189
    17KB
    2s