DAY | TOTAL_TVL | POOL_ADDRESS | |
---|---|---|---|
1 | 2025-06-16 00:00:00.000 | 23245401.3046135 | 0xe50019c79cbd7c49cffa7c3f8080ea238de75962 |
2 | 2025-06-16 00:00:00.000 | 15540124.1919515 | 0x7ccd8a769d466340fff36c6e10ffa8cf9077d988 |
3 | 2025-06-16 00:00:00.000 | 12655936.7560316 | 0x38e2a053e67697e411344b184b3abae4fab42cc2 |
4 | 2025-06-16 00:00:00.000 | 7550935.64106005 | 0x2612e3280ca8836f58173bf7ecc35e258dc1b54b |
5 | 2025-06-16 00:00:00.000 | 7048328.46445651 | 0x5d54d430d1fd9425976147318e6080479bffc16d |
6 | 2025-06-16 00:00:00.000 | 6329525.64844071 | 0x5a59359a1ad9b0a59aa70145dfeceb6d9ee07253 |
7 | 2025-06-16 00:00:00.000 | 4047119.08411569 | 0xc455fe28a76da80022d4c35a37eb08ff405eb78f |
8 | 2025-06-16 00:00:00.000 | 2128490.13122813 | 0x7e78b65d0525339df5f4aa22b82d9e97584da8fc |
9 | 2025-06-16 00:00:00.000 | 1671104.41221725 | 0x3d887ce4988fb46aec6e0027171f65db3526e5f1 |
10 | 2025-06-16 00:00:00.000 | 1376933.48574333 | 0x0e70c050d81e8d328694c9557af989610a411c45 |
11 | 2025-06-16 00:00:00.000 | 510907.273261844 | 0x3b6c029e6409f2868769871f9ed6825b15bdca15 |
12 | 2025-06-16 00:00:00.000 | 481757.511311478 | 0x763868612858358f62b05691db82ad35a9b3e110 |
13 | 2025-06-16 00:00:00.000 | 234214.975213673 | 0xf0601aa87a7341a38034b49f9517dd3adc2ddec4 |
14 | 2025-06-16 00:00:00.000 | 199466.198956959 | 0x48c1a89af1102cad358549e9bb16ae5f96cddfec |
15 | 2025-06-16 00:00:00.000 | 95452.247378985 | 0x8e3a13418743ab1a98434551937ea687e451b589 |
16 | 2025-06-16 00:00:00.000 | 76301.086121341 | 0xfb16b5ccc62dc125834c33bf6b063c87e6e6f581 |
17 | 2025-06-16 00:00:00.000 | 62467.659767691 | 0x138a98ae0618d899296bb6c417f3ae29e78a0807 |
18 | 2025-06-16 00:00:00.000 | 62012.727233017 | 0xf6c9020c9e915808481757779edb53daceae2415 |
19 | 2025-06-16 00:00:00.000 | 53320.479248899 | 0x1606c79be3ebd70d8d40bac6287e23005cfbefa2 |
20 | 2025-06-16 00:00:00.000 | 48831.918979482 | 0xa15c851afc33aab6e478d538a4a8c66cacc19686 |
cloudr3nmoe tvl
Updated 10 days agoCopy Reference Fork
999
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
32
33
34
35
36
›
⌄
⌄
/*
reference queries:
lb_pool list - https://flipsidecrypto.xyz/studio/queries/2b335ea6-7497-407f-a77b-610f4253ea22
classic_pool list - https://flipsidecrypto.xyz/studio/queries/74c999f1-5442-44ce-83b5-50c2926ab991
*/
with lb_pools as (
select
tokenX,
tokenY,
lbpair
from
$query('2b335ea6-7497-407f-a77b-610f4253ea22')
),
classic_pools as (
select
token0,
token1,
pool_address
from
$query('74c999f1-5442-44ce-83b5-50c2926ab991')
),
token_list as (
select
*
from
mantle.price.ez_asset_metadata
where
token_address in (select tokenX from lb_pools union all select token0 from classic_pools)
or
token_address in (select tokenY from lb_pools union all select token1 from classic_pools)
),
price_tb as (
Last run: 10 days ago
36186
3MB
61s