create account

[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution) by jaysermendez

View this thread on: hive.blogpeakd.comecency.com
· @jaysermendez ·
$32.39
[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)
#### Repository & Pull Requests

---

https://github.com/knacksteem/knacksteem-api
https://github.com/knacksteem/knacksteem-api/pull/22

---

#### What is KnackSteem?

---

Knacksteem is an open source platform on the Steem blockchain that seeks to reward talents on a much broader scale, which eradicates partiality, and infuses transparency, on the blockchain. The initial goal of Steemit, which was to reward quality content was defeated in the sense that, creators of absolutely great content weren't recognized, and really cool talents were ignored. This major problem was the bane that stirred up the idea, creation, and finally, the development of Knacksteem. Talents and skills would never go unrecognized and unrewarded. The organization of Knacksteem makes this possible.

Source: https://steemit.com/knacksteem/@harry-heightz/knacksteem-the-new-den-of-talents-on-steem-blockchaingeneral-overview-and-personal-opinions-ideas-id-7dya4bjgagg

---

![Screen Shot 2019-01-27 at 10.07.22 PM.png](https://cdn.steemitimages.com/DQmTJPY5MnUwCx9z6aao8VKAWkbrWwoDHQYAePA5w3S2cPL/Screen%20Shot%202019-01-27%20at%2010.07.22%20PM.png)

#### High-level details of the work done
---
In this pull request, I completed the integration of a delegators' tokens distribution bot and a curation bot which includes voting based in a given weight, commenting, and assignation of the corresponding knack tokens per contribution.

The delegators' tokens distribution bot is scheduled to run every day at 12PM server time. In order to avoid missing a delegator, before the tokens distribution, the delegators are sync with our database to ensure that we have a user created for the delegator. 

The formula used to determine daily rewards for delegators is given as the following:

**(delegated amount * max daily rewards) / total delegated to knacksteem**

For example, I am delegating 2,577.818 Steem, Knacksteem has 6,444.486 Steem delegated, and the max rewards per day is 100,000. Thus, I should receive the following daily amount (only if total delegation does not change):

**(2,577.818 * 100000) / 6,444.486 = 40000.3678863609 KNT**

On the other hand, the curation bot is scheduled based on the remaining time to reach 100% voting power. When the server first run, the curation bot is triggered. If the voting power is not 100%, it will calculate how long it will take to reach 100% and will schedule the next run for the given time. If the voting power is 100% but the queue is empty, the voting round is postponed to one hour later and so forth until there are posts into the queue.

Before taking action in a post, the usage is calculated and we determine if this action will lower our voting power below 80.0%. If so, the voting round is postponed until voting power is 100% again.

Voting power recharges at a rate of 20% per 24 hours. So, from 0% to 100% it will take exactly 5 days to reach full capacity. 5 days is equivalent to 432000 seconds. Given this data, to determine fill rate per hour, we just need to drop 2 zeros from the 5 days in seconds time. Thus, voting power recharges 1% every 4320 seconds which is 1.2 hours. If we reverse back, 1.2 * 20 gives 24 which is the actual hours to reach 20%.

Given the explanation above, we can say that the following formula will give the remaining time to refill voting power in seconds:

**((100 - currentVp) * 4320)**

Another way to calculate the remaining time is by taking percentages in hours. To reach 100% from 0% it takes 5 days which is 120 hours. If our current voting power is 95%, we just need to take the 95% of 120 and subtract it from 120. For example:

95% of 120 is 114.
120 - 114 = 6 hours to reach 100%

which gives the following formula:

**120 - (N% of 120) = remaining time in hours**

If we compare both formulas, they yield to the same results:

**120 - (95% of 120) = 6hrs**
**((100 - 95) * 4320) = 21600s = 6hrs**

In brief, here are the steps that the curation bot takes:

- Check voting power
- If 100%, query pending post queue, else calculate remaining time and re-schedule
- Vote post
- Comment post
- Distribute KNT tokens to the user
- Delete post from the queue
- Calculate next curation round and re-schedule

And the delegators' tokens distribution bot takes the following step:

- Sync delegators
- Convert from vesting shares to Steem
- Calculate total delegations to KnackSteem
- Calculate rewards
- Give rewards to delegators

---

#### Want to learn more about KnackSteem?

---

Visit the following posts:

https://steemit.com/knacksteem/@knacksteem.org/welcome-knackstore-and-knacktokens-to-knacksteem
https://steemit.com/knacksteem/@knacksteem.org/knacksteem-for-investors-and-the-talented

---

#### Contributions

---

Feel free to join our channel https://discord.gg/t5RhBvE and we can show some of the pending tasks we have :)

---

#### Any question regarding implementation?

---
Feel free to ask me any question in the channel mentioned above or in the comments and I will try my best to answer them all.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 13 others
properties (23)
authorjaysermendez
permlinkknacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution
categoryutopian-io
json_metadata{"tags":["utopian-io","development","knacksteem","steemdev","steemapps"],"image":["https://cdn.steemitimages.com/DQmTJPY5MnUwCx9z6aao8VKAWkbrWwoDHQYAePA5w3S2cPL/Screen%20Shot%202019-01-27%20at%2010.07.22%20PM.png"],"links":["https://github.com/knacksteem/knacksteem-api","https://github.com/knacksteem/knacksteem-api/pull/22","https://steemit.com/knacksteem/@harry-heightz/knacksteem-the-new-den-of-talents-on-steem-blockchaingeneral-overview-and-personal-opinions-ideas-id-7dya4bjgagg","https://steemit.com/knacksteem/@knacksteem.org/welcome-knackstore-and-knacktokens-to-knacksteem","https://steemit.com/knacksteem/@knacksteem.org/knacksteem-for-investors-and-the-talented","https://discord.gg/t5RhBvE"],"app":"steemit/0.1","format":"markdown"}
created2019-01-28 06:12:48
last_update2019-01-28 06:12:48
depth0
children17
last_payout2019-02-04 06:12:48
cashout_time1969-12-31 23:59:59
total_payout_value24.588 HBD
curator_payout_value7.802 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,006
author_reputation20,790,862,502,465
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id79,045,726
net_rshares65,196,641,653,573
author_curate_reward""
vote details (77)
@amosbastian ·
Welcome back! How's your job going?
👍  ,
properties (23)
authoramosbastian
permlinkre-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t103545117z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-28 10:35:45
last_update2019-01-28 10:35:45
depth1
children3
last_payout2019-02-04 10:35:45
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_length35
author_reputation174,473,586,900,705
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,053,103
net_rshares6,262,875,719
author_curate_reward""
vote details (2)
@jaysermendez ·
Thanks man! Not back at all hahahhah. Still so busy at work! How about you?
properties (22)
authorjaysermendez
permlinkre-amosbastian-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t162002818z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-28 16:20:03
last_update2019-01-28 16:20:03
depth2
children2
last_payout2019-02-04 16:20: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_length75
author_reputation20,790,862,502,465
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,068,202
net_rshares0
@amosbastian ·
Still busy with university, but I should be done with it this year (unless I start a masters degree). Also looking for a job, I guess, so "hopefully" I'll be in your situation soon, haha.
👍  ,
properties (23)
authoramosbastian
permlinkre-jaysermendez-re-amosbastian-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190129t211530706z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-29 21:15:30
last_update2019-01-29 21:15:30
depth3
children1
last_payout2019-02-05 21:15:30
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_length187
author_reputation174,473,586,900,705
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,128,381
net_rshares6,245,351,341
author_curate_reward""
vote details (2)
@justyy ·
$10.30
Thank you very much for your contribution @jaysermendez ! 

1. it might be better to have delegations data obtained from blockchain instead of being hard-coded in `delegations.json`. This does not need to be at real time - I think you can do this in a separate process running at background periodically. Or, you can use @steemsql
2. IMHO, i am not a big fan of posting templated comments on blockchain. It is kinda of spam - and it costs RC. You might want to introduce mechanisim to control the frequency of posting.
3. Do you really want to check-in the `yarn.lock` according to [this](https://github.com/yarnpkg/yarn/issues/838)?



Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-2-2-2-1-1-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
👍  , , , , , , , , , , , , , , , , , ,
properties (23)
authorjustyy
permlinkre-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t080401723z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["jaysermendez","steemsql"],"links":["https://github.com/yarnpkg/yarn/issues/838","https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-2-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-01-28 08:04:03
last_update2019-01-28 08:04:03
depth1
children5
last_payout2019-02-04 08:04:03
cashout_time1969-12-31 23:59:59
total_payout_value7.796 HBD
curator_payout_value2.500 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,085
author_reputation280,616,224,641,976
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,048,807
net_rshares20,679,868,337,254
author_curate_reward""
vote details (19)
@jaysermendez ·
Hello @justyy,

Thanks for the suggestions. I didn't realize about the yarn.lock being committed. Will surely remove it.

Regarding delegations.json, this is not hardcoded. It is served as a baseline for seeding purposes and it is patched with deltas thereafter. Before each distribution, it is patched with the latest data.

Regarding the comment template, @knowledges what do you think?
properties (22)
authorjaysermendez
permlinkre-justyy-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t080803778z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["justyy","knowledges"],"app":"steemit/0.1"}
created2019-01-28 08:08:03
last_update2019-01-28 08:08:03
depth2
children0
last_payout2019-02-04 08:08: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_length388
author_reputation20,790,862,502,465
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,048,917
net_rshares0
@jaysermendez ·
Here is the sync script :) https://github.com/knacksteem/knacksteem-api/blob/master/src/api/pollers/delegators.poller.js
properties (22)
authorjaysermendez
permlinkre-justyy-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t081749971z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://github.com/knacksteem/knacksteem-api/blob/master/src/api/pollers/delegators.poller.js"],"app":"steemit/0.1"}
created2019-01-28 08:17:51
last_update2019-01-28 08:17:51
depth2
children1
last_payout2019-02-04 08:17:51
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_length120
author_reputation20,790,862,502,465
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,049,202
net_rshares0
@justyy · (edited)
Thanks. In this case you might not want to check in this file ‘delegation.json’ as well. ;)

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
👍  , , , , , , , , ,
properties (23)
authorjustyy
permlinkjustyy-re-jaysermendez-re-justyy-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t095024575z
categoryutopian-io
json_metadata{"app":"partiko","client":"ios"}
created2019-01-28 09:50:24
last_update2019-01-28 09:50:48
depth3
children0
last_payout2019-02-04 09:50: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_length153
author_reputation280,616,224,641,976
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,051,772
net_rshares25,013,179,806
author_curate_reward""
vote details (10)
@knowledges ·
> I am not a big fan of posting templated comments on blockchain.

