 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.
author | holger80 |
---|---|
permlink | scotbot-parameter-manual |
category | steem-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"}" |
created | 2019-05-09 15:26:27 |
last_update | 2020-05-23 14:28:18 |
depth | 0 |
children | 22 |
last_payout | 2019-05-16 15:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 18.748 HBD |
curator_payout_value | 4.686 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,890 |
author_reputation | 358,857,509,568,825 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,539,689 |
net_rshares | 49,103,463,684,370 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 5,479,361,308,651 | 100% | ||
steempty | 0 | 6,246,299,119,398 | 100% | ||
teamsteem | 0 | 61,975,744,977 | 100% | ||
stealthtrader | 0 | 9,855,519,443 | 100% | ||
karenmckersie | 0 | 16,447,766,624 | 100% | ||
moon32walker | 0 | 26,158,744,115 | 100% | ||
timcliff | 0 | 888,225,886,156 | 85% | ||
surfermarly | 0 | 103,299,068,930 | 100% | ||
jphamer1 | 0 | 1,361,846,228,127 | 100% | ||
snwolak | 0 | 3,890,299,608 | 90% | ||
fooblic | 0 | 18,795,401,996 | 97% | ||
stevescoins | 0 | 62,335,465,736 | 75% | ||
mattclarke | 0 | 328,238,947,176 | 51% | ||
themonetaryfew | 0 | 45,228,507,453 | 100% | ||
freeforever | 0 | 236,154,522,662 | 100% | ||
aggroed | 0 | 3,589,335,730,732 | 100% | ||
abh12345 | 0 | 53,158,441,415 | 10% | ||
whatsup | 0 | 49,238,457,451 | 13% | ||
busy.pay | 0 | 1,395,111,259,356 | 6.97% | ||
mangos | 0 | 917,401,409,720 | 25% | ||
bitmalaysia | 0 | 1,563,447,742 | 33% | ||
yadamaniart | 0 | 831,486,692 | 1.71% | ||
cardboard | 0 | 4,460,454,513 | 100% | ||
v4vapid | 0 | 13,635,427,495,475 | 100% | ||
elgeko | 0 | 276,281,785,427 | 50% | ||
alexis555 | 0 | 1,406,363,646,350 | 19% | ||
borislavzlatanov | 0 | 115,138,705,379 | 100% | ||
danielsaori | 0 | 90,132,985,489 | 100% | ||
freebornsociety | 0 | 7,014,268,866 | 10% | ||
imperfect-one | 0 | 1,012,465,813 | 1% | ||
msg768 | 0 | 8,365,712,873 | 2% | ||
tocox | 0 | 7,470,897,589 | 100% | ||
lenmar | 0 | 112,870,415,848 | 100% | ||
mys | 0 | 1,293,331,113 | 1% | ||
tytran | 0 | 105,942,928,495 | 100% | ||
rycharde | 0 | 12,844,126,083 | 22.2% | ||
coquiunlimited | 0 | 177,601,259 | 1.44% | ||
ewkaw | 0 | 14,781,916,786 | 20% | ||
xyzashu | 0 | 2,017,264,343 | 8% | ||
ricko66 | 0 | 36,669,835,700 | 100% | ||
swedishdragon | 0 | 419,622,264,023 | 100% | ||
warfeed | 0 | 295,975,726 | 37.5% | ||
jacekw | 0 | 13,530,285,706 | 100% | ||
opc | 0 | 222,521,507 | 54% | ||
mukhtar.juned | 0 | 0 | 100% | ||
tookta | 0 | 78,383,197,691 | 100% | ||
silverstackeruk | 0 | 27,220,115,762 | 100% | ||
steemstatistics | 0 | 387,975,450 | 73% | ||
make-a-whale | 0 | 46,591,050,612 | 7% | ||
jadabug | 0 | 1,542,371,423 | 1% | ||
crokkon | 0 | 163,283,373,375 | 100% | ||
accelerator | 0 | 38,816,119,937 | 2.33% | ||
revisesociology | 0 | 85,121,612,384 | 20% | ||
jlsplatts | 0 | 111,703,857 | 0.34% | ||
feedyourminnows | 0 | 10,397,283,566 | 8% | ||
isnochys | 0 | 9,901,712,668 | 13% | ||
qurator | 0 | 207,302,668,046 | 3.43% | ||
emdesan | 0 | 141,420,327 | 10% | ||
steem-plus | 0 | 52,241,278,850 | 3.3% | ||
ptcmyanmar | 0 | 497,839,052 | 49% | ||
prinzvalium | 0 | 438,230,750,632 | 25% | ||
paulmoon410 | 0 | 70,283,132 | 10% | ||
aneilpatel | 0 | 608,177,853 | 25% | ||
mytechtrail | 0 | 7,237,145,657 | 25% | ||
skycae | 0 | 274,124,416 | 2.4% | ||
gamezine | 0 | 1,129,259,940 | 2% | ||
steembasicincome | 0 | 1,184,973,656,726 | 100% | ||
jpphotography | 0 | 117,510,904,614 | 50% | ||
oliverschmid | 0 | 600,949,227,469 | 100% | ||
abitcoinskeptic | 0 | 61,325,412,484 | 40% | ||
nerdtopiade | 0 | 6,935,861,439 | 70% | ||
awuahbenjamin | 0 | 0 | 100% | ||
mehta | 0 | 17,540,339,537 | 30% | ||
vaansteam | 0 | 140,592,920,407 | 30% | ||
cfminer | 0 | 3,987,476,981 | 100% | ||
neokuduk | 0 | 6,208,604,283 | 100% | ||
sargoon | 0 | 5,754,564,086 | 50% | ||
literaturk | 0 | 425,052,209 | 100% | ||
michaelizer | 0 | 1,332,596,368 | 100% | ||
sudefteri | 0 | 9,056,199,079 | 100% | ||
nwjordan | 0 | 345,667,788 | 2.57% | ||
verhp11 | 0 | 131,704,540 | 1% | ||
midun | 0 | 21,891,294,268 | 15% | ||
maxpatternman | 0 | 40,483,385,595 | 100% | ||
condeas | 0 | 20,961,669,742 | 50% | ||
sashas | 0 | 3,164,896,526 | 100% | ||
canni | 0 | 535,876,747 | 100% | ||
flugschwein | 0 | 17,803,538,602 | 75% | ||
akifane | 0 | 1,201,451,058 | 100% | ||
rasit | 0 | 424,669,377 | 100% | ||
harpagon | 0 | 19,960,520,150 | 100% | ||
reazuliqbal | 0 | 69,462,216,382 | 40% | ||
maveraunnehr | 0 | 386,097,483 | 100% | ||
properfraction | 0 | 2,797,069,407 | 100% | ||
satren | 0 | 12,965,781,232 | 25% | ||
lionsuit | 0 | 1,488,866,287 | 5% | ||
beleg | 0 | 315,266,165 | 1% | ||
sbi2 | 0 | 567,601,897,554 | 100% | ||
zcool | 0 | 188,746,369 | 10% | ||
ezravandi | 0 | 2,822,991,547 | 1% | ||
dera123 | 0 | 22,424,071,051 | 15% | ||
effofex | 0 | 200,960,441 | 1.16% | ||
elleok | 0 | 11,974,857,530 | 34% | ||
alitavirgen | 0 | 21,177,600,911 | 12.5% | ||
misan | 0 | 8,958,722,815 | 55% | ||
kgakakillerg | 0 | 6,645,580,502 | 2% | ||
sbi3 | 0 | 438,920,929,081 | 100% | ||
sbi4 | 0 | 311,203,415,365 | 100% | ||
menerva | 0 | 119,947,945,182 | 100% | ||
carlpei | 0 | 219,502,525,317 | 100% | ||
blockchainstudio | 0 | 96,604,092,900 | 100% | ||
meedo | 0 | 62,266,570 | 100% | ||
linnyplant | 0 | 38,945,649,767 | 100% | ||
commonlaw | 0 | 4,094,093,567 | 35% | ||
hsidik | 0 | 185,600,101 | 20% | ||
smarmy | 0 | 149,169,943 | 1.71% | ||
allancovelli | 0 | 254,296,365 | 100% | ||
jordonemmer | 0 | 67,399,584 | 100% | ||
charitacaruso | 0 | 77,730,964 | 100% | ||
ilonavandam | 0 | 165,617,603 | 100% | ||
jonasalt | 0 | 65,331,100 | 100% | ||
bertahessler | 0 | 61,756,352 | 100% | ||
vividessor | 0 | 135,119,164 | 1.71% | ||
nannetteschluter | 0 | 179,820,127 | 100% | ||
melissiamathisen | 0 | 181,560,035 | 100% | ||
faustodugan | 0 | 176,826,013 | 100% | ||
leonieahlers | 0 | 176,849,106 | 100% | ||
laviniacebula | 0 | 177,718,930 | 100% | ||
renatewoodrum | 0 | 181,861,814 | 100% | ||
osvaldolemke | 0 | 414,639,042 | 100% | ||
classiebarks | 0 | 416,081,888 | 100% | ||
franciscarosales | 0 | 410,653,423 | 100% | ||
loisrenaud | 0 | 434,587,984 | 100% | ||
starrcawthorne | 0 | 409,800,576 | 100% | ||
curtalfrey | 0 | 410,647,021 | 100% | ||
sbi5 | 0 | 222,519,231,139 | 100% | ||
numberjocky | 0 | 140,838,759 | 1.71% | ||
blewitt | 0 | 90,977,179 | 0.03% | ||
sbi6 | 0 | 152,208,289,063 | 100% | ||
heraclio | 0 | 1,331,144,985 | 100% | ||
donald.porter | 0 | 0 | 14% | ||
partiko | 0 | 269,707,019,503 | 3% | ||
boukdir | 0 | 128,745,850 | 16% | ||
yee900 | 0 | 232,870,128 | 49% | ||
barleycorn | 0 | 239,756,108 | 1.71% | ||
spero2711 | 0 | 74,500,109 | 25% | ||
sbi7 | 0 | 109,626,327,301 | 100% | ||
ogsenti | 0 | 71,157,749 | 100% | ||
holger.random | 0 | 1,374,881,373 | 100% | ||
fullnodeupdate | 0 | 2,772,157,086 | 100% | ||
bluengel | 0 | 3,613,744,913 | 2.5% | ||
swapsteem | 0 | 584,137,918,643 | 100% | ||
jacekw.dev | 0 | 3,711,911,981 | 100% | ||
reportup | 0 | 24,889,486,335 | 10% | ||
muscara | 0 | 10,057,546,539 | 35% | ||
ayisigi | 0 | 438,145,358 | 100% | ||
blake.letras | 0 | 287,695,532 | 100% | ||
minminlou | 0 | 78,556,581 | 1% | ||
sbi8 | 0 | 77,164,439,341 | 100% | ||
mmunited | 0 | 10,230,139,007 | 49% | ||
sbi9 | 0 | 56,088,258,466 | 100% | ||
mco | 0 | 946,268,867 | 11.4% | ||
hobo.media | 0 | 45,648,614,785 | 100% | ||
steem-ua | 0 | 375,224,707,700 | 3.86% | ||
linuxbot | 0 | 13,526,912,072 | 100% | ||
gameo | 0 | 191,241,832 | 100% | ||
alvinvoo | 0 | 672,293,084 | 100% | ||
moemoe1998 | 0 | 244,934,784 | 49% | ||
mmsupporter1 | 0 | 232,542,596 | 49% | ||
prometheus2 | 0 | 239,383,533 | 49% | ||
lucifier | 0 | 232,308,873 | 49% | ||
michealb | 0 | 375,087,988,697 | 10% | ||
bioscrolls | 0 | 605,745,501 | 99% | ||
sbi10 | 0 | 37,609,753,629 | 100% | ||
nerdrepost | 0 | 1,020,942,110 | 100% | ||
lucifer2 | 0 | 96,717,173 | 24.5% | ||
curbot | 0 | 2,636,610,173 | 100% | ||
mmcg | 0 | 942,896,975 | 49% | ||
wherein | 0 | 49,820,501,009 | 0.8% | ||
bluerobo | 0 | 8,274,056,611 | 100% | ||
dexos2 | 0 | 1,620,254,585 | 100% | ||
dfen | 0 | 540,234,632 | 100% | ||
bluesniper | 0 | 2,969,633,820 | 0.75% | ||
samantha-w | 0 | 3,856,596,805,376 | 100% | ||
flodor | 0 | 394,536,022 | 25% | ||
tipu.curator | 0 | 23,399,701,682 | 50% | ||
brujas | 0 | 3,982,887,838 | 100% | ||
goodcontentbot | 0 | 64,349,849 | 50% | ||
hamsa.quality | 0 | 470,566,357 | 7% | ||
sternekoechin | 0 | 239,156,935 | 25% | ||
supu | 0 | 15,160,821,967 | 2% | ||
steether | 0 | 109,651,919 | 100% | ||
sumotori | 0 | 3,262,421,409 | 100% | ||
russia-btc | 0 | 7,839,849,709 | 50% | ||
jackramsey | 0 | 5,853,065,004 | 2.91% | ||
photographercr | 0 | 5,931,520,684 | 15% | ||
zugs | 0 | 7,781,231,364 | 2% | ||
bigmoneyman | 0 | 165,349,387 | 6.5% | ||
raspibot | 0 | 653,637,476 | 100% | ||
genuinehuman | 0 | 1,683,360,078 | 50% | ||
pandaparker | 0 | 285,220,380 | 100% | ||
suman156 | 0 | 37,387,025 | 5% | ||
sugarzone | 0 | 548,747,056 | 100% | ||
abdulmatin69 | 0 | 381,868,244 | 100% | ||
steem-hilfe | 0 | 2,243,096,668 | 25% | ||
lisboa | 0 | 77,345,637,516 | 50% | ||
fainted | 0 | 534,157,803 | 100% | ||
swedishdragon76 | 0 | 66,339,212 | 100% | ||
dachcolony | 0 | 26,510,939,806 | 100% | ||
captain.kirk | 0 | 8,452,457,865 | 50% | ||
tggr | 0 | 16,360,676,480 | 100% | ||
tokentown | 0 | 948,306,849 | 100% | ||
diceshark | 0 | 1,863,789,450 | 50% | ||
jean-luc.picard | 0 | 1,011,145,517 | 100% | ||
time-machine | 0 | 355,415,172 | 100% | ||
ladyparkabatai | 0 | 227,990,414 | 100% |
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)
author | ackza |
---|---|
permlink | rprs72 |
category | steem-engine |
json_metadata | {"users":["aggroed","eonwarped","holger80","telosnetwork"],"links":["https://t.me/dappstelos"],"app":"hiveblog/0.1"} |
created | 2023-02-08 16:23:30 |
last_update | 2023-02-08 16:23:30 |
depth | 1 |
children | 0 |
last_payout | 2023-02-15 16:23:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,061 |
author_reputation | 287,695,264,112,368 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,599,324 |
net_rshares | 0 |
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)
author | blockchainstudio |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190512t225625765z |
category | steem-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":[]} |
created | 2019-05-12 22:56:27 |
last_update | 2019-05-12 22:56:27 |
depth | 1 |
children | 0 |
last_payout | 2019-05-19 22:56:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 178,988,499,015,921 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,743,515 |
net_rshares | 0 |
Will it work?
author | internetexpert |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190509t195609816z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-09 19:56:09 |
last_update | 2019-05-09 19:56:09 |
depth | 1 |
children | 0 |
last_payout | 2019-05-16 19:56:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 118,488,635,737 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,554,319 |
net_rshares | 0 |
https://render.bitstrips.com/v2/cpanel/33dd5e8f-cc39-4cc1-af24-e49c70b17dc9-2b851cb9-3222-436b-9bb7-ff7645be9ace-v1.png?transparent=1&palette=1
author | karenmckersie |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190510t070307334z |
category | steem-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"} |
created | 2019-05-10 07:03:09 |
last_update | 2019-05-10 07:03:09 |
depth | 1 |
children | 3 |
last_payout | 2019-05-17 07:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 280,862,618,735,740 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,589,562 |
net_rshares | 0 |
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
author | ackza |
---|---|
permlink | pw62tl |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-08-13 08:41:48 |
last_update | 2019-08-13 08:41:48 |
depth | 2 |
children | 2 |
last_payout | 2019-08-20 08:41:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 569 |
author_reputation | 287,695,264,112,368 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,470,217 |
net_rshares | 196,989,752,020 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 196,989,752,020 | 15% |

