Monitize AITop $NYAN Claimers copy
Updated 2024-07-15
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
›
⌄
with claimert as (
select
distinct tx_to as claimer,
sum(amount) as claimed_amount,
rank() over(order by claimed_amount desc) as rank
from solana.core.fact_transfers
where tx_from = '4cZgUw6T8yYQ2CordAfSzS4Q5VKJNyVU3JEX6xGg2Xwy'
and mint = 'NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP'
--and program_id = 'meRjbQXFNf5En86FXT2YPz1dQzLj4Yb3xK8u1MVgqpb'
and tx_to != 'C8FXTcztFpdjMjPZYtu6mMTs3M5fLzNKR7Q6vymkQC8e'
and amount > 0
group by 1
order by 3 asc
)
select
distinct tx_to,
count(distinct tx_from),
sum(amount)
from solana.core.fact_transfers
where mint = 'NYANpAp9Cr7YarBNrby7Xx4xU6No6JKTBuohNA3yscP'
and tx_from in (select distinct claimer from claimert)
group by 1
order by 2 desc
QueryRunArchived: QueryRun has been archived