vendettaExisting User vs New User, on New Tokens
Updated 2023-02-23
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
›
⌄
-- forked from 99e64e74-45f9-4e8a-a444-f5ab2365f849
with
minuary as (
select
currency,
project_name as symbol,
min(block_timestamp) as t
from
osmosis.core.fact_transfers ft
inner join osmosis.core.dim_tokens dt on dt.address = ft.currency
where
currency not like '%pool%'
and block_timestamp >= '2022-12-01'
and transfer_type = 'OSMOSIS'
group by
1,
2
order by
3 desc
),
olde as (
select
currency,
project_name as symbol,
min(block_timestamp) as t
from
osmosis.core.fact_transfers ft
inner join osmosis.core.dim_tokens dt on dt.address = ft.currency
where
currency not like '%pool%'
and block_timestamp < '2022-12-01'
and transfer_type = 'OSMOSIS'
group by
1,
2
Run a query to Download Data