create account

Scotbot parameter manual by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$23.43
Scotbot parameter manual
![NedScottnew-01.jpg](https://cdn.steemitimages.com/DQmTgnmytAeoWuEkpaAuwosi74ombJbvD8fVWhBWSfotUtn/NedScottnew-01.jpg)

As you my know may know, I'm the developer of the scotbot backend. The bot is written in python and uses my beem library. In order to add your token to scotbot, the active key of the token issuer account itself or any other account that have sufficient token in their wallet is needed. The bot uses the key to send out token when a user has a sufficient amount of pending token and is willing to claim them.

You can read more about it [here](https://hive.blog/steem-engine/@aggroed/scotbot-launch-time-to-make-your-own-custom-token-powered-by-proof-of-brain-on-steem).

Let me explain all parameter that can be set at https://sto.steem-engine.com/#/launch/scotbot:

## `json_metadata_key`and `json_metadata_value`
This parameter is important, it defines which parameter in the json metadata of a post is checked. One possible choice is "tags". Only posts that have a `json_metadata_key` parameter in the json metadata field are included and can collect rewards. The value of the `json_metadata_key` must include or be equal to `json_metadata_value`.

When `json_metadata_key="tags"` and `json_metadata_value="scottest"`, then only posts that have a "scottest" tag can have pending tokens. Pending tokens will be generated when token holder upvote this post.

`json_metadata_key` can also be a new parameter, as for example `scot_token`. In this case, a new frontend is needed that broadcasts posts that have this parameter in its json metadata field.
When `json_metadata_key="scot_token"` and `json_metadata_value="MYTOKEN"`, posts that have:
```
json_metadata": {
"scot_token": [ "MYTOKEN"]
}
```
can have receive token from the MYTOKEN reward pool.

At the moment it is advised to use the `tags` parameter and define a tag that every post must use for receiving token from the reward pool

## `rewards_token` and `rewards_token_every_n_block`
These two parameters define the size of the reward pool. Every `rewards_token_every_n_block` steem blocks, the reward pool is increased by `rewards_token` .

When for example `rewards_token_every_n_block=3` and `rewards_token=8`, 8 token are added to the reward pool every 9s (3 blocks).  Every hour, 3200 token are added to the pool and every day 76800 token.

The reward pool is distributed entirely to authors and voters. 

## `reduction_every_n_block` and `reduction_percentage`
Every `reduction_every_n_block` blocks, the amount of token that are added to the pool is reduced by `reduction_percentage`.
When `reduction_every_n_block = 10512000` and `reduction_percentage = 0.5`, the reward is reduced by 0.5% every year. For example, when the old reward was 8 token, it is reduced after the first year  to
```
8 / (1.005) = 7.96
```

## `cashout_window_days`
This parameter defines when voting on a post is closed and the amount of pending token can be claimed. For example for steem,  `cashout_window_days` is 7.

## `issue_token`
When this parameter is true, claimed token are send out with the issue command. This is only be possible when the token account is also the token creator. When `issue_token` is false, token are send out with the transfer command. In this case, the token account just needs to have sufficient token in its wallet.

## `author_reward_percentage`
Defines the split between post creator and upvoter. When it is set to `author_reward_percentage = 50`, 50% of the pending tokens goes to the author and the remaining 50% to the voters.

## `author_curve_exponent`
This parameter can be a number between 1 and 2.  `author_curve_exponent = 1` is equivalent to linear and  `author_curve_exponent > 1` means super linear. 

The pending token for a post are calculated as follow:
```
y = token_config[token]["author_curve_exponent"]
weight_rshares = int_pow(sum_rshares, y)
pending_token = int(weight_rshares / pending_rshares * reward_pool)
```

When `author_curve_exponent > 1`, it means that posts with more votes will receive an increased share from the reward pool. 

#### Example
When `author_curve_exponent = 1`, and we have two posts, one with 100 rshares and one with 1000 rshares and the reward_pool has 1 token:
```
pending_token = 100 / 1100 * 1 = 0.09
```
and 
```
pending_token = 1000 / 1100 * 1 = 0.91
```
When `author_curve_exponent = 2`, the pending_rshares is 100 * 100 + 1000*1000 = 1010000
```
pending_token = 100 * 100 / 1010000 * 1 = 0.009
```
and 
```
pending_token = 1000 * 1000 / 1010000 * 1 = 0.991
```

## `curation_curve_exponent`
This parameter defines the curation rewards. It can be a number between 0.5 and 2.

The curation reward which can be given to the voters is
```
curation_reward = pending_token - author_reward
```

For each vote, a weight is calculated. When `curation_curve_exponent = 1`, the weight is linear the vote rshares.
```
y = token_config[token]["curation_curve_exponent"]
vote_weight = (int_pow(sum_rshares + vote['rshares'], y) - int_pow(sum_rshares, y))
sum_rshares += vote["rshares"]
```
The vote_weight of all voters is summed up in `total_vote_weight`.
The curation reward is then
```
pending_curation_token  = int(curation_reward * vote_weight / total_vote_weight)
```

## Example
`curation_curve_exponent = 0.5`, `curation_reward = 1` , one vote with 100 rshares and a later vote  with 1000 rshares.

```
sum_rshares = 0
vote_weight_1 = sqrt(100) = 10
sum_rshares = 100
vote_weight_2 = sqrt(100 + 1000) - sqrt(100) = 23.166
total_vote_weight = 33.166
```
The first voter receives:
```
1 * 10 / 33.166 = 0.302
```
and the second voter receives:
```
1 * 23.166 / 33.166 = 0.698
```

## `vote_regeneration_seconds` and `vote_power_consumption`
These two parameter defines how often it is possible to vote. These parameters are integer in the steem percentage notation 100 means 1 %.

`vote_power_consumption` defines how the vote power is reduced with a 100% vote. When it is set to 200 (2%), the vote power is reduced to 98% when voting at full vote power and a weight of 100%.

`vote_regeneration_seconds` defines in which time duration an empty vote power is regenerating to 100%.

## `downvote_regeneration_seconds` and `downvote_power_consumption`
These two parameter defines how often it is possible to downvote. When `downvote_regeneration_seconds` is set to a positve integer, a second downvote pool is activated.

When a downvote pool is active, downvoting does not reduce the vote power.

`downvote_power_consumption` defines how the downvote power is reduced with a 100% downvote. When it is set to 200 (2%), the downvote power is reduced to 98% when downvoting at a full downvote power and a weight of 100%.

`downvote_regeneration_seconds` defines in which time duration an empty downvote power is regenerating to 100%. When this parameter is negative, the downvote pool is deactivated and downvoting will reduce the vote power.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 152 others
properties (23)
authorholger80
permlinkscotbot-parameter-manual
categorysteem-engine
json_metadata"{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["steem-engine", "scot", "smt", "steem", "busy"], "links": ["https://hive.blog/steem-engine/@aggroed/scotbot-launch-time-to-make-your-own-custom-token-powered-by-proof-of-brain-on-steem", "https://sto.steem-engine.com/#/launch/scotbot:"], "image": ["https://cdn.steemitimages.com/DQmTgnmytAeoWuEkpaAuwosi74ombJbvD8fVWhBWSfotUtn/NedScottnew-01.jpg"], "canonical_url": "https://hive.blog/steem-engine/@holger80/scotbot-parameter-manual"}"
created2019-05-09 15:26:27
last_update2020-05-23 14:28:18
depth0
children22
last_payout2019-05-16 15:26:27
cashout_time1969-12-31 23:59:59
total_payout_value18.748 HBD
curator_payout_value4.686 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,890
author_reputation358,857,509,568,825
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,539,689
net_rshares49,103,463,684,370
author_curate_reward""
vote details (216)
@ackza ·
Id like to get @aggroed @eonwarped and you @holger80 all together with @telosnetwork on their telos dapps telwgram here https://t.me/dappstelos to discuss a telos engine proposal to add scotbot to a telos contract

So telos users can buy scotbot snd custom nitrous for eosio

And a telos.blog main site to pay users in TLOS main net token using a proposal for 100,000 telos a month plus another few hundred thousand telos to pay your team 

I want custom telos token reward pools ro plug into a "claim reward" action on eosio like discussions.app contract here next ro "post" and "upvotepost" contract actions that jave already been built for https://discussions.app that works on eos and telos

The goal is a eos.blog and telos.blog site and eos and telos-engine where users can pay steemenginex or telosenginex to buy a token made in the image of hive engine scotbot with custom parameters users can all vote on 

We need to build as much of steem/hive into eos/telos/wax as possible and make a universal social media contract antelope.io (new name for eosio)
properties (22)
authorackza
permlinkrprs72
categorysteem-engine
json_metadata{"users":["aggroed","eonwarped","holger80","telosnetwork"],"links":["https://t.me/dappstelos"],"app":"hiveblog/0.1"}
created2023-02-08 16:23:30
last_update2023-02-08 16:23:30
depth1
children0
last_payout2023-02-15 16:23: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_length1,061
author_reputation287,695,264,112,368
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,599,324
net_rshares0
@blockchainstudio ·
Hi @holger80, I have some suggestion and hope this helps! [[Steem Engine SCOT] community exclusive posting (via json_metadata)](https://steemit.com/utopian-io/@blockchainstudio/steem-engine-scot-community-exclusive-posting-via-jsonmetadata)
properties (22)
authorblockchainstudio
permlinkre-holger80-scotbot-parameter-manual-20190512t225625765z
categorysteem-engine
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem-engine"],"users":["holger80","blockchainstudio"],"links":["/@holger80","https://steemit.com/utopian-io/@blockchainstudio/steem-engine-scot-community-exclusive-posting-via-jsonmetadata"],"image":[]}
created2019-05-12 22:56:27
last_update2019-05-12 22:56:27
depth1
children0
last_payout2019-05-19 22:56:27
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_length240
author_reputation178,988,499,015,921
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,743,515
net_rshares0
@internetexpert ·
Will it work?
properties (22)
authorinternetexpert
permlinkre-holger80-scotbot-parameter-manual-20190509t195609816z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-09 19:56:09
last_update2019-05-09 19:56:09
depth1
children0
last_payout2019-05-16 19:56: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_length13
author_reputation118,488,635,737
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,554,319
net_rshares0
@karenmckersie ·
https://render.bitstrips.com/v2/cpanel/33dd5e8f-cc39-4cc1-af24-e49c70b17dc9-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1
properties (22)
authorkarenmckersie
permlinkre-holger80-scotbot-parameter-manual-20190510t070307334z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"image":["https://render.bitstrips.com/v2/cpanel/33dd5e8f-cc39-4cc1-af24-e49c70b17dc9-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1"],"app":"steemit/0.1"}
created2019-05-10 07:03:09
last_update2019-05-10 07:03:09
depth1
children3
last_payout2019-05-17 07:03: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_length143
author_reputation280,862,618,735,740
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,589,562
net_rshares0
@ackza ·
$0.07
LOL this is a nieche post for a select scotbot elite :)

I can explain to you

The first stuff is about the token hashtag

then its about a few more numbers that make a difference.....

your just doing a few numbers here, that change your reward pool, like how much tokens u issue


the Curves he talks about are the author and curation surves for the distribution models, so youc an control how MUCH you get for curation, like you are tweaking the fundamental laws of the steem universe basically 

hope that helps :) 

