jackguyTop 100 Token Holders
Updated 2023-04-20
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 tab1 as (
SELECT
TX_FROM,
sum(amount) as net_out
FROM solana.core.fact_transfers
WHERE mint LIKE 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
GROUP BY 1
), tab2 as (
SELECT
TX_TO,
sum(amount) as net_IN
FROM solana.core.fact_transfers
WHERE mint LIKE 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
GROUP BY 1
), tab3 as (
SELECT
TX_FROM,
sum(amount) as net_out
FROM solana.core.fact_transfers
WHERE mint LIKE 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
AND block_timestamp < CURRENT_DATE - 7
GROUP BY 1
), tab4 as (
SELECT
TX_TO,
sum(amount) as net_IN
FROM solana.core.fact_transfers
WHERE mint LIKE 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
AND block_timestamp < CURRENT_DATE - 7
GROUP BY 1
), tab5 as (
SELECT
TX_FROM as from1,
sum(amount) as net_out_30
FROM solana.core.fact_transfers
WHERE mint LIKE 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
Run a query to Download Data