<center> </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:  ## 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:  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:  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  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:  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  ## 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
author | holger80 |
---|---|
permlink | steemrewarding-com-vote-delay-optimization-added |
category | utopian-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"}" |
created | 2019-04-18 13:42:36 |
last_update | 2020-05-23 14:29:09 |
depth | 0 |
children | 17 |
last_payout | 2019-04-25 13:42:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 43.085 HBD |
curator_payout_value | 12.039 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,621 |
author_reputation | 358,857,509,568,825 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,324,364 |
net_rshares | 96,965,081,589,751 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 5,323,761,743,309 | 100% | ||
steempty | 0 | 6,068,890,309,362 | 100% | ||
tombstone | 0 | 4,335,369,625,224 | 17.42% | ||
acidyo | 0 | 4,679,408,671,529 | 50% | ||
thecryptodrive | 0 | 132,976,268,334 | 30% | ||
daan | 0 | 16,695,714,731 | 5% | ||
bowess | 0 | 90,792,156,589 | 50% | ||
twinner | 0 | 541,965,487,133 | 10% | ||
timcliff | 0 | 852,805,218,630 | 85% | ||
snwolak | 0 | 5,795,878,897 | 90% | ||
fooblic | 0 | 21,367,759,640 | 99% | ||
rufans | 0 | 24,294,538,165 | 100% | ||
stevescoins | 0 | 99,933,140,683 | 75% | ||
krnel | 0 | 512,469,456,227 | 33% | ||
abh12345 | 0 | 54,246,435,022 | 10% | ||
eforucom | 0 | 14,325,378,637 | 2% | ||
busy.pay | 0 | 1,351,889,143,165 | 6.69% | ||
techslut | 0 | 43,392,627,958 | 10% | ||
barton26 | 0 | 8,942,657,923 | 100% | ||
steemvest17 | 0 | 8,689,700,968 | 100% | ||
minersean | 0 | 7,899,452,620 | 75% | ||
bitmalaysia | 0 | 1,555,893,666 | 33% | ||
yadamaniart | 0 | 676,431,221 | 1.44% | ||
rahul.stan | 0 | 6,936,954,782 | 10% | ||
erikaflynn | 0 | 14,920,689,280 | 35% | ||
borislavzlatanov | 0 | 103,924,892,312 | 100% | ||
lordneroo | 0 | 67,248,080,583 | 50% | ||
freebornsociety | 0 | 5,450,989,982 | 10% | ||
jarunik | 0 | 1,837,139,168,545 | 100% | ||
msg768 | 0 | 8,320,550,706 | 2% | ||
jakipatryk | 0 | 15,115,964,664 | 50% | ||
reggaemuffin | 0 | 9,360,719,473,414 | 100% | ||
jga | 0 | 2,964,842,397 | 21.77% | ||
rycharde | 0 | 49,450,550,316 | 100% | ||
helo | 0 | 113,298,767,334 | 47.46% | ||
coquiunlimited | 0 | 124,671,769 | 1.2% | ||
robofox | 0 | 3,714,009,791 | 100% | ||
lelon | 0 | 8,988,612,899 | 100% | ||
lorenzor | 0 | 1,223,416,350 | 10.88% | ||
pennsif | 0 | 15,451,977,530 | 31% | ||
ewkaw | 0 | 13,882,683,353 | 20% | ||
jayna | 0 | 299,133,981 | 0.43% | ||
ew-and-patterns | 0 | 584,338,286,782 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
suesa | 0 | 139,400,252,822 | 25% | ||
tensor | 0 | 85,388,204,573 | 100% | ||
swedishdragon | 0 | 467,764,243,087 | 100% | ||
warfeed | 0 | 275,960,527 | 37.5% | ||
jacekw | 0 | 9,840,054,791 | 50% | ||
drorion | 0 | 83,278,401,795 | 100% | ||
codingdefined | 0 | 67,498,230,327 | 47.46% | ||
hope-on-fire | 0 | 6,919,514,357 | 15% | ||
tsoldovieri | 0 | 1,578,301,201 | 10.88% | ||
abigail-dantes | 0 | 849,502,876,370 | 50% | ||
tykee | 0 | 10,519,128,057 | 21.77% | ||
upgoat | 0 | 1,921,255,730 | 100% | ||
resheep | 0 | 433,872,362 | 100% | ||
upcroak | 0 | 159,814,112 | 100% | ||
smartcash | 0 | 5,457,080,389 | 69% | ||
glitterbooster | 0 | 2,945,978,117 | 30% | ||
jasonbu | 0 | 13,260,854,704 | 30% | ||
shanibeer | 0 | 32,659,630,896 | 19% | ||
iamphysical | 0 | 15,181,037,856 | 90% | ||
felixrodriguez | 0 | 559,896,117 | 7.61% | ||
azulear | 0 | 465,189,771 | 100% | ||
silviu93 | 0 | 5,923,836,980 | 21.77% | ||
badham | 0 | 943,908,110 | 50% | ||
make-a-whale | 0 | 626,746,127,300 | 100% | ||
jadabug | 0 | 1,797,614,481 | 1% | ||
dakeshi | 0 | 964,770,918 | 21.77% | ||
crokkon | 0 | 160,498,566,818 | 100% | ||
accelerator | 0 | 12,951,735,755 | 0.81% | ||
kamikaze | 0 | 42,176,671,062 | 15% | ||
eastmael | 0 | 9,496,818,017 | 43.55% | ||
buckydurddle | 0 | 31,198,885,753 | 61.69% | ||
revisesociology | 0 | 70,849,844,126 | 20% | ||
jinger | 0 | 219,878,644 | 47.46% | ||
espoem | 0 | 208,542,553,145 | 100% | ||
mcfarhat | 0 | 36,581,188,275 | 18.98% | ||
isnochys | 0 | 9,521,213,759 | 13% | ||
vishalsingh4997 | 0 | 156,192,960 | 21.77% | ||
qurator | 0 | 160,503,679,659 | 2.88% | ||
renatomacedo | 0 | 469,841,837 | 100% | ||
pierlave | 0 | 1,492,943,666 | 100% | ||
loshcat | 0 | 2,578,923,322 | 100% | ||
steem-plus | 0 | 44,886,802,923 | 3.01% | ||
pataty69 | 0 | 21,080,113,314 | 10% | ||
elear | 0 | 11,330,387,110 | 43.55% | ||
zoneboy | 0 | 23,741,432,839 | 100% | ||
carloserp-2000 | 0 | 31,868,433,384 | 100% | ||
carlos84 | 0 | 821,108,587 | 21.77% | ||
che-shyr | 0 | 1,041,804,365 | 50% | ||
utopian-io | 0 | 37,860,518,049,992 | 43.55% | ||
shammi | 0 | 1,792,228,184 | 35% | ||
new-world-steem | 0 | 9,766,841,530 | 100% | ||
sebescen81 | 0 | 50,281,485,252 | 25% | ||
imisstheoldkanye | 0 | 2,222,406,536 | 1% | ||
jaff8 | 0 | 114,108,355,596 | 47.46% | ||
katerinaramm | 0 | 111,643,194,816 | 100% | ||
mytechtrail | 0 | 1,472,033,221 | 50% | ||
amestyj | 0 | 850,553,998 | 21.77% | ||
ajayyy | 0 | 732,692,435 | 10.88% | ||
greenorange | 0 | 544,284,707 | 100% | ||
bubbleburst | 0 | 7,419,546,528 | 100% | ||
idikuci | 0 | 28,757,834,497 | 100% | ||
mcyusuf | 0 | 2,862,903,905 | 21.77% | ||
alexs1320 | 0 | 24,291,424,647 | 15% | ||
gentleshaid | 0 | 41,494,662,518 | 43.55% | ||
steembasicincome | 0 | 2,040,273,941,925 | 100% | ||
jpphotography | 0 | 157,333,831,673 | 65% | ||
cpufronz | 0 | 1,347,683,879 | 50% | ||
thomasgift | 0 | 2,123,975,049 | 50% | ||
ivymalifred | 0 | 368,323,770 | 10.88% | ||
bitfiend | 0 | 7,112,789,578 | 20% | ||
aussieninja | 0 | 7,449,738,630 | 21.77% | ||
abitcoinskeptic | 0 | 70,211,857,851 | 40% | ||
ennyta | 0 | 169,502,744 | 10.88% | ||
carsonroscoe | 0 | 9,603,493,626 | 100% | ||
vjap55 | 0 | 1,033,940,598 | 100% | ||
amosbastian | 0 | 177,506,392,276 | 47.46% | ||
eliaschess333 | 0 | 2,175,496,403 | 10.88% | ||
tdre | 0 | 76,236,374,383 | 100% | ||
asaj | 0 | 18,149,675,737 | 100% | ||
rondras | 0 | 48,438,227,570 | 100% | ||
harry-heightz | 0 | 19,380,003,025 | 43.55% | ||
scienceangel | 0 | 48,709,408,714 | 50% | ||
jjay | 0 | 501,114,250 | 100% | ||
vanarchist | 0 | 2,873,986,566 | 100% | ||
neokuduk | 0 | 6,594,011,335 | 100% | ||
sargoon | 0 | 4,215,549,171 | 50% | ||
darewealth | 0 | 8,734,113,259 | 43.55% | ||
lukasmining | 0 | 2,653,503,113 | 50% | ||
tobias-g | 0 | 150,945,625,959 | 42% | ||
literaturk | 0 | 455,410,182 | 100% | ||
lanzjoseg | 0 | 19,338,499,734 | 50% | ||
dongentle2 | 0 | 5,939,566,493 | 21.77% | ||
miguelangel2801 | 0 | 130,337,739 | 10.88% | ||
didic | 0 | 30,543,167,570 | 25% | ||
michaelizer | 0 | 1,331,757,848 | 100% | ||
emiliomoron | 0 | 1,002,547,241 | 10.88% | ||
sudefteri | 0 | 8,118,474,961 | 100% | ||
verhp11 | 0 | 129,761,601 | 1% | ||
micaelacf | 0 | 330,133,343 | 10% | ||
maxpatternman | 0 | 40,197,131,834 | 100% | ||
condeas | 0 | 20,853,949,792 | 50% | ||
sashas | 0 | 3,237,008,742 | 100% | ||
asgarth | 0 | 264,246,694,966 | 50% | ||
flugschwein | 0 | 18,354,519,144 | 75% | ||
cyprianj | 0 | 1,042,932,756 | 21.77% | ||
mirkosche | 0 | 273,833,887 | 61.69% | ||
ulisesfl17 | 0 | 914,007,912 | 30% | ||
arac | 0 | 129,298,163 | 10% | ||
akifane | 0 | 635,947,194 | 100% | ||
rasit | 0 | 456,315,892 | 100% | ||
endopediatria | 0 | 112,212,838 | 4.35% | ||
tatylayla | 0 | 2,384,760,055 | 100% | ||
themuffinman | 0 | 71,909,983 | 100% | ||
backinblackdevil | 0 | 75,705,562,287 | 15% | ||
reazuliqbal | 0 | 47,977,017,230 | 25% | ||
maveraunnehr | 0 | 413,933,319 | 100% | ||
satren | 0 | 12,521,953,787 | 25% | ||
lauchmelder | 0 | 9,050,429,670 | 25% | ||
amico | 0 | 226,792,570,672 | 100% | ||
tomastonyperez | 0 | 2,492,654,507 | 10.88% | ||
elvigia | 0 | 2,213,041,421 | 10.88% | ||
jubreal | 0 | 6,637,411,717 | 43.55% | ||
dotwin1981 | 0 | 21,266,499,611 | 15% | ||
schlafhacking | 0 | 202,478,307,017 | 100% | ||
qberry | 0 | 1,350,322,440 | 1.44% | ||
thefunfactory | 0 | 72,795,873 | 100% | ||
someonefun | 0 | 72,795,226 | 100% | ||
funbox | 0 | 72,795,223 | 100% | ||
funlands | 0 | 412,434,431 | 100% | ||
funanime | 0 | 72,795,211 | 100% | ||
funkyfun | 0 | 72,795,201 | 100% | ||
funnyfun | 0 | 72,795,199 | 100% | ||
dmonia | 0 | 72,795,197 | 100% | ||
goldrym | 0 | 72,794,503 | 100% | ||
qeoddrir | 0 | 72,794,491 | 100% | ||
dodrorth | 0 | 72,794,485 | 100% | ||
iedot | 0 | 71,792,505 | 100% | ||
sbi2 | 0 | 917,704,379,811 | 100% | ||
zcool | 0 | 188,717,953 | 10% | ||
ezravandi | 0 | 3,258,676,517 | 1% | ||
dera123 | 0 | 136,093,528,052 | 100% | ||
yu-stem | 0 | 10,947,818,895 | 25% | ||
luiscd8a | 0 | 1,236,817,056 | 80% | ||
elleok | 0 | 11,576,989,169 | 34% | ||
alitavirgen | 0 | 23,758,570,484 | 15% | ||
eniolw | 0 | 6,945,777,679 | 100% | ||
geadriana | 0 | 96,692,250 | 3.26% | ||
elpdl | 0 | 69,985,382 | 21.77% | ||
josedelacruz | 0 | 1,139,638,574 | 10.88% | ||
veta-less | 0 | 80,315,732 | 2% | ||
garrettwallace | 0 | 1,360,340,325 | 10% | ||
joseangelvs | 0 | 329,400,824 | 21.77% | ||
viannis | 0 | 278,047,273 | 10.88% | ||
rollthedice | 0 | 4,854,130,460 | 43.55% | ||
littleboys-faiz | 0 | 0 | 72% | ||
feronio | 0 | 1,262,833,051 | 100% | ||
flores39 | 0 | 374,656,904 | 100% | ||
erickyoussif | 0 | 435,689,012 | 21.77% | ||
sbi3 | 0 | 626,803,499,704 | 100% | ||
comedyopenmic | 0 | 807,434,519,991 | 100% | ||
ryuna.siege | 0 | 208,862,265 | 100% | ||
sbi4 | 0 | 505,471,023,072 | 100% | ||
ikarus56 | 0 | 1,024,323,697 | 5% | ||
carlpei | 0 | 231,592,122,416 | 100% | ||
blockchainstudio | 0 | 138,187,144,174 | 100% | ||
beetlevc | 0 | 2,740,806,969 | 4% | ||
linnyplant | 0 | 39,730,220,358 | 100% | ||
commonlaw | 0 | 3,983,407,224 | 35% | ||
camillesteemer | 0 | 0 | -100% | ||
shahabudin | 0 | 34,810,204 | 50% | ||
rhampagoe | 0 | 1,586,003,803 | 5.5% | ||
soundworks | 0 | 1,985,034,515 | 100% | ||
anaestrada12 | 0 | 4,572,307,580 | 21.77% | ||
allancovelli | 0 | 347,587,872 | 100% | ||
jordonemmer | 0 | 102,760,490 | 100% | ||
charitacaruso | 0 | 110,527,551 | 100% | ||
ilonavandam | 0 | 223,931,414 | 100% | ||
jonasalt | 0 | 84,186,277 | 100% | ||
zandrachilcote | 0 | 71,345,786 | 100% | ||
voneller | 0 | 347,204,586 | 100% | ||
jeniceoquin | 0 | 1,103,190,637 | 100% | ||
gretaboan | 0 | 1,076,564,813 | 100% | ||
sidneybarsky | 0 | 1,091,633,284 | 100% | ||
lecialemarr | 0 | 1,052,717,555 | 100% | ||
priscillaclermon | 0 | 1,104,746,579 | 100% | ||
lindseyporco | 0 | 1,008,279,389 | 100% | ||
osvaldolemke | 0 | 1,112,266,124 | 100% | ||
classiebarks | 0 | 1,115,875,313 | 100% | ||
franciscarosales | 0 | 1,102,295,839 | 100% | ||
loisrenaud | 0 | 1,162,167,066 | 100% | ||
starrcawthorne | 0 | 1,102,194,329 | 100% | ||
curtalfrey | 0 | 1,104,306,115 | 100% | ||
sbi5 | 0 | 345,744,462,236 | 100% | ||
sbi6 | 0 | 248,683,150,520 | 100% | ||
arsadulislam | 0 | 219,897,348 | 45% | ||
botreporter | 0 | 8,749,936,645 | 100% | ||
jesusfl17 | 0 | 381,106,401 | 100% | ||
partiko | 0 | 271,099,359,103 | 3% | ||
bflanagin | 0 | 3,976,399,617 | 21.77% | ||
ubaldonet | 0 | 4,172,583,411 | 65% | ||
ikibaru-san | 0 | 471,803,545 | 100% | ||
marygourmet | 0 | 492,863,204 | 100% | ||
joaoprobst | 0 | 1,334,611,301 | 100% | ||
verifyme | 0 | 597,690,408 | 10% | ||
mary11 | 0 | 73,493,402 | 16.32% | ||
marivic10 | 0 | 162,077,991 | 50% | ||
dalz | 0 | 6,053,656,269 | 17.42% | ||
ulockblock | 0 | 171,338,797,166 | 50% | ||
wstanley226 | 0 | 76,225,794 | 50% | ||
amart29 | 0 | 326,694,407 | 3.26% | ||
jk6276 | 0 | 4,070,088,902 | 21.77% | ||
reinaseq | 0 | 1,192,564,550 | 21.77% | ||
spero2711 | 0 | 77,006,440 | 25% | ||
sbi7 | 0 | 176,716,544,577 | 100% | ||
viaprogpuisy | 0 | 548,777,705 | 100% | ||
brammdal | 0 | 4,803,515,451 | 100% | ||
nicole5lw | 0 | 552,434,068 | 100% | ||
dssdsds | 0 | 2,561,913,517 | 21.77% | ||
jayplayco | 0 | 81,025,798,542 | 21.77% | ||
cryptouno | 0 | 433,689,563 | 5% | ||
steeming-hot | 0 | 0 | 0.01% | ||
rakan-sikula | 0 | 189,435,939 | 50% | ||
tbtek | 0 | 79,339,274 | 25% | ||
fran.frey | 0 | 351,007,053 | 10.88% | ||
holger.random | 0 | 1,326,380,458 | 100% | ||
fullnodeupdate | 0 | 2,741,056,960 | 100% | ||
mops2e | 0 | 1,215,063,870 | 80% | ||
jrevilla | 0 | 63,033,741 | 21.77% | ||
ellalz6 | 0 | 541,711,116 | 100% | ||
alfonzoasdrubal | 0 | 80,679,176 | 21.77% | ||
munhenhos | 0 | 685,564,894 | 10% | ||
mackenzie57 | 0 | 552,876,695 | 100% | ||
alexandra7y | 0 | 546,850,246 | 100% | ||
sophia96 | 0 | 545,148,700 | 100% | ||
stem-espanol | 0 | 14,638,546,610 | 21.77% | ||
reportup | 0 | 20,876,700,903 | 10% | ||
bhaski | 0 | 810,059,080 | 10% | ||
muscara | 0 | 10,106,896,660 | 35% | ||
com-judge | 0 | 1,591,064,164 | 100% | ||
progsernaro | 0 | 552,681,730 | 100% | ||
melamoonspe | 0 | 540,930,103 | 100% | ||
avaudy | 0 | 532,477,305 | 100% | ||
sbi8 | 0 | 124,700,255,802 | 100% | ||
blanchy | 0 | 175,455,614,318 | 100% | ||
perepilichnyy | 0 | 1,910,128,956,863 | 100% | ||
ibc | 0 | 252,262,095,206 | 100% | ||
linkerstinker | 0 | 671,049,021 | 50% | ||
sbi9 | 0 | 89,752,626,508 | 100% | ||
cryptorunway | 0 | 65,144,484 | 50% | ||
manimanitour | 0 | 442,076,729 | 100% | ||
karlosantonio | 0 | 524,190,552 | 100% | ||
steem-ua | 0 | 378,736,130,199 | 3.85% | ||
giulyfarci52 | 0 | 196,609,427 | 10.88% | ||
adriellylayla | 0 | 674,246,023 | 75% | ||
pinguimpaulo | 0 | 415,420,483 | 75% | ||
brwhale | 0 | 433,241,441 | 99% | ||
linuxbot | 0 | 10,814,383,113 | 100% | ||
alvinvoo | 0 | 834,128,201 | 100% | ||
kaczynski | 0 | 166,936,144 | 100% | ||
michealb | 0 | 320,599,613,304 | 10% | ||
vivapizza | 0 | 416,380,228 | 75% | ||
sbi10 | 0 | 62,356,272,901 | 100% | ||
steemitbuzz | 0 | 62,363,785 | 1% | ||
nerdrepost | 0 | 1,008,555,327 | 100% | ||
devann | 0 | 218,204,964,531 | 50% | ||
steemexpress | 0 | 1,726,236,393 | 3.01% | ||
sadino | 0 | 565,130,533 | 100% | ||
cetandradefor | 0 | 479,047,451 | 100% | ||
nineteensixteen | 0 | 223,171,508,347 | 50% | ||
curbot | 0 | 2,616,959,382 | 100% | ||
wherein | 0 | 54,173,560,777 | 1% | ||
edgarare1 | 0 | 232,182,470 | 1% | ||
alex-hm | 0 | 1,252,968,047 | 50% | ||
nurah | 0 | 88,304,822 | 50% | ||
bluerobo | 0 | 18,157,221,569 | 100% | ||
bridfarsto | 0 | 542,129,117 | 100% | ||
wilmer14molina | 0 | 71,798,662 | 21.77% | ||
dexos2 | 0 | 118,321,611 | 45% | ||
kingnosa | 0 | 63,224,899 | 50% | ||
dfen | 0 | 551,983,937 | 100% | ||
pamahdoo | 0 | 0 | 8% | ||
bolachasmonster | 0 | 2,380,640,239 | 100% | ||
mrsbozz | 0 | 641,883,809 | 25% | ||
steemtank | 0 | 2,362,166,149,834 | 100% | ||
ascorphat | 0 | 1,763,759,158 | 2.5% | ||
samantha-w | 0 | 3,748,514,603,266 | 100% | ||
flodor | 0 | 398,810,491 | 25% | ||
agostinhochiau | 0 | 250,991,969 | 50% | ||
rewarding | 0 | 5,563,930,075 | 71.77% | ||
djenny.floro | 0 | 413,028,871 | 50% | ||
broxi | 0 | 8,205,593,023 | 100% | ||
brujas | 0 | 901,638,086 | 100% | ||
rafaelmonteiro | 0 | 3,965,233,894 | 100% | ||
laurasoares | 0 | 411,703,980 | 100% | ||
bejust | 0 | 2,103,445,810 | 100% | ||
jk6276.mons | 0 | 625,390,292 | 43.55% | ||
hamsa.quality | 0 | 369,114,395 | 7% | ||
sternekoechin | 0 | 242,898,534 | 25% | ||
progressing | 0 | 1,899,867,418 | 100% | ||
jaxson2011 | 0 | 1,687,060,755 | 43.55% | ||
f21steem | 0 | 2,048,974,252 | 100% | ||
orbo | 0 | 250,985,788 | 50% | ||
newstrikex | 0 | 498,342,235 | 100% | ||
cyberdyn | 0 | 814,735,506 | 100% | ||
kreesher | 0 | 93,432,753 | 25% | ||
mohaaking | 0 | 117,809,311 | 50% | ||
utopian.trail | 0 | 17,401,135,852 | 43.55% | ||
steemcartel | 0 | 5,492,685,299 | 11% | ||
vaccinusveritas | 0 | 6,809,084,182 | 50% | ||
actifit-devil | 0 | 8,960,812,727 | 50% | ||
raspibot | 0 | 487,874,342 | 100% | ||
dicetime | 0 | 38,519,176,384 | 21.77% | ||
umudd | 0 | 527,094,773 | 100% | ||
genuinehuman | 0 | 1,009,995,763 | 50% | ||
sugarzone | 0 | 521,765,816 | 100% | ||
threejay | 0 | 6,890,638,272 | 100% | ||
asuperman | 0 | 1,232,609,844 | 25% | ||
steem-hilfe | 0 | 2,527,857,839 | 45% | ||
lisboa | 0 | 100,934,624,339 | 50% | ||
glumanda0815 | 0 | 103,854,933 | 15% |
The biggest reward is having you as our witness and blockchain expert. Posted using [Partiko Android](https://partiko.app/referral/abitcoinskeptic)
author | abitcoinskeptic |
---|---|
permlink | abitcoinskeptic-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t141643219z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-04-18 14:16:42 |
last_update | 2019-04-18 14:16:42 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 14:16: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 | 148 |
author_reputation | 335,387,091,612,941 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,326,615 |
net_rshares | 0 |
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>
author | amico |
---|---|
permlink | re-steemrewarding-com-vote-delay-optimization-added-20190418t135801z |
category | utopian-io |
json_metadata | {"app":"steemit/0.1","tags":["utopian-io","sbi-skip"],"users":["holger80","amico","steembasicincome"]} |
created | 2019-04-18 13:58:06 |
last_update | 2019-04-23 21:31:51 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 13:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 442 |
author_reputation | 51,076,240,298,517 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,325,332 |
net_rshares | 42,288,081,882 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
storywriter | 0 | 19,152,523,715 | 100% | ||
dustbunny | 0 | 23,135,558,167 | 7.37% |
Brilliant. Gonna try it today
author | blanchy |
---|---|
permlink | re-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t080457422z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-04-19 08:04:57 |
last_update | 2019-04-19 08:04:57 |
depth | 1 |
children | 0 |
last_payout | 2019-04-26 08:04: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 | 29 |
author_reputation | 358,622,390,113,107 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,372,995 |
net_rshares | 0 |
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.
author | dera123 |
---|---|
permlink | dera123-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t141341098z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-04-18 14:13:42 |
last_update | 2019-04-18 14:54:15 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 14:13:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.178 HBD |
curator_payout_value | 0.056 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 180 |
author_reputation | 44,626,314,203,085 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,326,432 |
net_rshares | 402,925,085,833 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jadabug | 0 | 1,786,597,392 | 1% | ||
rambutan.art | 0 | 8,352,895,514 | 20% | ||
sbi4 | 0 | 391,621,840,504 | 82.22% | ||
deralios | 0 | 1,163,752,423 | 50% |
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/)
author | emrebeyler |
---|---|
permlink | re-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t091936037z |
category | utopian-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"} |
created | 2019-04-19 09:19:36 |
last_update | 2019-04-19 09:19:36 |
depth | 1 |
children | 1 |
last_payout | 2019-04-26 09:19:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.440 HBD |
curator_payout_value | 1.680 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 555 |
author_reputation | 448,535,049,068,622 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,376,122 |
net_rshares | 13,232,428,414,293 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 38,619,151,670 | 25.96% | ||
buckydurddle | 0 | 16,737,726,086 | 33.74% | ||
espoem | 0 | 31,132,559,316 | 15% | ||
utopian-io | 0 | 12,753,558,460,728 | 13.85% | ||
jaff8 | 0 | 64,330,209,358 | 25.96% | ||
emrebeyler | 0 | 3,992,243,306 | 1% | ||
aydant | 0 | 2,563,550,356 | 50% | ||
amosbastian | 0 | 100,205,771,178 | 25.96% | ||
ismailkah | 0 | 4,079,460,528 | 25% | ||
organicgardener | 0 | 10,694,428,149 | 35% | ||
holger80 | 0 | 81,335,769,186 | 10% | ||
reazuliqbal | 0 | 15,160,193,916 | 8% | ||
statsexpert | 0 | 9,385,294,797 | 100% | ||
mightypanda | 0 | 62,403,925,446 | 40% | ||
ulockblock | 0 | 30,837,750,647 | 9.53% | ||
fastandcurious | 0 | 309,574,031 | 100% | ||
curbot | 0 | 2,616,959,382 | 100% | ||
linknotfound | 0 | 231,770,415 | 100% | ||
ascorphat | 0 | 1,802,537,597 | 2.5% | ||
monster-inc | 0 | 2,431,078,201 | 100% |
Thank you for your review, @emrebeyler! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t091936037z-20190422t033529z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-04-22 03:35:30 |
last_update | 2019-04-22 03:35:30 |
depth | 2 |
children | 0 |
last_payout | 2019-04-29 03:35: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 | 62 |
author_reputation | 152,955,367,999,756 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,538,359 |
net_rshares | 0 |
Great update! Iβve been using the utilities for some time with great success. Thank you @holger80
author | guysellars |
---|---|
permlink | re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t144318866z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["holger80"],"app":"steemit/0.1"} |
created | 2019-04-18 14:43:18 |
last_update | 2019-04-18 14:43:18 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 14:43:18 |
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 | 100 |
author_reputation | 39,351,432,740,126 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,328,489 |
net_rshares | 0 |
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)
author | huseyinunozkan16 |
---|---|
permlink | huseyinunozkan16-re-holger80-steemrewarding-com-vote-delay-optimization-added-20190418t135105601z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-04-18 13:51:06 |
last_update | 2019-04-18 13:51:06 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 13:51: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 | 281 |
author_reputation | 9,569,689,094,218 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,324,901 |
net_rshares | 0 |
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.
author | nineteensixteen |
---|---|
permlink | re-holger80-steemrewarding-com-vote-delay-optimization-added-20190424t125426084z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-04-24 12:54:27 |
last_update | 2019-04-24 12:54:27 |
depth | 1 |
children | 0 |
last_payout | 2019-05-01 12:54: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 | 425 |
author_reputation | 71,722,004,410,188 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,678,922 |
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-steemrewarding-com-vote-delay-optimization-added-20190418t143151 |
category | utopian-io |
json_metadata | "{"app": "partiko"}" |
created | 2019-04-18 14:31:51 |
last_update | 2019-04-18 14:31:51 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 14:31: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 | 213 |
author_reputation | 39,207,160,334,751 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,327,708 |
net_rshares | 0 |
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.
author | pennsif |
---|---|
permlink | re-holger80-steemrewarding-com-vote-delay-optimization-added-20190419t110111980z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/thesteemnewsin10posts18april2019-o4hi3bbgpb"],"app":"steemit/0.1"} |
created | 2019-04-19 11:01:15 |
last_update | 2019-04-19 11:01:15 |
depth | 1 |
children | 0 |
last_payout | 2019-04-26 11:01:15 |
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 | 231 |
author_reputation | 636,410,097,572,565 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,379,250 |
net_rshares | 0 |
@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.
author | re2pair |
---|---|
permlink | pxetrf |
category | utopian-io |
json_metadata | {"tags":["utopian-io","newsteem"],"users":["holger80"],"app":"steemit/0.1"} |
created | 2019-09-06 12:38:03 |
last_update | 2019-09-06 12:38:03 |
depth | 1 |
children | 0 |
last_payout | 2019-09-13 12:38: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 | 286 |
author_reputation | 574,654,010,136 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,307,628 |
net_rshares | 4,786,440,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 4,211,398,659 | 99% | ||
holycow2019 | 0 | 575,041,854 | 100% |
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.
author | steem-plus |
---|---|
permlink | steemrewarding-com-vote-delay-optimization-added---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-04-19 13:31:21 |
last_update | 2019-04-19 13:31:21 |
depth | 1 |
children | 0 |
last_payout | 2019-04-26 13:31:21 |
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 | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,385,401 |
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 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)**
author | steem-ua |
---|---|
permlink | re-steemrewarding-com-vote-delay-optimization-added-20190418t231153z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-04-18 23:11:54 |
last_update | 2019-04-18 23:11:54 |
depth | 1 |
children | 0 |
last_payout | 2019-04-25 23:11:54 |
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 | 645 |
author_reputation | 23,214,230,978,060 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,353,289 |
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>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!
author | steemitboard |
---|---|
permlink | steemitboard-notify-holger80-20190422t183023000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-04-22 18:30:24 |
last_update | 2019-04-22 18:30:24 |
depth | 1 |
children | 0 |
last_payout | 2019-04-29 18:30: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 | 830 |
author_reputation | 38,975,615,169,260 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,569,368 |
net_rshares | 0 |
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>
author | utopian-io |
---|---|
permlink | re-steemrewarding-com-vote-delay-optimization-added-20190419t140209z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-04-19 14:02:09 |
last_update | 2019-04-19 14:02:09 |
depth | 1 |
children | 0 |
last_payout | 2019-04-26 14:02: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 | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,387,027 |
net_rshares | 0 |
@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.
author | verifyme |
---|---|
permlink | re-steemrewarding-com-vote-delay-optimization-added-holger80-verifyme-randomvote |
category | utopian-io |
json_metadata | {"tags":["verifyme","random-upvote"],"users":["holger80","botreporter"],"app":"null/null","format":"markdown"} |
created | 2019-04-19 14:36:48 |
last_update | 2019-04-19 14:36:48 |
depth | 1 |
children | 0 |
last_payout | 2019-04-26 14:36:48 |
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 | 214 |
author_reputation | -705,247,747,464 |
root_title | "steemrewarding.com - vote delay optimization added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,388,413 |
net_rshares | 0 |