### Repository https://github.com/holgern/beem<center> \n</center> [beem](https://github.com/holgern/beem) is a python library for steem. beem has now 495 unit tests and a coverage of 70 %. The current version is 0.20.22. I created a discord channel for answering a question or discussing beem: https://discord.gg/4HM592V The newest beem version can be installed by: ``` pip install -U beem ``` or when using conda: ``` conda install beem ``` beem can be updated by: ``` conda update beem ``` ## Bug fixes ### get_estimated_block_num() returns results, when a block is missing ``` from beem.blockchain import Blockchain from beem.block import Block from datetime import datetime print(Block(33898183)["timestamp"]) print(Block(33898184)["timestamp"]) ``` returns ``` datetime.datetime(2019, 6, 18, 5, 8, 24, tzinfo=<UTC>) datetime.datetime(2019, 6, 18, 5, 8, 33, tzinfo=<UTC>) ``` The time difference between block 33898184 and 33898183 is 9 seconds, which leads for timestamps between them to an infinite loop in `get_estimated_block_num` This is fixed by checking of the `second_last_block_time_diff_seconds == block_time_diff.total_seconds()` in the while loop and returning the current block_num when true. This prevents infinite loops in which block_num jumps bewteen two values. ``` blockchain = Blockchain() block_num = blockchain.get_estimated_block_num(datetime(2019, 6, 18, 5 ,8, 27)) print(block_num) ``` returns now ``` 33898184 ``` ## New Features ### Move the vote function to the Steem class It is now possible to vote with the Steem class: ``` from beem import Steem stm = Steem(keys=["xxx"]) stm.vote(100, "@author/permlink", account="voter1") ``` This allows it to vote without loading the content with Comment. A wrapper function was added to Comment, so that is still possible to use ``` from beem.comment import Comment c = Comment("@author/permlink") c.vote(100, account="voter1") ``` ### Upvote and Downvote accepts only positive weights now ``` Usage: beempy upvote [OPTIONS] POST Upvote a post/comment POST is @author/permlink Options: -w, --weight TEXT Vote weight (from 0.1 to 100.0) -a, --account TEXT Voter account name --help Show this message and exit. ``` and ``` Usage: beempy downvote [OPTIONS] POST Downvote a post/comment POST is @author/permlink Options: -a, --account TEXT Voter account name -w, --weight INTEGER Downvote weight (from 0.1 to 100.0) --help Show this message and exit. ``` So downvote accepts only positive numbers now. So it is not possible anymore to downvote with upvote() and to upvote with downvote(). ## Update nodelist The list of working node was update in Nodelist ``` from beem.nodelist import NodeList nodes = NodeList() nodes.get_nodes() ``` returns now ``` ['https://steemd.minnowsupportproject.org', 'https://rpc.usesteem.com', 'https://anyx.io', 'https://steemd.privex.io', 'http://anyx.io', 'https://appbasetest.timcliff.com', 'https://api.steem.house'] ``` ## Accepted PR ### improve permlink derivation #181 by crokkon PR [#181](https://github.com/holgern/beem/pull/181) * append timestamp also to root post permlinks to avoid overwriting existing posts with the same title (fixes #179) * avoid root permlinks to exceed the maximum length * refactoring reply permlinks ### fixes compatibility issues with WhaleShares HF2 / v2.5 #192 by alexpmorris PR [#192](https://github.com/holgern/beem/pull/192) ## Commits ### Fix float parsing for beempy upvote and downvote * [commit f42b99a](https://github.com/holgern/beem/commit/f42b99a00471cca72f989c88173712df44d0741d) ### Fix unit tests for changed upvote and downvote in beempy * [commit 059778d](https://github.com/holgern/beem/commit/059778d7d80692bb8214f7c1e914f0383f0f6bc8) ### * Fix bug for get_estimated_block_num when a block is missing * [commit a05d81f](https://github.com/holgern/beem/commit/a05d81fa81eaa2d4b70cdce32d4caafef5c6f991) ### Move vote function to steem and fix #193 * [commit be6461d](https://github.com/holgern/beem/commit/be6461dcf7116e9d6882ca3f19d5a503d1f1fdae) * The vote operation is now available at the steem object * A vote wrapper function with the old syntax is available at comment * The upvote and downvote at the cli (beempy) has now one argument, the weight must specified by --weight or -w ### Fix issue #195 and update nodelist * [commit 1733efd](https://github.com/holgern/beem/commit/1733efd1450c9ce3260f6d78133d5da01e7bd0a0) * comment.downvote(100) will now downvote with 100 % ## Github account https://github.com/holgern
author | holger80 |
---|---|
permlink | update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed |
category | utopian-io |
json_metadata | "{"tags": ["utopian-io", "development", "beem", "python", "palnet"], "image": ["https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo"], "links": ["https://github.com/holgern/beem", "https://discord.gg/4HM592V", "https://github.com/holgern/beem/pull/181", "https://github.com/holgern/beem/pull/192", "https://github.com/holgern/beem/commit/f42b99a00471cca72f989c88173712df44d0741d", "https://github.com/holgern/beem/commit/059778d7d80692bb8214f7c1e914f0383f0f6bc8", "https://github.com/holgern/beem/commit/a05d81fa81eaa2d4b70cdce32d4caafef5c6f991", "https://github.com/holgern/beem/commit/be6461dcf7116e9d6882ca3f19d5a503d1f1fdae", "https://github.com/holgern/beem/commit/1733efd1450c9ce3260f6d78133d5da01e7bd0a0", "https://github.com/holgern"], "app": "beempy/0.23.10", "format": "markdown", "canonical_url": "https://hive.blog/utopian-io/@holger80/update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed"}" |
created | 2019-07-12 13:48:39 |
last_update | 2020-05-23 14:25:51 |
depth | 0 |
children | 12 |
last_payout | 2019-07-19 13:48:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 24.443 HBD |
curator_payout_value | 6.810 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,672 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,203,661 |
net_rshares | 92,027,956,267,234 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 5,433,545,802,724 | 100% | ||
steempty | 0 | 6,223,825,515,934 | 100% | ||
tombstone | 0 | 4,834,803,427,883 | 19.46% | ||
oaldamster | 0 | 13,536,790,959 | 100% | ||
thecryptodrive | 0 | 193,528,509,602 | 30% | ||
fulltimegeek | 0 | 2,276,341,400,512 | 22.15% | ||
inertia | 0 | 799,024,869,305 | 100% | ||
arcange | 0 | 20,307,773,278 | 2% | ||
raphaelle | 0 | 692,469,258 | 2% | ||
timcliff | 0 | 806,865,433,094 | 87% | ||
snwolak | 0 | 149,878,297 | 90% | ||
fooblic | 0 | 16,325,754,823 | 99% | ||
rufans | 0 | 21,147,552,134 | 100% | ||
oldtimer | 0 | 196,195,914,451 | 100% | ||
abh12345 | 0 | 46,307,822,850 | 10% | ||
barton26 | 0 | 2,357,292,194 | 25% | ||
bitmalaysia | 0 | 868,618,713 | 33% | ||
yadamaniart | 0 | 804,953,005 | 1.56% | ||
teamhumble | 0 | 82,634,027,329 | 100% | ||
anthonyadavisii | 0 | 153,067,387,445 | 100% | ||
borislavzlatanov | 0 | 124,173,943,801 | 100% | ||
freebornsociety | 0 | 7,044,141,064 | 10% | ||
justatouchfey | 0 | 6,305,233,476 | 100% | ||
jarunik | 0 | 1,770,285,339,885 | 100% | ||
imperfect-one | 0 | 2,341,520,815 | 5% | ||
mys | 0 | 8,645,951,899 | 5% | ||
reggaemuffin | 0 | 8,895,128,698,164 | 100% | ||
jga | 0 | 4,965,200,767 | 24.33% | ||
rycharde | 0 | 13,089,689,575 | 22.2% | ||
helo | 0 | 79,971,684,371 | 47.94% | ||
masterthematrix | 0 | 64,807,982,913 | 50% | ||
coquiunlimited | 0 | 153,172,742 | 1.31% | ||
robofox | 0 | 4,147,559,185 | 100% | ||
ewkaw | 0 | 20,263,783,597 | 20% | ||
jayna | 0 | 290,768,649 | 0.46% | ||
ew-and-patterns | 0 | 819,471,709,072 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
swedishdragon | 0 | 504,671,789,462 | 100% | ||
jacekw | 0 | 12,625,114,384 | 50% | ||
rafalski | 0 | 1,931,021,183 | 5% | ||
codingdefined | 0 | 75,103,202,673 | 47.94% | ||
shebe | 0 | 18,836,597,124 | 53% | ||
abigail-dantes | 0 | 871,006,213,029 | 50% | ||
dreamarif | 0 | 89,876,875 | 25% | ||
upgoat | 0 | 2,178,821,307 | 100% | ||
resheep | 0 | 433,949,659 | 100% | ||
upcroak | 0 | 206,436,595 | 100% | ||
bronkong | 0 | 116,460,417,947 | 100% | ||
glitterbooster | 0 | 3,890,313,865 | 30% | ||
myothuzar | 0 | 6,560,855,255 | 100% | ||
shogo | 0 | 119,038,784,494 | 100% | ||
leir | 0 | 2,277,781,247 | 50% | ||
badham | 0 | 51,826,858 | 50% | ||
make-a-whale | 0 | 51,755,939,019 | 8% | ||
crokkon | 0 | 156,546,807,255 | 100% | ||
accelerator | 0 | 59,238,927,803 | 2.32% | ||
zeky | 0 | 7,052,300,698 | 100% | ||
kamikaze | 0 | 43,222,957,084 | 15% | ||
buckydurddle | 0 | 34,350,724,289 | 62.32% | ||
scorer | 0 | 193,509,062,035 | 100% | ||
jinger | 0 | 6,417,970,945 | 76.7% | ||
espoem | 0 | 214,617,770,984 | 100% | ||
mcfarhat | 0 | 38,800,059,512 | 19.17% | ||
feedyourminnows | 0 | 10,661,346,535 | 10% | ||
isnochys | 0 | 10,951,251,634 | 13% | ||
qurator | 0 | 215,532,374,616 | 3.12% | ||
emdesan | 0 | 140,329,310 | 10% | ||
steem-plus | 0 | 67,094,845,713 | 3.93% | ||
jesusj1 | 0 | 69,441,689 | 99% | ||
backtomining | 0 | 15,262,506,023 | 40% | ||
eikejanssen | 0 | 23,646,252,337 | 30% | ||
utopian-io | 0 | 36,293,290,009,102 | 48.66% | ||
shammi | 0 | 122,554,393 | 35% | ||
jaff8 | 0 | 112,581,564,239 | 47.94% | ||
steemtaker | 0 | 20,626,942,923 | 25% | ||
dumitriu | 0 | 554,383,502 | 100% | ||
mytechtrail | 0 | 5,449,714,706 | 25% | ||
skycae | 0 | 245,835,582 | 2.18% | ||
bubbleburst | 0 | 8,221,938,870 | 100% | ||
steembasicincome | 0 | 2,465,251,134,388 | 100% | ||
jpphotography | 0 | 54,213,293,631 | 100% | ||
fulltimeangel | 0 | 26,621,281,469 | 100% | ||
thomasgift | 0 | 2,131,436,504 | 50% | ||
abitcoinskeptic | 0 | 80,336,346,787 | 40% | ||
kissi | 0 | 21,070,394,394 | 75% | ||
amosbastian | 0 | 201,071,583,659 | 47.94% | ||
chriddi | 0 | 447,872,997,399 | 100% | ||
mstafford | 0 | 2,574,398,826 | 100% | ||
baycan | 0 | 3,091,555,531 | 50% | ||
vaansteam | 0 | 145,759,076,939 | 30% | ||
neokuduk | 0 | 5,599,065,369 | 100% | ||
sargoon | 0 | 5,933,518,417 | 50% | ||
darewealth | 0 | 5,160,403,695 | 50% | ||
lukasmining | 0 | 3,034,269,279 | 50% | ||
steem-hikers | 0 | 141,556,100 | 5% | ||
literaturk | 0 | 373,615,330 | 100% | ||
michaelizer | 0 | 697,758,367 | 100% | ||
sudefteri | 0 | 9,251,943,842 | 100% | ||
nwjordan | 0 | 311,923,223 | 2.34% | ||
turkishcrew | 0 | 449,676,389 | 2.32% | ||
verhp11 | 0 | 144,637,847 | 1% | ||
maxpatternman | 0 | 42,146,664,341 | 100% | ||
sashas | 0 | 3,320,577,968 | 100% | ||
asgarth | 0 | 793,050,353,561 | 100% | ||
flugschwein | 0 | 20,538,407,225 | 75% | ||
matschi | 0 | 3,568,399,606 | 100% | ||
akifane | 0 | 1,313,232,654 | 100% | ||
rasit | 0 | 399,594,200 | 100% | ||
wildarms65 | 0 | 403,838,037 | 100% | ||
themuffinman | 0 | 72,862,165 | 100% | ||
backinblackdevil | 0 | 53,957,025,303 | 10% | ||
reazuliqbal | 0 | 43,784,159,396 | 25% | ||
maveraunnehr | 0 | 400,851,684 | 100% | ||
satren | 0 | 15,987,911,620 | 25% | ||
lauchmelder | 0 | 8,718,769,039 | 25% | ||
kargul09 | 0 | 4,123,717,804 | 100% | ||
amico | 0 | 632,744,119,217 | 100% | ||
beleg | 0 | 1,831,903,268 | 5% | ||
d00k13 | 0 | 54,422,276,419 | 100% | ||
schlafhacking | 0 | 189,803,461,234 | 100% | ||
thefunfactory | 0 | 471,827,908 | 100% | ||
someonefun | 0 | 471,827,257 | 100% | ||
funbox | 0 | 471,827,252 | 100% | ||
funlands | 0 | 811,466,456 | 100% | ||
funanime | 0 | 471,827,233 | 100% | ||
funkyfun | 0 | 471,827,212 | 100% | ||
funnyfun | 0 | 471,827,212 | 100% | ||
dmonia | 0 | 471,827,205 | 100% | ||
goldrym | 0 | 471,826,509 | 100% | ||
qeoddrir | 0 | 471,826,495 | 100% | ||
dodrorth | 0 | 471,826,486 | 100% | ||
iedot | 0 | 354,060,536 | 100% | ||
sbi2 | 0 | 1,611,572,022,808 | 100% | ||
zcool | 0 | 189,684,123 | 10% | ||
dera123 | 0 | 32,481,650,675 | 15% | ||
effofex | 0 | 53,988,870 | 1.16% | ||
elleok | 0 | 11,742,618,914 | 34% | ||
alitavirgen | 0 | 17,810,559,704 | 10% | ||
tsurmb | 0 | 994,594,336 | 30% | ||
nancybriti | 0 | 11,670,949,573 | 100% | ||
reinaldoverdu | 0 | 3,510,144,724 | 100% | ||
flagthedonkey | 0 | 41,208,904,908 | 100% | ||
sbi3 | 0 | 1,151,484,292,129 | 100% | ||
gandalfthebrown | 0 | 4,696,613,356 | 100% | ||
sbi4 | 0 | 811,891,787,521 | 100% | ||
ikarus56 | 0 | 1,106,575,061 | 5% | ||
carlpei | 0 | 223,141,695,143 | 100% | ||
brettblue | 0 | 3,891,747,554 | 100% | ||
stevenwood | 0 | 3,706,431,350 | 50% | ||
famigliacurione | 0 | 35,640,076,434 | 60% | ||
linnyplant | 0 | 40,818,256,255 | 100% | ||
shahabudin | 0 | 29,958,289 | 50% | ||
soundworks | 0 | 1,989,714,425 | 100% | ||
smarmy | 0 | 132,411,981 | 1.56% | ||
sbi5 | 0 | 465,692,676,625 | 100% | ||
blewitt | 0 | 158,734,430 | 0.03% | ||
sbi6 | 0 | 337,457,458,076 | 100% | ||
arsadulislam | 0 | 219,256,961 | 45% | ||
partiko | 0 | 281,037,760,892 | 3% | ||
urdreamscometrue | 0 | 4,457,088,087 | 100% | ||
digi-me | 0 | 3,655,005,540 | 100% | ||
dronegraphica | 0 | 404,776,998 | 1.56% | ||
spero2711 | 0 | 74,093,448 | 25% | ||
sbi7 | 0 | 291,418,442,715 | 100% | ||
wglenz | 0 | 12,873,043,290 | 100% | ||
cryptouno | 0 | 407,377,775 | 5% | ||
holger.random | 0 | 1,373,805,924 | 100% | ||
fullnodeupdate | 0 | 1,874,954,858 | 100% | ||
mops2e | 0 | 1,231,307,770 | 80% | ||
yourholiness | 0 | 4,008,932,930 | 100% | ||
donkeyslayer | 0 | 3,803,494,260 | 100% | ||
lizardslayer | 0 | 3,937,788,993 | 100% | ||
fulltimebot | 0 | 4,036,388,037 | 100% | ||
fulltimebot3 | 0 | 4,337,601,816 | 100% | ||
fulltimebot7 | 0 | 4,228,746,652 | 100% | ||
fulltimebot9 | 0 | 4,197,464,584 | 100% | ||
fulltimebot10 | 0 | 4,225,218,906 | 100% | ||
fulltimebot12 | 0 | 4,120,456,319 | 100% | ||
fulltime | 0 | 5,719,018,883 | 100% | ||
justperfect | 0 | 1,572,763,614 | 100% | ||
goldenchild | 0 | 1,693,824,249 | 100% | ||
fulltimebot15 | 0 | 3,019,759,751 | 100% | ||
fulltimebot17 | 0 | 3,932,169,825 | 100% | ||
fulltimebot18 | 0 | 4,127,183,744 | 100% | ||
fulltimebot22 | 0 | 4,071,751,126 | 100% | ||
fulltimebot23 | 0 | 3,949,102,859 | 100% | ||
fulltimebot26 | 0 | 4,016,177,237 | 100% | ||
fulltimebot27 | 0 | 4,074,276,372 | 100% | ||
fulltimebot31 | 0 | 3,973,414,562 | 100% | ||
fulltimebot32 | 0 | 3,952,817,819 | 100% | ||
fulltimebot33 | 0 | 2,869,216,942 | 100% | ||
fulltimebot34 | 0 | 3,910,648,201 | 100% | ||
fulltimebot36 | 0 | 4,020,113,611 | 100% | ||
fulltimebot37 | 0 | 3,907,884,145 | 100% | ||
fulltimebot43 | 0 | 3,855,960,456 | 100% | ||
fulltimebot45 | 0 | 3,881,694,419 | 100% | ||
jacekw.dev | 0 | 3,698,202,553 | 100% | ||
fulltimebot47 | 0 | 3,909,644,852 | 100% | ||
fulltimebot51 | 0 | 2,752,241,465 | 100% | ||
muscara | 0 | 10,971,906,697 | 35% | ||
ayisigi | 0 | 391,154,415 | 100% | ||
chappertron | 0 | 27,849,555,220 | 45% | ||
meowcliver | 0 | 95,670,340 | 50% | ||
onelovestee | 0 | 145,533,707 | 100% | ||
onelovesteem | 0 | 7,191,978,878 | 50% | ||
sbi8 | 0 | 168,098,262,187 | 100% | ||
perepilichnyy | 0 | 2,349,926,006,454 | 100% | ||
ibc | 0 | 202,437,500,353 | 100% | ||
linkerstinker | 0 | 677,442,475 | 50% | ||
sbi9 | 0 | 154,150,485,151 | 100% | ||
besheda | 0 | 6,306,635,920 | 100% | ||
steem-ua | 0 | 288,000,496,818 | 4.26% | ||
linuxbot | 0 | 14,319,378,572 | 100% | ||
alvinvoo | 0 | 73,519,461 | 100% | ||
ambercookie | 0 | 50,238,926 | 76% | ||
sbi10 | 0 | 68,140,678,455 | 100% | ||
nerdrepost | 0 | 119,071,126 | 100% | ||
curbot | 0 | 2,560,995,825 | 100% | ||
wherein | 0 | 41,953,561,810 | 0.7% | ||
nurah | 0 | 181,424,742 | 50% | ||
bluerobo | 0 | 17,702,068,987 | 100% | ||
kingnosa | 0 | 82,467,977 | 50% | ||
bluesniper | 0 | 2,313,363,445 | 0.6% | ||
steemtank | 0 | 1,232,919,944,375 | 100% | ||
samantha-w | 0 | 3,946,445,296,638 | 100% | ||
flodor | 0 | 423,583,319 | 25% | ||
greelos | 0 | 534,177,348 | 100% | ||
tipu.curator | 0 | 2,217,391,692 | 10% | ||
djenny.floro | 0 | 518,156,369 | 50% | ||
broxi | 0 | 3,521,401,412 | 50% | ||
brujas | 0 | 4,164,586,886 | 100% | ||
gargi | 0 | 200,997,653 | 25% | ||
goodcontentbot | 0 | 72,468,925 | 50% | ||
hankreirden | 0 | 97,380,583 | 5% | ||
peter-bot | 0 | 2,965,038,656 | 100% | ||
hamsa.quality | 0 | 551,081,738 | 7% | ||
waleedtee | 0 | 94,066,587,095 | 100% | ||
sternekoechin | 0 | 255,123,038 | 25% | ||
proboards2 | 0 | 11,910,608,813 | 100% | ||
shogo.life | 0 | 191,739,733 | 100% | ||
orbo | 0 | 248,991,845 | 50% | ||
jackramsey | 0 | 5,035,825,178 | 2.65% | ||
k00k13 | 0 | 1,449,608,779 | 50% | ||
mohaaking | 0 | 130,890,198 | 50% | ||
p00k13 | 0 | 18,874,399,283 | 100% | ||
n00k13 | 0 | 1,453,271,560 | 50% | ||
vaccinusveritas | 0 | 6,592,706,821 | 50% | ||
ichmusslaufen | 0 | 152,750,650 | 12.5% | ||
crazydaisy | 0 | 89,371,608 | 40% | ||
raspibot | 0 | 227,120,389 | 100% | ||
smsmb-votebot | 0 | 248,046,188 | 25% | ||
dicetime | 0 | 25,102,200,546 | 24.33% | ||
genuinehuman | 0 | 1,881,558,372 | 50% | ||
sugarzone | 0 | 545,542,851 | 100% | ||
naltedtirt | 0 | 93,473,796,965 | 50% | ||
swedishdragon76 | 0 | 337,666,256 | 100% | ||
peterpetrelli | 0 | 391,988,790 | 100% | ||
roportaj | 0 | 391,022,919 | 100% | ||
dachcolony | 0 | 31,570,679,268 | 100% | ||
captain.kirk | 0 | 7,335,868,949 | 50% | ||
bos1234 | 0 | 393,961,400 | 100% | ||
hots | 0 | 393,988,917 | 100% | ||
gotmu | 0 | 393,982,192 | 100% | ||
dasa | 0 | 393,944,842 | 100% | ||
nextcol | 0 | 393,908,628 | 100% | ||
sinanbayrak | 0 | 394,106,806 | 100% | ||
opo9 | 0 | 393,991,135 | 100% | ||
ikiliseyir | 0 | 393,866,349 | 100% | ||
indirim | 0 | 391,382,277 | 100% | ||
itiraf | 0 | 391,949,349 | 100% | ||
kuzeyli | 0 | 392,706,977 | 100% | ||
guneyli | 0 | 392,701,126 | 100% | ||
sbtr | 0 | 389,322,579 | 100% | ||
ikiturk | 0 | 391,534,098 | 100% | ||
yazilim | 0 | 391,290,396 | 100% | ||
etkinlik | 0 | 391,155,525 | 100% | ||
steemitli | 0 | 391,097,541 | 100% | ||
discordtr | 0 | 391,103,798 | 100% | ||
tartisma | 0 | 391,602,471 | 100% | ||
beyazli | 0 | 391,585,334 | 100% | ||
kirmizili | 0 | 391,566,334 | 100% | ||
yesilli | 0 | 392,329,924 | 100% | ||
dergi | 0 | 392,625,967 | 100% | ||
dogulu | 0 | 392,631,424 | 100% | ||
batili | 0 | 393,600,619 | 100% | ||
siyahli | 0 | 393,523,240 | 100% | ||
diceshark | 0 | 1,859,983,633 | 50% | ||
kpopprincess | 0 | 1,759,186,347 | 50% | ||
hadisp1415 | 0 | 0 | 100% | ||
dera123pal | 0 | 38,573,926 | 100% | ||
jdkennedy | 0 | 230,595,688 | 50% | ||
abh12345.pal | 0 | 60,767,372 | 12.5% | ||
amico.pal | 0 | 1,131,101,000 | 100% | ||
jppal | 0 | 100,311,411 | 100% |
___ #### <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-update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed-20190712t140250z |
category | utopian-io |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2019-07-12 14:02:54 |
last_update | 2019-07-12 14:02:54 |
depth | 1 |
children | 0 |
last_payout | 2019-07-19 14:02: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 | 380 |
author_reputation | 51,076,240,298,517 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,204,308 |
net_rshares | 0 |
Interesting find with the 9 seconds interval between consecutive blocks. This changeset generally includes minor updates, but good to see Beem is maintained well. *** 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-3-1-1-1-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | emrebeyler |
---|---|
permlink | pullid |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-3-1-1-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-07-13 20:42:12 |
last_update | 2019-07-13 20:42:12 |
depth | 1 |
children | 2 |
last_payout | 2019-07-20 20:42:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.755 HBD |
curator_payout_value | 0.825 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 618 |
author_reputation | 448,535,049,068,622 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,257,661 |
net_rshares | 10,382,509,415,780 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 58,312,574,281 | 40.76% | ||
buckydurddle | 0 | 25,582,492,136 | 52.98% | ||
espoem | 0 | 31,098,470,399 | 15% | ||
utopian-io | 0 | 9,726,928,564,934 | 11.65% | ||
jaff8 | 0 | 86,732,470,565 | 40.76% | ||
emrebeyler | 0 | 3,283,173,078 | 1% | ||
steemtaker | 0 | 11,285,821,637 | 10% | ||
aydant | 0 | 1,676,448,226 | 50% | ||
amosbastian | 0 | 158,433,476,908 | 40.76% | ||
ismailkah | 0 | 3,228,210,827 | 25% | ||
organicgardener | 0 | 8,369,842,554 | 35% | ||
holger80 | 0 | 73,497,749,036 | 4.85% | ||
fego | 0 | 76,052,279,524 | 40% | ||
reazuliqbal | 0 | 17,885,522,421 | 10% | ||
statsexpert | 0 | 5,811,427,900 | 100% | ||
mightypanda | 0 | 70,542,618,952 | 40% | ||
fastandcurious | 0 | 310,619,740 | 100% | ||
curbot | 0 | 2,377,143,326 | 100% | ||
linknotfound | 0 | 217,478,007 | 100% | ||
monster-inc | 0 | 1,035,523,966 | 100% | ||
yff | 0 | 19,547,863,782 | 100% | ||
curatortrail | 0 | 299,643,581 | 95% |
Thanks for the review. I'm planing a major update when the next hardfork is there :).
author | holger80 |
---|---|
permlink | pulnr0 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-07-13 21:30:42 |
last_update | 2019-07-13 21:30:42 |
depth | 2 |
children | 0 |
last_payout | 2019-07-20 21:30:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.111 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,259,025 |
net_rshares | 422,201,835,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 515,683,519 | 0.41% | ||
ezravandi | 0 | 4,086,415,634 | 2.6% | ||
tiblog | 0 | 245,525,846,539 | 100% | ||
pixelworld | 0 | 172,073,889,374 | 100% |
Thank you for your review, @emrebeyler! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-pullid-20190715t233400z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-07-15 23:34:03 |
last_update | 2019-07-15 23:34:03 |
depth | 2 |
children | 0 |
last_payout | 2019-07-22 23:34: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 | 62 |
author_reputation | 152,955,367,999,756 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,344,543 |
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-update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed-20190712t143033 |
category | utopian-io |
json_metadata | "{"app": "partiko"}" |
created | 2019-07-12 14:30:36 |
last_update | 2019-07-12 14:30:36 |
depth | 1 |
children | 0 |
last_payout | 2019-07-19 14:30: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 | 213 |
author_reputation | 39,207,160,334,751 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,205,694 |
net_rshares | 0 |
dieses update mΓΆchte @backinblackdevil bestimmt gleich installieren ;-)
author | schlafhacking |
---|---|
permlink | pujobv |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["backinblackdevil"],"app":"steemit/0.1"} |
created | 2019-07-12 19:48:00 |
last_update | 2019-07-12 19:48:00 |
depth | 1 |
children | 0 |
last_payout | 2019-07-19 19:48:00 |
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 | 71 |
author_reputation | 15,067,517,752,330 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,217,826 |
net_rshares | 0 |
Hi, @holger80! You just got a **3.93%** 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 | update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-07-13 00:12:51 |
last_update | 2019-07-13 00:12:51 |
depth | 1 |
children | 0 |
last_payout | 2019-07-20 00:12: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 | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,224,514 |
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.500 which ranks you at **#54** across all Steem accounts. Your rank has improved 2 places in the last three days (old rank 56). In our last Algorithmic Curation Round, consisting of 171 contributions, your post is ranked at **#3**. 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-update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed-20190712t211924z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-07-12 21:19:24 |
last_update | 2019-07-12 21:19:24 |
depth | 1 |
children | 0 |
last_payout | 2019-07-19 21:19: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 | 644 |
author_reputation | 23,214,230,978,060 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,220,256 |
net_rshares | 0 |
<center>[](https://steemitboard.com/@holger80) **Congratulations @holger80**! You raised your level and are now an **Orca**!</center> ###### [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-20190715t093733000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-07-15 09:37:33 |
last_update | 2019-07-15 09:37:33 |
depth | 1 |
children | 0 |
last_payout | 2019-07-22 09:37: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 | 407 |
author_reputation | 38,975,615,169,260 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,318,102 |
net_rshares | 0 |
This post has been just added as new item to _[timeline of beem on Steem Projects](https://steemprojects.com/projects/p/beem/?utm_source=comment_timeline&utm_medium=steem&utm_campaign=new_event&utm_content=c1)_. If you want to be notified about new updates from this project, register on Steem Projects and add beem to your favorite projects.
author | steemprojects |
---|---|
permlink | re-update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed-20190712t142301 |
category | utopian-io |
json_metadata | "" |
created | 2019-07-12 14:23:03 |
last_update | 2019-07-12 14:23:03 |
depth | 1 |
children | 0 |
last_payout | 2019-07-19 14:23: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 | 345 |
author_reputation | 29,054,729,340 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,205,348 |
net_rshares | 0 |
Do you have any code for a beem bid bot
author | teenagecrypto |
---|---|
permlink | punfnx |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-07-14 20:31:09 |
last_update | 2019-07-14 20:31:09 |
depth | 1 |
children | 0 |
last_payout | 2019-07-21 20:31: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 | 39 |
author_reputation | 25,380,001,614,578 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,297,822 |
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-update-for-beem-new-vote-function-in-steem-upvote-downvote-fixed-permlink-generation-improved-and-whaleshares-support-fixed-20190714t020642z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-07-14 02:06:45 |
last_update | 2019-07-14 02:06:45 |
depth | 1 |
children | 0 |
last_payout | 2019-07-21 02:06: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 | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "update for beem - new vote function in Steem(), upvote/downvote fixed, permlink generation improved and whaleshares support fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,266,027 |
net_rshares | 0 |