Who holds the VESTS that are not voting for Witnesses?

in #utopian-io6 years ago

Repository

https://github.com/steemit/steem

This is an analysis of witness voting patterns of the accounts on the Steem Blockchain. In focus are the number of MVESTS held and the status of these accounts not casting a single vote for a witness.


Contents

  • Introduction / Background
  • General / Assumptions
  • Not voting for a witness - account type
  • Not voting for a witness - alternate approach
  • Summary
  • Queries and Tools used

Introduction / Background

There have been a number of discussions regarding the engagement of Steem accounts with regards to voting for witnesses. And reports are produced each month showing the overall activity relating to casting witness votes.

To summarize, there is a distinct lack of accounts actively voting for a witness, and this analysis is an attempt to find out where the 'inactive' VESTS are held.

VESTS are vested shares in the STEEM blockchain, the more an account owns, the more influence on witness voting an account has.

The aim of this analysis is to try and find the answers to the following questions.

Are the smaller accounts not voting for witnesses?

Or is there another class of accounts not voting for a witness?

And if it is the smaller accounts not voting, how much of an impact is this having in terms of VESTS?


General / Assumptions

  • The accounts - 'steemit', 'misterdelegation', 'steem', and 'ned' have been excluded from this analysis.

  • The Steem token / VEST ratio used is 491.485 STEEM per MVEST

  • An account not voting for a witness is one that is not voting directly, or via a proxy.

  • For simplicity, the following criteria has been used:

Steem PowerStatus
< 5000Minnow or smaller
5000 - 50000Dolphin
50000 - 500,000Orca
500,000+Whale

Not voting for a witness - account type

To try and understand where the 'inactive' VESTS are held, we can group the VESTS not casting a witness vote into account status.

At present, approximately 95% of all accounts are classed as 'minnow or smaller'. Is this where the VESTS are held?

StatusNo. of accountsTotal MVESTS
Minnow or smaller953,65721,930
Dolphin68618,411
Orca8621,656
Whale1227,178

Over 950,000 accounts that are classed as a 'minnow or smaller' are not casting a single vote for a witness. At first glance, this looks like the root of the problem. However, if we look at the number of MVESTS owned by these accounts, the total is only 274 MVESTS more than those owned by 86 Orcas - just over 1%.

Further to this, just 12 whales not voting for a witness control 27,178 MVESTS , which is 20% more MVESTS than all the 'minnow or smaller' accounts combined.



The chart above emphasizes the point further. Of the 954441 accounts not casting any vote for a witness, just 784 of these accounts control 75% of the MVESTS.

To put these numbers into perspective, and using https://steemian.info/witnesses as a guide.

  • If every account classed in this analysis as 'minnow or smaller' (all 953,657 of them) voted for a new witness, this would be enough MVESTS (21,930) to place the witness at 43 in the active rank.

  • If the 86 accounts classed as 'Orca' chose to do the same, the witness would also rank at 43.


Not voting for a witness - alternate approach

Again, 'steemit', 'misterdelegation', 'steem', and 'ned' have been removed, and the following data is of the accounts not voting for witness directly, or via proxy.

1000 of the top 2400 accounts ordered by VESTS are not voting for a witness directly, or via a proxy.

The 2400th largest account holds 7,257,524 VESTS - 7 MVESTS - 3566.420 Steem Power.

The VESTS held by the top 1000 accounts including this one, which are not voting for a witness total 69,105 MVESTS

There are 953,402 accounts below this account not voting for a witness.

The sum total of VESTS of these 953,402 accounts (with less than 7,257,524 VESTS / 3566.420 Steem Power) that are not voting for a witness is 20,071 MVESTS.



So, over three quarters of the VESTS not voting any witness are owned by 1000 accounts which are a part of the top 2400 accounts (ordered by VESTS) on the Steem Blockchain.

It is true that we have a lot of smaller accounts not voting for a witness directly of via proxy, but 77% of the Vests are held by accounts approaching Dolphin status or higher.


Summary

It is fair to assume that larger accounts would have a vested interest and be aware of the importance of a witness. However, a large % of the Vesting Shares not voting for any witnesses at all are owned by these accounts. Why?

Accounts classed as a 'minnow or smaller' make up the vast majority of accounts not voting for any witnesses, but with much of these accounts inactive / bots / tests, and around three quarters of the MVESTS not voting at all being held by 1000 of the accounts in the top 2400, it seems unfair to point the finger solely at this smaller accounts.

