freeman_7Monthly user
    Updated 2025-01-21
    select
    date_trunc('month',block_timestamp) as month,
    count(distinct origin_from_address) as Unique_Users
    from optimism.defi.ez_dex_swaps
    where origin_to_address = lower('0xCa423977156BB05b13A2BA3b76Bc5419E2fE9680')
    and Extract(year from block_timestamp) = 2024
    group by month
    order by month desc


    Last run: about 2 months ago
    MONTH
    UNIQUE_USERS
    1
    2024-12-01 00:00:00.00013059
    2
    2024-11-01 00:00:00.00020135
    3
    2024-10-01 00:00:00.00013981
    4
    2024-09-01 00:00:00.0009993
    5
    2024-08-01 00:00:00.0009416
    6
    2024-07-01 00:00:00.00013380
    7
    2024-06-01 00:00:00.00012535
    8
    2024-05-01 00:00:00.00015442
    9
    2024-04-01 00:00:00.00019618
    10
    2024-03-01 00:00:00.00017661
    11
    2024-02-01 00:00:00.0008250
    12
    2024-01-01 00:00:00.00011780
    12
    406B
    16s