adriaparcerisaskittypunch stableceler
    Updated 2025-04-14
    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: 13 days ago
    DATE
    SWAPS
    TOTAL_SWAPS
    VOLUME_SWAPPED
    TOTAL_VOLUME_SWAPPED
    AVG_VOLUME_SWAPPED
    SWAPPERS
    1
    2025-04-14 00:00:00.0001332066618337.0361518637214.541268137.8724522631
    2
    2025-04-13 00:00:00.0001362053322130.9018458618877.505117162.7272194491
    3
    2025-04-12 00:00:00.000792039710613.9126848596746.603272134.3533251142
    4
    2025-04-11 00:00:00.0001242031816327.0423078586132.690588131.6696960242
    5
    2025-04-10 00:00:00.0002952019423115.6708838569805.64828178.3582063831
    6
    2025-04-09 00:00:00.0006961989960826.6085798546689.97739887.3945525561
    7
    2025-04-08 00:00:00.0006111920351590.1222188485863.36881984.4355519121
    8
    2025-04-07 00:00:00.000124718592132955.9457088434273.246601106.6206461172
    9
    2025-04-06 00:00:00.0004231734541103.457928301317.30089397.1712953191
    10
    2025-04-05 00:00:00.0001211692220253.3347758260213.842973167.3829320251
    11
    2025-04-04 00:00:00.0003831680127881.3828328239960.50819872.7973442091
    12
    2025-04-03 00:00:00.0003251641825987.0357398212079.12536679.9601099661
    13
    2025-04-02 00:00:00.0005071609347056.9834378186092.08962792.8145629921
    14
    2025-04-01 00:00:00.0002791558622217.4753488139035.1061979.6325281291
    15
    2025-03-31 00:00:00.0003521530727869.0642448116817.63084279.1734779661
    16
    2025-03-30 00:00:00.0001711495514174.9600318088948.56659882.8945031051
    17
    2025-03-29 00:00:00.0001841478413610.9250338074773.60656773.9724186581
    18
    2025-03-28 00:00:00.0002741460023850.5169728061162.68153487.045682382
    19
    2025-03-27 00:00:00.000160143267633.2870968037312.16456247.708044352
    20
    2025-03-26 00:00:00.0002611416619555.0517238029678.87746674.923569822
    68
    5KB
    3s