The comment is made under each approved and scored knacksteem post. Very similar to what Utopian and other similar projects on the blockchain does. I don't consider this as spamming.

As for the delegation.json, it may look hard-coded but its not. It serves only as a baseline for seeding as explained by @jaysermendez
properties (22)
authorknowledges
permlinkre-justyy-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t081715277z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["jaysermendez"],"app":"steemit/0.1"}
created2019-01-28 08:17:18
last_update2019-01-28 08:17:18
depth2
children0
last_payout2019-02-04 08:17:18
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_length385
author_reputation98,021,227,622,369
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,049,187
net_rshares0
@utopian-io ·
Thank you for your review, @justyy! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t080401723z-20190130t083334z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-01-30 08:33:36
last_update2019-01-30 08:33:36
depth2
children0
last_payout2019-02-06 08:33:36
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_length58
author_reputation152,955,367,999,756
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,152,138
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-28-january-2019) - a digest of all you need to know about the State of Steem.

***

* *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-28-january-2019).*

* *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/steem/@pennsif/the-state-of-steem-forum-6-communities-thursday-31-january-8pm-12am-utc-msp-waves).*

* *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-28-january-2019).*

* *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.*

***
properties (22)
authorpennsif
permlinkre-jaysermendez-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190129t192323068z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-28-january-2019","https://steemit.com/steem/@pennsif/the-state-of-steem-forum-6-communities-thursday-31-january-8pm-12am-utc-msp-waves","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-28-january-2019","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"}
created2019-01-29 19:23:24
last_update2019-01-29 19:23:24
depth1
children0
last_payout2019-02-05 19:23: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_length992
author_reputation636,410,097,572,565
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,123,971
net_rshares0
@steem-ua ·
#### Hi @jaysermendez!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t090302z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-01-28 09:03:03
last_update2019-01-28 09:03:03
depth1
children0
last_payout2019-02-04 09:03: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_length291
author_reputation23,214,230,978,060
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,050,485
net_rshares0
@steemitboard ·
Congratulations @jaysermendez! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@jaysermendez/comments.png?201901281656</td><td>You made more than 600 comments. Your next target is to reach 700 comments.</td></tr>
</table>