II should do a post and video explaining scotbot
πŸ‘  
properties (23)
authorackza
permlinkpw62tl
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-08-13 08:41:48
last_update2019-08-13 08:41:48
depth2
children2
last_payout2019-08-20 08:41:48
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length569
author_reputation287,695,264,112,368
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,470,217
net_rshares196,989,752,020
author_curate_reward""
vote details (1)
@ackza ·
![bitcoinFAST.png](https://cdn.steemitimages.com/DQmf2TBsVrH73b7KyqparHYXRA8DWdEbixMFxAxddjybnnm/bitcoinFAST.png)
properties (22)
authorackza
permlinkpw636b
categorysteem-engine
json_metadata{"tags":["steem-engine"],"image":["https://cdn.steemitimages.com/DQmf2TBsVrH73b7KyqparHYXRA8DWdEbixMFxAxddjybnnm/bitcoinFAST.png"],"app":"steemit/0.1"}
created2019-08-13 08:49:24
last_update2019-08-13 08:49:24
depth3
children1
last_payout2019-08-20 08:49: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_length113
author_reputation287,695,264,112,368
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,470,388
net_rshares0
@partiko ·
Thank you so much for participating in the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, let’s change the world!
properties (22)
authorpartiko
permlinkre-scotbot-parameter-manual-20190509t173100
categorysteem-engine
json_metadata"{"app": "partiko"}"
created2019-05-09 17:31:03
last_update2019-05-09 17:31:03
depth1
children0
last_payout2019-05-16 17:31: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_length213
author_reputation39,207,160,334,751
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,546,012
net_rshares0
@patrickulrich ·
Will steem-scot be updated to include these new features or will scotbot only act as a paid SE service?

Posted using [Partiko Android](https://partiko.app/referral/patrickulrich)
properties (22)
authorpatrickulrich
permlinkpatrickulrich-re-holger80-scotbot-parameter-manual-20190509t160628884z
categorysteem-engine
json_metadata{"app":"partiko","client":"android"}
created2019-05-09 16:06:30
last_update2019-05-09 16:06:30
depth1
children0
last_payout2019-05-16 16:06: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_length179
author_reputation92,185,416,218,701
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,541,692
net_rshares0
@ribai ·
Hi ~ I sent 1100eng to Scottbot to make a site like Weedcash. But I need more money to build such a site. Can't you cancel the coin issue? Can you give me a refund for 1100eng?
πŸ‘  
properties (23)
authorribai
permlinkre-holger80-scotbot-parameter-manual-20190514t081543825z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-14 08:15:45
last_update2019-05-14 08:15:45
depth1
children2
last_payout2019-05-21 08:15: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_length176
author_reputation14,599,253,581,127
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,822,876
net_rshares0
author_curate_reward""
vote details (1)
@aggroed ·
yep, please contact me in Discord.  You can find the discord link at the bottom of the steem-engine.com website.
πŸ‘  
properties (23)
authoraggroed
permlinkre-ribai-re-holger80-scotbot-parameter-manual-20190514t110807053z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-14 11:08:06
last_update2019-05-14 11:08:06
depth2
children0
last_payout2019-05-21 11:08:06
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_length112
author_reputation1,343,344,221,324,844
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,829,514
net_rshares0
author_curate_reward""
vote details (1)
@holger80 · (edited)
You should  get in touch with @aggroed.
properties (22)
authorholger80
permlinkre-ribai-re-holger80-scotbot-parameter-manual-20190514t082201069z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"users":["aggroed"],"app":"steemit/0.1"}
created2019-05-14 08:22:06
last_update2019-05-14 11:07:12
depth2
children0
last_payout2019-05-21 08:22:06
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_length39
author_reputation358,857,509,568,825
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,823,199
net_rshares0
@russia-btc ·
did not understand - why do I need it?
πŸ‘  
properties (23)
authorrussia-btc
permlinkre-holger80-scotbot-parameter-manual-20190511t110940144z
categorysteem-engine
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem-engine"],"users":[],"links":[],"image":[]}
created2019-05-11 11:09:51
last_update2019-05-11 11:09:51
depth1
children2
last_payout2019-05-18 11:09: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_length39
author_reputation57,707,308,681,904
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,659,871
net_rshares0
author_curate_reward""
vote details (1)
@ackza ·
Its just the settings, for your scotbot token, if you make one. so like for ass for example, i made the curves for curation very high, so the more you have the more you can give out, and the curation is 90% author rewards 10% so its gonna be really fun, 

ill make sure you get a nice significant stake since youve been a loyal investorin @steemspeak related products
πŸ‘  
properties (23)
authorackza
permlinkpw62rf
categorysteem-engine
json_metadata{"tags":["steem-engine"],"users":["steemspeak"],"app":"steemit/0.1"}
created2019-08-13 08:40:30
last_update2019-08-13 08:40:30
depth2
children1
last_payout2019-08-20 08:40: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_length367
author_reputation287,695,264,112,368
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,470,193
net_rshares10,655,418,463
author_curate_reward""
vote details (1)
@russia-btc ·
thanks for the answer

Posted using [Partiko iOS](https://partiko.app/referral/russia-btc)
properties (22)
authorrussia-btc
permlinkrussia-btc-re-ackza-pw62rf-20190813t084430963z
categorysteem-engine
json_metadata{"app":"partiko","client":"ios"}
created2019-08-13 08:44:30
last_update2019-08-13 08:44:30
depth3
children0
last_payout2019-08-20 08:44: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_length90
author_reputation57,707,308,681,904
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,470,266
net_rshares0
@silverstackeruk · (edited)
Hello, great post with lots of super information. 

Can i ask if each community will be running there own bot and able to edit the back end code using some of the commends you have shown in this post are do you guys run the bot and end user can use some sort of condenser to edit changes?
πŸ‘  
properties (23)
authorsilverstackeruk
permlinkre-holger80-scotbot-parameter-manual-20190512t164639700z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-12 16:47:36
last_update2019-05-12 16:48:27
depth1
children0
last_payout2019-05-19 16:47: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_length288
author_reputation127,246,167,824,445
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,730,321
net_rshares13,722,318,152
author_curate_reward""
vote details (1)
@stealthtrader ·
$0.04
This all looks great! However I wish I understood what it meant.. 🀯
πŸ‘  , ,
properties (23)
authorstealthtrader
permlinkre-holger80-scotbot-parameter-manual-20190509t154943139z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-09 15:49:42
last_update2019-05-09 15:49:42
depth1
children1
last_payout2019-05-16 15:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation74,266,337,461,760
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,540,833
net_rshares77,626,263,163
author_curate_reward""
vote details (3)
@surfermarly ·
Same here πŸ˜ƒπŸ‘‹
properties (22)
authorsurfermarly
permlinkre-stealthtrader-re-holger80-scotbot-parameter-manual-20190509t192132149z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-09 19:21:33
last_update2019-05-09 19:21:33
depth2
children0
last_payout2019-05-16 19:21: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_length12
author_reputation318,958,646,866,746
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,552,143
net_rshares0
@steem-plus ·
SteemPlus upvote
Hi, @holger80!

You just got a **3.3%** upvote from SteemPlus!
To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn.
If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
properties (22)
authorsteem-plus
permlinkscotbot-parameter-manual---vote-steemplus
categorysteem-engine
json_metadata{}
created2019-05-10 07:19:36
last_update2019-05-10 07:19:36
depth1
children0
last_payout2019-05-17 07:19: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_length434
author_reputation247,952,188,232,400
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,590,583
net_rshares0
@steem-ua ·
#### Hi @holger80!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your **UA** account score is currently 7.134 which ranks you at **#59** across all Steem accounts.
Your rank has improved 1 places in the last three days (old rank 60).

In our last Algorithmic Curation Round, consisting of 216 contributions, your post is ranked at **#2**. Congratulations! 
##### Evaluation of your UA score:

* Your follower network is great!
* The readers appreciate your great work!
* Great user engagement! You rock!


**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-scotbot-parameter-manual-20190509t224956z
categorysteem-engine
json_metadata"{"app": "beem/0.20.19"}"
created2019-05-09 22:49:57
last_update2019-05-09 22:49:57
depth1
children0
last_payout2019-05-16 22:49: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_length644
author_reputation23,214,230,978,060
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,564,321
net_rshares0
@steemitboard ·
Congratulations @holger80! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@holger80/comments.png?201905140910"></td><td>You made more than 900 comments. Your next target is to reach 1000 comments.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@holger80) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=holger80)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/japanese/@steemitboard/new-japanese-speaking-community-steem-meetup-badge"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmRWbAjbeETEaqSPLcpwYX1JN5pZhdPffv4q6DaBs6xvZm/image.png"></a></td><td><a href="https://steemit.com/japanese/@steemitboard/new-japanese-speaking-community-steem-meetup-badge">New  japanese speaking community Steem Meetup badge</a></td></tr></table>

###### [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-holger80-20190514t101044000z
categorysteem-engine
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-05-14 10:10:42
last_update2019-05-14 10:10:42
depth1
children0
last_payout2019-05-21 10:10: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_length1,337
author_reputation38,975,615,169,260
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,827,079
net_rshares0
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/holger80__scotbot-parameter-manual.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-scotbot-parameter-manual-20190509t154127
categorysteem-engine
json_metadata""
created2019-05-09 15:41:27
last_update2019-05-09 15:41:27
depth1
children0
last_payout2019-05-16 15:41:27
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_length344
author_reputation-4,535,154,553,995
root_title"Scotbot parameter manual"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,540,523
net_rshares0