datavortexDaily Revenue and Fees(USD)
    Updated 2025-02-27
    SELECT
    date_trunc('week', date) AS WeeklyTimeFrame,
    SUM(fees) AS WeeklyFees,
    SUM(revenue) AS WeeklyRevenue
    FROM
    external.defillama.fact_protocol_fees_revenue
    WHERE
    protocol ILIKE 'raydium'
    AND chain ILIKE 'solana'
    AND revenue IS NOT NULL
    GROUP BY
    WeeklyTimeFrame
    ORDER BY
    WeeklyTimeFrame;

    Last run: 2 months ago
    WEEKLYTIMEFRAME
    WEEKLYFEES
    WEEKLYREVENUE
    1
    2022-10-17 00:00:00.00049541225718
    2
    2022-10-24 00:00:00.00028014033618
    3
    2022-10-31 00:00:00.00037023444430
    4
    2022-11-07 00:00:00.0001477344177284
    5
    2022-11-14 00:00:00.00034106240930
    6
    2022-11-21 00:00:00.000132538486889
    7
    2022-11-28 00:00:00.00013647216380
    8
    2022-12-05 00:00:00.0008424410108
    9
    2022-12-12 00:00:00.00010670012804
    10
    2022-12-19 00:00:00.000771189252
    11
    2022-12-26 00:00:00.00013664816398
    12
    2023-01-02 00:00:00.00052234062682
    13
    2023-01-09 00:00:00.00056218467462
    14
    2023-01-16 00:00:00.00043631252356
    15
    2023-01-23 00:00:00.00035772042924
    16
    2023-01-30 00:00:00.00027031232438
    17
    2023-02-06 00:00:00.00024245229094
    18
    2023-02-13 00:00:00.00023639228366
    19
    2023-02-20 00:00:00.00026087631306
    20
    2023-02-27 00:00:00.00017572621086
    ...
    111
    5KB
    2s