KavehhArb Revenue
    Updated 2024-02-18
    select
    date_trunc('week', date) as date, protocol,
    sum(revenue) as "Weekly Revenue"

    from
    external.defillama.fact_protocol_fees_revenue

    where
    protocol = 'Arbitrum'and date > '2023-01-01'

    group by 1, 2

    order by 1 desc


    QueryRunArchived: QueryRun has been archived