adriaparcerisaskittypunch StableCeler vs StableGate copy
    Updated 6 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,
    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: 6 days ago
    DATE
    POOL
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-05-19 00:00:00.000StableCeler912576414803.6003779424755.377878162.676927221
    2
    2025-05-19 00:00:00.000StableGate8676104744.40773213437348.69149913093.05096654
    3
    2025-05-18 00:00:00.000StableCeler3132567327594.4475529409951.77750188.1611742881
    4
    2025-05-18 00:00:00.000StableGate12668126854.96993313332604.28376710571.2474944172
    5
    2025-05-17 00:00:00.000StableCeler822536010356.0514259382357.329949126.2933100611
    6
    2025-05-17 00:00:00.000StableGate4656158746.84948613205749.31383439686.71237153
    7
    2025-05-16 00:00:00.000StableCeler92252789544.9805269372001.278524103.7497883261
    8
    2025-05-16 00:00:00.000StableGate565245752.82593313047002.4643489150.56518662
    9
    2025-05-15 00:00:00.000StableCeler2832518635573.7894949362456.297998125.7024363751
    10
    2025-05-15 00:00:00.000StableGate14647284391.06927413001249.63841520313.6478052863
    11
    2025-05-14 00:00:00.000StableCeler1912490339910.820119326882.508504208.9571733512
    12
    2025-05-14 00:00:00.000StableGate7633109286.0244112716858.56914115612.2892014292
    13
    2025-05-13 00:00:00.000StableCeler1972471222702.5651429286971.688394115.2414474212
    14
    2025-05-13 00:00:00.000StableGate262639401.5612607572.54473119700.781
    15
    2025-05-12 00:00:00.000StableCeler4992451565508.2092279264269.123252131.2789764071
    16
    2025-05-12 00:00:00.000StableGate13624244702.43102712568170.98473118823.2639251542
    17
    2025-05-11 00:00:00.000StableCeler2132401628073.5632399198760.914025131.800766381
    18
    2025-05-11 00:00:00.000StableGate761198030.07652712323468.55370414004.2966467144
    19
    2025-05-10 00:00:00.000StableCeler31723803103623.922229170687.350786326.8893445432
    20
    2025-05-10 00:00:00.000StableGate14604284037.09002712225438.47717720288.3635733575
    ...
    203
    18KB
    3s