create account

Scot and Scotbot Part III: Scotbot settings. by aggroed

View this thread on: hive.blogpeakd.comecency.com
· @aggroed ·
$21.21
Scot and Scotbot Part III: Scotbot settings.
![](https://i.imgur.com/OAPsDVj.png)

Ok, so you created your token and you know you want to create a community token with it that's powered by proof of brain.  We have a lot of things for your to consider.

We have a long list of ways that you can configure your token.  What's best for you?  I don't know.  I can tell you what each of these things does to your Scotbot settings and then you'll have to figure out with your community which options are going to work for you best.  We're working on an interface to make it easy to enter these so don't sweat that just yet.

## Example API call to get all the configuration settings
http://54.91.228.37/api/config?token=SCOTT

## Here's the list of settings as it stands on 5/3/19.  This one is setup like Steem!

"author_curve_exponent":1.0,
"author_reward_percentage":75.0,
"cashout_window_days":7.0,
"curation_curve_exponent":0.5,
"downvote_power_consumption":10,
"downvote_regeneration_seconds":-1,
"issue_token":true,
"json_metadata_key":"tags",
"json_metadata_value":"scottest",
"reduction_every_n_block":10512000,
"reduction_percentage":0.5,
"rewards_token":8.0,
"rewards_token_every_n_block":3,
"token":"SCOTT",
"token_account":"scottest",
"vote_power_consumption":2,
"vote_regeneration_seconds":432000

## Here's what each setting choice does

**"author_curve_exponent":** Value can be either 1 or 2.  This corresponds to linear or expontial rewards.  In linear rewards the Rshares benefits linearly with how much Token power you have.  In exponential rewards you square your Token Power when calculating rewards.  It means that whales are a lot more powerful.  That may encourage hodling and potentially discourage new users.  Too many variables to say exactly what any one change does.
**"author_reward_percentage":** value can be 0.0 to 100.0.  This is how much of the rewards go to the author as opposed to the curator.  There's a lot of debate of what's best.  As of 5/3/19 Steem is 75% author and 25% curator.  There's a lot of discussion of switching to 50:50.  I've even heard talk of zero author rewards and it's all curation.  Are you trying to incentivize authoring, sharing, curating, and/or something else?
**"cashout_window_days":** a value with 1 decimal precision.  This determines how many days before you can collect rewards for a post in the system.  When it reaches the cashout_window_days you can claim the rewards.  Steem is set to 7 days.
**"curation_curve_exponent":** Steem sets this value to 0.5 when the author rewards are linear, the curation rewards follow then a square root function (as on steem at the current HF).  It can set to 1 if you want curation rewards should be linear or it can be set between 1-2 when the rewards should be super linear.
**"downvote_power_consumption":** this is a number that says how much of your down vote pool is eaten each time you down vote.  Steem doesn't have a down vote pool, so there isn't something to compare it to, but if you want the upvote and downvotes to work the same way make sure your downvote_power_consuption and your vote_power_consumption are the same number.  If you want your community to be able to down vote more frequently try a downvote number that's smaller than the vote_power number and if you want to have less downvoting than make sure the downvote number is larger than your vote_power number,
**"downvote_regeneration_seconds"**: If you want it to work like steem would (if it had a downvote pool) choose 432000 because that's exactly 5 days.  If you would like the downvote pool to recharge faster choose a smaller number and if you want the downvote pool to recharge slower choose a larger number.  If you don't want a downvote pool at all set the value to -1.
**"issue_token":** Options are true or false.  If you want Scotbot to be able to issue tokens then you'll set this to True.  If you try to do proof of brain distribution and you run out of tokens it'll cease to operate if it can't issue more or there are no more to issue.  If the answer is false you'll have to transfer tokens from an account if it runs out or issue them manually.
**"json_metadata_key":** For now the only option here is "tags",  It means that the bot is searching tags to find out which posts to apply proof of brain token distribution onto.  In the future I hope to add "url" and it'll explore only specific URLs to to see if a post should be tokens rewarded to it.
**"json_metadata_value":** "scottest", it's the name of the tag that the bot looks for when distributing tokens.
**"reduction_every_n_block":** 10512000, 1051200 is 1 year's worth.  So, this is saying "After one year reduce the amount of inflation by the "reduction_percentage".  If you want it to reduce faster than you'll put in a smaller number.  If you want inflation to reduce over time more slowly put in a larger number.
**"reduction_percentage":** this is how much the inflation percent will reduce every time reduction_every_n_block cycles.  Steem uses 0.5.  If you'd like to keep inflation up then you'll want this smaller.  If you want to drastically cut how much inflation you use over time you'll want this number to be high.
**"rewards_token":** 8.0,  This is how many tokens are released into the rewards pool every time that rewards_token_every_n_block is hit.  So, if this is 10 and that's 3 then every 3 blocks 10 tokens will be added to the pool
**"rewards_token_every_n_block"**: this is what determines the size of the rewards pool.  This is an interger value.  This is really determining how quickly you're distributing new tokens.
**"token":** "SCOTT",what's the name of the token that's being distributed?
**"token_account":** "scottest", which account is the one distributing the tokens?
**"vote_power_consumption":** 2,this is how much of your voting power is consumed every time you do a full vote.  Steem has it so that every 5 days you can use 100% of your power.  So, a value of 2 gives you 10 votes a day which comes to a value of 20%/day and in 5 days you have used full power.  If you think users should vote more frequently (spread votes out) then you'll want a smaller number.  If you think they should be casting fewer mega votes then go for a number bigger than 2.
**"vote_regeneration_seconds":** 432000, is the value for 5 days.  This number is how many seconds are required to recharge your VP from 0 to full.  If you want a faster recharge use a smaller number.  If you want a slower recharge choose a bigger number.

## Allowable Ranges

"author_curve_exponent": 1.0 - 2.0 (float)
"author_reward_percentage": 0 - 100 (float)
"cashout_window_days": 0.1 - 365 (float)
"curation_curve_exponent": 0.5 - 2.0 (float)
"downvote_power_consumption":  1 - 10000 (integer) This is the steem vote percentage format 100 -> 1%
"downvote_regeneration_seconds": -1 - (integer) can be -1 for disabling downvote pool
"issue_token": False/True
"json_metadata_key": string, can be any string, but when not "tags", a custom interface is needed, must not be empty, only alphanumeric
"json_metadata_value": string, must not be empty, only alphanumeric + comma
"reduction_every_n_block": integer, must be > 0
"reduction_percentage": float 0 - 100
"rewards_token": float > 0
"rewards_token_every_n_block": integer > 0
"vote_power_consumption": 1 - 10000 (integer) This is the steem vote percentage format 100 -> 1%
"vote_regeneration_seconds": integer > 0


## We're building the easiest interface we can!

We're trying to make it so in the next few weeks you'll be able to start your token and get it up and running in a few clicks.  Then you'll be off to the races and growing your community.

Then we'll add more things like your own custom website and potentially leveraging the ads system that Steemit.com has already to monetize your community further.

Good times!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 324 others
👎  
properties (23)
authoraggroed
permlinkscot-and-scotbot-part-iii-scotbot-settings
categorysteem-engine
json_metadata{"tags":["steem-engine","scottest","scot","smt","steem"],"image":["https://i.imgur.com/OAPsDVj.png"],"links":["http://54.91.228.37/api/config?token=SCOTT"],"app":"steemit/0.1","format":"markdown"}
created2019-05-03 16:49:03
last_update2019-05-03 16:49:03
depth0
children9
last_payout2019-05-10 16:49:03
cashout_time1969-12-31 23:59:59
total_payout_value16.730 HBD
curator_payout_value4.483 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,793
author_reputation1,363,334,999,579,828
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,196,141
net_rshares49,257,010,751,610
author_curate_reward""
vote details (389)
@artemislives ·
Tech nerd alert!!  LOL....  I am SO GRATEFUL that people like you are out there doing the tech 'thing' so the rest of us have freedom of speech, freedom of expression and a new income stream.   Gratitude.
properties (22)
authorartemislives
permlinkre-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190508t044151936z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-08 04:41:51
last_update2019-05-08 04:41:51
depth1
children0
last_payout2019-05-15 04:41: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_length204
author_reputation307,778,421,614,859
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,447,701
net_rshares0
@bluengel ·
Good Progress ! ♥♬

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
authorbluengel
permlinkbluengel-re-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190503t171546754z
categorysteem-engine
json_metadata{"app":"partiko","client":"android"}
created2019-05-03 17:15:48
last_update2019-05-03 17:15:48
depth1
children0
last_payout2019-05-10 17:15: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_length89
author_reputation129,269,571,273,945
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,197,257
net_rshares0
@freebornangel ·
$0.02
Good pickin' up the flag, aggie!
Thanks for adding bacon to the fire.

Now we all get coins nobody wants,...
And maybe, just maybe, after long, studious, contemplative reflection we can set steem back to what it was before that other guy broke it just before checking out almost three years ago?
👍  
properties (23)
authorfreebornangel
permlinkre-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190503t181024311z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"app":"steemit/0.1"}
created2019-05-03 18:10:42
last_update2019-05-03 18:10:42
depth1
children0
last_payout2019-05-10 18:10:42
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation171,005,551,503,977
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,199,826
net_rshares50,286,560,895
author_curate_reward""
vote details (1)
@glory7 ·
Lots of options. I'd consider making my own token that gives 50:50 (author:curation)

