adriaparcerisaskittypunch StableGate
    Updated 10 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
    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: about 10 hours ago
    DATE
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-04-28 00:00:00.000252436549.1524811043841.87060518274.576241
    2
    2025-04-27 00:00:00.000252224520.23912511007292.71812512260.11956251
    3
    2025-04-26 00:00:00.000452053918.70763410982772.47913479.67690853
    4
    2025-04-25 00:00:00.00012516189347.24804810928853.77136615778.9373373336
    5
    2025-04-24 00:00:00.00010504197822.90058410739506.52331819782.29005842
    6
    2025-04-23 00:00:00.000749467710.39139610541683.6227349672.9130565713
    7
    2025-04-22 00:00:00.000648739115.19899110473973.2313386519.1998318333
    8
    2025-04-21 00:00:00.000548137192.99179610434858.0323477438.59835923
    9
    2025-04-20 00:00:00.000547649187.83368810397665.0405519837.56673762
    10
    2025-04-19 00:00:00.000447139917.77958610348477.2068639979.44489652
    11
    2025-04-18 00:00:00.000546734658.67510308559.4272776931.7353
    12
    2025-04-17 00:00:00.000446230147.382610273900.7522777536.845652
    13
    2025-04-16 00:00:00.000645857062.48785810243753.3696779510.4146432
    14
    2025-04-15 00:00:00.000545237346.81811710186690.8818197469.36362342
    15
    2025-04-14 00:00:00.000344736339.43731310149344.06370212113.1457711
    16
    2025-04-13 00:00:00.000644473652.18894510113004.62638912275.3648241672
    17
    2025-04-12 00:00:00.000343830654.7810039352.43744410218.262
    18
    2025-04-11 00:00:00.000743560310.73120210008697.6574448615.8187431433
    19
    2025-04-10 00:00:00.000442850061.4062219948386.92624212515.351555251
    20
    2025-04-09 00:00:00.0008424109894.3326449898325.52002113736.79158053
    79
    6KB
    2s