PROJECT_NAME | USERS | |
---|---|---|
1 | here wallet | 523308 |
2 | hot near wallet | 21845 |
3 | harvest moon | 17865 |
4 | sweat | 2349 |
5 | wnear | 1768 |
6 | learn near club | 814 |
7 | gear | 536 |
8 | burrow | 531 |
9 | binance | 459 |
10 | ref finance | 292 |
feyikemibored-cyan
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 >= CURRENT_DATE - INTERVAL '24 HOURS'
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
191B
5s