matejchiDEX stats tab
    Updated 2025-04-12
    select
    'Arbitrum' as platform,
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_hash) as tx_n,
    sum(amount_in_usd) as volume,
    div0(Volume, tx_n) as avg_amount,
    count(distinct origin_from_address) as no_add
    from arbitrum.defi.ez_dex_swaps
    where month < date_trunc('month', current_date)
    group by month

    union all

    select
    'Base' as platform,
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_hash) as tx_n,
    sum(amount_in_usd) as volume,
    div0(Volume, tx_n) as avg_amount,
    count(distinct origin_from_address) as no_add
    from base.defi.ez_dex_swaps
    where month < date_trunc('month', current_date)
    group by month

    union all

    select
    'Optimism' as platform,
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_hash) as tx_n,
    sum(amount_in_usd) as volume,
    div0(Volume, tx_n) as avg_amount,
    count(distinct origin_from_address) as no_add
    from optimism.defi.ez_dex_swaps
    where month < date_trunc('month', current_date)
    group by month
    Last run: 2 months ago
    PLATFORM
    MONTH
    TX_N
    VOLUME
    AVG_AMOUNT
    NO_ADD
    1
    Arbitrum2021-06-01 00:00:00.00092
    2
    Arbitrum2021-07-01 00:00:00.000221.1510.5752
    3
    Arbitrum2021-08-01 00:00:00.00012324193.93196.69861788650
    4
    Arbitrum2021-09-01 00:00:00.000459613748778137.211629.149169432102754
    5
    Arbitrum2021-10-01 00:00:00.0002274521494527741.766570.7390647754784
    6
    Arbitrum2021-11-01 00:00:00.0001828961932701849.7310567.21770694841079
    7
    Arbitrum2021-12-01 00:00:00.0001842401534792669.298330.39876948534788
    8
    Arbitrum2022-01-01 00:00:00.0002979593358561089.6511271.89005752538766
    9
    Arbitrum2022-02-01 00:00:00.00029709420735268676979.36298612638789
    10
    Arbitrum2022-03-01 00:00:00.0003126841535716645.524911.40143250146778
    11
    Arbitrum2022-04-01 00:00:00.0003419661380179834.954036.01479372267237
    12
    Arbitrum2022-05-01 00:00:00.0005680401195730199.092105.010561034101978
    13
    Arbitrum2022-06-01 00:00:00.000650402647027719.65994.812008035115599
    14
    Arbitrum2022-07-01 00:00:00.000548594644362590.281174.57097649672559
    15
    Arbitrum2022-08-01 00:00:00.0009341891095366696.41172.532213931105134
    16
    Arbitrum2022-09-01 00:00:00.00018754041265799859674.947829374146102
    17
    Arbitrum2022-10-01 00:00:00.00026078791290440027.93494.823581895206809
    18
    Arbitrum2022-11-01 00:00:00.00033536812110815804.68629.402678633277238
    19
    Arbitrum2022-12-01 00:00:00.00022043771165639523.71528.784107124251435
    20
    Arbitrum2023-01-01 00:00:00.00020797591901242251.34914.164694727227269
    ...
    108
    9KB
    74s