## [Steemit Pending Curation Rewards](https://fdsteemtools.neocities.org/curation_flow.html) ### About [Pending Curation Rewards](https://fdsteemtools.neocities.org/curation_flow.html) Steemit Pending Curation Rewards is a single web-page tool that shows the potential *curation rewards* earned based on your upvotes.  With all the upvotes that are given to posts, curation rewards are earned. There were really good documents on calculation formula of curation rewards. * @YabapMatt has a [tool and a really explaining post](https://steemit.com/utopian-io/@yabapmatt/curation-reward-estimation-tool) for a single post curation estimation. This tool I used for verification of my calculations. * @miniature-tiger has a [great post](https://steemit.com/curation/@miniature-tiger/an-illustrated-guide-to-curation-from-the-simple-to-the-complex-with-real-examples-from-past-posts-part-1) on visually explaining the curation reward system. With the help of his tool, I had a deeper understanding and slightly differentiated @YabapMatt's formula to fit my code, giving exactly the same result. ### How to use Curation Flow? * Go to web-page https://fdsteemtools.neocities.org/curation_flow.html * Enter your name in the username section  * Press "Calculate" button  * You will see your curation reward pay-outs and the dates in the divs. ### Code Curation flow is using HTML and [steem.js](https://github.com/steemit/steem-js) API * Calculate the feed-price, this is used to convert SBD payments to steem. ``` // Get current feed price var feed; var the_voter; steem.api.getFeedHistory(function(err, result) { var feed_arr = result.current_median_history.base; feed = feed_arr.split(" ")[0]; }); ``` * Get all the posts the user has voted and eliminate the ones that are older than 7 days. ``` var aut = []; var perm = []; var post_date = []; // Get all the post data that user have upvoted steem.api.getAccountVotes(the_voter, function(err, result) { // Calculate the current time as UTC since post dates are in UTC var now = new Date(); var nowUtc = new Date(now.getTime() + (now.getTimezoneOffset() * 60000)); // Convert UTC date to timestamp var now_stamp = now.getTime(); var nowUtc_stamp = nowUtc.getTime(); // Put variable to check -7 days var limit = nowUtc_stamp - 24 * 60 * 60 * 1000 * 7 for (let i = 0; i < result.length; i++) { // convert post date to timestamp var ptime = Date.parse(result[i].time); post_date.push(ptime); // Disregard if it is a downvote or if the post is older than exactly 7 days if ((result[i].rshares > 0) && (ptime >= limit)) { // form the arrays with information of suitable posts aut.push((result[i].authorperm).split("/")[0]); perm.push((result[i].authorperm).split("/")[1]); } } get_content(aut, perm, limit); }); } ``` * Get the content of the posts that are upvoted ``` // This function forms the content array according to the voted posts function get_content(aut, per, limit) { var result_array = []; var count = 0; for (let i = 0; i < aut.length; i++) { // get the content for each author and permlink steem.api.getContent(aut[i], per[i], function(err, result) { var p_date = result.created; var p_date_stamp = Date.parse(p_date); // check if the post or comment is new < 7 days if (p_date_stamp > limit) { // if fresh, fill the arrays result_array.push(result); } // check if the async function got all the results // if OK, send results for calculation count++; if (count > aut.length - 1) { calculate(result_array); } }); } } ``` * Calculate the curation rewards ``` // function for calculation of curation rewards function calculate(result) { var votes = [] var sbd_pay = []; var ratio; var before; var now; var p_date; var p_date_parsed; var v_date; var v_date_parsed; var penalty; var sbd_arr; var sbd; var tot_share; var temp; var vote = []; var netshares = []; var author = []; var permlink = []; var postdate = []; for (let i = 0; i < result.length; i++) { before = 0; // get the active votes vote = result[i].active_votes; // sort the votes according to vote time vote.sort(compare); votes.push(vote); for (let j = 0; j < vote.length; j++) { tot_share = parseInt(result[i].net_rshares); now = before + parseInt(vote[j].rshares); // if the current total rshares is negative due to downvotes it must be equal to zero! if (now < 0) { now = 0; } // make the calculation when user is the voter if (vote[j].voter == the_voter) { // formula of curation reward calculation ratio = (Math.sqrt(now) - Math.sqrt(before)) / (Math.sqrt(tot_share)); p_date = result[i].created; p_date_parsed = Date.parse(p_date); v_date = vote[j].time; v_date_parsed = Date.parse(v_date); // calculate the ratio if the post is voted before 30 minutes penalty = (v_date_parsed - p_date_parsed) / (30 * 60 * 1000); if (penalty >= 1) { penalty = 1; } sbd_arr = result[i].pending_payout_value; sbd = sbd_arr.split(" ")[0]; // if the post is a total downvote, no pay-out if (parseInt(result[i].net_rshares) < 0) { sbd_pay.push(0); } // calculate the SP payment if (parseInt(result[i].net_rshares) >= 0) { sbd_pay.push((sbd * 0.25 * ratio * penalty) / feed); } } before = now; // no need for this, extra security! if (before < 0) { before = 0; } } // form the arrays netshares.push(parseInt(result[i].net_rshares));//this array is not used, just for check! author.push(result[i].author); var str = "https://steemit.com/@" + result[i].author + "/" + result[i].permlink; var lin = (result[i].permlink).substring(0, 70) + "......."; permlink.push(lin.link(str)); postdate.push(result[i].cashout_time); } // send all to final function to be written in DIV final(permlink, sbd_pay, postdate); } ``` It is the sqrt formula that calculates the curation rewards Ratio of reward ``` ratio = (Math.sqrt(now) - Math.sqrt(before)) / (Math.sqrt(tot_share));``` The penalty for voting before 30 mins ```penalty = (v_date_parsed - p_date_parsed) / (30 * 60 * 1000);``` The full code can be found [here](https://github.com/firedreamgames/steem_curation_flow/blob/master/curation_flow.html) ### Connect @FireDream - Steemit @firedream#3528 - Discord ### Links Curation flow tool : https://fdsteemtools.neocities.org/curation_flow.html GitHub: https://github.com/firedreamgames/steem_curation_flow ### Proof of work 
author | firedream | ||||||
---|---|---|---|---|---|---|---|
permlink | steemit-curation-flow | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":131712281,"name":"steem_curation_flow","full_name":"firedreamgames/steem_curation_flow","html_url":"https://github.com/firedreamgames/steem_curation_flow","fork":false,"owner":{"login":"firedreamgames"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemit","curation","steem-js","firedreamblog"],"users":["YabapMatt","yabapmatt","miniature-tiger","FireDream","firedream"],"links":["https://fdsteemtools.neocities.org/curation_flow.html","https://cdn.utopian.io/posts/8deb03bb301fc3ba15a0ca6e59a0667d5d04image.png","https://steemit.com/utopian-io/@yabapmatt/curation-reward-estimation-tool","https://steemit.com/curation/@miniature-tiger/an-illustrated-guide-to-curation-from-the-simple-to-the-complex-with-real-examples-from-past-posts-part-1","https://cdn.utopian.io/posts/28df2d3415942d513ed6a5432d88886da09fimage.png","https://cdn.utopian.io/posts/b20888d4de8cfb4306638415cdfd706c8b46image.png","https://github.com/steemit/steem-js","https://github.com/firedreamgames/steem_curation_flow/blob/master/curation_flow.html","https://cdn.utopian.io/posts/37d314e7aacd06d0fa6d2cdf52a572b05192image.png"],"image":["https://cdn.utopian.io/posts/8deb03bb301fc3ba15a0ca6e59a0667d5d04image.png","https://cdn.utopian.io/posts/28df2d3415942d513ed6a5432d88886da09fimage.png","https://cdn.utopian.io/posts/b20888d4de8cfb4306638415cdfd706c8b46image.png","https://cdn.utopian.io/posts/37d314e7aacd06d0fa6d2cdf52a572b05192image.png"],"moderator":{"account":"codingdefined","time":"2018-05-03T11:12:10.184Z","pending":false,"reviewed":true,"flagged":false},"config":{"questions":[{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"dev-1","answers":[{"answer":"The post is of very high quality.","answer_id":"dev-1-a-1","value":10},{"answer":"The post is of decent quality, but not spectacular in any way.","answer_id":"dev-1-a-2","value":7},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"dev-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"dev-1-a-4","value":0}]},{"question":"How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications?","question_id":"dev-2","answers":[{"answer":"This contribution adds high value and holds great significance for the project and/or open source ecosystem.","answer_id":"dev-2-a-1","value":35},{"answer":"This contribution adds significant value to the project and/or open source ecosystem. ","answer_id":"dev-2-a-2","value":23},{"answer":"This contribution adds some value to the project and/or open source ecosystem.","answer_id":"dev-2-a-3","value":12.5},{"answer":"This contribution hold no value and is insignificant in impact. ","answer_id":"dev-2-a-4","value":0}]},{"question":"How would you rate the total volume of work invested into this contribution?","question_id":"dev-3","answers":[{"answer":"This contribution appears to have demanded a lot of intensive work.","answer_id":"dev-3-a-1","value":20},{"answer":"This contribution appears to have required an average volume of work.","answer_id":"dev-3-a-2","value":14},{"answer":"This contribution shows some work done.","answer_id":"dev-3-a-3","value":6},{"answer":"This contribution shows no work done.","answer_id":"dev-3-a-4","value":0}]},{"question":"How would you rate the quality of the code submitted?","question_id":"dev-4","answers":[{"answer":"High - it follows all best practices. ","answer_id":"dev-4-a-1","value":20},{"answer":"Average - it follows most best practices.","answer_id":"dev-4-a-2","value":14},{"answer":"Low - it follows some best practices.","answer_id":"dev-4-a-3","value":6},{"answer":"Very low - it doesn't follow any best practices. ","answer_id":"dev-4-a-4","value":0}]},{"question":"How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?","question_id":"dev-5","answers":[{"answer":"High - a lot of research and specific knowledge was required.","answer_id":"dev-5-a-1","value":7.5},{"answer":"Average - some research and knowledge was required.","answer_id":"dev-5-a-2","value":5.25},{"answer":"Low - not much knowledge or skill were required.","answer_id":"dev-5-a-3","value":2.25},{"answer":"Insignificant - no knowledge or skills were necessary.","answer_id":"dev-5-a-4","value":0}]},{"question":"How would you rate the accuracy and readability of the commit messages?","question_id":"dev-6","answers":[{"answer":"High - they are concise, descriptive and consistent. ","answer_id":"dev-6-a-1","value":2.5},{"answer":"Average - they are mostly concise, descriptive and consistent. ","answer_id":"dev-6-a-2","value":2},{"answer":"Low - they could be more concise, descriptive or consistent.","answer_id":"dev-6-a-3","value":0.75},{"answer":"Very low - they aren't concise, descriptive or consistent at all.","answer_id":"dev-6-a-4","value":0}]},{"question":"How do you rate the quality of the comments in the code?","question_id":"dev-7","answers":[{"answer":"High - everything is well-commented and adds to the readability of the code. ","answer_id":"dev-7-a-1","value":5},{"answer":"Average - most of the code is commented and most if it adds to the readability of the code.","answer_id":"dev-7-a-2","value":3},{"answer":"Low - little of the code is commented, but it still adds to the readability.","answer_id":"dev-7-a-3","value":1.5},{"answer":"Very low - the added comments provide no value or are not present at all.","answer_id":"dev-7-a-4","value":0}]}]},"questions":{"voters":["flugschwein","codingdefined"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"flugschwein","influence":5},{"question_id":"dev-2","answer_id":"dev-2-a-1","user":"flugschwein","influence":5},{"question_id":"dev-3","answer_id":"dev-3-a-1","user":"flugschwein","influence":5},{"question_id":"dev-4","answer_id":"dev-4-a-2","user":"flugschwein","influence":5},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"flugschwein","influence":5},{"question_id":"dev-6","answer_id":"dev-6-a-3","user":"flugschwein","influence":5},{"question_id":"dev-7","answer_id":"dev-7-a-1","user":"flugschwein","influence":5},{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"codingdefined","influence":60},{"question_id":"dev-2","answer_id":"dev-2-a-3","user":"codingdefined","influence":60},{"question_id":"dev-3","answer_id":"dev-3-a-3","user":"codingdefined","influence":60},{"question_id":"dev-4","answer_id":"dev-4-a-4","user":"codingdefined","influence":60},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"codingdefined","influence":60},{"question_id":"dev-6","answer_id":"dev-6-a-4","user":"codingdefined","influence":60},{"question_id":"dev-7","answer_id":"dev-7-a-4","user":"codingdefined","influence":60}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":65,"voters":["flugschwein","codingdefined"]},{"question_id":"dev-2","answer_id":"dev-2-a-3","influence":60,"voters":["codingdefined"]},{"question_id":"dev-3","answer_id":"dev-3-a-3","influence":60,"voters":["codingdefined"]},{"question_id":"dev-4","answer_id":"dev-4-a-4","influence":60,"voters":["codingdefined"]},{"question_id":"dev-5","answer_id":"dev-5-a-2","influence":65,"voters":["flugschwein","codingdefined"]},{"question_id":"dev-6","answer_id":"dev-6-a-4","influence":60,"voters":["codingdefined"]},{"question_id":"dev-7","answer_id":"dev-7-a-4","influence":60,"voters":["codingdefined"]}]},"score":30.75,"total_influence":65,"staff_pick":null,"staff_pick_by":null}" | ||||||
created | 2018-05-01 13:38:21 | ||||||
last_update | 2018-05-03 14:43:45 | ||||||
depth | 0 | ||||||
children | 22 | ||||||
last_payout | 2018-05-08 13:38:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 86.961 HBD | ||||||
curator_payout_value | 25.373 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,655 | ||||||
author_reputation | 11,232,881,853,116 | ||||||
root_title | "Steemit Pending Curation Rewards" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,239,865 | ||||||
net_rshares | 22,078,428,433,341 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 2,190,992,002,566 | 50% | ||
transisto | 0 | 2,818,288,649,365 | 100% | ||
ipumba | 0 | 7,564,420,496 | 23.11% | ||
minersean | 0 | 390,778,939 | 50% | ||
dyancuex | 0 | 997,091,835 | 50% | ||
michelios | 0 | 53,785,933,646 | 30% | ||
tibra | 0 | 0 | 100% | ||
toninux | 0 | 553,299,723 | 50% | ||
jdc | 0 | 908,835,131 | 20% | ||
bargolis | 0 | 637,494,757 | 5% | ||
gktown | 0 | 92,479,415 | 0.54% | ||
resteemable | 0 | 626,850,869 | 1.09% | ||
helo | 0 | 28,934,021,010 | 100% | ||
ilyastarar | 0 | 24,421,911,322 | 50% | ||
flauwy | 0 | 1,515,989,997 | 10% | ||
mahdiyari | 0 | 10,053,767,334 | 10% | ||
drakos | 0 | 1,805,798,504,593 | 100% | ||
ronimm | 0 | 10,583,366,210 | 100% | ||
saksham | 0 | 442,082,978 | 37% | ||
steelrage | 0 | 614,996,664 | 100% | ||
simonluisi | 0 | 2,769,089,827 | 100% | ||
thinkkniht | 0 | 99,841,501 | 75% | ||
mikefrancis | 0 | 275,072,913 | 50% | ||
ewuoso | 0 | 8,744,503,041 | 100% | ||
untapentuoreja | 0 | 1,878,467,638 | 100% | ||
jfuenmayor96 | 0 | 2,445,061,064 | 50% | ||
instantania.cat | 0 | 1,518,448,692 | 50% | ||
harshallele | 0 | 5,042,354,446 | 50% | ||
jesdn16 | 0 | 2,553,303,383 | 100% | ||
xtramedium | 0 | 277,945,656 | 50% | ||
zulfikarkamui | 0 | 243,118,137 | 30% | ||
odibezeking | 0 | 217,185,036 | 100% | ||
enchantedspirit | 0 | 9,836,686,190 | 100% | ||
stoodkev | 0 | 20,238,362,715 | 10% | ||
biplob12 | 0 | 138,807,939 | 50% | ||
dakeshi | 0 | 3,295,657,477 | 50% | ||
luisrod | 0 | 116,014,491 | 15% | ||
ansonoxy | 0 | 1,750,813,906 | 100% | ||
eastmael | 0 | 33,398,394,431 | 100% | ||
jamesbarraclough | 0 | 516,151,429 | 100% | ||
smafey | 0 | 1,012,923,630 | 50% | ||
lauraesfeliz | 0 | 491,842,441 | 100% | ||
espoem | 0 | 29,529,186,710 | 40% | ||
yabapmatt | 0 | 1,196,602,203,603 | 100% | ||
gotgame | 0 | 7,258,445,569 | 100% | ||
risemultiversity | 0 | 7,068,288,643 | 100% | ||
techmojo | 0 | 2,573,779,846 | 50% | ||
jrawsthorne | 0 | 0 | 100% | ||
boyasyie | 0 | 10,368,007,185 | 30% | ||
isaganicabrales | 0 | 402,252,231 | 50% | ||
zulfan88 | 0 | 271,364,395 | 50% | ||
idlebright | 0 | 3,155,989,615 | 50% | ||
utopian-io | 0 | 13,297,027,069,479 | 9.22% | ||
steaknsteem | 0 | 2,297,914,309 | 50% | ||
saintjames | 0 | 1,716,123,309 | 100% | ||
moorkedi | 0 | 1,665,482,524 | 100% | ||
kowinnhtunn | 0 | 958,923,883 | 100% | ||
kimaben | 0 | 459,477,782 | 25% | ||
felipejoys | 0 | 203,591,582 | 100% | ||
kslo | 0 | 2,463,772,081 | 50% | ||
mrmaracucho | 0 | 556,233,051 | 100% | ||
hispeedimagins | 0 | 1,379,460,092 | 100% | ||
nathalie13 | 0 | 834,450,643 | 100% | ||
not-a-bird | 0 | 4,783,025,116 | 50% | ||
ali2star | 0 | 771,419,607 | 100% | ||
diezeldiddy | 0 | 7,517,946,681 | 47.15% | ||
adhew | 0 | 61,124,335 | 10% | ||
bitopia | 0 | 1,458,450,805 | 100% | ||
eleonardo | 0 | 203,270,386 | 10% | ||
jutdagut | 0 | 422,331,710 | 100% | ||
murad06 | 0 | 322,650,154 | 50% | ||
vampstakes | 0 | 613,784,313 | 100% | ||
evilest-fiend | 0 | 2,624,174,017 | 100% | ||
shenoy | 0 | 10,331,810,161 | 10% | ||
rlt47 | 0 | 941,111,363 | 100% | ||
obvious | 0 | 31,320,617,472 | 70% | ||
checkthisout | 0 | 822,373,978 | 50% | ||
navx | 0 | 1,621,879,943 | 70% | ||
handfree42 | 0 | 88,730,114 | 50% | ||
woe-is-meme | 0 | 610,938,829 | 100% | ||
ilovekrys | 0 | 214,211,778 | 50% | ||
steembasicincome | 0 | 6,242,050,923 | 1% | ||
family.app | 0 | 94,285,519 | 100% | ||
not-a-cat | 0 | 1,110,830,058 | 100% | ||
varja | 0 | 167,916,058 | 50% | ||
maphics | 0 | 106,304,356 | 100% | ||
sebastiengllmt | 0 | 307,095,054 | 50% | ||
utopian-1up | 0 | 4,715,619,757 | 100% | ||
odesanya | 0 | 216,870,115 | 50% | ||
arcjen02 | 0 | 2,807,207,824 | 100% | ||
itasteemit | 0 | 494,602,983 | 30% | ||
firedream | 0 | 15,562,689,895 | 100% | ||
phgnomo | 0 | 308,346,775 | 5% | ||
sasha-lee1678 | 0 | 611,243,358 | 100% | ||
carsonroscoe | 0 | 12,876,294,714 | 80% | ||
soekie | 0 | 611,168,024 | 100% | ||
growroomsa | 0 | 612,576,011 | 100% | ||
muadzis | 0 | 171,373,526 | 30% | ||
camillius | 0 | 133,645,268 | 30% | ||
zlatkamrs | 0 | 300,557,055 | 50% | ||
amosbastian | 0 | 16,362,222,350 | 50% | ||
mountainjewel | 0 | 1,063,002,590 | 5% | ||
streetsurfer | 0 | 610,967,341 | 100% | ||
lulafleur | 0 | 3,710,728,247 | 70% | ||
omargalk | 0 | 611,234,495 | 100% | ||
xplore | 0 | 726,529,204 | 50% | ||
layanmarissa | 0 | 216,898,459 | 50% | ||
proffgodswill | 0 | 61,368,512 | 10% | ||
cryptotours | 0 | 611,801,147 | 100% | ||
al-abdallah | 0 | 136,506,911 | 30% | ||
sweeverdev | 0 | 1,058,578,875 | 50% | ||
kodeblacc | 0 | 4,168,668,250 | 50% | ||
devilonwheels | 0 | 1,994,551,871 | 10% | ||
thescholarlyowl | 0 | 3,504,202,725 | 50% | ||
jerybanfield | 0 | 5,778,123,470 | 100% | ||
jtomes123 | 0 | 55,327,311 | 5% | ||
rhotimee | 0 | 374,179,214 | 50% | ||
kekegist | 0 | 938,014,154 | 100% | ||
jayboss | 0 | 293,973,526 | 50% | ||
jrmiller87 | 0 | 2,480,258,948 | 100% | ||
solomon507 | 0 | 246,241,757 | 50% | ||
patatesyiyen | 0 | 65,377,983 | 12.5% | ||
deejee | 0 | 116,818,498 | 20% | ||
rsteem | 0 | 428,272,463 | 50% | ||
thabiggdogg | 0 | 6,255,148,935 | 50% | ||
naturallife | 0 | 1,858,626,328 | 88% | ||
maimunsteemit | 0 | 149,753,442 | 30% | ||
onin91 | 0 | 438,450,940 | 50% | ||
isabella394 | 0 | 2,603,181,513 | 100% | ||
sweetjoy | 0 | 1,403,174,784 | 100% | ||
afdalsteemit | 0 | 141,922,646 | 30% | ||
emailbox19149 | 0 | 190,147,096 | 50% | ||
videosteemit | 0 | 1,544,249,490 | 25% | ||
corazen | 0 | 1,957,539,723 | 70% | ||
sheilamae | 0 | 993,507,171 | 100% | ||
organicgardener | 0 | 1,308,578,156 | 25% | ||
holger80 | 0 | 161,955,153,813 | 75% | ||
lifeofroman | 0 | 419,036,749 | 70% | ||
minnowboosted | 0 | 284,409,829 | 50% | ||
cutyusra | 0 | 1,311,999,008 | 30% | ||
saifannur-mzy | 0 | 235,202,680 | 50% | ||
yeswanth | 0 | 611,999,763 | 100% | ||
kaking | 0 | 235,557,276 | 50% | ||
exploreand | 0 | 1,178,382,815 | 25% | ||
tombdbad | 0 | 612,723,096 | 100% | ||
petvalbra | 0 | 611,632,193 | 100% | ||
steemassistant | 0 | 448,638,667 | 100% | ||
used-lessboy | 0 | 217,477,327 | 50% | ||
tonkatonka | 0 | 1,116,692,513 | 70% | ||
xomemes | 0 | 755,996,582 | 100% | ||
hmctrasher | 0 | 407,340,335 | 10% | ||
photohunter1 | 0 | 4,040,718,076 | 100% | ||
photohunter3 | 0 | 3,192,633,659 | 100% | ||
photohunter4 | 0 | 3,180,912,080 | 100% | ||
photohunter5 | 0 | 3,173,437,019 | 100% | ||
armandofd | 0 | 73,032,873 | 15% | ||
howtosteem | 0 | 3,405,179,730 | 100% | ||
remora | 0 | 192,059,747 | 100% | ||
kettle | 0 | 420,847,986 | 100% | ||
kuttmoped | 0 | 232,147,012 | 50% | ||
snackaholic | 0 | 600,464,910 | 100% | ||
livsky | 0 | 101,941,001 | 50% | ||
emeraldearth | 0 | 611,542,485 | 100% | ||
polbot | 0 | 835,015,653 | 100% | ||
roj | 0 | 2,302,067,428 | 100% | ||
flugschwein | 0 | 21,752,552,441 | 100% | ||
penjahit | 0 | 1,254,761,623 | 30% | ||
aderemi01 | 0 | 1,619,945,700 | 50% | ||
highhorse | 0 | 614,479,075 | 100% | ||
pixiefire | 0 | 611,466,704 | 100% | ||
killbill73 | 0 | 192,620,542 | 50% | ||
amirdesaingrafis | 0 | 718,096,988 | 50% | ||
cauac | 0 | 79,416,850 | 30% | ||
fai.zul | 0 | 287,674,963 | 50% | ||
kilianparadise | 0 | 310,043,436 | 15% | ||
muhammadabdallah | 0 | 171,894,481 | 30% | ||
diligentboy | 0 | 143,572,624 | 30% | ||
criptokingko | 0 | 217,846,214 | 50% | ||
damon9 | 0 | 613,786,903 | 100% | ||
aliyu-s | 0 | 478,949,297 | 50% | ||
soydandan | 0 | 61,412,398 | 10% | ||
muratti | 0 | 58,061,895 | 10% | ||
ziadsteemit | 0 | 147,570,462 | 30% | ||
aunglat99 | 0 | 611,997,599 | 100% | ||
tineschreibt | 0 | 950,896,631 | 35% | ||
flinter | 0 | 156,333,061 | 50% | ||
maribelanzola | 0 | 255,078,042 | 50% | ||
usidame | 0 | 566,449,046 | 100% | ||
opulence | 0 | 1,808,745,934 | 50% | ||
phasma | 0 | 122,612,788 | 20% | ||
pixelproperty | 0 | 2,585,710,443 | 100% | ||
gardeniazz | 0 | 140,978,129 | 30% | ||
carlitojoshua | 0 | 95,925,361 | 50% | ||
donjyde | 0 | 217,402,157 | 50% | ||
omravi | 0 | 461,820,386 | 100% | ||
knoxman | 0 | 610,990,104 | 100% | ||
novogel | 0 | 281,962,275 | 50% | ||
zianzolla | 0 | 140,538,254 | 30% | ||
rajeszulfakar | 0 | 150,543,691 | 30% | ||
crispycoinboys | 0 | 2,136,922,181 | 30% | ||
gwapoaller | 0 | 307,097,758 | 50% | ||
carloniere | 0 | 118,759,657 | 50% | ||
zzulhas | 0 | 612,668,072 | 100% | ||
khairulfahmi92 | 0 | 431,964,328 | 100% | ||
emotionalsea | 0 | 58,895,044 | 20% | ||
amaroftheking | 0 | 147,161,896 | 30% | ||
bluestorm | 0 | 460,899,167 | 75% | ||
daszod | 0 | 497,464,838 | 100% | ||
tooxaj | 0 | 2,572,464,690 | 100% | ||
dexter24 | 0 | 216,970,356 | 50% | ||
jayo | 0 | 156,357,568 | 50% | ||
sugandhaseth | 0 | 613,654,132 | 100% | ||
pepememes | 0 | 179,561,343 | 50% | ||
knot | 0 | 2,897,654,521 | 50% | ||
zynatrix | 0 | 587,474,092 | 100% | ||
kaell | 0 | 217,031,959 | 50% | ||
david007 | 0 | 147,063,343 | 30% | ||
edam007 | 0 | 147,498,663 | 30% | ||
ahmad097 | 0 | 218,305,294 | 50% | ||
hendragunawan | 0 | 213,845,533 | 50% | ||
theinbox | 0 | 1,842,096,746 | 100% | ||
wealth4good | 0 | 295,645,836 | 5% | ||
esme-svh | 0 | 363,255,003 | 50% | ||
duncankrista12 | 0 | 613,227,392 | 100% | ||
lsanek | 0 | 290,856,429 | 50% | ||
beurgek01 | 0 | 149,866,427 | 30% | ||
lykia | 0 | 291,195,338 | 50% | ||
angelaladiba | 0 | 146,627,360 | 30% | ||
kamalsaputra | 0 | 131,581,043 | 30% | ||
realness | 0 | 306,475,624 | 50% | ||
wise-confucius | 0 | 350,939,719 | 50% | ||
gonetroppo | 0 | 1,206,100,408 | 100% | ||
musicbot | 0 | 104,510,186 | 100% | ||
flugbot | 0 | 122,724,728 | 100% | ||
schoolofminnows | 0 | 1,964,230,043 | 100% | ||
flag-haejin | 0 | 367,195,885 | 50% | ||
haejin-sucks | 0 | 496,981,160 | 50% | ||
steemit-abuse | 0 | 104,820,313 | 50% | ||
ernoldlvb | 0 | 102,196,444 | 50% | ||
born2crypto | 0 | 391,188,792 | 50% | ||
kryptogermany | 0 | 241,584,432 | 50% | ||
gydronium | 0 | 131,507,625 | 30% | ||
clevershovel | 0 | 1,503,313,626 | 20% | ||
jramirezviera | 0 | 67,387,490 | 15% | ||
nazmulrana | 0 | 217,455,701 | 50% | ||
xers | 0 | 408,224,957 | 70% | ||
zacanarchy143 | 0 | 610,961,601 | 100% | ||
cute-teen | 0 | 175,112,491 | 50% | ||
martinbuilds | 0 | 612,800,792 | 100% | ||
soleto | 0 | 288,005,396 | 50% | ||
truthtrader | 0 | 5,737,687,403 | 4% | ||
frieder | 0 | 266,471,909 | 50% | ||
marsyudin | 0 | 159,259,974 | 30% | ||
abbyrich | 0 | 52,023,209 | 10% | ||
gnaimul | 0 | 217,209,464 | 50% | ||
rancho-relaxo | 0 | 71,543,299 | 50% | ||
xbox-gamer | 0 | 71,522,442 | 50% | ||
niouton | 0 | 8,397,527,237 | 40% | ||
mhmetu | 0 | 610,978,725 | 100% | ||
wave.beads | 0 | 153,154,273 | 50% | ||
steemchessboard | 0 | 130,956,863 | 100% | ||
steemitcanarias | 0 | 94,829,896 | 30% | ||
buddhaboy | 0 | 156,600,475 | 100% | ||
editorspicks | 0 | 61,230,367 | 50% | ||
k3ldo | 0 | 237,214,008 | 21% | ||
downtempo | 0 | 153,069,532 | 25% | ||
syahrin | 0 | 220,462,462 | 50% | ||
cryptocopy | 0 | 305,823,080 | 50% | ||
anjacolleen | 0 | 611,596,251 | 100% | ||
artsyunicorn | 0 | 56,386,790 | 50% | ||
solpaman | 0 | 305,708,885 | 50% | ||
femidada | 0 | 217,111,247 | 50% | ||
steemit-username | 0 | 137,726,954 | 50% | ||
oezixxx | 0 | 479,199,625 | 100% | ||
ongolodesire | 0 | 217,135,290 | 50% | ||
steemrollmix | 0 | 122,243,863 | 100% | ||
moonlightmining | 0 | 122,243,826 | 100% | ||
schooloffreeride | 0 | 122,243,807 | 100% | ||
hillhunters | 0 | 122,243,799 | 100% | ||
intshebe | 0 | 122,243,794 | 100% | ||
rockyridge | 0 | 122,243,776 | 100% | ||
africansafaris | 0 | 122,243,757 | 100% | ||
cryptocupcake | 0 | 122,243,703 | 100% | ||
special-agent | 0 | 60,952,416 | 50% | ||
strayanimals | 0 | 122,239,108 | 100% | ||
forballies | 0 | 122,238,957 | 100% | ||
trollogy | 0 | 122,238,885 | 100% | ||
merrycrab | 0 | 122,238,798 | 100% | ||
margate | 0 | 122,238,784 | 100% | ||
resources | 0 | 122,238,747 | 100% | ||
mfethu | 0 | 122,238,667 | 100% | ||
mahala | 0 | 122,238,658 | 100% | ||
fruitjuice | 0 | 122,238,642 | 100% | ||
waarheid | 0 | 122,238,604 | 100% | ||
hobopunks | 0 | 122,238,527 | 100% | ||
goodbadandugly | 0 | 122,238,402 | 100% | ||
decentric | 0 | 122,238,385 | 100% | ||
dungeonmaster | 0 | 122,235,186 | 100% | ||
plantl | 0 | 122,225,018 | 100% | ||
plantlovers | 0 | 122,225,010 | 100% | ||
hometownhero | 0 | 601,754,950 | 100% | ||
heclgang | 0 | 122,199,463 | 100% |
Great! I was looking for the tools which can calculate my curation rewards. I appreciate this move.
author | akdx |
---|---|
permlink | re-firedream-steemit-curation-flow-20180501t170050562z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-01 17:00:51 |
last_update | 2018-05-01 17:00:51 |
depth | 1 |
children | 2 |
last_payout | 2018-05-08 17:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 79,417,869,591,547 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,275,488 |
net_rshares | 15,269,054,237 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
firedream | 0 | 15,269,054,237 | 100% |
@akdx, thanks for your comment. Glad to hear it is good for someone. FD.
author | firedream |
---|---|
permlink | re-akdx-re-firedream-steemit-curation-flow-20180501t192838366z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["akdx"],"app":"steemit/0.1"} |
created | 2018-05-01 19:28:39 |
last_update | 2018-05-01 19:28:39 |
depth | 2 |
children | 1 |
last_payout | 2018-05-08 19:28: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 | 72 |
author_reputation | 11,232,881,853,116 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,298,271 |
net_rshares | 0 |
You're welcome!
author | akdx |
---|---|
permlink | re-firedream-re-akdx-re-firedream-steemit-curation-flow-20180503t025233440z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-03 02:52:33 |
last_update | 2018-05-03 02:52:33 |
depth | 3 |
children | 0 |
last_payout | 2018-05-10 02:52: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 | 15 |
author_reputation | 79,417,869,591,547 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,555,851 |
net_rshares | 0 |
See that tab I almost always have open? SteemCash? It's the one I use the most. Why aren't your other tools open, though? Because they'd take up too many tabs!  You see, I really dislike using bookmarks. Do you think you could add a link of all of your tools on each of them? Dunno, maybe on the region below "TOTAL SBD", using the same placement for all of them.
author | felipejoys |
---|---|
permlink | re-firedream-steemit-curation-flow-20180505t190212218z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"image":["https://steemitimages.com/DQmRUX7UBDWUVLEdAfKpSFbXgCWNcF56X39ZV23vagaxGNk/image.png"],"app":"steemit/0.1"} |
created | 2018-05-05 19:02:21 |
last_update | 2018-05-05 19:02:21 |
depth | 1 |
children | 4 |
last_payout | 2018-05-12 19:02:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.797 HBD |
curator_payout_value | 1.572 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 453 |
author_reputation | 282,499,263,951,336 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,073,517 |
net_rshares | 1,247,264,244,560 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
booster | 0 | 368,938,454,543 | 0.83% | ||
gentlebot | 0 | 203,108,787,168 | 15% | ||
wuhotan | 0 | 6,488,909,736 | 1.75% | ||
boomerang | 0 | 540,877,762,779 | 2.94% | ||
felipejoys | 0 | 203,781,778 | 100% | ||
firedream | 0 | 16,002,933,079 | 100% | ||
markhinnebusch | 0 | 52,015,935 | 10% | ||
lightningbolt | 0 | 5,866,519,211 | 3.06% | ||
foxyd | 0 | 39,245,349,513 | 6.45% | ||
thebot | 0 | 36,313,561,526 | 3.93% | ||
profitbot | 0 | 4,255,037,467 | 2.66% | ||
ubot | 0 | 25,911,131,825 | 11.63% |
This post has received a 2.94 % upvote from @boomerang.
author | boomerang |
---|---|
permlink | re-re-firedream-steemit-curation-flow-20180505t190212218z-20180507t045509 |
category | utopian-io |
json_metadata | "" |
created | 2018-05-07 04:55:12 |
last_update | 2018-05-07 04:55:12 |
depth | 2 |
children | 0 |
last_payout | 2018-05-14 04:55: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 | 55 |
author_reputation | 1,273,205,827,891 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,313,488 |
net_rshares | 0 |
<p>This comment has received a 0.84 % upvote from @booster thanks to: @felipejoys.</p>
author | booster |
---|---|
permlink | re-felipejoys-re-firedream-steemit-curation-flow-20180505t190212218z-20180507t042153427z |
category | utopian-io |
json_metadata | {"tags":["steemit-curation-flow"],"app":"drotto/0.0.5pre1"} |
created | 2018-05-07 04:21:51 |
last_update | 2018-05-07 04:21:51 |
depth | 2 |
children | 0 |
last_payout | 2018-05-14 04:21: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 | 87 |
author_reputation | 68,767,115,776,562 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,309,597 |
net_rshares | 0 |
@felipejoys, Just try https://fdsteemtools.neocities.org There you have all the tools I made :) FD
author | firedream |
---|---|
permlink | re-felipejoys-re-firedream-steemit-curation-flow-20180506t003502933z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["felipejoys"],"links":["https://fdsteemtools.neocities.org"],"app":"steemit/0.1"} |
created | 2018-05-06 00:35:03 |
last_update | 2018-05-06 00:35:03 |
depth | 2 |
children | 1 |
last_payout | 2018-05-13 00:35: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 | 99 |
author_reputation | 11,232,881,853,116 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,108,861 |
net_rshares | 0 |
Yeah but there's no way to swit--- I can just hit the back button if I enter through the hub. Okay. Hah. *~~slides away~~*
author | felipejoys |
---|---|
permlink | re-firedream-re-felipejoys-re-firedream-steemit-curation-flow-20180506t014034693z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-06 01:40:42 |
last_update | 2018-05-06 01:40:42 |
depth | 3 |
children | 0 |
last_payout | 2018-05-13 01:40: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 | 122 |
author_reputation | 282,499,263,951,336 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,115,158 |
net_rshares | 0 |
Awesome! I really like this. Initially i wanted to make such a webpage myself, but apparently you got there first, but maybe I end up making additions to it. You should consider taking the css and the javascript out of the main html and make them in their own `.css`and`.js`files. This would make the project way more organized and readable and gives it some more structure. Otherwise this looks pretty cool. Thank you for your Contribution! Edit: That @utopian-1up vote came from me ;)
author | flugschwein | ||||||
---|---|---|---|---|---|---|---|
permlink | re-firedream-steemit-curation-flow-20180502t190656431z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-05-02 19:07:00 | ||||||
last_update | 2018-05-02 19:38:00 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-05-09 19:07:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.062 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 488 | ||||||
author_reputation | 11,950,112,708,339 | ||||||
root_title | "Steemit Pending Curation Rewards" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,498,083 | ||||||
net_rshares | 17,076,968,762 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
firedream | 0 | 17,076,968,762 | 100% |
@flugschwein; Thank you very much for your comments and review. You are right about .css and .js files out of the main.html. For .css, I am using Google Web Designer so it is always inside. For .js , well I am coming from Commodore64 times where everything was all one code and there was a command like GoTo :) But I agree with you, I have to get the habit. For next project, I will do this. FD.
author | firedream |
---|---|
permlink | re-flugschwein-re-firedream-steemit-curation-flow-20180503t051823080z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["flugschwein"],"app":"steemit/0.1"} |
created | 2018-05-03 05:18:24 |
last_update | 2018-05-03 05:18:24 |
depth | 2 |
children | 0 |
last_payout | 2018-05-10 05:18:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.848 HBD |
curator_payout_value | 0.279 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 398 |
author_reputation | 11,232,881,853,116 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,574,220 |
net_rshares | 202,333,095,375 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 202,333,095,375 | 15% |
Nice tool, sadly I can do the math in my head with out the use of it. Its always 0
author | fuckmylife |
---|---|
permlink | re-firedream-steemit-curation-flow-20180501t161559937z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-01 16:12:03 |
last_update | 2018-05-01 16:12:03 |
depth | 1 |
children | 5 |
last_payout | 2018-05-08 16:12:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 1,365,524,722,971 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,267,163 |
net_rshares | 15,562,689,895 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
firedream | 0 | 15,562,689,895 | 100% |
Curation is not a game for us minnows...so, sadly you are right... FD.
author | firedream |
---|---|
permlink | re-fuckmylife-re-firedream-steemit-curation-flow-20180501t192710580z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-01 19:27:12 |
last_update | 2018-05-01 19:27:12 |
depth | 2 |
children | 3 |
last_payout | 2018-05-08 19:27: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 | 70 |
author_reputation | 11,232,881,853,116 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,298,079 |
net_rshares | 275,536,518 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuckmylife | 0 | 275,536,518 | 100% |
lol I keep on trying, but I keep on failing. I wonder if any minnows have ever got a post to go viral without paying for it? I keep on thinking after thousands of hours and making thousands of posts , at least one of my posts would make $50 or $100, but no. I truly do not think it is possible based on how steem is structured.
author | fuckmylife |
---|---|
permlink | re-firedream-re-fuckmylife-re-firedream-steemit-curation-flow-20180501t204250370z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-01 20:38:54 |
last_update | 2018-05-01 20:38:54 |
depth | 3 |
children | 2 |
last_payout | 2018-05-08 20:38:54 |
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 | 328 |
author_reputation | 1,365,524,722,971 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,308,012 |
net_rshares | 0 |
I once got 0.015SP as a curation reward back in the days I had 15SP. That felt absolutely awesome. Utopian posts seem to give huge curation rewards if you vote at the right moment.
author | flugschwein |
---|---|
permlink | re-fuckmylife-re-firedream-steemit-curation-flow-20180503t052816833z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-03 05:28:21 |
last_update | 2018-05-03 05:28:21 |
depth | 2 |
children | 0 |
last_payout | 2018-05-10 05:28: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 | 180 |
author_reputation | 11,950,112,708,339 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,575,393 |
net_rshares | 0 |
Thanks for sharing this tool! Awesome
author | hatoto |
---|---|
permlink | re-firedream-steemit-curation-flow-20180502t150250036z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-02 15:02:51 |
last_update | 2018-05-02 15:02:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-09 15:02: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 | 37 |
author_reputation | 98,176,609,275,942 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,458,580 |
net_rshares | 0 |
This is an impressive tool you've created. This will save steemians the stress of cracking their heads to figure out how much they'll earn from curation.
author | jacksondavies | ||||||
---|---|---|---|---|---|---|---|
permlink | re-firedream-201852t185527973z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","steemit","curation","steem-js","firedreamblog"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-05-02 17:55:36 | ||||||
last_update | 2018-05-02 17:55:36 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2018-05-09 17:55:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.062 HBD | ||||||
curator_payout_value | 0.021 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 153 | ||||||
author_reputation | 5,638,529,084,453 | ||||||
root_title | "Steemit Pending Curation Rewards" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,487,463 | ||||||
net_rshares | 16,684,394,768 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
firedream | 0 | 16,684,394,768 | 100% |
And as minnows, when they see they can't get a significant amount from curation, they will go back to posting and commenting :) FD.
author | firedream |
---|---|
permlink | re-jacksondavies-re-firedream-201852t185527973z-20180503t052000579z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-03 05:20:00 |
last_update | 2018-05-03 05:20:00 |
depth | 2 |
children | 1 |
last_payout | 2018-05-10 05:20:00 |
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 | 132 |
author_reputation | 11,232,881,853,116 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,574,402 |
net_rshares | 0 |
Yeah they definitely will. Seeing your stats can be a strong motivator on steemit.
author | jacksondavies | ||||||
---|---|---|---|---|---|---|---|
permlink | re-firedream-201853t20222974z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-05-03 19:22:15 | ||||||
last_update | 2018-05-03 19:22:15 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2018-05-10 19:22: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 | 82 | ||||||
author_reputation | 5,638,529,084,453 | ||||||
root_title | "Steemit Pending Curation Rewards" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,697,735 | ||||||
net_rshares | 0 |
**Your Post Has Been Featured on @Resteemable!** <br> Feature any Steemit post using resteemit.com! <br> **How It Works:** <br> 1. Take Any Steemit URL <br> 2. Erase `https://` <br> 3. Type `re`<br> Get Featured Instantly & Featured Posts are voted every 2.4hrs <br>[Join the Curation Team Here](https://goo.gl/forms/4sr0InoTxcyPRQSj2) | [Vote Resteemable for Witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=resteemable&approve=1)
author | resteemable |
---|---|
permlink | re-resteemable-steemit-curation-flow-20180501t155033317z |
category | utopian-io |
json_metadata | "" |
created | 2018-05-01 15:50:33 |
last_update | 2018-05-01 15:50:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-08 15:50: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 | 453 |
author_reputation | 711,299,530,826 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,263,205 |
net_rshares | 0 |
#### Hey @firedream We're already looking forward to your next contribution! ##### Decentralised Rewards Share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together. ##### Utopian Witness! <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief. **Want to chat? Join us on Discord https://discord.me/utopian-io**
author | utopian-io |
---|---|
permlink | re-firedream-steemit-curation-flow-20180503t171345526z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-05-03 17:13:48 |
last_update | 2018-05-03 17:13:48 |
depth | 1 |
children | 0 |
last_payout | 2018-05-10 17:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.094 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 609 |
author_reputation | 152,955,367,999,756 |
root_title | "Steemit Pending Curation Rewards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,679,287 |
net_rshares | 738,723,726,082 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
utopian-io | 0 | 738,723,726,082 | 0.1% |