alitaslimiOptimism DEXs Swap Count Blockchain Daily
    Updated 2024-01-30
    select
    block_timestamp::date as "Date",
    count(distinct tx_hash) as "Values"
    from
    optimism.defi.ez_dex_swaps
    where
    block_timestamp::date >= (current_date - 30)
    group by
    "Date"
    qualify
    "Date" < last_value("Date") over (order by "Date")
    order by
    "Date" desc
    Last run: about 1 year agoAuto-refreshes every 6 hours
    Date
    Values
    1
    2024-01-28 00:00:00.00040696
    2
    2024-01-27 00:00:00.00031620
    3
    2024-01-26 00:00:00.00039928
    4
    2024-01-25 00:00:00.00043016
    5
    2024-01-24 00:00:00.00042319
    6
    2024-01-23 00:00:00.00053302
    7
    2024-01-22 00:00:00.00047434
    8
    2024-01-21 00:00:00.00031613
    9
    2024-01-20 00:00:00.00032998
    10
    2024-01-19 00:00:00.00038507
    11
    2024-01-18 00:00:00.00041021
    12
    2024-01-17 00:00:00.00036415
    13
    2024-01-16 00:00:00.00040760
    14
    2024-01-15 00:00:00.00038725
    15
    2024-01-14 00:00:00.00035891
    16
    2024-01-13 00:00:00.00046930
    17
    2024-01-12 00:00:00.00079959
    18
    2024-01-11 00:00:00.00067635
    19
    2024-01-10 00:00:00.00082801
    20
    2024-01-09 00:00:00.00064124
    29
    987B
    8s