andurilMAU check
Updated 2024-09-27
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 artemis as (
select
date_trunc('month', block_timestamp) as month,
count_if(
index = 0
and succeeded = TRUE
) as txns,
count(
distinct(
case
when succeeded = TRUE then value
else null
end
)
) as mau
from
solana.core.fact_transactions,
lateral flatten(input => signers)
where
block_timestamp::date >= '2024-07-01'
group by
1
),
flipside as (
select
date_trunc('month', block_timestamp) as month,
count(distinct tx_id) as txns,
count(distinct signers[0]) as mau
from
solana.core.fact_transactions
where
block_timestamp::date >= '2024-07-01'
and succeeded
group by
1
)
QueryRunArchived: QueryRun has been archived