<sub>_[Click here to view your Board](https://steemitboard.com/@jaysermendez)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-jaysermendez-20190128t180017000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-28 18:00:15
last_update2019-01-28 18:00:15
depth1
children0
last_payout2019-02-04 18:00:15
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_length811
author_reputation38,975,615,169,260
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,072,177
net_rshares0
@steemitboard ·
Congratulations @jaysermendez! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@jaysermendez/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@jaysermendez) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=jaysermendez)_</sub>


###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-jaysermendez-20191230t222902000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-12-30 22:29:03
last_update2019-12-30 22:29:03
depth1
children0
last_payout2020-01-06 22:29: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_length636
author_reputation38,975,615,169,260
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id93,878,321
net_rshares0
@steemprojects ·
This post has been just added as new item to _[timeline of KnackSteem on Steem Projects](https://steemprojects.com/projects/p/knacksteem/?utm_source=comment_timeline&utm_medium=steem&utm_campaign=new_event&utm_content=c1)_.

If you want to be notified about new updates from this project, register on Steem Projects and add KnackSteem to your favorite projects.
properties (22)
authorsteemprojects
permlinkre-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190128t070310
categoryutopian-io
json_metadata""
created2019-01-28 07:03:12
last_update2019-01-28 07:03:12
depth1
children0
last_payout2019-02-04 07:03: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_length363
author_reputation29,054,729,340
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,047,077
net_rshares0
@utopian-io ·
Hey, @jaysermendez!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-20190130t083507z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-01-30 08:35:09
last_update2019-01-30 08:35:09
depth1
children0
last_payout2019-02-06 08:35:09
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_length594
author_reputation152,955,367,999,756
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,152,181
net_rshares0
@verifyme ·
@jaysermendez You have received a 100% upvote from @intro.bot because this post did not use any bidbots and you have not used bidbots in the last 30 days!

Upvoting this comment will help keep this service running.
properties (22)
authorverifyme
permlinkre-knacksteem-api-delegators-tokens-distribution-bot-curation-bot-voting-commenting-knt-distribution-jaysermendez-verifyme-randomvote
categoryutopian-io
json_metadata{"tags":["verifyme","random-upvote"],"users":["jaysermendez","intro.bot"],"app":"null/null","format":"markdown"}
created2019-01-29 17:33:15
last_update2019-01-29 17:33:15
depth1
children0
last_payout2019-02-05 17:33:15
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_length216
author_reputation-705,247,747,464
root_title"[KnackSteem API] - Delegators tokens distribution bot + Curation bot (voting + commenting + KNT distribution)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,119,763
net_rshares0