CHAIN | CATEGORY | PROTOCOL | SYMBOL | POOL | TVL | SY | |
---|---|---|---|---|---|---|---|
1 | Base | BTC | Lombard | LBTC | 1 | 59526888.8677932 | 0xb261266cb30c255cb9c73ebf4a3ead9398d23ab4 |
2 | Base | Stables | Resolv | USR | 1 | 14955683.3146023 | 0x4665d514e82b2f9c78fa2b984e450f33d9efc842 |
3 | Base | BTC | Moonwell | mcbBTC | 1 | 3396181.34666216 | 0x7f5efa1bb887a5080ceacd6f3e2c0fc16bd90c90 |
4 | Base | Stables | Moonwell | mUSDC | 1 | 2731576.43415825 | 0xc40febf5a33b8c92b187d9be0fd3fe0ac2e4b07c |
5 | Base | RWA | Anzen | sUSDz | 1 | 1048543.05817106 | 0xff702347d81725ed8bbe341392af511e29cfed98 |
6 | Base | Stables | Anzen | sUSDz | 1 | 1048543.05817106 | 0xff702347d81725ed8bbe341392af511e29cfed98 |
7 | Base | ETH | Coinbase Staked ETH | cbETH | 1 | 393926.484552936 | 0x75372f72ec752a761e96cbcb3395f4b9586d9afd |
8 | Base | OTHER | Aerodrome | VIRTUAL/cbBTC | 1 | 389588.648873025 | 0x02adf72d5d06a9c92136562eb237c07696833a84 |
9 | Base | ETH | Origin | wsuperOETHb | 1 | 383697.537691212 | 0x67507f3e26e7e2fd0a42c48fbc85069ccfcbd2ff |
neo_nguyenPendle - Base
Updated 2025-05-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with
pendle_pool as( select * from $query('f90ce887-7773-43b6-ac7d-a666182c79e0') ),
pendle_data as(
select from_address as pool, case when amount is null then raw_amount/1e18 else amount end amount, contract_address, block_timestamp from base.core.ez_token_transfers union all
select to_address as pool, case when amount is null then 0-raw_amount/1e18 else 0-amount end amount, contract_address, block_timestamp from base.core.ez_token_transfers ),
pendle_liquid as(
select chain, category, protocol, symbol, sy, sum(amount*price) tvl, count(distinct mk) pool
from pendle_data tb1
join pendle_pool tb2 on tb1.contract_address = tb2.sy and tb1.pool = '0x0000000000000000000000000000000000000000'
where chain = 'Base'
group by 1,2,3,4,5)
select chain, category, protocol, symbol, sum(pool) pool, sum(tvl/pool) tvl, max(sy) sy
from pendle_liquid
group by 1,2,3,4
order by tvl desc
Last run: about 1 month agoAuto-refreshes every 24 hours
9
910B
212s