charliemarketplacetop project categories table
Updated 2025-04-30
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
›
⌄
-- forked from top projects table @ https://flipsidecrypto.xyz/studio/queries/ea66bd39-5e52-48c2-90de-122dade1e9d4
with near_projects as (
select ADDRESS,
initcap(PROJECT_NAME) as PROJECT_NAME,
initcap(LABEL_TYPE) as LABEL_TYPE
from near.core.dim_address_labels
where LABEL_TYPE not in ('cex','token') and PROJECT_NAME is not null
and initcap(PROJECT_NAME) IN (
'Here Wallet', 'Kaikai', 'Sweat', 'Playember', 'Ref Finance', 'Aurora', 'Proximity', 'Wormhole', 'Pyth', 'Usdc', 'Burrow', 'Meta Pool', 'Linear Protocol',
'Learn Near Club', 'Wbnb', 'Sol', 'Pumpopoly', 'Near Social', 'Tradeport', 'Astro Stakers', 'Neat'
)
),
projects_events as (
select
BLOCK_TIMESTAMP,
TX_HASH,
SIGNER_ID,
RECEIVER_ID,
PROJECT_NAME,
ADDRESS,
LABEL_TYPE,
DEPOSIT/1e24 as Volume
from near.core.fact_actions_events_function_call
inner join near_projects
on RECEIVER_ID=ADDRESS
where RECEIPT_SUCCEEDED=true
and block_timestamp >= '2024-06-01'
)
select
date_trunc('month', block_timestamp) as month_ordering,
INITCAP(TO_VARCHAR(date_trunc('month', block_timestamp), 'mon. yyyy')) as month_,
label_type as project_category,
Auto-refreshes every 12 hours
QueryRunArchived: QueryRun has been archived