MONTH | WALLET_ADDRESS | |
---|---|---|
1 | 2022-12-01 00:00:00.000 | 7631214 |
2 | 2022-10-01 00:00:00.000 | 15008523 |
3 | 2022-08-01 00:00:00.000 | 27865429 |
4 | 2022-06-01 00:00:00.000 | 29765715 |
5 | 2022-04-01 00:00:00.000 | 64425508 |
6 | 2022-02-01 00:00:00.000 | 31938408 |
i_dancrude-gold even 2022
Updated 2025-04-29
999
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 firsta AS (
SELECT
date_trunc('month', block_timestamp) AS Month
-- , tx_id
-- , event_type
-- , program_id
, COUNT(DISTINCT TRIM(REPLACE(f.value::string, '"', ''))) AS wallet_address
FROM solana.core.fact_transactions d --solana.core.fact_transactions
JOIN LATERAL FLATTEN(INPUT => d.signers) f
WHERE date_trunc('month', block_timestamp) = '2022-12-01'
GROUP BY 1
UNION ALL
SELECT
date_trunc('month', block_timestamp) AS Month
-- , tx_id
-- , event_type
-- , program_id
, COUNT(DISTINCT TRIM(REPLACE(f.value::string, '"', ''))) AS wallet_address
FROM solana.core.fact_transactions d --solana.core.fact_transactions
JOIN LATERAL FLATTEN(INPUT => d.signers) f
WHERE date_trunc('month', block_timestamp) = '2022-10-01'
GROUP BY 1
UNION ALL
SELECT
date_trunc('month', block_timestamp) AS Month
-- , tx_id
-- , event_type
-- , program_id
, COUNT(DISTINCT TRIM(REPLACE(f.value::string, '"', ''))) AS wallet_address
FROM solana.core.fact_transactions d --solana.core.fact_transactions
JOIN LATERAL FLATTEN(INPUT => d.signers) f
WHERE date_trunc('month', block_timestamp) = '2022-08-01'
Last run: about 1 month ago
6
222B
300s