first pool discovery day | first pool activity day | first trade day | first v2 trade day | pools created on first day | trades on first day | volume (USD) on first day | |
---|---|---|---|---|---|---|---|
1 | 2022-11-19 15:12:56.000 | 2024-01-01 00:00:22.000 | 2024-01-01 00:00:22.000 | 2024-09-25 13:12:54.000 | 1 | 2375 | 386601 |
defi__joshSTON.FI DEX Launch - First Pools, Trades, and Day-One Metrics
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
35
36
›
⌄
with first_pool as (
select
min(block_timestamp_discovered_at) as first_pool_discovered,
min(block_timestamp_last_updated) as first_pool_updated
from ton.defi.fact_dex_pools
where project = 'ston.fi'
),
first_trade as (
select
min(block_timestamp) as first_trade_timestamp,
min(event_time) as first_trade_unix
from ton.defi.fact_dex_trades
where project = 'ston.fi'
),
first_v2_trade as (
select
min(block_timestamp) as first_v2_trade_timestamp
from ton.defi.fact_dex_trades
where project = 'ston.fi'
and version = 2
)
select
fp.first_pool_discovered as "first pool discovery day",
fp.first_pool_updated as "first pool activity day",
ft.first_trade_timestamp as "first trade day",
fv2.first_v2_trade_timestamp as "first v2 trade day",
Last run: about 2 months ago
1
121B
1s