PROJECT_NAME | SECTOR | ACTIVE_USER | |
---|---|---|---|
1 | hop | bridge | 4718584 |
2 | stargate finance | bridge | 1439325 |
3 | bitkeep | dapp | 1029735 |
4 | binance | cex | 865814 |
5 | socket | dapp | 737808 |
6 | uniswap | dex | 637074 |
7 | metamask | dex | 631340 |
8 | okx | cex | 629741 |
9 | angle | defi | 614489 |
10 | guild | dapp | 407796 |
11 | opensea | nft | 402004 |
12 | 0x | dex | 366314 |
13 | stargate finance | defi | 276421 |
14 | gamee | games | 267522 |
15 | lens protocol | dapp | 252582 |
16 | imvu | games | 244263 |
17 | indigg | games | 240852 |
18 | beefy finance | defi | 240080 |
19 | quickswap | dex | 233732 |
20 | planet ix - assets | nft | 206479 |
SocioAnalyticaactive user
Updated 2024-02-01
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
›
⌄
with all_user as (
SELECT
block_timestamp,
tx_hash,
to_address,
from_address,
row_number() over (partition by from_address order by block_timestamp) as rank
FROM polygon.core.fact_transactions
WHERE STATUS = 'SUCCESS'
)
SELECT
project_name,
label_type as sector,
count(DISTINCT from_address) as active_user
FROM all_user a
LEFT JOIN polygon.core.dim_labels b
on a.to_address = b.address
WHERE block_timestamp BETWEEN '2023-01-01' AND '2023-12-31'
AND project_name is not null
AND label_type not in ('token', 'chadmin')
GROUP by 1 , 2
ORDER BY active_user DESC
LIMIT 50
Last run: about 1 year ago
50
1KB
30s