mr_dcellana finance and thala swap tvl
    Updated 2024-12-03
    select
    date,
    protocol,
    chain,
    monthname(date) as month,
    chain_tvl as TVL
    from external.defillama.fact_protocol_tvl
    where chain = 'Aptos'
    and category = 'Dexes'
    and protocol = 'Cellana Finance' or protocol = 'ThalaSwap'
    qualify row_number() over(partition by protocol order by date desc) = 1
    order by tvl desc

    QueryRunArchived: QueryRun has been archived