datavortex30D changes
    Updated 3 days ago
    WITH

    users_last_30 AS (
    SELECT
    COUNT(DISTINCT origin_from_address) AS total_users_30d
    FROM
    kaia.defi.ez_dex_swaps
    WHERE
    block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
    ),


    volume_last_30 AS (
    SELECT
    SUM(amount_in_usd) AS total_volume_30d
    FROM
    kaia.defi.ez_dex_swaps
    WHERE
    block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
    ),


    swaps_last_30 AS (
    SELECT
    COUNT(DISTINCT tx_hash) AS total_swaps_30d
    FROM
    kaia.defi.ez_dex_swaps
    WHERE
    block_timestamp > CURRENT_TIMESTAMP - INTERVAL '30 days'
    ),


    previous_30 AS (
    SELECT
    COUNT(DISTINCT origin_from_address) AS total_users_prev_30d,
    SUM(amount_in_usd) AS total_volume_prev_30d,
    Last run: 3 days ago
    Total Users (30D)
    Total Volume (30D)
    Total Swaps (30D)
    Total Users (Previous 30D)
    Total Volume (Previous 30D)
    Total Swaps (Previous 30D)
    User Change (%)
    Volume Change (%)
    Swap Change (%)
    User Change (Symbol)
    Volume Change (Symbol)
    Swap Change (Symbol)
    1
    6096629759807.054024025092019013253.7434250719.756.517.519.7% ▲🟢56.5% ▲🟢17.5% ▲🟢
    1
    116B
    10s