StangFAST003 - daily holder [ change ]
Updated 2023-12-11
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
--- outflow
tab1 AS
(
SELECT
a.tx_from AS tx_sg
, sum( a.amount ) AS am_ac
FROM
solana.core.fact_transfers a
WHERE
a.mint = '5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y'
GROUP BY 1
ORDER BY 1 DESC
)
,
--- inflow
tab2 AS
(
SELECT
a.tx_to AS tx_sg
, sum( a.amount ) AS am_ac
FROM
solana.core.fact_transfers a
WHERE
a.mint = '5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y'
GROUP BY 1
ORDER BY 1 DESC
)
,
--- holder
tab3 AS
(
SELECT
case
Run a query to Download Data