This analysis is an attempt to uncover the amount of 'available' Steem Power that is there to potentially vote for Steemit.com based content. **Contents** General / Assumptions 1. Finding the active Steem Power 2. Removing 'dedicated' Steem Power 3. Further account exclusions 4. Summary 5. Tools used to gather data and compile report ## ----------------------- <center>  <sub><b>[pixabay source](https://pixabay.com/en/kitty-cat-hide-and-seek-kitty-cat-1785032/)</b></sub></center> --------------------- ## General / Assumptions ## Firstly, it should be stated that the account names that appear in the analysis **are free to do as they wish (within their delgators 'rules', if any) with their stake.** For this report, the following criteria has been used to gain a base set of data: **The total Steem Power (including delegated to) is the amount held by every account that has made at least 1 vote in the past 7 days.** The word 'available' is to be used to describe the amount of Steem Power (SP) that is available **for free** to vote on Steemit.com content. --------------------------- ## 1. Finding the active Steem Power ## The following query was use to list the active voters (voted at least once in the past 7 days) and their available Steem Power. 7 days was chosen as a guide for active voters, and removed accounts such as 'steemit'. If the date was changed assess the previous 31 days the total would be 99,101,480.61 with 'ned' owning 1.8 million of this total. ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in (select distinct voter from txvotes with (nolock) where timestamp > getdate()-7) ``` The total is: **93,242,469.69 Steem Power** (7 days) ------------------- ## 2 Removing 'dedicated' Steem Power ## This section is an attempt to remove the Steem Power that is 'assigned' to the various 'projects' on the Steem Blockchain. Let's start with the easy one. ### utopian-io ### ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('utopian-io') ``` Total SP: **3,870,935.88** This account has been excluded as votes are given for content produced outside of the steemit.com condenser. ------------ ### The 'd-apps' ### ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('dlive', 'dtube', 'dmania', 'dsound') ``` Total SP: **5,804,473.75** These accounts have been excluded as votes are given for content produced outside of the steemit.com condenser. --------------- ### Other popular blogging condensers ### ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('esteemapp', 'busy.pay', 'busy.org') ``` Total SP: **1,223,248.50** These accounts have been excluded as votes are given for content produced outside of the steemit.com condenser. ---------- ### The 'cleaners' ### ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('steemcleaners', 'spaminator', 'blacklist-a', 'guard') ``` Total SP: **2,832,872.82** These accounts have been excluded as they almost exclusively tackle spam/plagiarism with a negative vote. ----------- ### 'Self-service' ### ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('ranchorelaxo', 'haejin', 'starjuno') ``` Total SP: **1,417,692.13** These accounts have been excluded due to self-vote percentages above 90%. ------------- ### The Bid-bots (direct delegations) ### The list of accounts used in this query can be found here: https://hackmd.io/s/rygQEFZqG The syntax of the query below excludes this list for viewing ease. ``` select sum((cast(left(vesting_shares, len(vesting_shares)-6) as float)*490.009/1000000)+ (cast(left(received_vesting_shares, len(received_vesting_shares)-6) as float)*490.009/1000000)- (cast(left(delegated_vesting_shares, len(delegated_vesting_shares)-6) as float)*490.009/1000000)) from accounts with (nolock) where name in ('BOT LIST GOES HERE') ``` Total SP: **18,529,234.84** These accounts have been excluded due to the necessity to send a transfer amount for a vote. ------------------------- ### What is left available so far? ### Excluding the accounts in the set of queries above: Total Steem Power available: **59,551,529.90** The following Pie chart represents the figures above, which are also listed in the table below.   This is an initial attempt to display Steem Power that is both taken, and free for use on Steemit.com. However, the analyst would like to look at excluding more accounts and Steem Power to try and give a clearer picture of what Steem Power could actually be available. -------------------------- <br> ## 3. Further account exclusions ## There are additional 'pay for vote' services offered by 'randowhale', 'smartmarket', 'minnowbooster', and 'booster' that can access owned Steem Power (not delegated to these accounts) to provide a vote for content when a transfer is made to one of them. A true reflection of the scale of this is difficult as the owners of this Steem Power can also cast manual 'non-paid' votes when they wish. Therefore it could be argued that the following SP exclusion is unwarranted, and inaccurate. But let's have a look anyway.. A look into the Wallets of the aforementioned accounts shows a number of different payments out to accounts with various default memos. The following query represents a best guess at the memo used to send to accounts that have made their vested Steem Power available to be used in a 'pay for vote' system. ``` select distinct [to] from TxTransfers where [from] = 'minnowbooster' and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018') and (memo like ('%You withdrew%')) union select distinct [to] from TxTransfers where [from] = 'smartsteem' and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018') and memo like '%Automatic%' union select distinct [to] from TxTransfers where [from] = 'randowhale' and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018') and memo like '%[randowhale]%' union select distinct [to] from TxTransfers where [from] = 'booster' and timestamp between convert(date,'03/15/2018') and convert(date,'03/22/2018') and memo like '%Payment for%' ``` The memo's analysed are from the previous 7 days and the total Steem Power of the 1794 unique accounts returned is: Total SP: **6,096,223.49** Again, this is a best guess for purpose of this analysis. At least some of this Steem Power is being used to vote manually and for 'free'. ### A look at the top accounts left ### If we exclude the accounts in the first section (bid-bots, cleaners, etc) and the accounts in the previous section, who are the accounts left holding the most available Steem Power? And can we exclude any of these also? The following is a list of the 25 accounts that were not excluded during the analysis above. Notes are given on the decision to include/exclude their Steem Power or not.  ----------- ### **Fig 1:**  ### **Fig 2:**  ### From: http://www.steemreports.com/votes-graph ### --------------- ### And so, if we remove the Steem Power of the accounts with an 'N' in the list above, the total 'available' Steem Power is: ## 48,671,915.529 ## Following the additional removal of 'available' Steem Power as explained in this section, the chart now looks like this:  ###  With additional accounts removed totalling over 11 million Steem Power, there is still over half of the pool remaining. ------------------------- ## 4. Summary ## The amount of active, free and available Steem Power in this analysis sits at almost 50 million. Using https://www.steemnow.com/upvotecalc.html to test how much this vote is worth at 100%, and entering the maximum of 10 million SP, the figure returned is $1426.73. Multiply that by 5 (rounding 48,671,915.529 up) and this is **$7133.65** Multiply that by 10 (votes), and ignore the reduction in Steem Power each time for simplicity, and this totals **$71,336** There is virtually no accounting for 'high' self voting %'s or direct payment for votes in this analysis, and so one would assume the actual free Steem Power and the above figure is highly likely to be lower. Thanks for reading, the analyst is ~~not~~ looking forward to questions, but is keen on viewing future work by others in this area. --------------------- ## 5. Tools used to gather this data and compile report ## The data is sourced from SteemSQL - A [publicly available SQL database](https://steemit.com/steemit/@arcange/steemsql-com-a-public-sql-server-database-with-all-steemit-blockchain-data) 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. Some of the code used for these results is as follows: The charts used to present the data were produced using MS Excel. <sub>This data was compiled on the 22nd March 2018 at 6pm (UCT)</sub> --------------------- <br> Thanks Asher @abh12345 <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@abh12345/how-much-available-sp-is-there-for-steemit-com-content">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | abh12345 | ||||||
---|---|---|---|---|---|---|---|
permlink | how-much-available-sp-is-there-for-steemit-com-content | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":54517947,"name":"steem","full_name":"steemit/steem","html_url":"https://github.com/steemit/steem","fork":false,"owner":{"login":"steemit"}},"pullRequests":[],"platform":"github","type":"analysis","tags":["utopian-io","steemit","steempower","bidbot","payforvote"],"users":["abh12345"],"links":["https://pixabay.com/en/kitty-cat-hide-and-seek-kitty-cat-1785032/","https://hackmd.io/s/rygQEFZqG","http://www.steemreports.com/votes-graph","https://www.steemnow.com/upvotecalc.html","https://steemit.com/steemit/@arcange/steemsql-com-a-public-sql-server-database-with-all-steemit-blockchain-data","https://utopian.io/utopian-io/@abh12345/how-much-available-sp-is-there-for-steemit-com-content"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1521759470/igqzymad8q4jdgds4aee.jpg","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753323/r8qgdik15xnqw70c6xpb.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521753333/f8n3kxt7v2ccze5kvw7o.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756825/kdgytkhp4z86m9uxuted.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521755750/tzutkpte8topzuwzy2hf.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521756591/ax3vah9bu17macp3wswz.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757725/fkr3i6mifsiyeqxvdpdo.png","https://res.cloudinary.com/hpiynhbhq/image/upload/v1521757764/ziwxgiheb7qrwe6d8osm.png"],"moderator":{"account":"crokkon","time":"2018-03-23T07:39:25.466Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes itβs straight to the point"},{"score":5,"selected":false,"value":"Need more description "},{"score":0,"selected":false,"value":"Not too descriptive"}],"question":"Is the project description formal?"},{"selected":0,"answers":[{"score":20,"selected":true,"value":"Yes"},{"score":10,"selected":false,"value":"A few mistakes"},{"score":0,"selected":false,"value":"It's pretty bad"}],"question":"Is the language / grammar correct?"},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes, it was explained well why the analysis was created"},{"score":0,"selected":false,"value":"No, it is not"}],"question":"Were the reasons for creating the analysis explained enough?"},{"selected":0,"answers":[{"score":20,"selected":true,"value":"No, it is a new analysis"},{"score":12,"selected":false,"value":"Yes but the data are well processed and presented."},{"score":4,"selected":false,"value":"Yes, it is a recurring analysis with different time period"}],"question":"Is it a recurring analysis?"},{"selected":0,"answers":[{"score":10,"selected":true,"value":"Yes, both tools and scripts were included"},{"score":5,"selected":false,"value":"No, the query script was not included in the contribution."},{"score":0,"selected":false,"value":"No"}],"question":"Where the tools and query scripts used included in the contribution?"}],"score":75}" | ||||||
created | 2018-03-22 23:00:12 | ||||||
last_update | 2019-01-07 06:42:33 | ||||||
depth | 0 | ||||||
children | 60 | ||||||
last_payout | 2018-03-29 23:00:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 59.117 HBD | ||||||
curator_payout_value | 23.262 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 11,524 | ||||||
author_reputation | 1,401,181,767,850,181 | ||||||
root_title | "How much 'available' SP is there for Steemit.com content?" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 46,037,430 | ||||||
net_rshares | 35,600,112,141,692 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berkah | 0 | 1,062,980,548 | 2% | ||
mrs.agsexplorer | 0 | 5,731,726,551 | 0.8% | ||
pnc | 0 | 6,960,336,846 | 2% | ||
teamsteem | 0 | 175,569,269,457 | 2% | ||
acidyo | 0 | 4,247,518,361,900 | 30% | ||
mammasitta | 0 | 26,175,940,385 | 5% | ||
hitmeasap | 0 | 7,145,752,015 | 59% | ||
jeffjagoe | 0 | 16,306,731,955 | 20% | ||
bitcoiner | 0 | 264,500,662 | 2% | ||
raphma | 0 | 2,051,215,451 | 100% | ||
investing | 0 | 294,268,150,035 | 24% | ||
steemitdude | 0 | 1,673,198,789 | 100% | ||
surfermarly | 0 | 80,082,739,107 | 50% | ||
shadowspub | 0 | 335,649,457 | 0.11% | ||
maarnio | 0 | 50,392,978,692 | 20% | ||
sambillingham | 0 | 33,982,564,026 | 25% | ||
sjennon | 0 | 20,193,138,624 | 10% | ||
lyndsaybowes | 0 | 11,879,252,492 | 15% | ||
mangos | 0 | 563,965,759,998 | 17% | ||
landmine | 0 | 143,832,214,864 | 100% | ||
oleg326756 | 0 | 204,497,532 | 0.22% | ||
eroche | 0 | 65,109,593,848 | 20% | ||
minersean | 0 | 650,637,612 | 100% | ||
madlenfox | 0 | 15,800,744,115 | 100% | ||
amariespeaks | 0 | 532,923,629 | 2.2% | ||
erikaflynn | 0 | 0 | 40% | ||
funkit | 0 | 33,197,915,306 | 100% | ||
kam.ila | 0 | 220,279,140,492 | 100% | ||
danielsaori | 0 | 17,416,949,168 | 20% | ||
connecteconomy | 0 | 26,186,610,385 | 50% | ||
freebornsociety | 0 | 455,415,185 | 1% | ||
miniature-tiger | 0 | 71,882,520,226 | 100% | ||
anomadsoul | 0 | 1,545,797,921,668 | 15% | ||
marxrab | 0 | 1,220,586,353 | 1.1% | ||
sames | 0 | 183,518,203 | 1.5% | ||
followyourjoy | 0 | 4,017,816,243 | 100% | ||
choogirl | 0 | 31,758,728,882 | 3% | ||
greenstar | 0 | 498,999,970 | 2% | ||
smasssh | 0 | 67,186,699,609 | 25% | ||
acromott | 0 | 138,211,932,765 | 100% | ||
scrooger | 0 | 273,654,672 | 0.16% | ||
stackin | 0 | 23,695,779,883 | 7% | ||
mys | 0 | 3,896,738,298 | 5% | ||
xervantes | 0 | 32,515,307,044 | 30% | ||
mercadosaway | 0 | 122,524,099 | 13% | ||
cecicastor | 0 | 2,536,243,682 | 30% | ||
enjar | 0 | 20,066,436,210 | 100% | ||
crimsonclad | 0 | 5,651,099,197 | 7% | ||
paulag | 0 | 11,001,705,469 | 50% | ||
howtostartablog | 0 | 1,632,435,753 | 2.2% | ||
dandesign86 | 0 | 10,794,701,322 | 15% | ||
blevley | 0 | 1,003,735,496 | 100% | ||
gungadin | 0 | 1,528,345,147 | 100% | ||
progressivechef | 0 | 62,313,789,127 | 50% | ||
hendrix22 | 0 | 24,844,514,743 | 10% | ||
fitinfun | 0 | 0 | 28% | ||
daiky69 | 0 | 1,788,730,449 | 100% | ||
opc | 0 | 371,741,441 | 70% | ||
karencarrens | 0 | 5,865,687,986 | 20% | ||
esdival | 0 | 613,176,100 | 100% | ||
blazing | 0 | 600,760,956 | 100% | ||
steemmeupscotty | 0 | 17,272,988,452 | 30% | ||
msp-lovebot | 0 | 17,178,986,755 | 5% | ||
sanu | 0 | 50,772,580 | 5% | ||
starving | 0 | 879,598,411 | 100% | ||
owner99 | 0 | 2,349,146,966 | 100% | ||
onlineprds | 0 | 3,287,629,918 | 18% | ||
steemitri | 0 | 13,936,481,200 | 13% | ||
muxxybot | 0 | 10,503,062,800 | 5% | ||
buggedout | 0 | 2,277,582,693 | 100% | ||
fabiyamada | 0 | 163,028,104 | 2% | ||
steemitph | 0 | 67,055,604,185 | 50% | ||
cryptokeepr | 0 | 21,452,237,092 | 15% | ||
theleapingkoala | 0 | 131,196,299 | 0.27% | ||
lpessin | 0 | 10,664,715,971 | 100% | ||
costanza | 0 | 105,120,087,438 | 60% | ||
make-a-whale | 0 | 101,050,791,948 | 15% | ||
bashadow | 0 | 4,615,877,341 | 20% | ||
niallon11 | 0 | 0 | 5% | ||
crokkon | 0 | 25,977,290,369 | 100% | ||
eyelashe | 0 | 670,597,058 | 100% | ||
tinypaleokitchen | 0 | 1,563,206,021 | 2% | ||
americanrabbit | 0 | 113,392,104 | 30% | ||
mariannewest | 0 | 23,654,160,482 | 50% | ||
cmegetrich | 0 | 462,197,357 | 100% | ||
eastmael | 0 | 45,899,359,112 | 50% | ||
melvadg | 0 | 2,513,349,959 | 100% | ||
synace | 0 | 17,693,876,482 | 100% | ||
osm0sis | 0 | 61,346,443,504 | 100% | ||
revisesociology | 0 | 19,131,206,580 | 40% | ||
superdavey | 0 | 52,954,966 | 0.02% | ||
asbonclz | 0 | 56,273,489,862 | 100% | ||
bxlphabet | 0 | 0 | 30% | ||
starboye | 0 | 814,060,498 | 100% | ||
thedarkhorse | 0 | 10,250,004,206 | 15% | ||
littleboy | 0 | 117,731,650,390 | 100% | ||
bruja | 0 | 614,640,622 | 100% | ||
qurator | 0 | 46,071,934,548 | 1.1% | ||
halcyondaze | 0 | 5,727,799,012 | 50% | ||
wandering | 0 | 648,068,756 | 100% | ||
rmz | 0 | 1,206,147,346 | 100% | ||
josediccus | 0 | 2,275,752,810 | 12% | ||
curationstreet | 0 | 521,908,607 | 5% | ||
che-shyr | 0 | 0 | 100% | ||
iqbalridha | 0 | 806,931,390 | 100% | ||
utopian-io | 0 | 26,071,356,447,694 | 17% | ||
mgood | 0 | 7,120,722,533 | 100% | ||
maverickinvictus | 0 | 7,741,755,097 | 10% | ||
rashbash | 0 | 123,858,347 | 2% | ||
wens | 0 | 13,267,951,538 | 100% | ||
skycae | 0 | 141,388,398 | 0.03% | ||
greenorange | 0 | 609,471,115 | 100% | ||
zapncrap | 0 | 10,600,323,196 | 50% | ||
raci | 0 | 18,213,847,719 | 100% | ||
steembasicincome | 0 | 8,897,031,878 | 2% | ||
sagor5828 | 0 | 2,613,590,357 | 100% | ||
ervinneb | 0 | 22,213,114,562 | 100% | ||
r00sj3 | 0 | 5,324,737,279 | 25% | ||
sco | 0 | 30,215,335,571 | 100% | ||
marksheppard | 0 | 40,323,658,043 | 100% | ||
dysfunctional | 0 | 16,080,276,097 | 100% | ||
monie | 0 | 603,119,989 | 100% | ||
beautifuldata | 0 | 906,378,487 | 30% | ||
gillianpearce | 0 | 1,616,217,388 | 10% | ||
anmeitheal | 0 | 5,476,049,384 | 50% | ||
cryptkeeper17 | 0 | 338,146,436 | 5% | ||
theuxyeti | 0 | 159,325,254 | 2% | ||
lynncoyle1 | 0 | 80,978,222 | 0.66% | ||
davemccoy | 0 | 892,237,478 | 2.2% | ||
deliberator | 0 | 84,646,075 | 2.2% | ||
soyrosa | 0 | 13,088,073,277 | 30% | ||
peppermint24 | 0 | 50,585,582 | 0.05% | ||
magpielover | 0 | 52,043,582 | 100% | ||
wisewoof | 0 | 1,098,410,846 | 5% | ||
wingchun | 0 | 51,439,953,675 | 100% | ||
terminallyill | 0 | 55,664,969 | 1.1% | ||
jlordc | 0 | 2,256,833,318 | 100% | ||
holger80 | 0 | 128,745,202,609 | 100% | ||
entrepreneur916 | 0 | 91,853,447 | 0.27% | ||
glenalbrethsen | 0 | 30,138,408,635 | 75% | ||
energyaddict22 | 0 | 90,302,549 | 0.33% | ||
therosepatch | 0 | 82,168,928 | 2.5% | ||
herbertholmes | 0 | 3,708,532,002 | 100% | ||
east.autovote | 0 | 4,192,398,013 | 100% | ||
ilovepoorpeople | 0 | 858,722,345 | 100% | ||
kid1412 | 0 | 500,852,419 | 100% | ||
beeyou | 0 | 11,338,225,676 | 100% | ||
passive | 0 | 41,347,070,414 | 100% | ||
simplymike | 0 | 4,405,241,830 | 14% | ||
farisi | 0 | 627,665,986 | 75% | ||
wilfredn | 0 | 4,547,715,215 | 100% | ||
irinatsvetkovva | 0 | 5,634,537,088 | 100% | ||
alimuddin97 | 0 | 73,486,463 | 2.5% | ||
dshelton32 | 0 | 25,157,895,034 | 100% | ||
zcool | 0 | 224,151,367 | 10% | ||
blogiwank | 0 | 55,096,655 | 10% | ||
wolfhart | 0 | 4,473,367,694 | 25% | ||
cicca | 0 | 165,511,531 | 100% | ||
gadrian | 0 | 8,189,833,550 | 100% | ||
zea | 0 | 936,980,458 | 100% | ||
unleashpower | 0 | 716,341,427 | 0.66% | ||
wizardave | 0 | 1,376,852,647 | 100% | ||
mariqyes | 0 | 236,565,373 | 100% | ||
picsofcosplay | 0 | 536,564,727 | 100% | ||
hesaid | 0 | 260,220,452 | 50% | ||
pasnobodyyee | 0 | 596,920,584 | 100% | ||
we-are | 0 | 0 | 10.7% | ||
we-are-one | 0 | 0 | 85% | ||
profanereviews | 0 | 74,832,663 | 1.25% | ||
finforum.net | 0 | 0 | 100% | ||
qwix | 0 | 531,346,732 | 100% | ||
friendsofgondor | 0 | 22,006,186,790 | 22% | ||
lightshield | 0 | 149,987,433 | 100% | ||
doctor-cog-diss | 0 | 1,665,181,695 | 100% | ||
clauxklein | 0 | 499,218,767 | 100% | ||
j4zz | 0 | 612,330,416 | 100% | ||
asm3 | 0 | 472,306,281 | 100% | ||
smotradoc | 0 | 0 | 100% | ||
sergiusgreat | 0 | 0 | 100% | ||
jemissongordon | 0 | 0 | 100% | ||
annetlitvin | 0 | 0 | 100% | ||
natalinatali | 0 | 0 | 100% | ||
dja | 0 | 88,807,600 | 100% | ||
mahfuzzaman | 0 | 548,154,498 | 100% | ||
lana1970 | 0 | 0 | 100% | ||
igorik | 0 | 0 | 100% | ||
trovimov | 0 | 0 | 100% | ||
olshama88 | 0 | 0 | 100% | ||
shanysevoy61 | 0 | 0 | 100% | ||
valentinapetrova | 0 | 0 | 100% | ||
billycrou | 0 | 0 | 100% | ||
pyroxenemogul | 0 | 0 | 100% | ||
windtwitter | 0 | 0 | 100% | ||
habitroof | 0 | 0 | 100% | ||
potatoloosen | 0 | 0 | 100% | ||
putridbrecon | 0 | 0 | 100% | ||
annasokolova955 | 0 | 0 | 100% | ||
svetatamova | 0 | 0 | 100% | ||
gamer86 | 0 | 0 | 100% | ||
kernovanatali | 0 | 0 | 100% | ||
semirovaalinka | 0 | 0 | 100% | ||
antonerganov | 0 | 0 | 100% | ||
nikolay.suhoruk | 0 | 0 | 100% | ||
dividehints | 0 | 0 | 100% | ||
bibslivered | 0 | 0 | 100% | ||
shamrockshaggy | 0 | 0 | 100% | ||
cityscapeleaf | 0 | 0 | 100% | ||
cootroach | 0 | 0 | 100% | ||
cogsenchant | 0 | 0 | 100% | ||
partialbullhorn | 0 | 0 | 100% | ||
mothersmerlin | 0 | 0 | 100% | ||
obstinacyveggie | 0 | 0 | 100% | ||
feettool | 0 | 0 | 100% | ||
goringdriver | 0 | 0 | 100% | ||
medaltrot | 0 | 0 | 100% | ||
moaningfurther | 0 | 0 | 100% | ||
unlockrichard | 0 | 0 | 100% | ||
muddygrey | 0 | 0 | 100% | ||
goldbeastly | 0 | 0 | 100% | ||
maillithium | 0 | 0 | 100% | ||
marcatounique | 0 | 0 | 100% | ||
doorpedal | 0 | 0 | 100% | ||
stewekroli | 0 | 0 | 100% | ||
ibogosov | 0 | 0 | 100% | ||
dfruit | 0 | 0 | 10% | ||
moskalenkoalexey | 0 | 0 | 100% | ||
lambdaethanol | 0 | 0 | 100% | ||
chokingsqueak | 0 | 0 | 100% | ||
fizzyreadymade | 0 | 0 | 100% | ||
shockingextoll | 0 | 0 | 100% | ||
cheesesguns | 0 | 0 | 100% | ||
sodgelatin | 0 | 0 | 100% | ||
trimminiature | 0 | 0 | 100% | ||
undaeabs | 0 | 0 | 100% | ||
elitestrake | 0 | 0 | 100% | ||
polfilds | 0 | 0 | 100% | ||
etanuelch | 0 | 0 | 100% | ||
uebsterlesli | 0 | 0 | 100% | ||
devidrays | 0 | 0 | 100% | ||
evgeniy.pavlenko | 0 | 0 | 100% | ||
aprokopenko1990 | 0 | 0 | 100% | ||
ismirnov88 | 0 | 0 | 100% | ||
zelc | 0 | 0 | 100% | ||
sonatapoodle | 0 | 0 | 100% | ||
drunksums | 0 | 0 | 100% | ||
screechingchothy | 0 | 0 | 100% | ||
lettersacrobatic | 0 | 0 | 100% | ||
waggerweapon | 0 | 0 | 100% | ||
bangersmippery | 0 | 0 | 100% | ||
inningreactivity | 0 | 0 | 100% | ||
dramaticsphene | 0 | 0 | 100% | ||
anxiousupdates | 0 | 0 | 100% | ||
mightyimmune | 0 | 0 | 100% | ||
woldsfiver | 0 | 0 | 100% | ||
mouthjaundice | 0 | 0 | 100% | ||
prickholing | 0 | 0 | 100% | ||
knaveinvalid | 0 | 0 | 100% | ||
warningapple | 0 | 0 | 100% | ||
ergotverdant | 0 | 0 | 100% | ||
dirconnect | 0 | 0 | 100% | ||
rozabeer | 0 | 0 | 100% | ||
charlimr | 0 | 0 | 100% | ||
vodolei.ogonb | 0 | 0 | 100% | ||
lico.ryka | 0 | 0 | 100% | ||
stil1il4up | 0 | 0 | 100% | ||
atogsersise | 0 | 0 | 100% | ||
lawcameraman | 0 | 0 | 100% | ||
otherwiseestates | 0 | 0 | 100% | ||
belliedas | 0 | 0 | 100% | ||
blowfisheclogite | 0 | 0 | 100% | ||
malborooccur | 0 | 0 | 100% | ||
acceptremove | 0 | 0 | 100% | ||
loutmoaning | 0 | 0 | 100% | ||
monescevian | 0 | 0 | 100% | ||
perfectduster | 0 | 0 | 100% | ||
normachazard | 0 | 0 | 100% | ||
deadeastern | 0 | 0 | 100% | ||
analamuck | 0 | 0 | 100% | ||
beeseregister | 0 | 0 | 100% | ||
retroslamming | 0 | 0 | 100% | ||
banffvulcan | 0 | 0 | 100% | ||
geologisteiger | 0 | 0 | 100% | ||
dashingsensible | 0 | 0 | 100% | ||
patefund | 0 | 0 | 100% | ||
rocksyearning | 0 | 0 | 100% | ||
takingtruck | 0 | 0 | 100% | ||
starotter | 0 | 0 | 100% | ||
dayerlogistic | 0 | 0 | 100% | ||
sedimentagitated | 0 | 0 | 100% | ||
heenseahorse | 0 | 0 | 100% | ||
butanefossil | 0 | 0 | 100% | ||
caelumgoppers | 0 | 0 | 100% | ||
hodgkinamusing | 0 | 0 | 100% | ||
fawningheavy | 0 | 0 | 100% | ||
dyspcardrel | 0 | 0 | 100% | ||
ealverritsdisctu | 0 | 0 | 100% | ||
onitmukyta | 0 | 0 | 100% | ||
bulldoperser | 0 | 0 | 100% | ||
we-are-steemians | 0 | 0 | 5.29% |
I guess the pond keeps getting smaller and smaller for us fishes to swim around. To that final percentage I believe we still need to consider that even the good whales and dolphins selfvote some times (understandable) so perhaps a fair 10% less of that total amount must be used for whale self vote thus making it unavailable for the community. "Self service" XD my sides
author | anomadsoul |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t235811066z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:58:09 |
last_update | 2018-03-22 23:58:42 |
depth | 1 |
children | 1 |
last_payout | 2018-03-29 23:58:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 372 |
author_reputation | 1,681,171,138,068,684 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,044,496 |
net_rshares | 30,577,406,577 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 30,577,406,577 | 9% |
:D haha I had to give it some sort of title! And yeah you are right about taking more out for 'reasonable' self voting. 10% more and we are down to less than 50 cents a post :/
author | abh12345 |
---|---|
permlink | re-anomadsoul-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001406682z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:14:06 |
last_update | 2018-03-23 00:14:06 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:14:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,046,419 |
net_rshares | 0 |
Distributing justice is truly our most challenging problem. Competition, survival, rules of the game, competency are some of mixture already put in it.
author | bagindooo |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t004257018z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:42:42 |
last_update | 2018-03-23 00:42:42 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 00:42:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 97,115,803,368 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,049,841 |
net_rshares | 3,822,363,156 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 3,822,363,156 | 1% |
And that $0.530 is only if every remaining vote is used. A lot of people do not vote. Not sure why, but I have seen people that only vote 2 or 3 times a day, and sit at 100% vote power for multiple days, and not just new users either, minnows on up to whales. So as you said at "least 1 vote" in a seven day period. I think it is likely higher than that, but is certainly does not even come close to the real total number of votes available per day per account. Can you imagine the conniption fit the self serving whales would have if every non-self serving voter all voted for someone on a Tuesday, and used ten 100% powered votes. The reward pool is based on % after all. And just imagine all the smiles on the newusers, minnows, and dolphins that received those votes .
author | bashadow |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t042535520z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 04:25:27 |
last_update | 2018-03-23 04:25:27 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 04:25:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 774 |
author_reputation | 100,388,692,638,882 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,078,285 |
net_rshares | 17,202,206,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,202,206,311 | 5% |
Perhaps my simple mind is knowledgeable enough to understand the graphs, for Fig. 1 and 2. If I find this interesting, imagine Mello's reaction (teammate). He will be looking at those SQL queries with supreme delight. It's another language to me Asher, but I understand the gist of your analysis. Thank you for sharing.
author | beeyou |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t233449298z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:34:48 |
last_update | 2018-03-22 23:34:48 |
depth | 1 |
children | 1 |
last_payout | 2018-03-29 23:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 320 |
author_reputation | 6,318,116,736,784 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,041,743 |
net_rshares | 15,288,703,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 15,288,703,288 | 4% |
:) Thanks @beeyou! I tried to put some Pies in there to see, but yeah not one for the community engagers perhaps!
author | abh12345 |
---|---|
permlink | re-beeyou-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000047771z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["beeyou"],"app":"steemit/0.1"} |
created | 2018-03-23 00:00:48 |
last_update | 2018-03-23 00:00:48 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:00:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,044,821 |
net_rshares | 0 |
so much power in one post i wonder they all use it for each other
author | blazing |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t071831295z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 07:18:36 |
last_update | 2018-03-23 07:18:36 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 07:18:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 117,662,220,860,076 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,097,973 |
net_rshares | 0 |
.
author | crokkon |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t073929564z |
category | utopian-io |
json_metadata | "{"app": ""}" |
created | 2018-03-23 07:39:39 |
last_update | 2022-09-18 12:09:24 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 07:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,100,683 |
net_rshares | 7,645,425,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,645,425,027 | 2% |
.
author | crokkon |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t074355364z |
category | utopian-io |
json_metadata | "{"app": ""}" |
created | 2018-03-23 07:43:54 |
last_update | 2022-09-18 12:09:18 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 07:43:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,101,188 |
net_rshares | 17,200,634,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,200,634,203 | 5% |
Really
author | emonrahman |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t050151861z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 05:01:57 |
last_update | 2018-03-23 05:01:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 05:01:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 1,324,326,450,594 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,082,686 |
net_rshares | 9,027,545,998 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emonrahman | 0 | 9,027,545,998 | 100% |
Will be interesting to see in a year from now how this looks. I have a feeling that pie is going get even smaller for the little guy trying make it on his own. Community and other platform usage are very important these days to try and get ahead of the curve. It is a bit concerning the amount the bid bots total even more so when you think of the kind of growth they could have in a year from the sales and curation rewards. That really does not seem like much when you think of all the active users who post a few times a week or more. Mix in with everyone auto upvote and the like.
author | enjar |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t003514036z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:35:18 |
last_update | 2018-03-23 00:35:18 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 00:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 1,183,907,855,963,922 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,048,981 |
net_rshares | 17,202,206,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,202,206,311 | 5% |
Very well written article ! I really like the work you have put into this article :) I also should do something to use my SP, as sometimes I don't have the time to manually curate.
author | ervinneb |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231123544z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:11:24 |
last_update | 2018-03-22 23:11:24 |
depth | 1 |
children | 0 |
last_payout | 2018-03-29 23:11:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | 12,382,839,226,241 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,038,884 |
net_rshares | 15,288,703,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 15,288,703,288 | 4% |
the major big platform have to use power in a much greater way now
author | eyelashe |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t142921643z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 14:29:33 |
last_update | 2018-03-23 14:29:33 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 14:29:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 1,214,852,621,713 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,160,014 |
net_rshares | 0 |
So, at .5sbd available per post do you understand why i rail so hard against those voted to the trending page several times a week? Ten voters take ~30% of the reward pool and bestow it on their favorites each day, every day, day after day after day. And nobody cares. [Source](@statsmonkey)
author | freebornangel |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t005322612z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["@statsmonkey"],"app":"steemit/0.1"} |
created | 2018-03-23 00:53:00 |
last_update | 2018-03-23 00:53:00 |
depth | 1 |
children | 3 |
last_payout | 2018-03-30 00:53:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 292 |
author_reputation | 171,005,551,503,977 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,051,108 |
net_rshares | 21,580,078,332 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,644,726,312 | 2% | ||
freebornsociety | 0 | 13,935,352,020 | 28% |
Yes, but there is not really much we can do about it is there? Get paid for ranting/analysing it I guess?
author | abh12345 |
---|---|
permlink | re-freebornangel-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t095253182z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 09:52:51 |
last_update | 2018-03-23 09:52:51 |
depth | 2 |
children | 2 |
last_payout | 2018-03-30 09:52:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,118,130 |
net_rshares | 11,249,555,097 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornangel | 0 | 11,249,555,097 | 22% |
Doesnt look like we can do much else, they have no shame. Too many folks on the 'its your stake' bandwagon. And it is their stake. I just prefer a world where i dont get kicked by folks wrapped up in their impunity.
author | freebornangel |
---|---|
permlink | re-abh12345-re-freebornangel-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t140702139z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 14:06:39 |
last_update | 2018-03-23 14:06:39 |
depth | 3 |
children | 1 |
last_payout | 2018-03-30 14:06:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 171,005,551,503,977 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,155,838 |
net_rshares | 11,468,137,541 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 11,468,137,541 | 3% |
So basically most of us are competing for about $71,000.00 every day.
author | gduran |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232757693z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:28:00 |
last_update | 2018-03-22 23:28:00 |
depth | 1 |
children | 1 |
last_payout | 2018-03-29 23:28:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 58,010,811,372,625 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,907 |
net_rshares | 15,288,703,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 15,288,703,288 | 4% |
Something like that, perhaps even less when you throw in the impossible to gauge stuff too...
author | abh12345 |
---|---|
permlink | re-gduran-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000917340z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:09:18 |
last_update | 2018-03-23 00:09:18 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:09:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,045,896 |
net_rshares | 0 |
I'm not really sure what all this means @abh12345 but two things jump out at me. One is the size of SP held by bid bots. That's just plain depressing! 😢 The other thing I'm wondering about is what Figures 1 and 2 mean. For example, is Figure 2 a hub deliberately set up to feed yoo1900? And if so, do the other accounts in the hub take a cut?
author | gillianpearce |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231736518z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-22 23:17:39 |
last_update | 2018-03-22 23:17:39 |
depth | 1 |
children | 2 |
last_payout | 2018-03-29 23:17:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 351 |
author_reputation | 59,760,385,526,644 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,039,631 |
net_rshares | 17,199,791,199 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,199,791,199 | 5% |
Depressing indeed. And yes, you could say that about Figures 1 and 2 to some extent :)
author | abh12345 |
---|---|
permlink | re-gillianpearce-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000547921z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:05:48 |
last_update | 2018-03-23 00:05:48 |
depth | 2 |
children | 1 |
last_payout | 2018-03-30 00:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,045,439 |
net_rshares | 484,868,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gillianpearce | 0 | 484,868,889 | 3% |
Hmmm. This type of thing really highlights the downside of decentralisation for me. It's a nice idea but I'm beginning to wonder whether it can ever really be any different when humans and money are involved. And power of course. In the end it seems to come down to that. Maybe that would be the solution. Build a platform where power was consistently equalised. I bet that would have challenges all of it's own. Maybe it would be like living in a terminable committee meeting. Would be fun to see though. 😊 Maybe the true successes of the block chain will lie elsewhere entirely, outside the realms of "money". Ultimately the blockchain is only going to be as good as the humans who use it. Perhaps we're hoping for technology to do what can't be done. And until we change inside, nothing will change outside. And if we change inside we won't need the technology to do it for us! 😊 I am not necessarily including you in the "we" I talk of. It is just a general unfocused "we". 😁 Anyhoo . . . let me move on from my musings and respond to the other comments that have been made overnight . . . Wishing you a fun filled day @abh12345!
author | gillianpearce |
---|---|
permlink | re-abh12345-re-gillianpearce-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t081530414z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-03-23 08:15:33 |
last_update | 2018-03-23 08:15:33 |
depth | 3 |
children | 0 |
last_payout | 2018-03-30 08:15:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,165 |
author_reputation | 59,760,385,526,644 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,105,279 |
net_rshares | 0 |
Awesome work! Thanks for helping with my seemingly endless struggle to understand Steemit. I gotta say, although I understand why some might see it as disappointing, 64% is actually a much higher percentage than I expected. Also, thanks a ton for the step by step. Like I said before, I'm trying to gain as much knowledge about the platform as possible, and nothing helps more than insight from users such as yourself :)
author | herbertholmes |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t233109198z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:31:00 |
last_update | 2018-03-22 23:31:00 |
depth | 1 |
children | 0 |
last_payout | 2018-03-29 23:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 422 |
author_reputation | 2,799,689,471,843 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,041,270 |
net_rshares | 15,288,703,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 15,288,703,288 | 4% |
As more and more dApps are created it seems their slice of the pie will continue to shrink.
author | jeffjagoe |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t133055797z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 13:30:57 |
last_update | 2018-03-23 13:30:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 13:30:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 605,469,215,331,371 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,150,152 |
net_rshares | 19,113,562,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 19,113,562,568 | 5% |
Lol at "self-service" Also can you make an analysis on how many steemians actually read other peoples post? Is that doable? How many people are just relying on trail votes, etc. I've seen some posts with over 500+votes but with only 30 views. It would be interesting to see how many people took an effort in going someone elses post :)
author | jlordc |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232049000z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:20:54 |
last_update | 2018-03-22 23:20:54 |
depth | 1 |
children | 2 |
last_payout | 2018-03-29 23:20:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.045 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 149,979,503,281,370 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,047 |
net_rshares | 19,315,296,944 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,199,791,199 | 5% | ||
r00sj3 | 0 | 2,115,505,745 | 10% |
:D Views are hard to tally - they don't count across the front ends (busy/esteem/steem etc), and if i refresh this page, another view is added?!
author | abh12345 |
---|---|
permlink | re-jlordc-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t000408726z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:04:09 |
last_update | 2018-03-23 00:04:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,045,203 |
net_rshares | 0 |
+1
author | r00sj3 |
---|---|
permlink | re-jlordc-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t234103257z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:41:03 |
last_update | 2018-03-22 23:41:03 |
depth | 2 |
children | 0 |
last_payout | 2018-03-29 23:41:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 37,745,070,875,728 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,042,519 |
net_rshares | 3,822,175,822 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 3,822,175,822 | 1% |
>Thanks for reading, the analyst is not is looking forward to questions Well Asher, you should have tagged me in here somewhere and told me *not* to read it ;) I actually understood it haha although I skim past this kind of stuff*(select sum((cast(left(vesting_shares*), and skip to the explanation and analysis:) Geez, how are bid bots even allowed? I know there's really no one in charge, that's the beauty of it all, but I'm wondering if their purpose was a bit more altruistic in the beginning, or was it always a clever money making scheme masked in helping others? That's pretty harsh, I know, but I'm trying to make a point;) Also, I think *self service* should have a way bigger percentage ;) (yes, that's a joke!) Cheers! I guess this was the "monster post" you were referring to earlier!
author | lynncoyle1 |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t010255166z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 01:03:00 |
last_update | 2018-03-23 01:03:00 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 01:03:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 805 |
author_reputation | 19,836,520,086,359 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,052,393 |
net_rshares | 19,113,562,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 19,113,562,568 | 5% |
Hmm, this is actually quite depressing. And puts an even harsher light on those big accounts only serving themselves. Oh well. What is that going to look like if more users come onboard? Even less per post?
author | mariannewest |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t043530055z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-26 04:35:30 |
last_update | 2018-03-26 04:35:30 |
depth | 1 |
children | 1 |
last_payout | 2018-04-02 04:35:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 379,187,281,148,634 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,623,695 |
net_rshares | 7,263,380,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,263,380,748 | 2% |
Quite possibly yes... Check out @paulag's latest for further analysis.
author | abh12345 |
---|---|
permlink | re-mariannewest-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t090542072z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["paulag"],"app":"steemit/0.1"} |
created | 2018-03-26 09:05:39 |
last_update | 2018-03-26 09:05:39 |
depth | 2 |
children | 0 |
last_payout | 2018-04-02 09:05:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,657,153 |
net_rshares | 0 |
I am not surprised to see bidbots have a large chunk of the SP because of how many whales, dolphins and even minnows delegate to bidbot owners because of up to 95% earnings there. I used to think that bid bots are evil but in a way I change my thinking that there should be a healthy mix of content creators, curators and investors. Not everyone has the time to be in the community but the money they invest would make the platform sustainable. So do I condone bots, i do on a certain degree only because if you them as a crutch to earn then you are only deluding yourself because without other votes, without engaging the community and getting influence then you are just operating at a lost. A lot of the other high SP there are either upvoting a few of their circle of family, friends or selling their votes but there are some individuals who build communities and make it better. When I made my post on the voting behaviour using the new tool steemocean you clearly the number of votes they do. I am particularly surprised that major curation guilds like curie and OCD does not delegation when they do so much in raising the quality of the content here. Thank God they have whale benefactors that follow on their trail.
author | maverickinvictus |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t023935464z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 02:39:33 |
last_update | 2018-03-23 02:39:33 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 02:39:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,233 |
author_reputation | 49,891,081,291,888 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,065,035 |
net_rshares | 19,113,562,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 19,113,562,568 | 5% |
That is a great analysis. I get a very positive feeling from it - there are so many up-votes that one get receive. The somewhat disappointing aspect are the figures #1 and #2. If I understand them correctly, the circles represent whales with a lot of SP and the figures show who they up-vote the most. Is that correct? If correct then a bunch of whales have gotten together to help each other make a lot of money. The platform would benefit more if they spread their votes around to other people. Building up a strong "middle class" will ensure the continuity of the platform. What about ranchorelaxo? He has 1.3 million SP but only up-votes 1 person.
author | mgood |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001506586z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:15:00 |
last_update | 2018-03-23 00:15:00 |
depth | 1 |
children | 2 |
last_payout | 2018-03-30 00:15:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 657 |
author_reputation | 1,309,342,498,884 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,046,519 |
net_rshares | 11,466,616,848 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 11,466,616,848 | 3% |
Yes you are correct regarding F1 and F2: http://www.steemreports.com/account-votes/ - Votes graph. rancho and friend are there yes, and excluded :)
author | abh12345 |
---|---|
permlink | re-mgood-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001729152z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["http://www.steemreports.com/account-votes/"],"app":"steemit/0.1"} |
created | 2018-03-23 00:17:30 |
last_update | 2018-03-23 00:17:30 |
depth | 2 |
children | 1 |
last_payout | 2018-03-30 00:17:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,046,828 |
net_rshares | 7,165,790,397 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mgood | 0 | 7,165,790,397 | 100% |
Thanks for the understanding and all of the charts. It gives me a view of my own voting as well which is very illuminating.
author | mgood |
---|---|
permlink | re-abh12345-re-mgood-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t102856775z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 10:28:48 |
last_update | 2018-03-23 10:36:42 |
depth | 3 |
children | 0 |
last_payout | 2018-03-30 10:28:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 1,309,342,498,884 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,123,004 |
net_rshares | 0 |
What I learned today... Find a whale and offer to be slave forever for a good circle jerking. Sooo top-heavy around here. Also didn't realize Sweet still had massive SP. Is that still from Ned? Or has she just been powering up all the thank you sbd she got along the way?
author | mikepm74 |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t031328720z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 03:13:30 |
last_update | 2018-03-23 03:13:30 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 03:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 50,476,601,169,361 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,069,291 |
net_rshares | 17,202,206,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,202,206,311 | 5% |
so I have taken your figures and added a little. Below is the SBD and VEST payments claimed on the 1st March. Using http://www.steemdollar.com I have converted these values to STEEM. Based on this, the available STEEM is 72% of payment claims accepted. A lot higher than I expected . I did a report too and got a value very similar to your first chart above where you have 64% available I have 62% for organic votes.
author | paulag |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232554507z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"image":["https://steemitimages.com/DQmQXq9gedDTFmR38uS1WCywxvu3xjaaba8Vo9qDMyDoRBi/image.png"],"links":["http://www.steemdollar.com"],"app":"steemit/0.1"} |
created | 2018-03-22 23:25:51 |
last_update | 2018-03-22 23:32:03 |
depth | 1 |
children | 0 |
last_payout | 2018-03-29 23:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 509 |
author_reputation | 274,264,287,951,003 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,652 |
net_rshares | 44,873,857,014 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 34,399,582,399 | 10% | ||
lpessin | 0 | 10,474,274,615 | 100% |
This is great work! Would be good to put that against the number of posts created per week so you can see the average too. Or can I find that somewhere else?
author | r00sj3 |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232003259z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:20:03 |
last_update | 2018-03-22 23:20:03 |
depth | 1 |
children | 3 |
last_payout | 2018-03-29 23:20:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 37,745,070,875,728 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,039,932 |
net_rshares | 17,199,791,199 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,199,791,199 | 5% |
Thank you :) Posts last 7 days: 268,889 Comments last 7 days: 920413 Safely over a million items to comment on, and so 71,336 x 7 is $500k Spread that around all the posts and you have about 53 cents - bummer!
author | abh12345 |
---|---|
permlink | re-r00sj3-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232552576z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:25:51 |
last_update | 2018-03-22 23:25:51 |
depth | 2 |
children | 2 |
last_payout | 2018-03-29 23:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,651 |
net_rshares | 0 |
your post is doing well then ;) I think it would be fair to at some point split between the comments and the posts, but that would be worth another post! Thanks!! #analyticsftw
author | r00sj3 |
---|---|
permlink | re-abh12345-re-r00sj3-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232828099z |
category | utopian-io |
json_metadata | {"tags":["utopian-io","analyticsftw"],"app":"steemit/0.1"} |
created | 2018-03-22 23:28:30 |
last_update | 2018-03-22 23:28:30 |
depth | 3 |
children | 1 |
last_payout | 2018-03-29 23:28:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 37,745,070,875,728 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,965 |
net_rshares | 0 |
Sir, You sell the upvotes?
author | sagor5828 |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230630257z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:06:30 |
last_update | 2018-03-22 23:06:30 |
depth | 1 |
children | 6 |
last_payout | 2018-03-29 23:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 2,940,629,677,748 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,038,235 |
net_rshares | 0 |
hahaha No, I give them away :)
author | abh12345 |
---|---|
permlink | re-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231021629z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:10:21 |
last_update | 2018-03-22 23:10:21 |
depth | 2 |
children | 5 |
last_payout | 2018-03-29 23:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,038,749 |
net_rshares | 11,255,032,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lyndsaybowes | 0 | 1,827,577,306 | 2% | ||
maverickinvictus | 0 | 4,074,607,946 | 5% | ||
sagor5828 | 0 | 2,571,772,911 | 100% | ||
beeyou | 0 | 2,781,074,222 | 25% |
This post is above my brain cell power, but I will confirm that @abh12345 does indeed give away his upvotes. Along with his SP @sagor5828. What world is he living in, right?! ;)
author | beeyou |
---|---|
permlink | re-abh12345-re-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t232230138z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["abh12345","sagor5828"],"app":"steemit/0.1"} |
created | 2018-03-22 23:22:30 |
last_update | 2018-03-22 23:22:30 |
depth | 3 |
children | 1 |
last_payout | 2018-03-29 23:22:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 6,318,116,736,784 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,040,246 |
net_rshares | 7,644,351,644 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,644,351,644 | 2% |
Really?
author | sagor5828 |
---|---|
permlink | re-abh12345-re-sagor5828-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t231330450z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:13:30 |
last_update | 2018-03-22 23:13:30 |
depth | 3 |
children | 2 |
last_payout | 2018-03-29 23:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 2,940,629,677,748 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,039,143 |
net_rshares | 0 |
@broncnutz is one everyone circle... Bronc I wanna be you when I grow up! Should have seen this before that card :P
author | spiritualmax |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t234831206z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["broncnutz"],"app":"steemit/0.1"} |
created | 2018-03-22 23:48:30 |
last_update | 2018-03-22 23:48:30 |
depth | 1 |
children | 0 |
last_payout | 2018-03-29 23:48:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 115 |
author_reputation | 25,078,515,289,162 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,043,385 |
net_rshares | 17,199,791,199 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 17,199,791,199 | 5% |
if they use it for others only a small fraction percentage they could make this platform amazing
author | starboye |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t075650442z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 07:56:57 |
last_update | 2018-03-23 07:56:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 07:56:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 1,548,341,121,513 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,102,877 |
net_rshares | 0 |
Liked the pattern where votes flows no one would have came to know that interesting
author | starving |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t103419263z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 10:34:24 |
last_update | 2018-03-23 10:34:24 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 10:34:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 2,607,819,348,850 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,123,789 |
net_rshares | 0 |
Fabulous written about something special, great to see you article.
author | tetas08 |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230253799z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:02:57 |
last_update | 2018-03-22 23:12:42 |
depth | 1 |
children | 2 |
last_payout | 2018-03-29 23:02:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 351,599,705,020 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,037,804 |
net_rshares | -3,818,634,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | -3,818,634,806 | -1% |
Unrelated.
author | abh12345 |
---|---|
permlink | re-tetas08-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180322t230609971z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-22 23:06:09 |
last_update | 2018-03-22 23:06:09 |
depth | 2 |
children | 0 |
last_payout | 2018-03-29 23:06:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,038,199 |
net_rshares | 0 |
well now you've changed your comment!
author | abh12345 |
---|---|
permlink | re-tetas08-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t001521998z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 00:15:21 |
last_update | 2018-03-23 00:15:21 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 00:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,046,562 |
net_rshares | 0 |
The imbalance towards vote bots is actually higher then you can report due to the fact that regular users sometimes sit at 100% voting power for hours or even day or they votes down to 80%. Either way they are not casting their votes in the absolute most efficient manner like vote bots do. This means that the weight of the SP held in Vote Bots is used in a way that they are capturing even more of the total reward pool then an equal amount of SP held by real people.
author | thedarkhorse |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180325t174733064z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-25 17:47:30 |
last_update | 2018-03-25 17:47:30 |
depth | 1 |
children | 2 |
last_payout | 2018-04-01 17:47:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 470 |
author_reputation | 64,296,958,099,922 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,544,531 |
net_rshares | 7,263,380,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,263,380,748 | 2% |
Indeed. Check out @paulag's latest for further analysis.
author | abh12345 |
---|---|
permlink | re-thedarkhorse-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t090513784z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["paulag"],"app":"steemit/0.1"} |
created | 2018-03-26 09:05:12 |
last_update | 2018-03-26 09:05:12 |
depth | 2 |
children | 1 |
last_payout | 2018-04-02 09:05:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,657,090 |
net_rshares | 5,667,786,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thedarkhorse | 0 | 5,667,786,025 | 8% |
Just looked at it. Crazy numbers.
author | thedarkhorse |
---|---|
permlink | re-abh12345-re-thedarkhorse-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180326t143004014z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-26 14:30:03 |
last_update | 2018-03-26 14:30:03 |
depth | 3 |
children | 0 |
last_payout | 2018-04-02 14:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 64,296,958,099,922 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,706,401 |
net_rshares | 0 |
### Hey @abh12345 I am @utopian-io. I have just upvoted you! #### Achievements - WOW WOW WOW People loved what you did here. GREAT JOB! - Seems like you contribute quite often. AMAZING! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t143755077z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-03-23 14:37:57 |
last_update | 2018-03-23 14:37:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 14:37:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,063 |
author_reputation | 152,955,367,999,756 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,161,520 |
net_rshares | 7,645,425,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 7,645,425,027 | 2% |
only few gives to everyone out there even on average that is good i think it motivates a lot
author | wandering |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t122822007z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-23 12:28:27 |
last_update | 2018-03-23 12:28:27 |
depth | 1 |
children | 0 |
last_payout | 2018-03-30 12:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 702,148,075,192 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,140,192 |
net_rshares | 0 |
Thanks for the analysis @abh12345! You are a very powerful math and database wizard, indeed!!! 😜 I must be confused on something. + Where does the reward payouts come from? I thought those were the built in inflation factor of Steemit. + You don't actually spend your Steem Power to make a vote, you spend your Voting Power, which rebuilds all the time, so upvotes are basically free. + Example: My vote currently is worth about 1 penny. + When I upvote this post 1 penny is added to the Pending Payout. + Where did that penny come from? It didn't come out of my wallet... + I realize the answer may be in the FAQ. Perhaps I should go back and read it again... + NOPE I checked before posting this and it really doesn't explain it. ps a suggestion for your wizardry. Perhaps it's already been figured out and I missed the post, but it would be interesting to know... How much value leaves the platform daily?
author | wizardave |
---|---|
permlink | re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t144431413z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["abh12345"],"app":"steemit/0.1"} |
created | 2018-03-23 14:45:54 |
last_update | 2018-03-23 14:45:54 |
depth | 1 |
children | 1 |
last_payout | 2018-03-30 14:45:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 933 |
author_reputation | 8,924,945,173,015 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,162,905 |
net_rshares | 11,479,613,621 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 11,479,613,621 | 3% |
Hey :) I'm a level 1 mage at Math, and not much better with DBs. You are right that its Voting Power that is reduced, and Steem Power gives you the size of the vote. Inflation yes :) I think someone covers transfers out, maybe @arcange or @penguinpablo (they both do daily reports) Cheers!
author | abh12345 |
---|---|
permlink | re-wizardave-re-abh12345-how-much-available-sp-is-there-for-steemit-com-content-20180323t204515842z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["arcange","penguinpablo"],"app":"steemit/0.1"} |
created | 2018-03-23 20:45:15 |
last_update | 2018-03-23 20:45:15 |
depth | 2 |
children | 0 |
last_payout | 2018-03-30 20:45:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 294 |
author_reputation | 1,401,181,767,850,181 |
root_title | "How much 'available' SP is there for Steemit.com content?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 46,217,940 |
net_rshares | 0 |