Updated 3 days ago
    WITH base AS (
    SELECT
    tx_id,
    block_id,
    swap_from_mint,
    swap_to_mint,
    swap_from_amount,
    swap_to_amount,
    swap_from_amount_usd,
    swap_to_amount_usd
    FROM solana.defi.ez_dex_swaps
    WHERE block_timestamp >= DATE_TRUNC('day', DATEADD(day, -8, CURRENT_TIMESTAMP()))
    ),

    flattened AS (
    SELECT
    tx_id,
    block_id,
    swap_from_mint AS address,
    COALESCE(swap_from_amount_usd, swap_to_amount_usd) / NULLIF(swap_from_amount, 0) AS price
    FROM base
    UNION ALL
    SELECT
    tx_id,
    block_id,
    swap_to_mint AS address,
    COALESCE(swap_to_amount_usd, swap_from_amount_usd) / NULLIF(swap_to_amount, 0) AS price
    FROM base
    ),

    prices AS (
    SELECT
    address,
    tx_id,
    block_id,
    MAX(price) AS price
    Last run: 3 days ago
    DAY
    TRADERS
    VOLUME
    SWAPS
    1
    2025-03-31 00:00:00.000182427701114874.8820012908461
    2
    2025-03-30 00:00:00.000210123718127630.3523873618721
    3
    2025-03-29 00:00:00.000234801690376017.0039473940671
    4
    2025-03-27 00:00:00.000275095804643478.0508444116786
    5
    2025-03-25 00:00:00.000297094962824146.4797034012794
    6
    2025-03-23 00:00:00.000348200657920616.686594046442
    7
    2025-03-24 00:00:00.0003754411034759035.72654725920
    8
    2025-03-26 00:00:00.000303197937264294.6506124217998
    9
    2025-03-28 00:00:00.0002566971002544542.877513999778
    9
    539B
    76s