create account

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

View this thread on: hive.blogpeakd.comecency.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)
authormkt
permlinkthe-magic-frog-collaborative-storytelling-bot-and-website
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":129508834,"name":"the-magic-frog","full_name":"mktcode/the-magic-frog","html_url":"https://github.com/mktcode/the-magic-frog","fork":false,"owner":{"login":"mktcode"}},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","themagicfrog","story","funny","development"],"users":["the-magic-frog.","the-magic-frog","enforcer48","wehmoen","buckydurddle","mkt"],"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":{"account":"helo","time":"2018-04-23T16:49:11.115Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["wehmoen"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"wehmoen","influence":100},{"question_id":"dev-2","answer_id":"dev-2-a-2","user":"wehmoen","influence":100},{"question_id":"dev-3","answer_id":"dev-3-a-2","user":"wehmoen","influence":100},{"question_id":"dev-4","answer_id":"dev-4-a-1","user":"wehmoen","influence":100},{"question_id":"dev-5","answer_id":"dev-5-a-1","user":"wehmoen","influence":100},{"question_id":"dev-6","answer_id":"dev-6-a-1","user":"wehmoen","influence":100},{"question_id":"dev-7","answer_id":"dev-7-a-2","user":"wehmoen","influence":100}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":100,"voters":["wehmoen"]},{"question_id":"dev-2","answer_id":"dev-2-a-2","influence":100,"voters":["wehmoen"]},{"question_id":"dev-3","answer_id":"dev-3-a-2","influence":100,"voters":["wehmoen"]},{"question_id":"dev-4","answer_id":"dev-4-a-1","influence":100,"voters":["wehmoen"]},{"question_id":"dev-5","answer_id":"dev-5-a-1","influence":100,"voters":["wehmoen"]},{"question_id":"dev-6","answer_id":"dev-6-a-1","influence":100,"voters":["wehmoen"]},{"question_id":"dev-7","answer_id":"dev-7-a-2","influence":100,"voters":["wehmoen"]}]},"score":83,"total_influence":100,"staff_pick":null,"config":{"questions":[{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"dev-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"dev-1-a-1","value":10},{"answer":"The post is of very good quality. ","answer_id":"dev-1-a-2","value":8},{"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 some value to the project and/or open source ecosystem. ","answer_id":"dev-2-a-2","value":28},{"answer":"This contribution adds some value to the project and/or open source ecosystem.","answer_id":"dev-2-a-3","value":17.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}]}]}}"
created2018-04-23 13:53:12
last_update2018-04-23 16:49:12
depth0
children33
last_payout2018-04-30 13:53:12
cashout_time1969-12-31 23:59:59
total_payout_value176.932 HBD
curator_payout_value64.897 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,886
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,684,057
net_rshares39,379,025,984,115
author_curate_reward""
vote details (210)
@andreistalker ·
$0.18
I would like to help you by running the Romanian version!
👍  ,
properties (23)
authorandreistalker
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t183910681z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 18:38:57
last_update2018-04-23 18:38:57
depth1
children3
last_payout2018-04-30 18:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.180 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation8,239,814,251,608
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,728,048
net_rshares40,565,319,598
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)
authormkt
permlinkre-andreistalker-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t210353183z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 21:03:54
last_update2018-04-23 21:03:54
depth2
children2
last_payout2018-04-30 21:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,746,486
net_rshares0
@andreistalker ·
Do you have a discord server?
properties (22)
authorandreistalker
permlinkre-mkt-re-andreistalker-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180424t034240804z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-24 03:42:48
last_update2018-04-24 03:42:48
depth3
children1
last_payout2018-05-01 03:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation8,239,814,251,608
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,789,315
net_rshares0
@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)
authorangela.merkel
permlink20180423t145418688z
categoryutopian-io
json_metadata{}
created2018-04-23 14:54:18
last_update2018-04-23 14:54:18
depth1
children3
last_payout2018-04-30 14:54:18
cashout_time1969-12-31 23:59:59
total_payout_value0.352 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation-20,612,002,050
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,694,016
net_rshares52,265,293,560
author_curate_reward""
vote details (2)
@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)
authorbesold
permlinkre-angelamerkel-20180423t145418688z-20180426t112040042z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://images-na.ssl-images-amazon.com/images/I/51hEKOrOGkL._SX200_.jpg"],"links":["https://amzn.to/2qL5XVD"],"app":"steemit/0.1"}
created2018-04-26 11:20:39
last_update2018-04-26 11:20:39
depth2
children0
last_payout2018-05-03 11:20:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length265
author_reputation1,063,190,509,973
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,241,696
net_rshares0
@mkt ·
Vielen Dank für Ihre Aufmerksamkeit! Die deutsche Version wird bald veröffentlicht!
Hochachtungsvoll... mkt!
properties (22)
authormkt
permlinkre-angelamerkel-20180423t145418688z-20180423t150002104z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 15:00:03
last_update2018-04-23 15:00:03
depth2
children0
last_payout2018-04-30 15:00:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,694,928
net_rshares0
@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)
authorspaminator
permlinkre-angelamerkel-20180423t145418688z-20180423t172528663z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steemit-abuse/@spaminator/updated-your-reputation-could-be-a-tasty-snack-with-the-wrong-comment"],"app":"steemit/0.1"}
created2018-04-23 17:25:30
last_update2018-04-23 17:25:30
depth2
children0
last_payout2018-04-30 17:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.558 HBD
curator_payout_value0.079 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation68,078,150,632,608
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,717,330
net_rshares92,755,237,580
author_curate_reward""
vote details (1)
@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)
authorchrislyr
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t150445430z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 15:05:00
last_update2018-04-23 15:05:00
depth1
children1
last_payout2018-04-30 15:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.302 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation19,289,148,102,808
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,695,696
net_rshares45,487,954,752
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)
authormkt
permlinkre-chrislyr-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t150933994z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 15:09:42
last_update2018-04-27 22:55:15
depth2
children0
last_payout2018-04-30 15:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,696,406
net_rshares0
@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)
authorenforcer48
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t135846351z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 13:58:48
last_update2018-04-23 13:59:57
depth1
children1
last_payout2018-04-30 13:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.242 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation426,233,073,731,239
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,684,998
net_rshares46,351,377,776
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)
authormkt
permlinkre-enforcer48-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t143632266z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 14:36:39
last_update2018-04-23 14:36:39
depth2
children0
last_payout2018-04-30 14:36:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,691,165
net_rshares119,181,626
author_curate_reward""
vote details (1)
@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)
authorhelo
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t165637020z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 16:56:36
last_update2018-04-23 16:56:36
depth1
children4
last_payout2018-04-30 16:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.192 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length471
author_reputation121,547,934,535,311
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,713,521
net_rshares43,955,073,696
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)
authormkt
permlinkre-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174553707z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 17:45:54
last_update2018-04-23 17:45:54
depth2
children2
last_payout2018-04-30 17:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.154 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,720,630
net_rshares22,939,432,899
author_curate_reward""
vote details (1)
@helo ·
$0.29
And I can see you are still testing me. ;-)
👍  ,
properties (23)
authorhelo
permlinkre-mkt-re-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174848401z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 17:48:48
last_update2018-04-23 17:48:48
depth3
children1
last_payout2018-04-30 17:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.280 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation121,547,934,535,311
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,721,045
net_rshares42,729,603,430
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)
authormkt
permlinkre-helo-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t174941037z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 17:49:42
last_update2018-04-23 17:49:42
depth2
children0
last_payout2018-04-30 17:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,721,179
net_rshares0
@maviadam ·
$0.19
Very creative way to making  a story.Awards increase creativity for most peoples but not every...
👍  ,
properties (23)
authormaviadam
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t173400348z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 17:34:00
last_update2018-04-23 17:34:00
depth1
children0
last_payout2018-04-30 17:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.192 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation773,430,376
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,718,790
net_rshares43,822,449,915
author_curate_reward""
vote details (2)
@samhamou ·
$0.20
i would love to do the arabic version
👍  ,
properties (23)
authorsamhamou
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t205051305z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 20:50:57
last_update2018-04-23 20:50:57
depth1
children3
last_payout2018-04-30 20:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.196 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation32,160,238,527,805
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,745,935
net_rshares30,189,372,741
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)
authormkt
permlinkre-samhamou-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t205305309z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 20:53:06
last_update2018-04-23 20:53:06
depth2
children2
last_payout2018-04-30 20:53:06
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,746,082
net_rshares5,642,089,847
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)
authorsamhamou
permlinkre-mkt-re-samhamou-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t211457145z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 21:15:00
last_update2018-04-23 21:15:00
depth3
children1
last_payout2018-04-30 21:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation32,160,238,527,805
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,747,556
net_rshares0
@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)
authorsteembottrackerr
permlink20180429t230320805z
categoryutopian-io
json_metadata{"tags":["advice"],"app":"steemjs/test"}
created2018-04-29 23:03:24
last_update2018-04-29 23:03:24
depth1
children0
last_payout2018-05-06 23:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,132
author_reputation-1,493,369,324,060
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,915,365
net_rshares0
@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)
authorsteemdunk
permlinksteemdunk-reply-1524813393522
categoryutopian-io
json_metadata{}
created2018-04-27 07:16:42
last_update2018-04-27 07:16:42
depth1
children0
last_payout2018-05-04 07:16:42
cashout_time1969-12-31 23:59:59
total_payout_value1.008 HBD
curator_payout_value0.333 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length418
author_reputation1,828,858,777,968
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,404,832
net_rshares212,982,205,658
author_curate_reward""
vote details (1)
@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)
authortdre
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t211705488z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-23 21:17:06
last_update2018-04-23 21:17:06
depth1
children2
last_payout2018-04-30 21:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.176 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,495
author_reputation28,296,055,808,693
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,747,833
net_rshares40,095,912,815
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)
authormkt
permlinkre-tdre-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t224350066z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 22:43:51
last_update2018-04-23 22:43:51
depth2
children1
last_payout2018-04-30 22:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.218 HBD
curator_payout_value0.071 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length197
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,756,716
net_rshares42,651,591,663
author_curate_reward""
vote details (1)
@tdre ·
![](https://steemitimages.com/DQmeT5VrrAVKabUgV5BTuk8ANfeYn6ZUUivFMiwYz4uskrS/image.png)

But we will never give up hope! :D
properties (22)
authortdre
permlinkre-mkt-re-tdre-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180424t235112946z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"image":["https://steemitimages.com/DQmeT5VrrAVKabUgV5BTuk8ANfeYn6ZUUivFMiwYz4uskrS/image.png"],"app":"steemit/0.1"}
created2018-04-24 23:51:12
last_update2018-04-24 23:51:12
depth3
children0
last_payout2018-05-01 23:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation28,296,055,808,693
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,956,819
net_rshares0
@the-magic-frog ·
$0.56
The.... the.... the architect! So all the rumors and myths are actually true. Wow!
👍  , , , ,
properties (23)
authorthe-magic-frog
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t135605123z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 13:56:06
last_update2018-04-23 13:56:06
depth1
children2
last_payout2018-04-30 13:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.533 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation1,586,175,930,322
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,684,557
net_rshares81,174,404,754
author_curate_reward""
vote details (5)
@wehmoen · (edited)
$0.19
properties (23)
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 06:45:06
depth2
children1
last_payout2018-04-30 15:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.180 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation86,504,380,503,125
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,697,123
net_rshares27,611,684,951
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)
authorthe-magic-frog
permlinkre-wehmoen-re-the-magic-frog-re-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180423t151632736z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-04-23 15:16:33
last_update2018-04-23 15:16:33
depth3
children0
last_payout2018-04-30 15:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation1,586,175,930,322
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,697,612
net_rshares0
@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)
authorutopian-io
permlinkre-mkt-the-magic-frog-collaborative-storytelling-bot-and-website-20180425t140042575z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-25 14:00:42
last_update2018-04-25 14:00:42
depth1
children0
last_payout2018-05-02 14:00:42
cashout_time1969-12-31 23:59:59
total_payout_value0.196 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length683
author_reputation152,955,367,999,756
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,071,425
net_rshares40,422,870,636
author_curate_reward""
vote details (2)
@vladimir.putin ·
$0.41
For the preservation of the majestic Russia!
👍  ,
properties (23)
authorvladimir.putin
permlink20180423t145751796z
categoryutopian-io
json_metadata{}
created2018-04-23 14:57:51
last_update2018-04-23 14:57:51
depth1
children1
last_payout2018-04-30 14:57:51
cashout_time1969-12-31 23:59:59
total_payout_value0.406 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation9,481,856,745
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,694,601
net_rshares59,673,267,403
author_curate_reward""
vote details (2)
@mkt · (edited)
Sa sdorowje!
properties (22)
authormkt
permlinkre-vladimirputin-20180423t145751796z-20180423t150255730z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.4.0"}
created2018-04-23 15:02:57
last_update2018-04-23 20:51:12
depth2
children0
last_payout2018-04-30 15:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation45,513,283,519,678
root_title"The Magic Frog - Collaborative Storytelling (Bot and Website)"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,695,374
net_rshares0