77% of the Vests not voting for a witness are held by accounts approaching Dolphin status or higher.

The larger accounts not voting for a witness are perhaps not voting for other reasons than lack of knowledge and apathy, maybe there is a wish to hide identity - voting patterns, and especially a proxy vote, would possibly give a clues to the account being an alternate account?

An analysis into voting patterns of accounts without a witness vote could be something to think about - this analyst is not venturing that far... today.


Queries and Tools used

The charts used to present the data were produced using MS Excel.

The data is sourced from SteemSQL - A publicly available SQL database with all the blockchain data held within.

The SQL queries to extra to the data have been produced in both SQL Server Personal Edition and LINQPAD 5. The code used to produce these results is as follows:


-- Top 1000 excluding 'Staff'
select name, cast(left(vesting_shares,charindex(' ', vesting_shares)-1) as float)/1000000 as vests,cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 as sp, proxy, (LEN(witness_votes) - LEN(REPLACE(witness_votes, ',', '')))+1, witness_votes from accounts with (nolock) 
where name in (select top 1000 name from accounts with (nolock) where (proxy = '' and len(witness_votes)<4) and name not in ('steemit','misterdelegation','steem','ned')
  --order by cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 desc
  )
  order by cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 desc 

-- Minnows or smaller
select name, cast(left(vesting_shares,charindex(' ', vesting_shares)-1) as float)/1000000 as vests, cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 as sp, proxy, (LEN(witness_votes) - LEN(REPLACE(witness_votes, ',', '')))+1, witness_votes from accounts with (nolock) 
where name in (select top 1004 name from accounts with (nolock) where (proxy = '' and len(witness_votes)<4) and cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 < 5000
)
order by cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.41/1000000 desc 

-- Whales 
select name, cast(left(vesting_shares,charindex(' ', vesting_shares)-1) as float)/1000000 as vests, cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 as sp, proxy, (LEN(witness_votes) - LEN(REPLACE(witness_votes, ',', '')))+1, witness_votes from accounts with (nolock) 
where name in (select name from accounts with (nolock) where (proxy = '' and len(witness_votes)<4) and (cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 > 499999.999)
)
order by cast(left(vesting_shares, len(vesting_shares)-6) as float)*491.485/1000000 desc 


This data was compiled on the 18th May 2018 at 9:30pm (UCT)


Thanks

Asher @abh12345 / Witness - @steemcommunity

Sort:  

.

Thanks @crokkon

Not caring, not knowing, or not voting to remain anonymous?

I'm siding with the latter for any account holding decent SP that's been here a little while. @aggroed mentioned more Steemit staff accounts, but with a looking into the voting patterns to some of the non-voters, I think it's pretty obvious who they are tied to. :/

Hey @crokkon
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

Contributing on Utopian
Learn how to contribute on our website.

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

I suppose it's no shocker that the majority of smaller fish aren't voting for any witnesses, given their makeup. I guess i'm not all that surprised that a lot of the larger fish aren't voting for anyone either, especially since there's duplicate accounts among them, too. That means in some cases, they might actually be doing the honorable thing? I guess without going any deeper it would be tough to determine how much of the multiple accounts in higher SP were or weren't voting with multiple accounts.

The scope of this analysis did not address this, but it only seems to reinforce in my mind one thing: High SP is still high SP. As the whales and orcas go, so go the Top Witnesses. As much as we might want everyone who's still around to vote for witnesses, with as much diversity of thought, I wonder just what effect it would have overall. Would it just strengthen positions, or would it dilute them? Maybe both, but my guess would be more of the former happens than the latter.

The question is, how do you get people to vote, especially the ones who have been here for a while and who know what's going on? Are they not voting out of some objection to the system maybe? All questions, not very convenient answers.

Hey @glenalbrethsen
Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments.

Contributing on Utopian
Learn how to contribute on our website.

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

As @aggroed has mentioned, it's likely that some accounts (probably the larger in general) are owned by Steemit staff. Tough to find this information though.

Some accounts will be alts., and as I mentioned to @crokkon, voting on content gives clues here.

All things considered, perhaps most of the active / non-Steemit staff, honorable (errr :) ) accounts are voting for witnesses, and what we have left is a deluge of inactive, bot, test, lost, etc accounts.

More questions raised than answers, again :)

So we only have 50K people who have voted for witnesses? I wonder how many of them have effectively left?!?

It would be interested to look at voting patterns of these accounts yes: you'd suspect that everyone above the level of minnow is just a passive investor delegating.

