The Magic Frog - Collaborative Storytelling (Bot and Website) by mkt

View this thread on steempeak.com
· @mkt · (edited)
$241.83
The Magic Frog - Collaborative Storytelling (Bot and Website)
<center>![](https://steemitimages.com/DQmcJ5Bgkuze2dYAr6SHxseFSVM6DsHdWbvKfFA2NgcX1u2/image.png)</center>

Some of you already might have stumbled upon this new Steem account: @the-magic-frog. *The Magic Frog* is a fun project around collaborative storytelling and maybe also promoting Steem. I want to share this project with you because maybe I could need some help with developing some features and I also want to expose this project to a greater audience, the Utopian community. Because after all... I'm really serious about this and I want it to become big. 

I highly recommend to [read the introduction post here](https://steemit.com/introduceyourself/@the-magic-frog/this-is-the-magic-story-machine-help-the-not-so-magic-frog-collaborative-storytelling-click-it-there-s-money-to-win). It was great fun to write it and it gives the project some character. But since this is a development contribution I will share some of the "technical magic" happening in the background.

### The mechanics in short:

At the very end of the introduction post you see that the first story started with "Once upon a time, there was a wizard..." and people commented how to proceed. Every day at 12:30 PM CET a new post gets published, where people can comment. The  comment with the most upvotes after 24 hours will be appended to the story in the next post. A story can end when "The End!" gets appended to the story. In the next post a new story will then start, with "Once upon a time...". (The mighty wizard is only the protagonist of the first story. For future stories it's totally up to the community.)

The rewards those posts generate are used to reward the participants and power up the account. So whenever a story ends, half of the author rewards from those posts are given back to the community. Either by raffle or splitting the pot based on how many parts a participant has contributed to the story. I haven't decided yet. Maybe a mix of both.

Once the bot account has enough Steem Power, it could maybe give small upvotes for everyone who participates and a full upvote for each winning comment. The bot also upvotes all the story posts to ensure a minimum pot. The more Steem Power it has, the bigger the minimum pot and the reward for simply participating.

Today is [day 14](https://steemit.com/themagicfrog/@the-magic-frog/the-magic-story-1-day-14) of the first story. It turns out to be exactly what I expected to happen. It starts with good and serious intentions but then drifts into a very questionable direction. Perfect!

> "Wait!" said one stork, "do we really want to see the wizard naked?" The imagery started to flow through their minds, but they figured that they would be fine.

<sup>by @enforcer48</sup>

Of course...

Read the whole current story at http://the-magic-frog.com

## The Magic Story Machine a.k.a. The Bot

https://github.com/mktcode/the-magic-story-machine

The bot is rather simple. Each post it publishes holds a `day` and a `storyNumber` in its `json_metadata`. So by looking at the last post the bot knows where we are. Each post contains the current story, as far as it has progressed, in its body between two markers. (This will probably also go into the `json_metadata`.)

It reads all the comments of the most recent post and picks the one that is valid and has the most upvotes. The voting weight or SteemPower of the voter is ignored. Whatever the community decides to append to the story gets appended in the new post.

It's a [node script](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js) and a little [helper file](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js) that uses the [steemjs](https://github.com/steemit/steem-js) library.

- [get raw data from the blockchain](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L12)
- [prepare data](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L24)
- [extract current story](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L62)
- [handle most upvoted comment/command](https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L64)

#### TODO

- [prepare to get more than 100 posts](https://github.com/mktcode/the-magic-story-machine/blob/master/helper.js#L8)
- automatically raffle/distribute the generated rewards
- automatically reply to the most upvoted comment
- automatically upvote post
- publish on Twitter/Facebook

**Idea:** Maybe this approach of using comments as commands for what happens in the next post or whereever... could be a thing of it's own, a little helper class to easily configure commands and actions. But that's just an idea. Maybe someone want's to pick it up.

## The Website

http://the-magic-frog.com
https://github.com/mktcode/the-magic-frog

I created the website mainly to display the current pot value and to avoid wrongly formatted comments but actually it makes the project visible outside of Steem and so I thought maybe it can even attract some people from outside. If only the sign up process would be faster... :(

Currently the website gives a brief introduction to the project and displays the current story, its pot value and the suggestions how the story could go on. You can login via SteemConnect to vote on the story and other comments and of course write your own one.

#### Vue.js & Nuxt.js

The Website is built with [Nuxt.js](https://nuxtjs.org), a framework on top of [Vue.js](https://vuejs.org/). There is the [main page](https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue) and an [auth page](https://github.com/mktcode/the-magic-frog/blob/master/pages/auth.vue) to receive the SteemConnect access_token and safe it in a cookie.

The rest is just [fetching some async data](https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L192), [connecting to SteemConnect](https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L231) and some templating.
Well, and of course, handling the [commenting](https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L374) and [voting](https://github.com/mktcode/the-magic-frog/blob/master/components/LikeButton.vue#L38)... since this was the initial intention. It makes sure that a comment is not longer than 250 characters and makes it more clear how to end a story. And be careful when voting. Votes are always at 100%. ;)

**Bootstrap**

The website uses [Bootstrap-Vue](https://bootstrap-vue.js.org), a very nice bootstrap integration for Vue.js. With Nuxt.js you only need to select it on install and you are ready to go.

**Notifications**

There are currently no notifications, except for one error message. I implemented [vue-notification](http://vue-notification.yev.io/) for that. There will be more notifications, for example when your comment gets upvoted or makes it into the story or when a story ends and aaaaall the money gets distributed.

**Custom Components**

I used the component functionality only for the [Navbar](https://github.com/mktcode/the-magic-frog/blob/master/components/NavbarLoggedOut.vue), the [LikeButton](https://github.com/mktcode/the-magic-frog/blob/master/components/LikeButton.vue) and the [Commands](https://github.com/mktcode/the-magic-frog/blob/master/components/Command.vue). Everything else happens in the index file.

#### TODO

There still is a lot of room for improvements.

- Enable HTTPS
- Wallet Integration
- User Ranking
- Story Archive
- Twitter/Facebook share buttons
- Notifications
- Educational Content about Steem
- Style the [Auth Page](https://github.com/mktcode/the-magic-frog/blob/master/pages/auth.vue)... at least a little bit.

**Bye the way... Thanks a lot @wehmoen, for sponsoring the domain and the server for the website.**


# Big Plans

## Audio/Print Version

As I mentioned earlier, I want to make this project big. If it reaches a certain size and popularity and once we have generated some interesting and funny stories I can easily imagine to publish a printed version, in small numbers.

One thing I definitely want to have is an audio version. @buckydurddle, who is the voice of the [Utopian videos](https://www.youtube.com/channel/UCiVqJ8VrvjqRKuPD_Hj-6bw) already showed some interest in helping me with that! I will come back to you very soon! ;)

## Promotion

The idea was really very spontaneous and silly but people seem to enjoy it and even people outside of Steem, that I've talked to, think this is a really interesting idea, although they don't understand how on earth this can generate some revenue. I believe this project can also serve as a little promotional campaign for Steem. Therefore I need to improve the Steem-related information provided on the website. But it must be very "integrated" and fitting the project. People must not notice that this is a promotional campaign... it's my version of a trojan horse! :D

@the-magic-frog currently has less than 50 followers. I want 1000... at least! So I definitely need some influencers to promote the project. See this post as a first call for such people, but maybe there will a separate Task Request for that and other things on the list. I definitely see some stickers on traffic lights and street lights and for sure there will be banners on Facebook (if they don't ban it :D) and elsewhere.

## Other languages

Currently the project is only in English but of course, theoretically there can be a version for every language. I will take care of the German version myself very soon, but if you are interested in supporting the project in your language, you are very welcome to contact me and we can make it happen. I will cover the technical part and you can translate the background story or come up with your own.

# Support

Everyone is welcome to help the project to grow, of course! For the start the most effective way of doing this is **sharing the story posts**, upvoting them to raise the pot, and most important... **participate!**

#### Use [the website](http://the-magic-frog.com) to submit your comments and vote on other peoples ideas!

There are already two interesting suggestions today!

If you do not consider yourself to be the incarnation of creativity itself... but you also feel way to powerful, you can share some of your power and **delegate** it to the frog. I initially delegated 500 SP but I think it can be some more. Of course 50 % of the rewards will be powered up, so upvoting the story posts also helps very much... but if you want to give the frog an instant boost... feel free to delegate a little something. Maybe I can come up with a way to reward delegators as well. We'll see.

Get in touch with me on Discord: @mkt#8655

# The End! ;)

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@mkt/the-magic-frog-collaborative-storytelling-bot-and-website">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 146 others
properties (23)
post_id45,009,947
authormkt
permlinkthe-magic-frog-collaborative-storytelling-bot-and-website
categoryutopian-io
json_metadata"{"staff_pick": null, "platform": "github", "config": {"questions": [{"question": "How would you describe the formatting, language and overall presentation of the post?", "answers": [{"answer": "The quality of the post is fantastic.", "value": 10, "answer_id": "dev-1-a-1"}, {"answer": "The post is of very good quality. ", "value": 8, "answer_id": "dev-1-a-2"}, {"answer": "The post is poorly written and/or formatted, but readable.", "value": 3, "answer_id": "dev-1-a-3"}, {"answer": "The post is really hard to read and the content is barely understandable.", "value": 0, "answer_id": "dev-1-a-4"}], "question_id": "dev-1"}, {"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?", "answers": [{"answer": "This contribution adds high value and holds great significance for the project and/or open source ecosystem.", "value": 35, "answer_id": "dev-2-a-1"}, {"answer": "This contribution adds some value to the project and/or open source ecosystem. ", "value": 28, "answer_id": "dev-2-a-2"}, {"answer": "This contribution adds some value to the project and/or open source ecosystem.", "value": 17.5, "answer_id": "dev-2-a-3"}, {"answer": "This contribution hold no value and is insignificant in impact. ", "value": 0, "answer_id": "dev-2-a-4"}], "question_id": "dev-2"}, {"question": "How would you rate the total volume of work invested into this contribution?", "answers": [{"answer": "This contribution appears to have demanded a lot of intensive work.", "value": 20, "answer_id": "dev-3-a-1"}, {"answer": "This contribution appears to have required an average volume of work.", "value": 14, "answer_id": "dev-3-a-2"}, {"answer": "This contribution shows some work done.", "value": 6, "answer_id": "dev-3-a-3"}, {"answer": "This contribution shows no work done.", "value": 0, "answer_id": "dev-3-a-4"}], "question_id": "dev-3"}, {"question": "How would you rate the quality of the code submitted?", "answers": [{"answer": "High - it follows all best practices. ", "value": 20, "answer_id": "dev-4-a-1"}, {"answer": "Average - it follows most best practices.", "value": 14, "answer_id": "dev-4-a-2"}, {"answer": "Low - it follows some best practices.", "value": 6, "answer_id": "dev-4-a-3"}, {"answer": "Very low - it doesn't follow any best practices. ", "value": 0, "answer_id": "dev-4-a-4"}], "question_id": "dev-4"}, {"question": "How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?", "answers": [{"answer": "High - a lot of research and specific knowledge was required.", "value": 7.5, "answer_id": "dev-5-a-1"}, {"answer": "Average - some research and knowledge was required.", "value": 5.25, "answer_id": "dev-5-a-2"}, {"answer": "Low - not much knowledge or skill were required.", "value": 2.25, "answer_id": "dev-5-a-3"}, {"answer": "Insignificant - no knowledge or skills were necessary.", "value": 0, "answer_id": "dev-5-a-4"}], "question_id": "dev-5"}, {"question": "How would you rate the accuracy and readability of the commit messages?", "answers": [{"answer": "High - they are concise, descriptive and consistent. ", "value": 2.5, "answer_id": "dev-6-a-1"}, {"answer": "Average - they are mostly concise, descriptive and consistent. ", "value": 2, "answer_id": "dev-6-a-2"}, {"answer": "Low - they could be more concise, descriptive or consistent.", "value": 0.75, "answer_id": "dev-6-a-3"}, {"answer": "Very low - they aren't concise, descriptive or consistent at all.", "value": 0, "answer_id": "dev-6-a-4"}], "question_id": "dev-6"}, {"question": "How do you rate the quality of the comments in the code?", "answers": [{"answer": "High - everything is well-commented and adds to the readability of the code. ", "value": 5, "answer_id": "dev-7-a-1"}, {"answer": "Average - most of the code is commented and most if it adds to the readability of the code.", "value": 3, "answer_id": "dev-7-a-2"}, {"answer": "Low - little of the code is commented, but it still adds to the readability.", "value": 1.5, "answer_id": "dev-7-a-3"}, {"answer": "Very low - the added comments provide no value or are not present at all.", "value": 0, "answer_id": "dev-7-a-4"}], "question_id": "dev-7"}]}, "pullRequests": [], "users": ["the-magic-frog.", "the-magic-frog", "enforcer48", "wehmoen", "buckydurddle", "mkt"], "questions": {"total_influence": 0, "voters": ["wehmoen"], "answers": [{"user": "wehmoen", "influence": 100, "answer_id": "dev-1-a-2", "question_id": "dev-1"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-2-a-2", "question_id": "dev-2"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-3-a-2", "question_id": "dev-3"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-4-a-1", "question_id": "dev-4"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-5-a-1", "question_id": "dev-5"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-6-a-1", "question_id": "dev-6"}, {"user": "wehmoen", "influence": 100, "answer_id": "dev-7-a-2", "question_id": "dev-7"}], "most_rated": [{"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-1-a-2", "question_id": "dev-1"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-2-a-2", "question_id": "dev-2"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-3-a-2", "question_id": "dev-3"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-4-a-1", "question_id": "dev-4"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-5-a-1", "question_id": "dev-5"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-6-a-1", "question_id": "dev-6"}, {"voters": ["wehmoen"], "influence": 100, "answer_id": "dev-7-a-2", "question_id": "dev-7"}]}, "app": "utopian/1.0.0", "score": 83, "type": "development", "links": ["https://steemit.com/introduceyourself/@the-magic-frog/this-is-the-magic-story-machine-help-the-not-so-magic-frog-collaborative-storytelling-click-it-there-s-money-to-win", "https://steemit.com/themagicfrog/@the-magic-frog/the-magic-story-1-day-14", "https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js", "https://github.com/steemit/steem-js", "https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L12", "https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L24", "https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L62", "https://github.com/mktcode/the-magic-story-machine/blob/master/bot.js#L64", "https://github.com/mktcode/the-magic-story-machine/blob/master/helper.js#L8", "https://nuxtjs.org", "https://vuejs.org/", "https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue", "https://github.com/mktcode/the-magic-frog/blob/master/pages/auth.vue", "https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L192", "https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L231", "https://github.com/mktcode/the-magic-frog/blob/master/pages/index.vue#L374", "https://github.com/mktcode/the-magic-frog/blob/master/components/LikeButton.vue#L38", "https://bootstrap-vue.js.org", "http://vue-notification.yev.io/", "https://github.com/mktcode/the-magic-frog/blob/master/components/NavbarLoggedOut.vue", "https://github.com/mktcode/the-magic-frog/blob/master/components/LikeButton.vue", "https://github.com/mktcode/the-magic-frog/blob/master/components/Command.vue", "https://www.youtube.com/channel/UCiVqJ8VrvjqRKuPD_Hj-6bw", "http://the-magic-frog.com"], "moderator": {"time": "2018-04-23T16:49:11.115Z", "pending": false, "reviewed": true, "flagged": false, "account": "helo"}, "community": "utopian", "tags": ["utopian-io", "themagicfrog", "story", "funny", "development"], "total_influence": 100, "repository": {"full_name": "mktcode/the-magic-frog", "owner": {"login": "mktcode"}, "id": 129508834, "fork": false, "html_url": "https://github.com/mktcode/the-magic-frog", "name": "the-magic-frog"}, "format": "markdown"}"
created2018-04-23 13:53:12
last_update2018-04-23 16:49:12
depth0
children33
net_rshares39,379,025,984,115
last_payout2018-04-30 13:53:12
cashout_time1969-12-31 23:59:59
total_payout_value176.932 SBD
curator_payout_value64.897 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10,886
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (210)
@the-magic-frog ·
$0.56
The.... the.... the architect! So all the rumors and myths are actually true. Wow!
👍  , , , ,
properties (23)
post_id45,010,387
authorthe-magic-frog
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t135605123z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 13:56:06
last_update2018-04-23 13:56:06
depth1
children2
net_rshares81,174,404,754
last_payout2018-04-30 13:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.533 SBD
curator_payout_value0.025 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length82
author_reputation1,584,893,192,461
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@wehmoen · (edited)
$0.19
properties (23)
post_id45,021,408
authorwehmoen
permlinkre-the-magic-frog-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t151342975z
categoryutopian-io
json_metadata{}
created2018-04-23 15:13:48
last_update2020-06-03 05:13:03
depth2
children1
net_rshares27,611,684,951
last_payout2018-04-30 15:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.180 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation66,748,950,931,416
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@the-magic-frog ·
He's the father of... literally.... EVERYTHING! I'm fine... but what a revelation! I'm still shaking!
properties (22)
post_id45,021,826
authorthe-magic-frog
permlinkre-wehmoen-re-the-magic-frog-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t151632736z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 15:16:33
last_update2018-04-23 15:16:33
depth3
children0
net_rshares0
last_payout2018-04-30 15:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length101
author_reputation1,584,893,192,461
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@enforcer48 · (edited)
$0.32
I like this project. It's fun and engaging. (I noticed that I got quoted lol)

As for other languages, I think it's definitely worth asking @justyy, one of the five Chinese Witnesses, to see if he knows anyone that would be interested in this project in Chinese.
👍  ,
properties (23)
post_id45,010,786
authorenforcer48
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t135846351z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 13:58:48
last_update2018-04-23 13:59:57
depth1
children1
net_rshares46,351,377,776
last_payout2018-04-30 13:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.242 SBD
curator_payout_value0.075 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length262
author_reputation72,258,491,181,307
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
I'll definitely do that!
@justyy? Haven't talked for some while? How are you? :P

Btw @enforcer48 I totally forgot to mention you. Corrected it now! ;)
👍  
properties (23)
post_id45,016,147
authormkt
permlinkre-enforcer48-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t143632266z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 14:36:39
last_update2018-04-23 14:36:39
depth2
children0
net_rshares119,181,626
last_payout2018-04-30 14:36:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length151
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@angela.merkel ·
$0.36
Lieber Bürger,
mit Wohlwollen habe ich Ihren Beitrag gelesen. Vielen Dank, dass Sie sich an der Steem Blockchain beteiligen.

Hochachtungsvoll,

Ihre Bundeskanzlerin
👍  ,
properties (23)
post_id45,018,660
authorangela.merkel
permlink20180423t145418688z
categoryutopian-io
json_metadata{}
created2018-04-23 14:54:18
last_update2018-04-23 14:54:18
depth1
children3
net_rshares52,265,293,560
last_payout2018-04-30 14:54:18
cashout_time1969-12-31 23:59:59
total_payout_value0.352 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length165
author_reputation-20,627,397,818
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
Vielen Dank für Ihre Aufmerksamkeit! Die deutsche Version wird bald veröffentlicht!
Hochachtungsvoll... mkt!
properties (22)
post_id45,019,434
authormkt
permlinkre-angelamerkel-20180423t145418688z-20180423t150002104z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-23 15:00:03
last_update2018-04-23 15:00:03
depth2
children0
net_rshares0
last_payout2018-04-30 15:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length108
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@spaminator ·
$0.64
When you copy/paste or repeatedly type the same comments you could be mistaken for a bot. 

[Tips to avoid being flagged](https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment)

Thank You! ⚜
👍  
properties (23)
post_id45,039,085
authorspaminator
permlinkre-angelamerkel-20180423t145418688z-20180423t172528663z
categoryutopian-io
json_metadata"{"links": ["https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment"], "app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 17:25:30
last_update2018-04-23 17:25:30
depth2
children0
net_rshares92,755,237,580
last_payout2018-04-30 17:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.558 SBD
curator_payout_value0.079 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length252
author_reputation66,069,344,800,759
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@besold ·
<center><a href="https://amzn.to/2qL5XVD" title="Aufkleber: Merkel muß weg Schwarz 100 St. - Amazon.DE" target="_blank"><img src="https://images-na.ssl-images-amazon.com/images/I/51hEKOrOGkL._SX200_.jpg" alt="Aufkleber: Merkel muß weg 100 St. Schwarz"></a></center>
properties (22)
post_id45,500,651
authorbesold
permlinkre-angelamerkel-20180423t145418688z-20180426t112040042z
categoryutopian-io
json_metadata"{"links": ["https://amzn.to/2qL5XVD"], "app": "steemit/0.1", "image": ["https://images-na.ssl-images-amazon.com/images/I/51hEKOrOGkL._SX200_.jpg"], "tags": ["utopian-io"]}"
created2018-04-26 11:20:39
last_update2018-04-26 11:20:39
depth2
children0
net_rshares0
last_payout2018-05-03 11:20:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length265
author_reputation582,848,328,798
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@vladimir.putin ·
$0.41
For the preservation of the majestic Russia!
👍  ,
properties (23)
post_id45,019,161
authorvladimir.putin
permlink20180423t145751796z
categoryutopian-io
json_metadata{}
created2018-04-23 14:57:51
last_update2018-04-23 14:57:51
depth1
children1
net_rshares59,673,267,403
last_payout2018-04-30 14:57:51
cashout_time1969-12-31 23:59:59
total_payout_value0.406 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length44
author_reputation9,476,908,045
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt · (edited)
Sa sdorowje!
properties (22)
post_id45,019,840
authormkt
permlinkre-vladimirputin-20180423t145751796z-20180423t150255730z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 15:02:57
last_update2018-04-23 20:51:12
depth2
children0
net_rshares0
last_payout2018-04-30 15:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@chrislyr ·
$0.31
The idea is really interesting and I'm enjoying participating in it. Too bad that there are very few participants at the moment. It could really use some more love thats for sure. My account is new so I don't have much followers yet. Nonetheless, I will still resteem this to show my support.
👍  ,
properties (23)
post_id45,020,127
authorchrislyr
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t150445430z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 15:05:00
last_update2018-04-23 15:05:00
depth1
children1
net_rshares45,487,954,752
last_payout2018-04-30 15:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.302 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length292
author_reputation15,213,257,710,618
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt · (edited)
The Frog once said.... "Every tiny little help is appreciated... a tiny little bit!" :P No, honestly, thank you! :)
properties (22)
post_id45,020,759
authormkt
permlinkre-chrislyr-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t150933994z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 15:09:42
last_update2018-04-27 22:55:15
depth2
children0
net_rshares0
last_payout2018-04-30 15:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@helo ·
$0.19
Thank you for the contribution. It has been reviewed.

* Please add a license to your github repo.
* I love projects like this, rewarding creativity is a very lofty goal.
* I'm also interested in getting the French version going.

----------------------------------------------------------------------
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)**
👍  ,
properties (23)
post_id45,035,765
authorhelo
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t165637020z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-23 16:56:36
last_update2018-04-23 16:56:36
depth1
children4
net_rshares43,955,073,696
last_payout2018-04-30 16:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.192 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length471
author_reputation119,612,833,307,875
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
$0.15
Thank you for reviewing my contribution. I know that you actually read it! :D Thank you @helo! I added the license file... ;) More descriptive README files will follow soon! :P
👍  
properties (23)
post_id45,042,038
authormkt
permlinkre-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174553707z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 17:45:54
last_update2018-04-23 17:45:54
depth2
children2
net_rshares22,939,432,899
last_payout2018-04-30 17:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.154 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length176
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@helo ·
$0.29
And I can see you are still testing me. ;-)
👍  ,
properties (23)
post_id45,042,406
authorhelo
permlinkre-mkt-re-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174848401z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 17:48:48
last_update2018-04-23 17:48:48
depth3
children1
net_rshares42,729,603,430
last_payout2018-04-30 17:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.280 SBD
curator_payout_value0.012 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation119,612,833,307,875
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
Oh and btw @helo .... It would be a pure honor to have you on board for the french version! Give me some time! :)
properties (22)
post_id45,042,521
authormkt
permlinkre-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174941037z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 17:49:42
last_update2018-04-23 17:49:42
depth2
children0
net_rshares0
last_payout2018-04-30 17:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length113
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@maviadam ·
$0.19
Very creative way to making  a story.Awards increase creativity for most peoples but not every...
👍  ,
properties (23)
post_id45,040,395
authormaviadam
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t173400348z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-23 17:34:00
last_update2018-04-23 17:34:00
depth1
children0
net_rshares43,822,449,915
last_payout2018-04-30 17:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.192 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length97
author_reputation0
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@andreistalker ·
$0.18
I would like to help you by running the Romanian version!
👍  ,
properties (23)
post_id45,048,471
authorandreistalker
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t183910681z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-23 18:38:57
last_update2018-04-23 18:38:57
depth1
children3
net_rshares40,565,319,598
last_payout2018-04-30 18:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.180 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation7,394,160,765,861
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
Awesome! I will come back to you once I've set up all the prerequisites for multi language support!
properties (22)
post_id45,064,713
authormkt
permlinkre-andreistalker-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t210353183z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 21:03:54
last_update2018-04-23 21:03:54
depth2
children2
net_rshares0
last_payout2018-04-30 21:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length99
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@andreistalker ·
Do you have a discord server?
properties (22)
post_id45,102,896
authorandreistalker
permlinkre-mkt-re-andreistalker-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180424t034240804z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-24 03:42:48
last_update2018-04-24 03:42:48
depth3
children1
net_rshares0
last_payout2018-05-01 03:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation7,394,160,765,861
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@samhamou ·
$0.20
i would love to do the arabic version
👍  ,
properties (23)
post_id45,064,222
authorsamhamou
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t205051305z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 20:50:57
last_update2018-04-23 20:50:57
depth1
children3
net_rshares30,189,372,741
last_payout2018-04-30 20:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.196 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation32,276,682,404,275
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
$0.04
Seems like this will be an international project... :D Give me some time pls! I'll come back to you!
👍  
properties (23)
post_id45,064,350
authormkt
permlinkre-samhamou-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t205305309z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 20:53:06
last_update2018-04-23 20:53:06
depth2
children2
net_rshares5,642,089,847
last_payout2018-04-30 20:53:06
cashout_time1969-12-31 23:59:59
total_payout_value0.032 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@samhamou ·
great . btw you can find me on the utopian discord channel , i am a moderator there
properties (22)
post_id45,065,663
authorsamhamou
permlinkre-mkt-re-samhamou-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t211457145z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-04-23 21:15:00
last_update2018-04-23 21:15:00
depth3
children1
net_rshares0
last_payout2018-04-30 21:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length83
author_reputation32,276,682,404,275
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tdre ·
$0.18
Thanks for your contribution @mkt.  I've joined the others who've scored it.  

Let me also say as an aficionado of collaborative writing I am very excited about this one.  Both from a user's and developer's perspective it promises to be a lot of fun. 


One of the things the questionnaire asked us to score was your commit messages.  Your messages were okay but could have done more to inform other developers of the intent and process behind each commit.

One of the [best practices](https://chris.beams.io/posts/git-commit/) that I try to follow for commit messages is to use the imperative mood. It tends be clear, concise and easy for the reader to follow. For example, instead of...
# 
> **fixes/adjustments**


consider something like...


> **Fix commands and adjust comments**
# 
Writing as if we were telling someone else what needs to be done encourages us to find the essence of each commit.  Tiny commits are also easier to write about.

Another area the questionnaire asked us to score was 'completeness' of your comments.  I gave you the highest rating in this area because your code was understandable, followed readable conventions, and didn't need extensive comments.  

The comments that were included were appropriate for reference and warning.  In my opinion this is the practice that should be encouraged over writing lots of comments.

Again, I think very highly of your project.  The feedback above are just some finer points to help you score even higher.

Best wishes!
👍  ,
properties (23)
post_id45,065,902
authortdre
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t211705488z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-23 21:17:06
last_update2018-04-23 21:17:06
depth1
children2
net_rshares40,095,912,815
last_payout2018-04-30 21:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.176 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,495
author_reputation18,290,358,680,145
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
weight1,500
accountutopian.pay
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mkt ·
$0.29
What a feedback! Thank you. You are taking your job serious! And I'll try to improve my commit messages.... but I also promised my mother to never take drugs and so on,... so, don't count on me. :D
👍  
properties (23)
post_id45,073,808
authormkt
permlinkre-tdre-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t224350066z
categoryutopian-io
json_metadata"{"app": "busy/2.4.0", "community": "busy", "tags": ["utopian-io"]}"
created2018-04-23 22:43:51
last_update2018-04-23 22:43:51
depth2
children1
net_rshares42,651,591,663
last_payout2018-04-30 22:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.218 SBD
curator_payout_value0.071 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length197
author_reputation44,782,786,305,028
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@tdre ·
![](https://steemitimages.com/DQmeT5VrrAVKabUgV5BTuk8ANfeYn6ZUUivFMiwYz4uskrS/image.png)

But we will never give up hope! :D
properties (22)
post_id45,250,705
authortdre
permlinkre-mkt-re-tdre-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180424t235112946z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmeT5VrrAVKabUgV5BTuk8ANfeYn6ZUUivFMiwYz4uskrS/image.png"], "tags": ["utopian-io"]}"
created2018-04-24 23:51:12
last_update2018-04-24 23:51:12
depth3
children0
net_rshares0
last_payout2018-05-01 23:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length124
author_reputation18,290,358,680,145
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
$0.26
### Hey @mkt! Thank you for the great work you've done!
We're already looking forward to your next contribution!
#### Fully Decentralized Rewards
We hope you will take the time to 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**
👍  ,
properties (23)
post_id45,351,181
authorutopian-io
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180425t140042575z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-04-25 14:00:42
last_update2018-04-25 14:00:42
depth1
children0
net_rshares40,422,870,636
last_payout2018-05-02 14:00:42
cashout_time1969-12-31 23:59:59
total_payout_value0.196 SBD
curator_payout_value0.059 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length683
author_reputation152,913,012,544,965
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@steemdunk ·
$1.34
steemdunk-reply-1524813393522
<div class="pull-left">
  <img src="https://steemitimages.com/DQmUPMtijhGPhMzWGPewaCwyGhAkpEmakB5vEEiUDEeEHw7/steemdunk-logo-100x.png">
</div>

Hello, as a member of @steemdunk you have received a free courtesy boost! Steemdunk is an automated curation platform that is easy to use and built for the community. Join us at https://steemdunk.xyz

Upvote this comment to support the bot and increase your future rewards!
👍  
properties (23)
post_id45,643,831
authorsteemdunk
permlinksteemdunk-reply-1524813393522
categoryutopian-io
json_metadata{}
created2018-04-27 07:16:42
last_update2018-04-27 07:16:42
depth1
children0
net_rshares212,982,205,658
last_payout2018-05-04 07:16:42
cashout_time1969-12-31 23:59:59
total_payout_value1.008 SBD
curator_payout_value0.333 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length418
author_reputation1,829,035,868,014
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@steembottrackerr ·
<center>https://steemitimages.com/200x200/https://s-media-cache-ak0.pinimg.com/originals/81/28/3c/81283c6aed7bdb5b9f8ad73b8ce62c2f.jpg</center>
---
<center>Hello @mkt , Congratulations ✅ . Your content began to appear in the hot section.
I am the information account of "SteemBotTracker" site.
</center>
---
<center>
Your Informations
Total SBD: 0.149
Total STEEM: 554.481
</center>
---
<center>
I recommend to increase this;
You can make "Resteem" and advertise to the followers of the whale accounts.
"Resteem Bot" for you;
✅ The most profitable Resteem Whale @byresteem  has 25.500 Followers + 7000 Sp + Upvote with min +55 accounts. 
</center>
---
<center>
You can purchase "upvote" by bid bots.
"Upvote Bot"
✅ The most profitable whale in the last round. @buildawhale
</center>
---
<center>
I'm taking this message once. You need to use the #steembottrackerr tag for more information.
Those who "upvote" this interpretation will be awarded a "UpVote" prize of 100 Sbd per week per person.
I am a bot, I can not answer the comment. I hope I could help. Good luck. Sorry if I disturbed you.
</center>
properties (22)
post_id46,088,349
authorsteembottrackerr
permlink20180429t230320805z
categoryutopian-io
json_metadata"{"app": "steemjs/test", "tags": ["advice"]}"
created2018-04-29 23:03:24
last_update2018-04-29 23:03:24
depth1
children0
net_rshares0
last_payout2018-05-06 23:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,132
author_reputation-1,494,322,874,274
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000