[Utopian Moderators & Supervisors](https://chrome.google.com/webstore/detail/utopian-moderator-supervi/dcjdbldgiiboblbaconadffdaicicebc) is a Chrome Extension that has iterated for 12 versions, however, sadly, since last time [Utopian revokes for all API calls](https://steemit.com/utopian-io/@utopian-io/you-ask-we-deliver-new-reputation-system-new-decentralised-scoring-system-and-much-more) the Chrome Extension is virtually dead i.e. all API calls to `https://api.utopian.io/api` return 500 internal server error. I submitted a support ticket asking for the [utopian](https://helloacm.com/make-utopian-moderator-chrome-extension-perfect-by-adding-posts-and-tools-tab/) API key but got rejected because: > A API key must not be given out to end users and/or other developers. An API Key is bind to one ore more domains. From which domain/domains will you send the requests. At the moment we can only provide API keys suiteable for ajax requests made from websites in a browser. Luckily, at the [London Cryptocurrency Show](https://steemit.com/promo-steem/@justyy/london-cryptocurrency-show-steem-is-the-no-1-blockchain-in-the-world) I met @wehmoen who is the leading developer (staff) at @utopian-io therefore I managed to persuade him giving me the API key by proposing that I will wrap the API key on my server and change all API calls in the chrome extension to my API server, where I will hide all the API key/secret in my server. Therefore, with the changes commited [here](https://github.com/DoctorLai/utopian-moderator/commit/917b5726e2631d11c8df7fbce8c194699f47c59d), the Utopian Moderators v0.0.13 is back to life! You can install the extension at [Chrome Webstore](https://chrome.google.com/webstore/detail/utopian-moderator-supervi/dcjdbldgiiboblbaconadffdaicicebc). For Opera browsers, the workaround is to first install[this](https://addons.opera.com/en/extensions/details/download-chrome-extension-9/) and similarly for Firefox, you can install [Chrome Store Foxified](https://addons.mozilla.org/en-US/firefox/addon/chrome-store-foxified/) before you install Utopian Moderators & Supervisors. ## API wrapping in PHP ``` <?php /* utopian api wrapper at server side thanks to @wehmoen for providing me api key */ define("ORIGIN", ""); define("API_KEY", ""); define("API_KEY_ID", ""); function CallAPI($url, &$error, $data = null, $headers = null) { $curl = curl_init($url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); if ($headers) { curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); } curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "GET"); $response = curl_exec($curl); $data = json_decode($response); /* Check for 404 (file not found). */ $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); // Check the HTTP Status code switch ($httpCode) { case 200: $error = 200; break; case 404: $error = 404; break; case 500: $error = 500; break; case 502: $error = 502; break; case 503: $error = 503; break; default: $error = $httpCode; break; } curl_close($curl); return ($data); } $api = $_GET['api'] ?? ''; if (!$api) { die(); } // avoid hacking to get the keys $host = strtolower(parse_url($api, PHP_URL_HOST)); if ($host != 'api.utopian.io') { die(); } $headers = array("Origin: " . ORIGIN, "x-api-key: " . API_KEY, "x-api-key-id: " . API_KEY_ID); $err = ''; $data = CallAPI($api, $err, null, $headers); header("Access-Control-Allow-Origin: *"); header('Content-Type: application/json'); if ($err === 200) { die(json_encode($data)); } else { die(json_encode(array("error" => $err, "raw" => $data))); } ```  PS: just confirmed with @wehmoen the `https://utopian.plus/unreviewedPosts.json` is not working anymore and unfortunately there is currently no suitable API calls for this purpose. Long live @utopian-io ! Reposted to [my blog](https://helloacm.com/revive-utopian-chrome-extension-wrapping-utopian-api-calls/) for better indexing and archiving. ----------------------------------- ## Support me and my work as a [witness](https://steemit.com/witness-category/@justyy/justyy-just-another-witness) by 1. voting me [here](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy), or 2. voting me as [a proxy](https://v2.steemconnect.com/sign/account-witness-proxy?proxy=justyy&approve=1). <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@justyy/revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | justyy | ||||||
---|---|---|---|---|---|---|---|
permlink | revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"steemit/0.1","format":"markdown","repository":{"id":119434075,"name":"utopian-moderator","full_name":"DoctorLai/utopian-moderator","html_url":"https://github.com/DoctorLai/utopian-moderator","fork":false,"owner":{"login":"DoctorLai"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","witness-category","software-development","programming","steemstem"],"users":["wehmoen","utopian-io"],"links":["https://chrome.google.com/webstore/detail/utopian-moderator-supervi/dcjdbldgiiboblbaconadffdaicicebc","https://steemit.com/utopian-io/@utopian-io/you-ask-we-deliver-new-reputation-system-new-decentralised-scoring-system-and-much-more","https://helloacm.com/make-utopian-moderator-chrome-extension-perfect-by-adding-posts-and-tools-tab/","https://steemit.com/promo-steem/@justyy/london-cryptocurrency-show-steem-is-the-no-1-blockchain-in-the-world","https://github.com/DoctorLai/utopian-moderator/commit/917b5726e2631d11c8df7fbce8c194699f47c59d","https://addons.opera.com/en/extensions/details/download-chrome-extension-9/","https://addons.mozilla.org/en-US/firefox/addon/chrome-store-foxified/","https://helloacm.com/revive-utopian-chrome-extension-wrapping-utopian-api-calls/","https://steemit.com/witness-category/@justyy/justyy-just-another-witness","https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy","https://v2.steemconnect.com/sign/account-witness-proxy?proxy=justyy&approve=1","https://utopian.io/utopian-io/@justyy/revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls"],"image":["https://cdn.utopian.io/posts/35d33c583b7a503e67f3b411acbb9b2b3e67image.png"],"moderator":{"account":"amosbastian","time":"2018-04-16T10:08:31.975Z","pending":false,"reviewed":true,"flagged":false},"questions":null,"score":null,"total_influence":null,"staff_pick":null,"config":{"questions":[{"question":"How would you rate the impact of the fixed bugs / new features on the project?","question_id":"dev-1","answers":[{"answer":"Very high - the amount of work is very high.","answer_id":1,"value":20},{"answer":"High - the amount of work is high","answer_id":2,"value":15},{"answer":"Average - the amount of work is average","answer_id":3,"value":10},{"answer":"Low - the amount of work is low.","answer_id":4,"value":5},{"answer":"Very Low - the amount of work is very little.","answer_id":5,"value":0}]},{"question":"How would you rate the quality of the provided code?","question_id":"dev-2","answers":[{"answer":"Very high - the code follows all the best practices and/or is the opposite of trivial.","answer_id":1,"value":20},{"answer":"High - the code follows nearly all the best practices and/or is not trivial at all. ","answer_id":2,"value":15},{"answer":"Average - the code follows most the best practices and/or some parts of it are trivial.","answer_id":3,"value":10},{"answer":"Low - the code doesn't really follow the best practices and/or a lot of it is trivial.","answer_id":4,"value":5},{"answer":"Very low - the code doesn't follow the best practices and is completely trivial.","answer_id":5,"value":0}]},{"question":"How do you rate the target project overall?","question_id":"dev-3","answers":[{"answer":"Very high - the project has a unique value, will (potentially) also be useful to a lot of people and has the potential to keep growing.","answer_id":1,"value":10},{"answer":"High - the project isn't really unique but it is well maintained.","answer_id":2,"value":8},{"answer":"Average - the project is limited or not very well maintained.","answer_id":3,"value":4},{"answer":"Low - quality of the project overall is low.","answer_id":4,"value":2},{"answer":"Very low - quality of the project overall is very low and not well maintained.","answer_id":5,"value":0}]},{"question":"Does the writing style meet the Utopian standard considering formalness, informativeness and clarity of the content?","question_id":"c-1","answers":[{"answer":"It is formal, informative and well written with clear content.","answer_id":1,"value":10},{"answer":"It is informative with clear content but not formal enough.","answer_id":2,"value":5},{"answer":"The contribution could be more informative or contains unrelated information, formality and clarity of the content are good enough.","answer_id":3,"value":4},{"answer":"Not all sections were clear enough but overall holds value for the project.","answer_id":4,"value":2},{"answer":"Not at all.","answer_id":5,"value":0}]},{"question":"Was the provided category template for the editor followed?","question_id":"c-2","answers":[{"answer":"All points of the template were included with additional points as well.","answer_id":1,"value":5},{"answer":"The template was followed without additions.","answer_id":2,"value":4},{"answer":"The template was edited but the points were covered in different way.","answer_id":3,"value":3},{"answer":"Not all points of the template were covered in the contribution but the structure is clear enough.","answer_id":4,"value":3},{"answer":"The template was not followed but the structure is clear enough.","answer_id":5,"value":2},{"answer":"The contents are not clearly structured at all.","answer_id":6,"value":0}]},{"question":"Did the contributor tag other users?","question_id":"c-3","answers":[{"answer":"No other users were tagged by the contributor.","answer_id":1,"value":5},{"answer":"Used tags are reasonable and all tagged people are connected to the project and/or the contribution.","answer_id":2,"value":5},{"answer":"The contribution contains mentions of other users that are not directly related to the contribution but related in other ways.","answer_id":3,"value":2},{"answer":"The contributor misuses tagging of other users.","answer_id":4,"value":0}]},{"question":"Did the contributor ask for upvotes, resteems, follows or witness vote?","question_id":"c-4","answers":[{"answer":"No","answer_id":1,"value":5},{"answer":"Yes, but not in a way that disturbs readability. ","answer_id":2,"value":5},{"answer":"Yes.","answer_id":3,"value":0}]},{"question":"Was a graphical content like images, charts, videos or screenshots included?","question_id":"c-5","answers":[{"answer":"Yes, the graphical content is included and adds more value to the contribution.","answer_id":1,"value":5},{"answer":"No but the contribution works well without graphical content well.","answer_id":2,"value":4},{"answer":"Yes, but most of the graphical content’s purpose is just for presentational matters.","answer_id":3,"value":3},{"answer":"No relevant or useful graphical content is included in the contribution.","answer_id":4,"value":0}]},{"question":"How would you rate the overall added value?","question_id":"c-6","answers":[{"answer":"Extraordinary value to both the project and the open source community overall.","answer_id":1,"value":20},{"answer":"Significant value to the project or open source community.","answer_id":2,"value":15},{"answer":"Some value to the project or open source community.","answer_id":3,"value":10},{"answer":"Little value to the project or open source community.","answer_id":4,"value":5},{"answer":"No obvious value to project or open source community.","answer_id":5,"value":0}]}]}}" | ||||||
created | 2018-04-15 17:49:36 | ||||||
last_update | 2018-04-16 15:28:00 | ||||||
depth | 0 | ||||||
children | 8 | ||||||
last_payout | 2018-04-22 17:49:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 97.577 HBD | ||||||
curator_payout_value | 30.637 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,720 | ||||||
author_reputation | 280,616,224,641,976 | ||||||
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 50,239,218 | ||||||
net_rshares | 28,617,011,089,820 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ace108 | 0 | 159,961,227,382 | 17% | ||
magicmonk | 0 | 94,689,631,379 | 50% | ||
justyy | 0 | 1,035,015,216,913 | 85% | ||
luneknight | 0 | 235,172,870 | 100% | ||
techslut | 0 | 263,918,029,466 | 100% | ||
happyukgo | 0 | 1,257,628,646 | 85% | ||
nokeh | 0 | 254,487,062 | 99% | ||
elizacheng | 0 | 2,357,727,484 | 10% | ||
sv67216721 | 0 | 484,538,375 | 5% | ||
manuel78 | 0 | 69,160,521 | 1% | ||
frankintaiwan | 0 | 80,958,102 | 20% | ||
helo | 0 | 2,649,043,362 | 10% | ||
shenchensucc | 0 | 3,055,641,898 | 20% | ||
armonia | 0 | 2,261,205,429 | 100% | ||
victorialuxx | 0 | 169,297,665 | 100% | ||
susanli3769 | 0 | 228,528,454,135 | 100% | ||
dpakyaw | 0 | 3,004,559,824 | 16% | ||
robinlee | 0 | 466,132,033 | 99% | ||
sandan | 0 | 5,588,271,312 | 100% | ||
rainyapril | 0 | 494,393,953 | 99% | ||
al2ping | 0 | 105,384,573 | 99% | ||
josephmcconnell | 0 | 12,027,437,089 | 100% | ||
liangfengyouren | 0 | 898,232,715 | 50% | ||
yasu24 | 0 | 13,739,637,442 | 20% | ||
jiangchen | 0 | 98,124,197 | 1% | ||
shengjian | 0 | 16,841,743,999 | 85.45% | ||
kangnajiang | 0 | 243,197,553 | 99% | ||
cifer | 0 | 7,958,582,851 | 80% | ||
geass | 0 | 451,904,360 | 90.48% | ||
moonvoid | 0 | 614,503,785 | 100% | ||
boontjie | 0 | 28,724,182,594 | 100% | ||
irenett | 0 | 1,031,493,341 | 100% | ||
davidke20 | 0 | 1,969,098,113 | 15% | ||
rosatravels | 0 | 94,858,704,578 | 50% | ||
xuran | 0 | 5,075,463,584 | 100% | ||
awiwea1974 | 0 | 433,133,156 | 100% | ||
superbing | 0 | 7,457,335,786 | 85% | ||
dailyfortune | 0 | 4,990,304,449 | 85% | ||
dailystats | 0 | 12,125,868,626 | 85% | ||
victory622 | 0 | 50,018,543,382 | 33% | ||
ayman101 | 0 | 543,914,566 | 100% | ||
bobdos | 0 | 3,757,013,022 | 7% | ||
vandadream | 0 | 9,528,117,917 | 100% | ||
steemline | 0 | 244,576,578 | 100% | ||
winniex | 0 | 3,225,776,670 | 10% | ||
jianan | 0 | 494,755,114 | 99% | ||
utopian-io | 0 | 25,998,413,224,864 | 17.5% | ||
nada101 | 0 | 485,237,159 | 100% | ||
halleyleow | 0 | 1,114,103,957 | 50% | ||
nileelily | 0 | 5,654,893,871 | 100% | ||
chann | 0 | 5,696,886,498 | 20% | ||
daxiang | 0 | 255,171,287 | 99% | ||
jrvacation | 0 | 138,913,079,862 | 100% | ||
anxin | 0 | 6,185,710,188 | 86.6% | ||
lebin | 0 | 15,920,125,488 | 15% | ||
coindzs | 0 | 124,558,357 | 100% | ||
florae | 0 | 2,513,792,846 | 100% | ||
deanhass | 0 | 3,314,597,338 | 100% | ||
cryptonewsly | 0 | 219,835,232 | 100% | ||
abeba | 0 | 587,401,958 | 100% | ||
tdre | 0 | 44,832,870,455 | 100% | ||
bobsthinking | 0 | 2,852,898,035 | 100% | ||
grzesiekb | 0 | 189,294,757,997 | 100% | ||
moobear | 0 | 244,288,464 | 99% | ||
maiyude | 0 | 6,516,123,011 | 5% | ||
jjay | 0 | 664,407,028 | 100% | ||
rhotimee | 0 | 8,519,231,776 | 100% | ||
r3aperz | 0 | 51,886,725 | 30% | ||
yumisee | 0 | 465,977,419 | 30% | ||
thetroublenotes | 0 | 51,889,625 | 0.5% | ||
azarus | 0 | 2,614,443,709 | 50% | ||
prch | 0 | 3,054,882,225 | 68.28% | ||
nean | 0 | 483,226,842 | 96.69% | ||
joeliew | 0 | 420,728,942 | 9% | ||
foodielifestyle | 0 | 1,042,193,705 | 86.33% | ||
meixia | 0 | 3,937,367,089 | 100% | ||
woolfe19861008 | 0 | 1,422,086,397 | 86.52% | ||
dailychina | 0 | 8,233,935,491 | 85% | ||
mycat | 0 | 136,926,531 | 12% | ||
jinluan | 0 | 1,420,511,787 | 100% | ||
vincenthan | 0 | 481,621,804 | 96.56% | ||
yuxuan | 0 | 199,549,747 | 99% | ||
iipoh06 | 0 | 102,943,648 | 15% | ||
dongfengman | 0 | 6,744,952,577 | 86.14% | ||
historylover | 0 | 425,983,301 | 100% | ||
serenazz | 0 | 731,537,965 | 86.95% | ||
cha0s0000 | 0 | 4,595,233,208 | 60.13% | ||
ny4.one | 0 | 557,123,469 | 100% | ||
annabellenoelle | 0 | 1,707,398,534 | 30% | ||
yedda | 0 | 492,214,551 | 99% | ||
polbot | 0 | 1,390,708,897 | 100% | ||
shentrading | 0 | 603,821,019 | 77.86% | ||
zasilla | 0 | 492,209,893 | 99% | ||
aaronstar | 0 | 58,445,115 | 99% | ||
ayanamoon | 0 | 51,907,497 | 99% | ||
ethanlee | 0 | 6,041,591,920 | 67.68% | ||
kamel101 | 0 | 471,181,246 | 100% | ||
twinsnicole | 0 | 492,918,144 | 99% | ||
deepthinking | 0 | 493,465,607 | 99% | ||
fishbb | 0 | 458,785,814 | 2.5% | ||
wilfredn | 0 | 5,510,794,719 | 100% | ||
inmylife | 0 | 13,544,364,739 | 33% | ||
fanso | 0 | 763,914,047 | 78.83% | ||
mjs-space | 0 | 486,748,473 | 100% | ||
abss | 0 | 93,118,425 | 11% | ||
lilypang22 | 0 | 195,056,444 | 96.8% | ||
klw | 0 | 3,779,496,678 | 100% | ||
onderakcaalan | 0 | 1,076,282,446 | 100% | ||
lilacse | 0 | 1,627,012,591 | 30% | ||
zens | 0 | 495,289,093 | 99% | ||
ashi0 | 0 | 493,803,444 | 99% | ||
steemitvip | 0 | 492,944,041 | 99% | ||
lakemountain | 0 | 62,853,575 | 99% | ||
regals | 0 | 493,817,031 | 99% | ||
liuzg | 0 | 60,850,437 | 50% | ||
honoru | 0 | 1,427,966,869 | 71.56% | ||
touhidalam69 | 0 | 287,359,527 | 49% | ||
joelone | 0 | 492,509,923 | 99% | ||
sweet-jenny8 | 0 | 12,728,821,782 | 85.8% | ||
johnsonlai | 0 | 153,773,208 | 15% | ||
commonlaw | 0 | 345,454,343 | 100% | ||
clayjohn | 0 | 6,049,332,270 | 100% | ||
laijihua | 0 | 612,628,018 | 100% | ||
cn-malaysia | 0 | 91,770,374 | 15% | ||
h-max | 0 | 559,530,762 | 100% | ||
globalview | 0 | 611,952,180 | 100% | ||
bambugrove | 0 | 149,893,767 | 30% | ||
novelafans | 0 | 73,096,649 | 100% |
Thanks for the contribution. It has been approved. Cool! I might need to try something like this, since `utopian-cli` is currently dead as well. ---------------------------------------------------------------------- Need help? Write a ticket on https://support.utopian.io. Chat with us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | amosbastian | ||||||
---|---|---|---|---|---|---|---|
permlink | re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180416t101116720z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"steemit/0.1","links":["https://support.utopian.io","https://discord.gg/uTyJkNm","https://utopian.io/moderators"]} | ||||||
created | 2018-04-16 10:11:18 | ||||||
last_update | 2018-04-16 10:12:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-23 10:11: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 | 387 | ||||||
author_reputation | 174,473,586,900,705 | ||||||
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 50,354,011 | ||||||
net_rshares | 0 |
Hello @justyy. Today I have left my vote, to support you as a witness. That you continue contributing with your talent and kindness in the Steemit community. Que estés siempre muy feliz.
author | armonia |
---|---|
permlink | re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180417t171516753z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["justyy"],"app":"steemit/0.1"} |
created | 2018-04-17 17:15:24 |
last_update | 2018-04-17 17:15:24 |
depth | 1 |
children | 1 |
last_payout | 2018-04-24 17:15: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 | 186 |
author_reputation | 3,699,715,013,926 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,607,189 |
net_rshares | 0 |
Thank you very much.
author | justyy |
---|---|
permlink | re-armonia-re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180417t195658032z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-17 19:56:57 |
last_update | 2018-04-17 19:56:57 |
depth | 2 |
children | 0 |
last_payout | 2018-04-24 19:56:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 280,616,224,641,976 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,630,645 |
net_rshares | 9,739,311,367 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 357,431,299 | 20% | ||
superbing | 0 | 2,126,348,279 | 20% | ||
dailyfortune | 0 | 1,408,800,211 | 20% | ||
dailystats | 0 | 3,468,998,024 | 20% | ||
dailychina | 0 | 2,377,733,554 | 20% |
Hey I just checked out a bunch of tools, toys, and awesome stuff you have made for streamians. That being the case I saw your message and just now voted for you as my witness. Just keep it up guy and I will stay happy. This one you talk about on the post looks great too.
author | commonlaw |
---|---|
permlink | re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180416t161720930z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-16 16:17:21 |
last_update | 2018-04-16 16:20:00 |
depth | 1 |
children | 2 |
last_payout | 2018-04-23 16:17: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 | 273 |
author_reputation | 3,267,008,243,675 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,408,075 |
net_rshares | 0 |
Thank you very much.
author | justyy |
---|---|
permlink | re-commonlaw-re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180416t181042129z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-16 18:10:57 |
last_update | 2018-04-16 18:10:57 |
depth | 2 |
children | 1 |
last_payout | 2018-04-23 18:10:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 280,616,224,641,976 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,424,701 |
net_rshares | 8,626,240,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 304,478,514 | 20% | ||
superbing | 0 | 1,808,272,839 | 20% | ||
dailyfortune | 0 | 1,197,796,925 | 20% | ||
dailystats | 0 | 2,945,121,223 | 20% | ||
dailychina | 0 | 2,018,853,584 | 20% | ||
commonlaw | 0 | 351,717,687 | 100% |
No justy thank you for us steemians.
author | commonlaw |
---|---|
permlink | re-justyy-re-commonlaw-re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180416t192652006z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-16 19:26:54 |
last_update | 2018-04-16 19:26:54 |
depth | 3 |
children | 0 |
last_payout | 2018-04-23 19:26: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 | 36 |
author_reputation | 3,267,008,243,675 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,435,926 |
net_rshares | 0 |
I like this extention.. how can i do for use it
author | ny4.one |
---|---|
permlink | re-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180415t184043797z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-04-15 18:40:48 |
last_update | 2018-04-15 18:40:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-22 18:40: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 | 48 |
author_reputation | 93,052,898,061 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,246,301 |
net_rshares | 0 |
### Hey @justyy I am @utopian-io. I have just upvoted you! #### Achievements - People loved what you did here. GREAT JOB! - Seems like you contribute quite often. AMAZING! #### Utopian 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</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness</a> **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-justyy-revive-utopian-chrome-extension-thanks-to-wehmoen-wrapping-utopian-api-calls-20180416t103618679z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-04-16 10:36:21 |
last_update | 2018-04-16 10:36:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-23 10:36: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 | 678 |
author_reputation | 152,955,367,999,756 |
root_title | "Revive Utopian Chrome Extension thanks to @wehmoen ! (Wrapping Utopian API Calls)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,356,908 |
net_rshares | 0 |