Can I just double check> Does the amount you have vested affect the weight of your witness vote? I thought witness votes were equally weighted, independent of vests?

50k - pretty much!

The voting patterns, to and from those accounts is very interesting. Staying clear of publicizing that at present - might not be the best move, if you know what I am saying.

Yes, vested amount affects the weight of your witness vote, like it does your votes for content.

1 MVEST is currently 491.505 Steem Power - https://steemdb.com/

The SP per vest is ticking up all the time, which in theory, is making us all gradually more wealthy :)

You mean witness circle jerking? Would be nice if there were some data about that. Would make my decision a lot easier.

heh. Did I put it like that? :D

Perhaps it's best to assume jerking, and add when you are pretty certain when this is not the case?

OK - Thanks for the clarification. I don't actually get why you wouldn't publicize it... it's just what it is, isn't it?

Did you see the news about China ranking steem as the second 'best' crypto?

https://www.ccn.com/china-ranks-ethereum-as-the-worlds-best-blockchain-network-bitcoin-at-13/

It might explain the recent little upboost.

I suppose, the data is there for all with access.

It goes like this: look for account not supporting witness, look at the content (usually 'average' at best), look at the voters of that content, check ownership of (usually alt account), remove witness.

Looking at the chart (mine that is!), I see action ahead for STEEM, and not so much for SBD. Are they finally doing what 'we' want and expect?

i had share with more of witness but i don not know how this work ?

Wait is a vote a 'life vote', good until changed? Interesting complication for future , I hadn't really thought about that aspect....

The answer is yes. And remember a witness vote is based on SP as well.

By the way, I just gave you and @paulag my vote! We need real communities here, and the whale selfvoter witnesses need to get unvoted!

Totally agree, I wrote about self voting circle jerking whakes this week.

This overall analysis shows me that most of the biggest accounts dont give a damn about the little uns neither by engagement or anything else and that theyre only here to earn as much cash as possible.

Pretty interesting to know, a part from the witness voting, this shows again, how small the power of minnows currently is. We need at least another million of minnows to create some power to overthrow some of the "selfish" whales and orcas...

this shows again, how small the power of minnows currently is.

To a fair extent yes. All the inactive minnow VESTS combined, 950,000+ accounts have less 'say' than the 86 inactive orcas and a pod of dolphins :)

Indeed, that's what I meant, another million minnows would shake things up pretty bad!

@pele23 You know what I just realized, as I was trying to be positive about it and think what I could do? When I invite friends to join I could offer them to allow me to proxy for them, so the work I put in finding witnesses I like would be multiplied. And of course let them know that once they get comfortable on here they can and should remove me as proxy and add anyone they really like! That might also ripple out, and they too could help the people they introduce, so we can start the chain of non-complicated positive political action :)

That is indeed a very good idea! You should advertise that!

I'm not sure what to make of this Asher, it is great info though. I understand your point about alt accounts holding back, but this is actually more discouraging if true.. In other words, its "dry powder" they don't need to get their agenda accomplished... If push came to shove, then that dry powder is always available to be used to thwart any real change.

I'm not being negative, frankly I figure there is only one way to wrest control (and that is through the development of a "sell" environment that shifts the ownership by exit from the top)... So did I draw the right conclusion about the people not voting being the same ones that are likely to want to keep status quo? ie... dry powder?

Great numbers and something to ponder, as I think there is even more gold in your analysis than I discussed!

As @aggroed mentioned, it seems a some of the powder (with regards to witness voting, and not necessarily content) is owned by Steemit staff. We have no idea how much.

There are however some larger accounts who are voting on content, who don't cast witness votes, and it's these that are probably more interesting. As suggested in the post, I feel this is an attempt to stay in the shadows, and not show you are tied to a Witness. Basically so you can self-vote away.

Cheers for dropping in on a stats post, I know some of these aren't everyone's cup of tea. As you can see by the rewards though, these are what fuel the prizes and delegations to others.

Yes I see that about the stats post... I like looking at the stats, I just never really took the time to follow it... Mainly because it seems like I always had things to do, but I'm trying to find some time as I evaluate things a little deeper! Thanks for the explanation, and again for digging out some interesting nuggets. :)

i guess it is confusing to vote... there isn't like a place where you can go see everyone's "platform", and even if you did, one might not understand it all anyways. i pretty much vote for guys/gals that seem sensible/interesting to me... i'm a typical american voter; superficial !! (-:

Yeah, I hear you.

