You are viewing a single comment's thread from:

RE: The Trending-Page: Yes I see it too, low paying posts with MEGA self-upvoted comments inside. Shameful!

in #self-upvoting8 years ago (edited)

For anyone interested, those numbers come from steemdata.com, using a small ruby wrapper I wrote.

Total votes in the last 30 days:

[1] pry(main)> AccountOperation.type('vote').where(voter: 'fyrstikken', :timestamp.gt => 30.days.ago).count
=> 70365

Total all-time upvotes:

[4] pry(main)> AccountOperation.type('vote').where(voter: 'fyrstikken', :weight.gt => 0).count
=> 163603

Total all-time upvotes, unique accounts:

[5] pry(main)> AccountOperation.type('vote').where(voter: 'fyrstikken', :weight.gt => 0).distinct('account').size
=> 6205