New | |
---|---|
1 | 310495 |
oxkimiatender-peach
Updated 2025-03-07
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
›
⌄
-- Total New Users Based on the First Transaction Date (Last 24 Hours) for Monad Testnet
WITH new AS (
SELECT
MIN(block_timestamp::date) AS day,
from_address
FROM
monad.testnet.fact_transactions
GROUP BY
2
),
new_users_24 AS (
SELECT
day,
COUNT(DISTINCT from_address) AS "New Users",
SUM("New Users") OVER (ORDER BY day ASC) AS "Cumulative New Users"
FROM
new
GROUP BY
1
)
SELECT
SUM("New Users") AS "New"
FROM
new_users_24
WHERE
day >= CURRENT_TIMESTAMP - INTERVAL '24 hours';
Last run: about 2 months ago
1
10B
6s