At this location, you have the full list, and in some cases (not ours sadly as yet @steemcommunity) you can click the link that looks like a chain to a recent witness post that should explain what their mission is.

https://steemian.info/witnesses

Cheers!

ooh, nice, never seen that info page, ty

Unfortunately, this makes it seem like it truly does not matter if we minnows vote or not . I've voted for a couple as i come across people and get to know them, as I take it seriously to give my power/money/attention to any body or business. But this makes it pretty disheartening

I didn't wish to convey that message in words, and let the reader decide.

However, the data does suggest that it will take a huge number of minnow votes to have the same effect as just a couple of larger accounts.

I guess it's not any more disheartening than regular life haha. We all have our little bit and we can affect change in others and we do have power. I havn't shopped at Wal Mart in 14 years, and in a way it doesn't really matter, but many of my friends and family don't know either and I think of the money we redirect to other smaller businesses as the bigger win than the negative we do to Wal Mart. And, in crypto in general, its about currency being used to trade with others, and give/receive value in micro economies. So even here, I can feel the changes from when I first came on and felt bummed about the large accounts/ bid bot sbd/sp siphon, and now that I focus my attention on people I value and can work with.

The history of the world is a continuous david/goliath rerun lol We can spend our time 'fighting' giants or we can find space away from them, and use our energy to build. Or a little of both haha ;)

Also, for what its worth, I have been following you for a min, and although I don't catch many of your posts in my feed (timing I guess) you seem like a solid human, so I'll pull the trigger and throw you my tiny bone haha. Is it the @steemcommunity account that I put in?
Not this one correct?

You got it, thank you!

I can feel the changes from when I first came on and felt bummed about the large accounts/ bid bot sbd/sp siphon, and now that I focus my attention on people I value and can work with.

I hear this from a few few of the accounts that have join during the past 6 months. Those post values set such unrealistic expectations, it's tough not to feel disheartened until you gain more understanding of what's happening.

Building up your community of contacts is the best approach I think, it's a slow road, but the right route.

Cheers!

we should make a campaign for minnows to value steem witnesses, right?

Still majority of the minnows lack knowledge. That's a fact.

I agree.

There are always posts suggesting to support witnesses, but as we know, not everyone can view all content - and so a lot of these are missed.

Feel free to check out my witness project if you get the chance. Cheers

https://steemit.com/witness-category/@steemcommunity/introducing-steemcommunity-a-witness-project-by-abh12345-and-paulag

I will, checkit it out now.

pretty cool analysis. Interesting to see who has the power and if they are/aren't using it. I wonder if there is a better solution for an equal distribution of power, or whether that is something we want at all. Humans are corruptible so incentivize something and you are likley to get skewed results. Cool to see, good work.

tip!

As far as distribution, it's all said and done here I think.

I replied to @crokkon with regards to EOS, who seem to be starting out with a different approach as so to try to avoid this huge gap in wealth.

Thanks for the tip!

Aaaaaand you just got my vote.

Voting really needs to be front and center then if the numbers are so slim. May be necessary to make voting mandatory some how, but that would very likely harm the whales who are jerking each other.

DPOS has advantages in some area, but this is one of the major negatives I feel. Voting needs to be either made easier or mandatory to get more to do it.

Thank you very much :)

There a certainly a few changes that would make thinks fairer. A list of all witnesses on the voting page would be a start.

Mandatory could be a bit trickier.

There will be some witness chat here in around 15 minutes:

https://steemit.com/witness/@shadowspub/everyone-is-welcome-to-the-witness-chat-on-saturday-in-the-steemit-ramble-discord

https://discord.gg/hzhzWxw

I still have some general confusion of the purpose and point of voting for witnesses. (Picking one seems hard enough and it looks like I can vote for as many as 40?) I wonder if many new and even older users are confused as I am. I guess the good thing I can take from this post is that me not voting currently doesn't really matter because of how insignificant my VESTS would be towards electing somebody different.

You can vote for 30. And yes, a minnows vote is only of small consequence, but collectively they do matter.

My witness, which would love your support, is @steemcommunity. You can read about our project here: https://steemit.com/witness-category/@steemcommunity/introducing-steemcommunity-a-witness-project-by-abh12345-and-paulag

Thanks for your comments :)

Again, 'steemit', 'misterdelegation', 'steem', and 'ned' have been removed, and the following data is of the accounts not voting for witness directly, or via proxy.

@freedom is rumoured to be a @ned throw away account. It is quite the King/Queen maker in the top 20 witness category.

