TOKEN | CHAIN | SUPPLY | TVLS | I | TVL | BAL | TVL_ALL | |
---|---|---|---|---|---|---|---|---|
1 | mBASIS | Base | 2,426,741 | $2,596,613 | - | 2596612.71730908 | 2426740.85729821 | 3523068.54681029 |
2 | mTBILL | Base | 918,192 | $926,456 | - | 926455.82950121 | 918192.100595848 | 3523068.54681029 |
JonasoMidas RWA (1)
Updated 2025-04-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
›
⌄
with
L as(select token,chain,contract,price from $query('a431c1fc-9ce0-4a5d-b100-e3af8a26b5d8') ),
X as(
-- select 'Ethereum' as chain, block_timestamp, 0+amount as balance, from_address as user, to_address as pool, contract_address from ethereum.core.ez_token_transfers union all
-- select 'Ethereum' as chain, block_timestamp, 0-amount as balance, to_address as user, from_address as pool, contract_address from ethereum.core.ez_token_transfers union all
select 'Base' as chain, block_timestamp, 0+amount as balance, from_address as user, to_address as pool, contract_address from base.core.ez_token_transfers union all
select 'Base' as chain, block_timestamp, 0-amount as balance, to_address as user, from_address as pool, contract_address from base.core.ez_token_transfers ),
A as(
select token, a.chain,
sum(case when balance is null then 0 else balance end) as BAL,
sum(case when balance is null then 0 else balance*price end) as TVL
from X as a
join L as b on a.chain = b.chain and a.contract_address = lower(b.contract)
where user = '0x0000000000000000000000000000000000000000'
group by 1,2)
select
token, chain,
to_varchar(BAL,'999,999,999,999') as SUPPLY,
to_varchar(TVL,'$999,999,999,999') as TVLs,
'-' "I",
TVL, BAL, sum(TVL) over() as TVL_ALL -- oasis tvl
from A
order by TVL desc
Last run: 14 days agoAuto-refreshes every 24 hours
2
224B
44s