PROJECT_NAME | USERS | |
---|---|---|
1 | kaikai | 46077973 |
2 | playember | 7691279 |
3 | sweat | 4160238 |
4 | here wallet | 1983886 |
5 | uwon | 1258616 |
6 | wnear | 1113054 |
7 | hot near wallet | 662349 |
8 | binance | 286860 |
9 | aurora | 278134 |
10 | lnr | 242242 |
feyikemiNear Users Count by Projects
Updated 2025-03-31
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
PROJECT_NAME,
COUNT(DISTINCT TX_SIGNER) AS Users
FROM near.core.fact_transactions a
JOIN near.core.dim_address_labels b
ON a.tx_receiver = b.address
WHERE BLOCK_TIMESTAMP::DATE >= '2024-01-01'
AND TX_SUCCEEDED = 'true'
AND Project_name NOT IN ('USDt', 'usdc')
GROUP BY 1
ORDER BY 2 DESC
Limit 10
Last run: about 2 months ago
10
199B
128s