What? I thought it's the Steem Illuminati where the supported Witnesses use to control the tides. /s

'Rumored'

This account is delegating something like 75% of their stake to bid-bots.

So basically, 90% self-voting with 6,500,000 SP.

Naa, not @ned.

Very interesting, although not totally surprising.

The 12 whales who aren't witness voting, are they still active on the platform?

I guess it is up to no. 38 on this list ?

https://mysteemitfriends.online/witnessvoting.php

That list is a little confusing.

For my analysis, 500,000 SP + is a whale. So 36 and up on this list.

https://mysteemitfriends.online/ownSP.php

12 of those, minus the 4 at the top have 0 votes cast for a witness.

Some are delegating, some are staff, some are mysteries.

can i get get this broken down into 3 lists please? :D

Define active? Posting, not really, probably not ever for most.

But with an investment of 2/3/4 million, i'd certainly be actively checking in on the 'sub management' levels :)

Not necessarily. Many (online) investors do not care about 30-40%, especially not in the crypto space.

Additionally, we would have to check when they acquired their stake. Their investment may be much lower than $1m. Riding it out until one year after SMT launch is definitely smart and can happen without any form of micromanaging or short term ROI even.

Some may even not be too keen on becoming “the next freedom”.

Especially not if they bought at $0.07-0.2.

As far as content creation and voting/curation, I can see what you mean.

But I would expect most med/high stakeholders to show interest in the node owners and people who can force changes which can massively impact direction, and thus their investment.

Put me on the list for 'the next freedom', cheers :D

There is no need for them to show interest yet, that because of two main reasons:

The market is still not too dependent on more traditional evaluation principles. Cryptoes itself have not gone mainstream yet and a larger userbase still means massive value growth. Remember that most tech IPOs have happened based on years of negative numbers but massive user growth. Some of those companies did not even make a profit when going public yet became member of the elusive most valuable companies. Thus as long as Steem somehow follows the market’s average performance it is fine.

The second reason would be the large stake held by Steemit Inc. While that stake isn’t used to vote, it also is a sword of Damocles at the same time. Imagine governance doesn’t approve of SMT implementation? What happens with that stake? What happens to the value of Steem? Did Steemit Inc just waste two years doing nothing with any return? Additionally, so far, they are the only ones capable to deliver a HF (knowledge level based).

As long as those two elements are the status quo it is ok for some of those larger stakeholders. If things change tho, expect their interest to be piqued.

Yeah I understand your points.

My angle is from a slightly frustrated newer witness, who is on the lookout for accounts interested in our approach.

https://steemit.com/witness-category/@steemcommunity/introducing-steemcommunity-a-witness-project-by-abh12345-and-paulag

Whilst some of the accounts not voting are likely Steemit owned, and passive investors waiting for the herd, I do see some accounts interacting with votes - these ones i'm a little confused by. It's a bit like taking out, but not putting in - especially when the votes are focused on few accounts, some of them witnesses.

Cheers for the perspective.

The amount of smaller accounts not voting for witness does not surprise me, what does surprise me is how many whales do not vote.... especially considering that there are not many whales on Steemit.

12 of 32(36 including 'staff') whales do not vote, and as a %, that's around 30%.

Over 95% of minnow or small accounts don't vote at all :/

Speaking as a very active minnow who has only been here four weeks as of this morning...I have only voted for a handful of witnesses so far, who I know are egalitarian/reform minded. I don't imagine I will vote for my full complement for some time yet. It seems to take awhile to learn who is who here, and which candidates stand for the things I consider important. In my case, it is not from a lack of caring or diligence, but merely from a lack of information and knowledge.

I understand. It's a reasonable learning curve here, and not obvious or clear as to who's doing what, and the values they hold.

I run a witness, and have tried to state in our initial post how we plan to go forward.

https://steemit.com/witness-category/@steemcommunity/introducing-steemcommunity-a-witness-project-by-abh12345-and-paulag

Thanks for your time.

I am greatly disturbed by the fact that the top accounts are not voting.

From a social standpoint, either people are unaware or they are simply disengaged from the community.

From a materialistic stand point, it's like the top 1000 literally don't care about protecting their investments.

Dumb either way.

Laziness, or something else afoot? :)

If they aren't voting for witnesses, but are voting for a small set of accounts - what does that tell you?

Circle jerks. Have a number of those on my list.

