KaskoazulMarinade NFT - Whales
Updated 2022-04-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select tx_from as whales,
count (tx_id) as Number_of_NFT,
sum (amount) as MNDE_locked_per_whale,
count (1) over (order by MNDE_locked_per_whale) as unique_purchasers,
sum (Number_of_NFT) over (order by MNDE_locked_per_whale) as total_NFT_minted,
avg (amount) as avg_MNDE_locked,
sum (MNDE_locked_per_whale) over (order by MNDE_locked_per_whale) as total_locked_MNDE
from solana.fact_transfers
--where tx_id = '5QE64TvWwCimfDNYNrUcGi9wDmDv3xSY4ne24X189tyVjPCUa4m5swBuunhRKxxD31PLLHnPJ8DGmzVNXKkNWc9R'
--or tx_id = 'FhmsCLomiZw9cKceqQpVU3c4dZ6BCES7VTzNyMQCyJoApQ7TV4jwSqQhAKu7SZJnvgmSYcnPAW3Pc52T4HbDtcg'
where mint = 'MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey'
and index = 1
and block_timestamp >= '2022-04-04' and block_timestamp <= '2022-04-18'
and amount >= 250000
group by whales
order by MNDE_locked_per_whale desc
Run a query to Download Data