create account

steemrewarding.com - vote delay optimization added by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$55.12
steemrewarding.com - vote delay optimization added
<center>![rewarding_batch2.png](https://ipfs.busy.org/ipfs/QmPhk8pRRbgjHqHpNpSuuFiWkDuKppxDpyzSPpMCGZwS8a)
</center>
### Repository
https://github.com/holgern/steemrewarding

steemrewarding.com is a feature-rich automatic voting tool. It can be used to create voting rules at https://steemrewarding.com, when posting authority was given to the @rewarding account. I created a discord server for all topics regarding steemrewarding.com: [discord invitation](https://discord.gg/qpsR8hf).

steemrewarding is currently used by 126 users which created 1193 rules for posts, 85 rules for comments and 24 trail vote rules. In the last 7 days were 4244 time based votes and 1986 vp based votes broadcasted through steemrewarding. 
## New Features
### New rules can be directly created by entering steemrewarding.com/@author in the browser
When entering a steem account name after stemrewarding.com, a new rule can be directly be created. For example, https://steemrewarding.com/@utopian-io
will open the new rule editor:
![image.png](https://ipfs.busy.org/ipfs/QmXWdU1qTUfFSJXFNVoUEsL2vZY23TUxrWfaTTCMvQnh7n)

## Vote delay optimization 
A user of steemrewarding.com can now optimize  the vote delay time for all time based vote rules automatically. The optimization must be enabled in https://steemrewarding.com/settings:
![image.png](https://ipfs.busy.org/ipfs/QmbCuYmfqPrMZ7UWFuEc9vpUNSGnkxKjBoFaDqwHkQ2hMA)

When enabled, each vote_log is analyed in the calc_curation_performance.py script.
```
best_performance = 0
best_vote_delay_min = 0
for v in c["active_votes"]:
    v_SBD = stm.rshares_to_sbd(int(v["rshares"]))
    if v_SBD > 0 and int(v["rshares"]) > rshares * 0.5:
        
        p = float(curation_rewards_SBD["active_votes"][v["voter"]]) / v_SBD * 100
        if p > best_performance:
            best_performance = p
            best_vote_delay_min = ((v["time"]) - c["created"]).total_seconds() / 60
```
All given votes to the upvoted post/comment that have at least half the rshares of the rule creator are analyed. When there is a single vote that have a better performance, its vote delay time and its performance is stored.

The values are shown in the vote log https://steemrewarding.com/show_vote_log:
![image.png](https://ipfs.busy.org/ipfs/QmZPkN6GUPna3kyXTFAyzkiBEgpBoRrctCxL4tPfigDJwd)

A vote delay time is optimized when
* the actual vote delay is near the set vote delay (time difference below 1 minute)
* optimize_vote_delay  is enabled unter settings
* disable_optimization is not enabled for the rule
* the initial vote delay is between minimum_vote_delay  and maximum_vote_delay 

minimum_vote_delay  and maximum_vote_delay can be set at steemrewarding.com/settings
![image.png](https://ipfs.busy.org/ipfs/QmfXz3BKUczGB2U4tiiMrTaNsCXftt4N1Am7Ys2qXaSffX)

When a best_performance and best_vote_delay_min  was found for a vote rule log entry, the vote delay is optimized by:
```
minimum_vote_delay = acc_data["minimum_vote_delay"]
maximum_vote_delay = acc_data["maximum_vote_delay"]
optimize_threshold = 1 + (acc_data["optimize_threshold"] / 100)
optimize_ma_length = acc_data["optimize_ma_length"]

    
vote_rule = voteRulesTrx.get(vote_log["voter"], c["author"], c.is_main_post())
if vote_rule is not None and not vote_rule["disable_optimization"]:
    vote_delay_min = vote_rule["vote_delay_min"]
    if best_performance > performance * optimize_threshold and vote_delay_min <= maximum_vote_delay and vote_delay_min >= minimum_vote_delay:
        if optimize_ma_length > 1:
            vote_delay_min = (vote_delay_min * (optimize_ma_length - 1) + best_vote_delay_min) / optimize_ma_length
        else:
            vote_delay_min = best_vote_delay_min
        if vote_delay_min > maximum_vote_delay:
            vote_delay_min = maximum_vote_delay
        elif vote_delay_min < minimum_vote_delay:
            vote_delay_min = minimum_vote_delay
        voteRulesTrx.update({"voter": vote_log["voter"], "author": c["author"], "main_post": c.is_main_post(),
                             "vote_delay_min": vote_delay_min})
        vote_log["optimized_vote_delay_min"] = vote_delay_min
```
When the optimal vote delay differs less than `optimize_threshold` percentage from the old one, the vote delay is not changed. This prevents that the vote delay time from jittering.

A simplified moving average calculation is then used to update the vote delay time. The influence of the optimal voting time is set by `optimize_ma_length`. When it is set to 20, it will take 20 steps approach a new optimum. 

He is an example, that show how it works:
![image.png](https://ipfs.busy.org/ipfs/QmYjEP2vcDjRBwDcxb8hsK6qWodBkFx1t5JXSj9CPqEhJM)
I set the vote delay to 13 minutes, the best vote delay is at 8.2 minutes. The new vote delay is then:
(( `optimize_ma_length` - 1) * 13 min + 8.2 min) / `optimize_ma_length`
which is for  `optimize_ma_length=20` 12.76 minutes. This means that the vote delay for my rule is reduced in order to approach the optimal vote time.

The parameter `optimize_ma_length` and `optimize_threshold` can be set in steemrewarding.com/settings

![image.png](https://ipfs.busy.org/ipfs/QmeDrxhVR2oPRx5BSjJCcgbej7oppFCio1TdZMRjPjQ1uE)


## Commits
### Add vote optimization for all time based votes
* [commit 4bc0826](https://github.com/holgern/steemrewarding/commit/4bc082644e78cdf6b4e157a2d4c9ec11073447dd)
### Add option to add a rule by adding an account to steemrewarding.com (e.g. https://steemrewarding.com/@holger80)
* [commit 1585cf1](https://github.com/holgern/steemrewarding/commit/1585cf1bab64d15655b6d831ae4ed0a058e81924)
### GitHub Account
https://github.com/holgern
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 299 others
πŸ‘Ž  
properties (23)
authorholger80
permlinksteemrewarding-com-vote-delay-optimization-added
categoryutopian-io
json_metadata"{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["utopian-io", "development", "rewarding", "autovote", "busy"], "users": ["rewarding", "author", "utopian-io", "holger80"], "links": ["https://github.com/holgern/steemrewarding", "https://steemrewarding.com", "/@rewarding", "https://discord.gg/qpsR8hf", "https://steemrewarding.com/@utopian-io", "https://steemrewarding.com/settings:", "https://steemrewarding.com/show_vote_log:", "https://github.com/holgern/steemrewarding/commit/4bc082644e78cdf6b4e157a2d4c9ec11073447dd", "https://steemrewarding.com/@holger80", "https://github.com/holgern/steemrewarding/commit/1585cf1bab64d15655b6d831ae4ed0a058e81924"], "image": ["https://ipfs.busy.org/ipfs/QmPhk8pRRbgjHqHpNpSuuFiWkDuKppxDpyzSPpMCGZwS8a", "https://ipfs.busy.org/ipfs/QmXWdU1qTUfFSJXFNVoUEsL2vZY23TUxrWfaTTCMvQnh7n", "https://ipfs.busy.org/ipfs/QmbCuYmfqPrMZ7UWFuEc9vpUNSGnkxKjBoFaDqwHkQ2hMA", "https://ipfs.busy.org/ipfs/QmZPkN6GUPna3kyXTFAyzkiBEgpBoRrctCxL4tPfigDJwd", "https://ipfs.busy.org/ipfs/QmfXz3BKUczGB2U4tiiMrTaNsCXftt4N1Am7Ys2qXaSffX", "https://ipfs.busy.org/ipfs/QmYjEP2vcDjRBwDcxb8hsK6qWodBkFx1t5JXSj9CPqEhJM", "https://ipfs.busy.org/ipfs/QmeDrxhVR2oPRx5BSjJCcgbej7oppFCio1TdZMRjPjQ1uE"], "canonical_url": "https://hive.blog/utopian-io/@holger80/steemrewarding-com-vote-delay-optimization-added"}"
created2019-04-18 13:42:36
last_update2020-05-23 14:29:09
depth0
children17
last_payout2019-04-25 13:42:36
cashout_time1969-12-31 23:59:59
total_payout_value43.085 HBD
curator_payout_value12.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,621
author_reputation358,857,509,568,825
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,324,364
net_rshares96,965,081,589,751
author_curate_reward""
vote details (364)
@abitcoinskeptic ·
The biggest reward is having you as our witness and blockchain expert.

Posted using [Partiko Android](https://partiko.app/referral/abitcoinskeptic)
properties (22)
authorabitcoinskeptic
permlinkabitcoinskeptic-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t141643219z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-04-18 14:16:42
last_update2019-04-18 14:16:42
depth1
children0
last_payout2019-04-25 14:16: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_length148
author_reputation335,387,091,612,941
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,326,615
net_rshares0
@amico · (edited)
$0.02
Hey @holger80, thanks for the new feature: I'll try it ASAP! ;)
Cheers!

___
#### <center> Everything is okay! πŸ‘Œ </center> 
___
You received an automatic upvote, because I believe in you and I love what you create! πŸ˜‰

A huge hug from @amico! πŸ€—

<sup><sup><sup><sup>😍 I love promoting @steembasicincome, even with #sbi-skip! 😜 </sup></sup></sup></sup>
___

<center> If you dislike this automatic message, please let me know: thanks! πŸ™</center>
πŸ‘  ,
properties (23)
authoramico
permlinkre-steemrewarding-com-vote-delay-optimization-added-20190418t135801z
categoryutopian-io
json_metadata{"app":"steemit/0.1","tags":["utopian-io","sbi-skip"],"users":["holger80","amico","steembasicincome"]}
created2019-04-18 13:58:06
last_update2019-04-23 21:31:51
depth1
children0
last_payout2019-04-25 13:58:06
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length442
author_reputation51,076,240,298,517
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,325,332
net_rshares42,288,081,882
author_curate_reward""
vote details (2)
@blanchy ·
Brilliant. Gonna try it today
properties (22)
authorblanchy
permlinkre-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t080457422z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-04-19 08:04:57
last_update2019-04-19 08:04:57
depth1
children0
last_payout2019-04-26 08:04: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_length29
author_reputation358,622,390,113,107
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,372,995
net_rshares0
@dera123 · (edited)
$0.23
Wow this is an incredible update which I definitely will use.
It will make it so much easier to find the perfect curation time.Thank you so much for giving us this incredible tool.
πŸ‘  , , ,
properties (23)
authordera123
permlinkdera123-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t141341098z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-04-18 14:13:42
last_update2019-04-18 14:54:15
depth1
children0
last_payout2019-04-25 14:13:42
cashout_time1969-12-31 23:59:59
total_payout_value0.178 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation44,626,314,203,085
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,326,432
net_rshares402,925,085,833
author_curate_reward""
vote details (4)
@emrebeyler ·
$7.12
Looks like a great feature to optimize the upvote time. Great to see steemrewarding is going bigger.

***

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-2-2-).

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

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , , , , , , ,
properties (23)
authoremrebeyler
permlinkre-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t091936037z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-2-2-2-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-04-19 09:19:36
last_update2019-04-19 09:19:36
depth1
children1
last_payout2019-04-26 09:19:36
cashout_time1969-12-31 23:59:59
total_payout_value5.440 HBD
curator_payout_value1.680 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length555
author_reputation448,535,049,068,622
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,376,122
net_rshares13,232,428,414,293
author_curate_reward""
vote details (20)
@utopian-io ·
Thank you for your review, @emrebeyler! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t091936037z-20190422t033529z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-22 03:35:30
last_update2019-04-22 03:35:30
depth2
children0
last_payout2019-04-29 03:35: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_length62
author_reputation152,955,367,999,756
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,538,359
net_rshares0
@guysellars ·
Great update!  I’ve been using the utilities for some time with great success. 

Thank you @holger80
properties (22)
authorguysellars
permlinkre-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t144318866z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["holger80"],"app":"steemit/0.1"}
created2019-04-18 14:43:18
last_update2019-04-18 14:43:18
depth1
children0
last_payout2019-04-25 14:43: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_length100
author_reputation39,351,432,740,126
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,328,489
net_rshares0
@huseyinunozkan16 ·
steemrewarding.com is really helpfull if anybody can not follow steemit regularly. @rewarding helps people with his own capable coding performance. Thank you for this valuable post. Thank you @rewarding

Posted using [Partiko Android](https://partiko.app/referral/huseyinunozkan16)
properties (22)
authorhuseyinunozkan16
permlinkhuseyinunozkan16-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t135105601z
categoryutopian-io
json_metadata{"app":"partiko","client":"android"}
created2019-04-18 13:51:06
last_update2019-04-18 13:51:06
depth1
children0
last_payout2019-04-25 13:51: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_length281
author_reputation9,569,689,094,218
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,324,901
net_rshares0
@nineteensixteen ·
Hello holger80, I like your works.  But I have a question, I set up an upvote per day for my friends , but I found that sometimes there is an error log: "The author was already upvoted 1 in the last 24h (max_votes_per_day is 1).". I think this rule should be a "daily limit" not "the last 24h limit". So I suggest to modify this rule, or add a choice to let the user choose whether to execute a daily limit or 24 hours limit.
properties (22)
authornineteensixteen
permlinkre-holger80-steemrewarding-com-vote-delay-optimization-added-20190424t125426084z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2019-04-24 12:54:27
last_update2019-04-24 12:54:27
depth1
children0
last_payout2019-05-01 12:54: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_length425
author_reputation71,722,004,410,188
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,678,922
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-steemrewarding-com-vote-delay-optimization-added-20190418t143151
categoryutopian-io
json_metadata"{"app": "partiko"}"
created2019-04-18 14:31:51
last_update2019-04-18 14:31:51
depth1
children0
last_payout2019-04-25 14:31: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_length213
author_reputation39,207,160,334,751
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,327,708
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**The Steem News in 10 posts**](https://steemit.com/steem/@pennsif/thesteemnewsin10posts18april2019-o4hi3bbgpb) - a compilation of the key news stories on the Steem blockchain.
properties (22)
authorpennsif
permlinkre-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t110111980z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/thesteemnewsin10posts18april2019-o4hi3bbgpb"],"app":"steemit/0.1"}
created2019-04-19 11:01:15
last_update2019-04-19 11:01:15
depth1
children0
last_payout2019-04-26 11:01: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_length231
author_reputation636,410,097,572,565
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,379,250
net_rshares0
@re2pair ·
@holger80, I just came accross after realizing that since HF22 the preset vote delay at steemrewarding is 5 instead of 15. How come? I've never came across a #newsteem post about the detail of vote detail and timing change since HF21. Looking forwand into learing even more about steem.
πŸ‘  ,
properties (23)
authorre2pair
permlinkpxetrf
categoryutopian-io
json_metadata{"tags":["utopian-io","newsteem"],"users":["holger80"],"app":"steemit/0.1"}
created2019-09-06 12:38:03
last_update2019-09-06 12:38:03
depth1
children0
last_payout2019-09-13 12:38: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_length286
author_reputation574,654,010,136
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,307,628
net_rshares4,786,440,513
author_curate_reward""
vote details (2)
@steem-plus ·
SteemPlus upvote
Hi, @holger80!

You just got a **3.01%** 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
permlinksteemrewarding-com-vote-delay-optimization-added---vote-steemplus
categoryutopian-io
json_metadata{}
created2019-04-19 13:31:21
last_update2019-04-19 13:31:21
depth1
children0
last_payout2019-04-26 13:31:21
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_length435
author_reputation247,952,188,232,400
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,385,401
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 6.617 which ranks you at **#142** across all Steem accounts.
Your rank has dropped 83 places in the last three days (old rank 59).

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

* You've built up a nice network.
* 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-steemrewarding-com-vote-delay-optimization-added-20190418t231153z
categoryutopian-io
json_metadata"{"app": "beem/0.20.19"}"
created2019-04-18 23:11:54
last_update2019-04-18 23:11:54
depth1
children0
last_payout2019-04-25 23:11: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_length645
author_reputation23,214,230,978,060
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,353,289
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>https://steemitimages.com/60x70/http://steemitboard.com/@holger80/votes.png?201904221550</td><td>You made more than 10000 upvotes. Your next target is to reach 11000 upvotes.</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>



###### [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-20190422t183023000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-04-22 18:30:24
last_update2019-04-22 18:30:24
depth1
children0
last_payout2019-04-29 18:30: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_length830
author_reputation38,975,615,169,260
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,569,368
net_rshares0
@utopian-io ·
Hey, @holger80!

**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-steemrewarding-com-vote-delay-optimization-added-20190419t140209z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-04-19 14:02:09
last_update2019-04-19 14:02:09
depth1
children0
last_payout2019-04-26 14:02: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_length590
author_reputation152,955,367,999,756
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,387,027
net_rshares0
@verifyme ·
@holger80 You have received a 100% upvote from @botreporter 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-steemrewarding-com-vote-delay-optimization-added-holger80-verifyme-randomvote
categoryutopian-io
json_metadata{"tags":["verifyme","random-upvote"],"users":["holger80","botreporter"],"app":"null/null","format":"markdown"}
created2019-04-19 14:36:48
last_update2019-04-19 14:36:48
depth1
children0
last_payout2019-04-26 14:36: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_length214
author_reputation-705,247,747,464
root_title"steemrewarding.com - vote delay optimization added"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,388,413
net_rshares0