SocioCryptoActive projects over time
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- forked from New projects over time @ https://flipsidecrypto.xyz/edit/queries/b96bf009-519b-4210-96b2-9cc704d49806
SELECT date_Trunc('month',block_timestamp) as date,
count(DISTINCT project_name) as n_new_projects
FROM near.core.fact_transactions a
LEFT JOIN near.core.dim_address_labels b
ON a.tx_receiver = b.address
WHERE b.project_name IS NOT NULL
AND
date >= DATEADD('month', -1*{{last_n_month}}, CURRENT_DATE()-1)
GROUP BY 1
ORDER BY date DESC
Run a query to Download Data