Afonso_DiazTop Pools for each platform
    Updated 2025-04-22
    with

    main as (
    select
    tx_id,
    block_timestamp,
    pool_address,
    provider_address as user,
    pool_name,
    platform,
    token_a_amount_usd + token_b_amount_usd as amount_usd,
    action_type as event_name
    from
    solana.marinade.ez_liquidity_pool_actions
    )

    select
    platform,
    pool_name,
    count(distinct tx_id) as transactions,
    count(distinct user) as users,
    sum(iff(event_name = 'deposit', amount_usd, 0)) as deposit_volume_usd,
    sum(iff(event_name = 'withdraw', amount_usd, 0)) as withdraw_volume_usd,
    avg(iff(event_name = 'deposit', amount_usd, 0)) as deposit_average_amount_usd,
    avg(iff(event_name = 'withdraw', amount_usd, 0)) as withdraw_average_amount_usd
    from
    main
    where
    amount_usd > 0
    group by 1, 2
    qualify row_number() over (partition by platform order by deposit_volume_usd desc) <= 5
    order by 1


    Last run: 12 days ago
    PLATFORM
    POOL_NAME
    TRANSACTIONS
    USERS
    DEPOSIT_VOLUME_USD
    WITHDRAW_VOLUME_USD
    DEPOSIT_AVERAGE_AMOUNT_USD
    WITHDRAW_AVERAGE_AMOUNT_USD
    1
    meteoraMSOL-SOL5609124438918199.0434626834097874.058003666938.5271961958786079.136041719319
    2
    meteoraJUPSOL-MSOL355675242279.94621622713097.8434169614766.9857639893532008.726319484394
    3
    meteoraJLP-MSOL12723562111.37950849244739.036657394426.0738543975591927.079028798346
    4
    meteoraSOL-MSOL550542526940284772.8010509944764790.01223727731.731986795709813.106949762729
    5
    meteoraINF-MSOL306140581777.58853011556373.553672221901.2339494448041818.214227686993
    6
    orcaSOL-MSOL1510812940940126515.9428558941211755.73329965772.1446522312225778.807756554491
    7
    orcaMSOL-ETH1131653083143690255.7831738140812691.887153451259.4023856046231234.181393299853
    8
    orcaORCA-MSOL382951007449038114.3988537748597712.14112411280.5356939248931269.035439120619
    9
    orcaMSOL-USDT1231572147248732898.41406354225108640.770245431998.9142711321951809.060552342972
    10
    orcaMSOL-USDC28413610366467952807.6092651465898529.34121141636.0212970246761628.839284347541
    11
    raydiumMSOL-RAY5631129725895217.6707205426736524.452403024598.6889843225964748.095267697215
    12
    raydiumSOL-MSOL158186154810815995998.23096710960307865.89154468373.8818642950269286.1568496643
    13
    raydiumSOETH-MSOL22418102471559322.9352463671342013.102720633192.0475927935753182.354050438069
    14
    raydiumMSOL-USDC1652413257368751575.46702147361950507.25254092231.4635038034352190.307515552347
    15
    raydiumMSOL-USDT639861655247697923.32053673233621990.598637043871.0663622382163651.085229791005
    15
    2KB
    6s