author | ackza |
---|---|
permlink | pw636b |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"image":["https://cdn.steemitimages.com/DQmf2TBsVrH73b7KyqparHYXRA8DWdEbixMFxAxddjybnnm/bitcoinFAST.png"],"app":"steemit/0.1"} |
created | 2019-08-13 08:49:24 |
last_update | 2019-08-13 08:49:24 |
depth | 3 |
children | 1 |
last_payout | 2019-08-20 08:49:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 287,695,264,112,368 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,470,388 |
net_rshares | 0 |
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!
author | partiko |
---|---|
permlink | re-scotbot-parameter-manual-20190509t173100 |
category | steem-engine |
json_metadata | "{"app": "partiko"}" |
created | 2019-05-09 17:31:03 |
last_update | 2019-05-09 17:31:03 |
depth | 1 |
children | 0 |
last_payout | 2019-05-16 17:31:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 39,207,160,334,751 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,546,012 |
net_rshares | 0 |
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)
author | patrickulrich |
---|---|
permlink | patrickulrich-re-holger80-scotbot-parameter-manual-20190509t160628884z |
category | steem-engine |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-05-09 16:06:30 |
last_update | 2019-05-09 16:06:30 |
depth | 1 |
children | 0 |
last_payout | 2019-05-16 16:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 92,185,416,218,701 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,541,692 |
net_rshares | 0 |
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?
author | ribai |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190514t081543825z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-14 08:15:45 |
last_update | 2019-05-14 08:15:45 |
depth | 1 |
children | 2 |
last_payout | 2019-05-21 08:15:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 176 |
author_reputation | 14,599,253,581,127 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,822,876 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 0 | 100% |
yep, please contact me in Discord. You can find the discord link at the bottom of the steem-engine.com website.
author | aggroed |
---|---|
permlink | re-ribai-re-holger80-scotbot-parameter-manual-20190514t110807053z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-14 11:08:06 |
last_update | 2019-05-14 11:08:06 |
depth | 2 |
children | 0 |
last_payout | 2019-05-21 11:08:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 1,343,344,221,324,844 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,829,514 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 0 | 100% |
You should get in touch with @aggroed.
author | holger80 |
---|---|
permlink | re-ribai-re-holger80-scotbot-parameter-manual-20190514t082201069z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"users":["aggroed"],"app":"steemit/0.1"} |
created | 2019-05-14 08:22:06 |
last_update | 2019-05-14 11:07:12 |
depth | 2 |
children | 0 |
last_payout | 2019-05-21 08:22:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 358,857,509,568,825 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,823,199 |
net_rshares | 0 |
did not understand - why do I need it?
author | russia-btc |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190511t110940144z |
category | steem-engine |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem-engine"],"users":[],"links":[],"image":[]} |
created | 2019-05-11 11:09:51 |
last_update | 2019-05-11 11:09:51 |
depth | 1 |
children | 2 |
last_payout | 2019-05-18 11:09:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 57,707,308,681,904 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,659,871 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 0 | 100% |
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
author | ackza |
---|---|
permlink | pw62rf |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"users":["steemspeak"],"app":"steemit/0.1"} |
created | 2019-08-13 08:40:30 |
last_update | 2019-08-13 08:40:30 |
depth | 2 |
children | 1 |
last_payout | 2019-08-20 08:40:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 367 |
author_reputation | 287,695,264,112,368 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,470,193 |
net_rshares | 10,655,418,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
russia-btc | 0 | 10,655,418,463 | 26% |
thanks for the answer Posted using [Partiko iOS](https://partiko.app/referral/russia-btc)
author | russia-btc |
---|---|
permlink | russia-btc-re-ackza-pw62rf-20190813t084430963z |
category | steem-engine |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-08-13 08:44:30 |
last_update | 2019-08-13 08:44:30 |
depth | 3 |
children | 0 |
last_payout | 2019-08-20 08:44:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 57,707,308,681,904 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,470,266 |
net_rshares | 0 |
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?
author | silverstackeruk |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190512t164639700z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-12 16:47:36 |
last_update | 2019-05-12 16:48:27 |
depth | 1 |
children | 0 |
last_payout | 2019-05-19 16:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 288 |
author_reputation | 127,246,167,824,445 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,730,321 |
net_rshares | 13,722,318,152 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
silverstackeruk | 0 | 13,722,318,152 | 50% |
This all looks great! However I wish I understood what it meant.. π€―
author | stealthtrader |
---|---|
permlink | re-holger80-scotbot-parameter-manual-20190509t154943139z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-09 15:49:42 |
last_update | 2019-05-09 15:49:42 |
depth | 1 |
children | 1 |
last_payout | 2019-05-16 15:49:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 74,266,337,461,760 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,540,833 |
net_rshares | 77,626,263,163 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfermarly | 0 | 52,134,969,942 | 50% | ||
natubat | 0 | 24,975,324,574 | 30% | ||
mattgroening | 0 | 515,968,647 | 100% |
Same here ππ
author | surfermarly |
---|---|
permlink | re-stealthtrader-re-holger80-scotbot-parameter-manual-20190509t192132149z |
category | steem-engine |
json_metadata | {"tags":["steem-engine"],"app":"steemit/0.1"} |
created | 2019-05-09 19:21:33 |
last_update | 2019-05-09 19:21:33 |
depth | 2 |
children | 0 |
last_payout | 2019-05-16 19:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 318,958,646,866,746 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,552,143 |
net_rshares | 0 |
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.
author | steem-plus |
---|---|
permlink | scotbot-parameter-manual---vote-steemplus |
category | steem-engine |
json_metadata | {} |
created | 2019-05-10 07:19:36 |
last_update | 2019-05-10 07:19:36 |
depth | 1 |
children | 0 |
last_payout | 2019-05-17 07:19:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 434 |
author_reputation | 247,952,188,232,400 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,590,583 |
net_rshares | 0 |
#### 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)**
author | steem-ua |
---|---|
permlink | re-scotbot-parameter-manual-20190509t224956z |
category | steem-engine |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-05-09 22:49:57 |
last_update | 2019-05-09 22:49:57 |
depth | 1 |
children | 0 |
last_payout | 2019-05-16 22:49:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 644 |
author_reputation | 23,214,230,978,060 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,564,321 |
net_rshares | 0 |
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!
author | steemitboard |
---|---|
permlink | steemitboard-notify-holger80-20190514t101044000z |
category | steem-engine |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-05-14 10:10:42 |
last_update | 2019-05-14 10:10:42 |
depth | 1 |
children | 0 |
last_payout | 2019-05-21 10:10:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,337 |
author_reputation | 38,975,615,169,260 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,827,079 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](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.
author | tts |
---|---|
permlink | re-scotbot-parameter-manual-20190509t154127 |
category | steem-engine |
json_metadata | "" |
created | 2019-05-09 15:41:27 |
last_update | 2019-05-09 15:41:27 |
depth | 1 |
children | 0 |
last_payout | 2019-05-16 15:41:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 344 |
author_reputation | -4,535,154,553,995 |
root_title | "Scotbot parameter manual" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,540,523 |
net_rshares | 0 |