adriaparcerisaskittypunch StableGate
    Updated 2 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='0x20ca5d1c8623ba6ac8f02e41ccaffe7bb6c92b57'
    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: 2 days ago
    DATE
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-05-25 00:00:00.000471877798.38199914500222.50139619449.595499753
    2
    2025-05-24 00:00:00.000271413071.13097514422424.1193976535.56548752
    3
    2025-05-23 00:00:00.0009712110570.37144214409352.98842212285.5968268893
    4
    2025-05-22 00:00:00.000970399733.44068414298782.6169811081.4934093333
    5
    2025-05-21 00:00:00.0008694113707.50694514199049.17629614213.4383681252
    6
    2025-05-20 00:00:00.0009686636107.19785214085341.66935170678.5775391112
    7
    2025-05-19 00:00:00.0009677116630.18773213449234.47149912958.9097484
    8
    2025-05-18 00:00:00.00012668126854.96993313332604.28376710571.2474944172
    9
    2025-05-17 00:00:00.0004656158746.84948613205749.31383439686.71237153
    10
    2025-05-16 00:00:00.000565245752.82593313047002.4643489150.56518662
    11
    2025-05-15 00:00:00.00014647284391.06927413001249.63841520313.6478052863
    12
    2025-05-14 00:00:00.0007633109286.0244112716858.56914115612.2892014292
    13
    2025-05-13 00:00:00.000262639401.5612607572.54473119700.781
    14
    2025-05-12 00:00:00.00013624244702.43102712568170.98473118823.2639251542
    15
    2025-05-11 00:00:00.000761198030.07652712323468.55370414004.2966467144
    16
    2025-05-10 00:00:00.00014604284037.09002712225438.47717720288.3635733575
    17
    2025-05-09 00:00:00.00011590149969.56528811941401.3871513633.5968443643
    18
    2025-05-08 00:00:00.000957994556.00630711791431.82186210506.2229234
    19
    2025-05-07 00:00:00.000657059190.26821911696875.8155559865.0447031672
    20
    2025-05-06 00:00:00.000956495731.46787611637685.54733610636.8297643
    ...
    106
    8KB
    3s