Eman-RazTop 10 POLIS Holders
    Updated 2024-02-18
    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
    Holder
    Volume in
    Volume out
    Balance
    1
    5MPLVoZ2cJHy8gkvFu9tCTuqu9P8Fm8xz8Swpo6TfjDu124805767.0000118822310105983457.00001
    2
    2cg6Sbbpxpzk7bd4bGL4s1CHWm28VbDx6VReruKdKvZT91675014.9494372680559.9288994455.029437
    3
    FWznbcNXWQuHTawe9RxvQ2LdCENssh12dsznf4RiouN514684883.23241179552219.5992725132663.63313966
    4
    2Jo8wqijXveVjra1DAknfoH1imS7XaJqLA1eQF5hzRUE3048788027267696.05014813220183.9498519
    5
    u6PJ8DtQuPFnfmwHbGFULQ4u4EgjDiyYKjVEsynXq2w31420190.706216828956426.65563612463764.05058064
    6
    5PAhQiYdLBd6SVdjzBQDxUAEFyDdF5ExNPQfcscnPRj53778871.9594218117200002058871.95942181
    7
    8pALa8uxE6RUqqoWme4X2mitiSsG2pL7k3ywrcmoUYAs1200000253571.42857082946428.57142918
    8
    B5hX2Aj8FYmdYjXQFVF1jpz7BkrdpLXgSPs92G6DFGjA20060547.044859619137255.0931513923291.951708291
    9
    7P5XYon1WR8xTyy7YihCSCeZXvX3H5qeT6wtHCHJqmrk21366952.857793120464231.6877931902721.170000002
    10
    DB7VtRPVePiVF513NKs2cb9QnEBWJZQRXap4TnWLd5xF35186103.244874134488751.5668368697351.678037256
    10
    951B
    471s