DATE | DAU | DAU_1W_AVG | DAU_1M_AVG | |
---|---|---|---|---|
1 | 2025-05-08 00:00:00.000 | 518 | 500 | 510 |
2 | 2025-05-07 00:00:00.000 | 511 | 499 | 510 |
3 | 2025-05-06 00:00:00.000 | 506 | 498 | 511 |
4 | 2025-05-05 00:00:00.000 | 489 | 497 | 512 |
5 | 2025-05-04 00:00:00.000 | 489 | 500 | 513 |
6 | 2025-05-03 00:00:00.000 | 489 | 500 | 514 |
7 | 2025-05-02 00:00:00.000 | 499 | 502 | 516 |
8 | 2025-05-01 00:00:00.000 | 508 | 505 | 518 |
9 | 2025-04-30 00:00:00.000 | 504 | 505 | 519 |
10 | 2025-04-29 00:00:00.000 | 504 | 509 | 521 |
11 | 2025-04-28 00:00:00.000 | 505 | 513 | 522 |
12 | 2025-04-27 00:00:00.000 | 494 | 516 | 523 |
13 | 2025-04-26 00:00:00.000 | 500 | 516 | 525 |
14 | 2025-04-25 00:00:00.000 | 521 | 520 | 527 |
15 | 2025-04-24 00:00:00.000 | 506 | 515 | 528 |
16 | 2025-04-23 00:00:00.000 | 531 | 515 | 530 |
17 | 2025-04-22 00:00:00.000 | 532 | 514 | 532 |
18 | 2025-04-21 00:00:00.000 | 529 | 512 | 533 |
19 | 2025-04-20 00:00:00.000 | 496 | 509 | 533 |
20 | 2025-04-19 00:00:00.000 | 522 | 513 | 535 |
AephiaSAGE crafting activity
Updated 2 hours 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
›
⌄
WITH crafting AS (
select
date_trunc('day', block_timestamp::date) as date
,count(distinct instruction:accounts[8]) as profiles
---------------------------------------------------------------
from solana.core.fact_events
WHERE program_id = 'SAGE2HAwep459SNq61LHvjxPk4pLPEJLoMETef7f7EE'
AND succeeded = 'true'
AND instruction:accounts[13] = 'CraftndAV62acibnaW7TiwEYwu8MmJZBdyrfyN54nre7'
AND block_timestamp > '2024-04-01' AND block_timestamp < current_date
group by 1
),
final AS (
select
x.date as date
,profiles as dau
,round(avg(profiles) OVER (order by date asc rows between 6 preceding and current row)) as dau_1w_avg
,round(avg(profiles) OVER (order by date asc rows between 29 preceding and current row)) as dau_1m_avg
from crafting x
)
--SELECT * FROM scanning
--/*
SELECT
date
,zeroifnull(dau) as dau
Last run: about 2 hours agoAuto-refreshes every 12 hours
...
399
16KB
171s