Afonso_DiazTop projects
Updated 2024-10-20
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
new_users as (
select
tx_signer as user,
min(block_timestamp)::date as created_at
from
near.core.fact_transactions
where
tx_succeeded = 1
group by 1
having created_at >= current_date - interval '30 days'
),
events as (
select
tx_hash,
tx_signer as user,
label_type,
project_name
from
near.core.fact_actions_events_function_call
join
near.core.fact_transactions using(tx_hash)
join
near.core.dim_address_labels
on
address = receiver_id
where
user in (select distinct user from new_users)
and label_type not in ('token', 'chadmin', 'operator')
and label_subtype != 'token_contract'
)
select
project_name,
QueryRunArchived: QueryRun has been archived