MONTH_ORDERING | MONTH_ | PROJECT_CATEGORY | PROJECT_NAME | CATEGORY_RANK | # Tx | # Unique Signers | Direct $NEAR Volume (if applicable) | |
---|---|---|---|---|---|---|---|---|
1 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Ref Finance | 1 | 3259467 | 45152 | 596 |
2 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Usdc | 2 | 937337 | 20417 | 62 |
3 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Proximity | 3 | 593543 | 7453 | 0 |
4 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Meteor | 4 | 402461 | 1443 | 190895 |
5 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Blackdragon | 5 | 106182 | 12517 | 46 |
6 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Dd | 6 | 97389 | 1108 | 2 |
7 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Burrow | 7 | 83317 | 9598 | 304 |
8 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Lonk | 8 | 74114 | 936 | 2 |
9 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Spin | 9 | 72562 | 7 | 0 |
10 | 2025-02-01 00:00:00.000 | Feb. 2025 | Defi | Kat | 10 | 71304 | 753 | 3 |
charliemarketplacetop 10 in categories defi
Updated 1 hour ago
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 10 in categories dapp excludes wallets @ https://flipsidecrypto.xyz/studio/queries/dec43f74-25e7-4f63-bfbb-8bc8c2f2cf26
-- forked from top 10 in categories gaming @ https://flipsidecrypto.xyz/studio/queries/76d996f7-8b65-41de-b608-bad269a9160a
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 in ('dapp', 'games', 'defi', 'bridge', 'nft')
where LABEL_TYPE in ('defi')
and PROJECT_NAME is not null
),
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-11-01'
),
monthly_metrics as (
select
date_trunc('month', block_timestamp) as month_ordering,
INITCAP(TO_VARCHAR(date_trunc('month', block_timestamp), 'mon. yyyy')) as month_,
project_name,
label_type as project_category,
Last run: about 1 hour agoAuto-refreshes every 12 hours
10
727B
19s