total pools | liquid pools | total TVL (USD) | total trades | unique traders | total volume (USD) | |
---|---|---|---|---|---|---|
1 | 21911 | 21037 | 54570836460024 | 24582130 | 5051767 | 5862563072 |
defi__joshsome key metrics about STON.fi's activity since launch
Updated 2025-04-28
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
32
33
34
›
⌄
with pool_stats as (
select
count(distinct pool) as total_pools,
count(distinct case when is_liquid = true then pool end) as liquid_pools,
sum(tvl_usd) as total_tvl_usd
from ton.defi.fact_dex_pools
where project = 'ston.fi'
and block_timestamp_last_updated >= '2022-11-19'
),
trading_stats as (
select
count(*) as total_trades,
count(distinct trader_address) as unique_traders,
sum(volume_usd) as total_volume_usd
from ton.defi.fact_dex_trades
where project = 'ston.fi'
and block_timestamp >= '2022-11-19'
)
select
p.total_pools as "total pools",
p.liquid_pools as "liquid pools",
round(p.total_tvl_usd,2) as "total TVL (USD)",
t.total_trades as "total trades",
t.unique_traders as "unique traders",
round(t.total_volume_usd,2) as "total volume (USD)"
from pool_stats p
cross join trading_stats t
;
Last run: about 1 month ago
1
58B
1s