0xHaM-dNew Listed Assets
Updated 2023-02-25
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
›
⌄
with newAssets as (
select
project_name as symbol,
label as token,
min(block_timestamp::date) as listing_date
from osmosis.core.fact_swaps t1 join osmosis.core.dim_tokens t2 on t1.from_currency = t2.address
group by 1,2
UNION
select
project_name as symbol,
label as token,
min(block_timestamp::date) as listing_date
from osmosis.core.fact_swaps t1 join osmosis.core.dim_tokens t2 on t1.to_currency = t2.address
group by 1,2
UNION
SELECT
project_name as symbol,
label as token,
min(block_timestamp::date) as listing_date
FROM osmosis.core.fact_transfers LEFT outer JOIN osmosis.core.dim_labels ON address = currency
WHERE sender LIKE 'axelar%'
AND receiver LIKE 'osmo%'
GROUP BY 1,2
)
SELECT*
FROM newAssets
WHERE listing_date >= CURRENT_DATE - INTERVAL '{{Past_Months}} MONTH'
Run a query to Download Data