Holder | Volume in | Volume out | Balance | |
---|---|---|---|---|
1 | 5MPLVoZ2cJHy8gkvFu9tCTuqu9P8Fm8xz8Swpo6TfjDu | 124805767.00001 | 18822310 | 105983457.00001 |
2 | 2cg6Sbbpxpzk7bd4bGL4s1CHWm28VbDx6VReruKdKvZT | 91675014.949437 | 2680559.92 | 88994455.029437 |
3 | FWznbcNXWQuHTawe9RxvQ2LdCENssh12dsznf4RiouN5 | 14684883.2324117 | 9552219.599272 | 5132663.63313966 |
4 | 2Jo8wqijXveVjra1DAknfoH1imS7XaJqLA1eQF5hzRUE | 30487880 | 27267696.0501481 | 3220183.9498519 |
5 | u6PJ8DtQuPFnfmwHbGFULQ4u4EgjDiyYKjVEsynXq2w | 31420190.7062168 | 28956426.6556361 | 2463764.05058064 |
6 | 5PAhQiYdLBd6SVdjzBQDxUAEFyDdF5ExNPQfcscnPRj5 | 3778871.95942181 | 1720000 | 2058871.95942181 |
7 | 8pALa8uxE6RUqqoWme4X2mitiSsG2pL7k3ywrcmoUYAs | 1200000 | 253571.42857082 | 946428.57142918 |
8 | B5hX2Aj8FYmdYjXQFVF1jpz7BkrdpLXgSPs92G6DFGjA | 20060547.0448596 | 19137255.0931513 | 923291.951708291 |
9 | 7P5XYon1WR8xTyy7YihCSCeZXvX3H5qeT6wtHCHJqmrk | 21366952.8577931 | 20464231.6877931 | 902721.170000002 |
10 | DB7VtRPVePiVF513NKs2cb9QnEBWJZQRXap4TnWLd5xF | 35186103.2448741 | 34488751.5668368 | 697351.678037256 |
Eman-RazTop 10 POLIS Holders
Updated 2024-02-18
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
›
⌄
with tab3 as (
with tab1 as (select tx_from as sender, sum(amount) as volume_out
from solana.core.fact_transfers
where mint in ('poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk')
group by 1),
tab2 as (select tx_to as receiver, sum(amount) as volume_in
from solana.core.fact_transfers
where mint in ('poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk')
group by 1)
select sender as "Holder", volume_in, volume_out, case
when volume_in is null then 0
else volume_in
end as vol_in, case
when volume_out is null then 0
else volume_out
end as vol_out
from tab1 left join tab2 on tab1.sender=tab2.receiver
order by 2 desc)
select "Holder", vol_in as "Volume in", vol_out as "Volume out", vol_in-vol_out as "Balance"
from tab3
order by 4 desc
limit 10
Last run: about 1 year ago
10
951B
471s