These are very educational post, I feel that I actually learn a little bit from them. Your post is good, and then there are all those intelligent comments that make me think also. I think that the few groups I am following and a part of have the right idea, engage, get witness votes taken care of, and vote each others content, and help each other grow, that way when we reach dolphin status, our witnesses that we brought along with us will have a very very real say in what goes on. We as redfish moving into minnow status (yes i made it people), then into our dolphin level we will make a difference, witness engagement levels is going to be interesting to see next year at this time, growth may be slow, but we do grow.

Yes I've taken the same path, up to Dolphin - only made a few small buy-ins and just been creating and engaging for a year solid now.

I'm hoping engagement will rise, and more people will take on board the community/pay-it-forward mentality, We can hope!

Hey @abh12345
Thanks for contributing on Utopian.
We’re already looking forward to your next contribution!

Contributing on Utopian
Learn how to contribute on our website or by watching this tutorial on Youtube.

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

How many account holders don't even realise that witnesses exist? Is there any way to determine this?

you want me to write a script that reads the minds of everyone holding a Steem account? I'll get back to you on that one! haha :D :D

I know lol. Sounds like a silly question, but worth a try. Never know, I might learn something new:)

Yes me too - telepathy! 😁

I meant to vote on this and comment the other day and have just now came back to it, great research @abh12345!

The results are fascinating, I imagine you were also surprised to see such low witness voting participation from the top 1000.

Resteeming to get the word out ;)

Thank you very much!

1000 from the top 2400 have no votes cast at all. That seems like a lot to me even if we account for the theories above regarding Steemit staff and investors waiting years down the line. How many Staff are there? And what are these investors waiting for?

I don't really buy those theories, and if I was to look at which of the 1000 accounts were casting and receiving votes then that may give some more clues. My suspicion is that this work would not be well received by some.

So we have a top 50 page and research that shows a huge drop off in votes when you have to start typing, and witnesses admitting to a low vote count and voting purposely for inactive witnesses.

It's tough going, but we are just starting out and admittedly don't have a razzle dazzle project to offer. Honestly and integrity, is that still worth something anymore? :D

Great analysis share with us, its great article for us. Thank you so much for another update for us.

its really informative....i learned something new from your every post

Thats pretty cool to know. This post is helpful and informative... I hope you have a wonderful day. God bless you..........

Thank you so much sir @abh12345 for share analysis of witness voting patterns. its really needed article for us.

Your informative posts teach me something new every day .. All your posts are informative and beautiful. I think I'll post such post in the future. You can support and do....

This is very a very important topic which we all need to be a part of . Witness voting maybe some don’t understand, this is simply voting your favorite witness and this helps in selecting the most active and top witnesses , voting witnesses helps in ranking. People need to understand this better .

Again, I got some new information and learned a lot from your post. Thank you so much for giving a nice informative post.

a bunch are steemit. They mostly dont vote witnesses.

How big is your bunch in VESTS, approximately?

Is there a place we can find this information, or is it a case of knowing the right people?

it's not a transparent list. Steemit doesn't publish all of the accounts they own and control.

Thanks for the info.

I wonder if I knocked out the accounts not engaging with votes on content, what the picture would look like then.

Now that seems like a challenge, Maybe pull data on the first 222 accounts created. How many are active, how many said nothing, how many have a ton of SP. If there is a secret list you would think it would be in the first few hundred accounts created.

Could be interesting, I suspect many of those accounts are mined. And that there is overlap of ownership.

I'll put it on the list, but today is Leagues day :0

League day first by all means. It was just a thought to see if there would be anything interesting, I mean a secret list of accounts would not necessarily have to of been created early. But when people mention secret list, well curiosity peaks up it's ugly nose.

interesting details you got in pretty nice analysis done by you :)

Hi @abh12345! You have received 0.1 SBD tip from @jasonshick!

Chck out this new post from @jasonshick: Click. Feel free to follow @jasonshick if you like it :)

Earn daily income on steem: @tipU distributes 100% profit + 60% curation rewards to all investors.

Excellent information

I think not voting is delegation of your votes to the rest of the voters. If the income you get from the platform or the investment you put in minuscule to you, then you probably will not have a strong opinion on how the platform is run.

Also, I was surprised by your statistics and that is always a sign that I learned something!

Hi Asher,
Thanks again for crunching this data for us.
You're a perpetual source of new information for people interested in the Steemit ecosystem like me and so many others.

Your post inspired me a project, I sent you a memo about it.
Could you please take a look ? Sorry to hijack your post like that.

And thanks for all your work !