Posted using [Partiko Android](https://partiko.app/referral/glory7)
properties (22)
authorglory7
permlinkglory7-re-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190503t220753658z
categorysteem-engine
json_metadata{"app":"partiko","client":"android"}
created2019-05-03 22:07:54
last_update2019-05-03 22:07:54
depth1
children0
last_payout2019-05-10 22:07: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_length153
author_reputation420,998,392,418,509
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,209,752
net_rshares0
@karenmckersie ·
Wow! these are such exciting times that I am hoping to be a part of as I would love to create my own token and custom website if its easy enough, lol this is all new to me! You guys rock in all that you do, keep up the great work!🙋👍👍👍
https://render.bitstrips.com/v2/cpanel/a6ef40a3-80c5-48c3-b328-e1b109c6ad13-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1
properties (22)
authorkarenmckersie
permlinkre-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190503t174529008z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"image":["https://render.bitstrips.com/v2/cpanel/a6ef40a3-80c5-48c3-b328-e1b109c6ad13-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1"],"app":"steemit/0.1"}
created2019-05-03 17:45:30
last_update2019-05-03 17:45:30
depth1
children0
last_payout2019-05-10 17:45: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_length378
author_reputation280,862,618,735,740
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,198,503
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**The Steem News**](https://steemit.com/steem/@pennsif/thesteemnews3may2019-q0yd2qu90b) - a compilation of the key news stories on the Steem blockchain.
properties (22)
authorpennsif
permlinkre-aggroed-scot-and-scotbot-part-iii-scotbot-settings-20190504t030908513z
categorysteem-engine
json_metadata{"tags":["steem-engine"],"links":["https://steemit.com/steem/@pennsif/thesteemnews3may2019-q0yd2qu90b"],"app":"steemit/0.1"}
created2019-05-04 03:09:09
last_update2019-05-04 03:09:09
depth1
children0
last_payout2019-05-11 03:09: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_length207
author_reputation636,410,097,572,565
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,221,493
net_rshares0
@steem-plus ·
SteemPlus upvote
Hi, @aggroed!

You just got a **0.15%** 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
permlinkscot-and-scotbot-part-iii-scotbot-settings---vote-steemplus
categorysteem-engine
json_metadata{}
created2019-05-04 10:42:18
last_update2019-05-04 10:42:18
depth1
children0
last_payout2019-05-11 10:42: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_length434
author_reputation247,952,188,232,400
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,236,634
net_rshares0
@steemitboard ·
Congratulations @aggroed! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x60/http://steemitboard.com/notifications/toppayoutday.png</td><td>Your post got the highest payout on one day</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@aggroed) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=aggroed)_</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!


**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steemmeetupaachen/@steemitboard/steemitboard-to-support-the-german-speaking-community-meetups"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeoNp9iCaCfd2D6TqnWa3Aky2mU4Fm3xaSmjTM91YoNBS/image.png"></a></td><td><a href="https://steemit.com/steemmeetupaachen/@steemitboard/steemitboard-to-support-the-german-speaking-community-meetups">SteemitBoard to support the german speaking community meetups</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-aggroed-20190504t014311000z
categorysteem-engine
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-05-04 01:43:12
last_update2019-05-04 01:43:12
depth1
children0
last_payout2019-05-11 01:43: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_length1,383
author_reputation38,975,615,169,260
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,218,274
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/aggroed__scot-and-scotbot-part-iii-scotbot-settings.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-scot-and-scotbot-part-iii-scotbot-settings-20190503t170134
categorysteem-engine
json_metadata""
created2019-05-03 17:01:33
last_update2019-05-03 17:01:33
depth1
children0
last_payout2019-05-10 17:01: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_length361
author_reputation-4,535,154,553,995
root_title"Scot and Scotbot Part III: Scotbot settings."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,196,570
net_rshares0