#### Repository https://github.com/holgern/beem<center>  </center> [beem](https://github.com/holgern/beem) is a python library for steem. beem has now 494 unit tests and a coverage of 70 %. The current version is 0.20.17. 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 ``` ## New Features ### Signing can be speed up by installing `secp256k1prp` The python package [secp256k1prp](https://pypi.org/project/secp256k1prp) is now supported to speed up signing all broadcasted transaction. Before, secp256k1 was supported which is not maintained and I'm not able to install it anymore. The following benchmark works only when `secp256k1prp` and `cryptography ` is installed. The library which should be used for sign/verify can be specified with `ecda.SECP256K1_MODULE`. ``` from beemgraphenebase.account import PrivateKey, PublicKey import beemgraphenebase.ecdsasig as ecda from beemgraphenebase.py23 import py23_bytes import time ecda.SECP256K1_MODULE = "ecdsa" wif = "5J4KCbg1G3my9b9hCaQXnHSm6vrwW9xQTJS6ZciW2Kek7cCkCEk" for lib in ["cryptography", "secp256k1", "ecdsa"]: ecda.SECP256K1_MODULE = lib start_time = time.time() for i in range(30): pub_key = py23_bytes(repr(PrivateKey(wif).pubkey), "latin") signature = ecda.sign_message("Foobar", wif) pub_key_sig = ecda.verify_message("Foobar", signature) print("%s: sign and verify took %.2f seconds." % (lib, (time.time() - start_time)/30)) ``` | library | duration [s] | | --- | --- | | secp256k1prp | 1.63 | | cryptography | 1.80 | | ecsdsa | 3.90 | The benchmark shows that secp256k1prp is slightly faster than cryptography for sign/verify a transaction. ## Bug fixes ### `get_account_votes ` works again with `api.steemit.com` `get_account_votes` stoped working for `api.steemit.com` ([post](https://hive.blog/steemit/@steemitdev/additional-public-api-change)). The `get_account_votes` uses now `list_votes` with `"order": "by_voter_comment"` when `get_account_votes` returns a dict with a `error` field. ``` from beem.account import Account from beem import Steem stm = Steem("https://steemd.minnowsupportproject.org") account = Account("holger80", steem_instance=stm) votes = account.get_account_votes() print(len(votes)) print(votes[-1]) ``` returns ``` 7772 {'authorperm': 'steemcleaners/steemcleaners-report-for-december-29-2018', 'weight': 13434, 'rshares': '56347337681', 'percent': 1000, 'time': '2019-01-12T07:44:30'} ``` Due to the changes, the function works again for api.steemit.com: ``` from beem.account import Account from beem import Steem stm = Steem("https://api.steemit.com") account = Account("holger80", steem_instance=stm) votes = account.get_account_votes() print(len(votes)) print(votes[-1]) ``` returns ``` 7772 {'id': 361753207, 'voter': 'holger80', 'author': 'steemcleaners', 'permlink': 'steemcleaners-report-for-december-29-2018', 'weight': 13434, 'rshares': '56347337681', 'vote_percent': 1000, 'last_update': '2019-01-12T07:44:30', 'num_changes': 0} ``` The returned dict of a vote is slightly different. * `percent` -> `vote_percent` * `time` -> `last_update` ### Fix rounding error in transfer broadcasting The `Amount` class in beembase is used to calculate the signature of a transfer transaction. Inside this function, a rounding error occured, which prevents sending of 1.013 STEEM. It was caused by: ``` (float(1.013) * 10 ** 3) ``` which is ``` 1012.9999999999999 ``` and was round with the int() function to ``` 1012 ``` This had prevented broadcasting. A `round` function is now used: ``` round(float(1.013) * 10 ** 3) = 1013 ``` which returns 1013. Function test:  ### Unit tests fixed Due to the some changes and the not working testnet, some unit tests were broken. They are all fixed now.  ### Commits #### Replace secp256k1 by secp256k1prp which is better maintained and available on more platforms * [dc3812d](https://github.com/holgern/beem/commit/dc3812d0b3244a9074e6d6b95d746cf6c0214a61) #### Get_account_votes enhanced for api.steemit.com node * [commit d09aa4d](https://github.com/holgern/beem/commit/d09aa4d31059843b361d5f6c4e6f9ae7b5b13ed7) #### Fix unit tests * [commit 2969013](https://github.com/holgern/beem/commit/29690131a5142a1178334aff7e36a07376ef542a) #### Add coverage calculation and fix not working unit tests * [commit ecfd272](https://github.com/holgern/beem/commit/ecfd272375ef0ceb866b9ab5773c74f147ebb58d) #### Fix more unit tests * [commit db74680](https://github.com/holgern/beem/commit/db74680f1c84752c2fc963c1eb0c10c41df69b40) #### add sonar analysis * [commit c13d530](https://github.com/holgern/beem/commit/c13d530ae614fea4841ec2055570239c31989502) #### Repair unit tests for beempy * [commit 590b5ab](https://github.com/holgern/beem/commit/590b5abc9457d83a719fd494455790357958b439) #### Fix wrong rounding of 1.013 STEEM to 1.012 STEEM which prevents transfer of certain STEEM amounts. * [commit e9f9687](https://github.com/holgern/beem/commit/e9f96870f6f98d9945b9b7cb4ae9f600dedab8b3) ### Github account https://github.com/holgern
author | holger80 |
---|---|
permlink | update-for-beem-getaccountvotes-improved-and-signing-speed-improved |
category | utopian-io |
json_metadata | "{"community": "busy", "image": ["https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo", "https://ipfs.busy.org/ipfs/QmV5ZKTRVX7RgYMqyC9DR4GHGRZDFRbP4BEYNR4yJncaHV", "https://ipfs.busy.org/ipfs/QmXBPDKsUFDa3cFAv4HDZbswwQ1gViFSFK4TA7hTSxXRzo"], "format": "markdown", "tags": ["utopian-io", "development", "beem", "steemtank", "busy"], "app": "beempy/0.23.10", "links": ["https://github.com/holgern/beem", "https://discord.gg/4HM592V", "https://pypi.org/project/secp256k1prp", "https://hive.blog/steemit/@steemitdev/additional-public-api-change", "https://github.com/holgern/beem/commit/dc3812d0b3244a9074e6d6b95d746cf6c0214a61", "https://github.com/holgern/beem/commit/d09aa4d31059843b361d5f6c4e6f9ae7b5b13ed7", "https://github.com/holgern/beem/commit/29690131a5142a1178334aff7e36a07376ef542a", "https://github.com/holgern/beem/commit/ecfd272375ef0ceb866b9ab5773c74f147ebb58d", "https://github.com/holgern/beem/commit/db74680f1c84752c2fc963c1eb0c10c41df69b40", "https://github.com/holgern/beem/commit/c13d530ae614fea4841ec2055570239c31989502", "https://github.com/holgern/beem/commit/590b5abc9457d83a719fd494455790357958b439", "https://github.com/holgern/beem/commit/e9f96870f6f98d9945b9b7cb4ae9f600dedab8b3", "https://github.com/holgern"], "canonical_url": "https://hive.blog/utopian-io/@holger80/update-for-beem-getaccountvotes-improved-and-signing-speed-improved"}" |
created | 2019-01-12 12:47:36 |
last_update | 2020-05-23 14:58:39 |
depth | 0 |
children | 13 |
last_payout | 2019-01-19 12:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 56.841 HBD |
curator_payout_value | 17.943 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,534 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 78,273,411 |
net_rshares | 145,526,466,456,979 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 7,976,867,829,732 | 81% | ||
steempty | 0 | 4,818,334,602,496 | 81% | ||
tombstone | 0 | 3,779,268,219,876 | 14.53% | ||
teamsteem | 0 | 7,547,592,035 | 5% | ||
thecryptodrive | 0 | 120,268,973,234 | 30% | ||
ausbitbank | 0 | 1,717,812,652,403 | 100% | ||
arcange | 0 | 36,511,490,620 | 4% | ||
raphaelle | 0 | 2,280,440,345 | 4% | ||
twinner | 0 | 723,254,967,114 | 25% | ||
timcliff | 0 | 778,231,514,634 | 78% | ||
snwolak | 0 | 4,920,719,756 | 90% | ||
bryan-imhoff | 0 | 158,966,123,333 | 50% | ||
stevescoins | 0 | 89,805,436,839 | 75% | ||
penguinpablo | 0 | 164,929,414,465 | 7% | ||
uwelang | 0 | 173,270,416,752 | 15% | ||
dylanhobalart | 0 | 7,411,381,564 | 15% | ||
yadamaniart | 0 | 684,646,241 | 1.59% | ||
steemitboard | 0 | 14,440,691,344 | 1% | ||
zephyraijunzo | 0 | 62,960,154,490 | 100% | ||
borislavzlatanov | 0 | 2,490,480,903 | 100% | ||
freebornsociety | 0 | 11,410,098,717 | 20% | ||
reggaemuffin | 0 | 5,202,776,154,946 | 100% | ||
jga | 0 | 2,820,392,762 | 36.34% | ||
helo | 0 | 122,030,275,571 | 100% | ||
mercadosaway | 0 | 1,411,187,448 | 100% | ||
coquiunlimited | 0 | 117,807,171 | 1.33% | ||
jamjamfood | 0 | 63,254,201,419 | 25% | ||
robofox | 0 | 6,256,011,024 | 100% | ||
pennsif | 0 | 22,757,916,037 | 10% | ||
ewkaw | 0 | 7,665,895,102 | 20% | ||
jayna | 0 | 428,022,403 | 0.47% | ||
ew-and-patterns | 0 | 261,737,824,342 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
swedishdragon | 0 | 115,267,189,293 | 80% | ||
warfeed | 0 | 266,024,181 | 37.5% | ||
geekgirl | 0 | 345,083,523,614 | 100% | ||
theaustrianguy | 0 | 549,667,068,990 | 49% | ||
jacekw | 0 | 8,437,872,993 | 50% | ||
drorion | 0 | 22,022,214,701 | 100% | ||
codingdefined | 0 | 16,648,507,337 | 15% | ||
hope-on-fire | 0 | 55,808,651,051 | 100% | ||
steem-star | 0 | 4,254,987,342 | 100% | ||
abigail-dantes | 0 | 889,398,170,797 | 50% | ||
riozjeker | 0 | 435,959,097 | 100% | ||
upgoat | 0 | 1,145,238,976 | 100% | ||
resheep | 0 | 433,822,433 | 100% | ||
upcroak | 0 | 163,937,841 | 100% | ||
smartcash | 0 | 7,317,983,172 | 44% | ||
steemitri | 0 | 137,765,945,427 | 100% | ||
glitterbooster | 0 | 6,834,711,742 | 30% | ||
valerious | 0 | 2,154,859,090 | 100% | ||
theleapingkoala | 0 | 162,079,605 | 0.79% | ||
izmy.steemit | 0 | 1,862,617,452 | 100% | ||
roman1973 | 0 | 4,174,274,539 | 100% | ||
netraleon | 0 | 2,050,211,077 | 100% | ||
tigerz | 0 | 2,751,597,652 | 100% | ||
badham | 0 | 157,591,797 | 50% | ||
pele23 | 0 | 2,404,305,075 | 3% | ||
boontjie | 0 | 92,269,423 | 3.18% | ||
crokkon | 0 | 103,191,799,627 | 100% | ||
accelerator | 0 | 15,816,138,271 | 1.1% | ||
etnospace | 0 | 800,625,935 | 100% | ||
karcher-310 | 0 | 1,357,799,120 | 100% | ||
kamikaze | 0 | 147,637,451,865 | 15% | ||
memen | 0 | 4,067,296,763 | 100% | ||
scorer | 0 | 150,171,153,434 | 100% | ||
szabolcs | 0 | 408,769,646 | 100% | ||
mcfarhat | 0 | 42,854,885,113 | 27.09% | ||
darsn | 0 | 2,284,987,992 | 100% | ||
isnochys | 0 | 7,795,904,074 | 13% | ||
qurator | 0 | 201,055,048,682 | 3.18% | ||
emdesan | 0 | 136,075,765 | 10% | ||
pierlave | 0 | 2,112,485,086 | 100% | ||
loshcat | 0 | 3,113,676,388 | 100% | ||
myjourney | 0 | 7,529,136,227 | 100% | ||
steem-plus | 0 | 35,033,067,222 | 2.7% | ||
pataty69 | 0 | 6,764,272,034 | 20% | ||
jesusj1 | 0 | 109,450,421 | 99% | ||
zdamna100ogebio | 0 | 2,345,350,964 | 100% | ||
gathanxz | 0 | 270,600,699 | 100% | ||
utopian-io | 0 | 97,588,513,195,513 | 72.68% | ||
jaff8 | 0 | 116,041,089,985 | 67.73% | ||
steemtaker | 0 | 1,547,966,800 | 2% | ||
hispeedimagins | 0 | 19,044,716,814 | 100% | ||
newsrx | 0 | 195,132,334 | 12.45% | ||
scipio | 0 | 50,064,390,573 | 50% | ||
skycae | 0 | 250,603,970 | 2.22% | ||
greenorange | 0 | 550,188,633 | 100% | ||
bubbleburst | 0 | 7,502,376,227 | 100% | ||
mvanyi | 0 | 4,065,147,402 | 100% | ||
steembasicincome | 0 | 2,294,418,828,653 | 36.75% | ||
taug | 0 | 1,557,665,996 | 24.5% | ||
fulltimeangel | 0 | 27,378,557,576 | 100% | ||
thomasgift | 0 | 2,084,709,314 | 50% | ||
nancymoral | 0 | 552,971,636 | 100% | ||
amosbastian | 0 | 146,110,116,019 | 67.73% | ||
tdre | 0 | 78,856,977,460 | 100% | ||
asaj | 0 | 17,443,440,376 | 100% | ||
smjn | 0 | 325,424,586,204 | 50% | ||
jjay | 0 | 420,152,389 | 100% | ||
viperblckz | 0 | 4,423,308,499 | 100% | ||
neokuduk | 0 | 3,582,398,535 | 100% | ||
atongis | 0 | 42,108,844,475 | 10% | ||
lukasmining | 0 | 3,242,732,917 | 50% | ||
tobias-g | 0 | 30,665,528,381 | 15% | ||
literaturk | 0 | 441,887,776 | 100% | ||
michaelizer | 0 | 257,586,707 | 100% | ||
joaorafael | 0 | 4,262,917,503 | 75% | ||
sudefteri | 0 | 3,821,661,504 | 100% | ||
nwjordan | 0 | 293,479,613 | 2.38% | ||
verhp11 | 0 | 122,976,826 | 1% | ||
janse | 0 | 550,642,274 | 100% | ||
flugschwein | 0 | 31,459,124,272 | 75% | ||
akifane | 0 | 556,085,155 | 100% | ||
rasit | 0 | 441,773,680 | 100% | ||
themuffinman | 0 | 71,919,369 | 100% | ||
redheadpei | 0 | 166,283,040 | 5% | ||
reazuliqbal | 0 | 24,355,709,333 | 20% | ||
maveraunnehr | 0 | 378,881,548 | 100% | ||
satren | 0 | 45,099,108,076 | 25% | ||
lauchmelder | 0 | 16,083,376,763 | 25% | ||
hakancelik | 0 | 2,083,233,707 | 30% | ||
a0i | 0 | 1,199,029,249 | 1.08% | ||
inespereira | 0 | 289,885,032 | 75% | ||
schlafhacking | 0 | 204,469,446,023 | 100% | ||
qberry | 0 | 1,487,737,191 | 1.59% | ||
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% | ||
zcool | 0 | 188,442,271 | 10% | ||
tibfox | 0 | 75,474,228,048 | 27.5% | ||
altobee | 0 | 22,518,566,424 | 75% | ||
elleok | 0 | 11,730,616,179 | 34% | ||
kgakakillerg | 0 | 10,153,899,634 | 6% | ||
enlighted | 0 | 70,839,049 | 20% | ||
biochem | 0 | 6,167,311,904 | 100% | ||
zdamna100egebio | 0 | 1,968,886,040 | 100% | ||
ryuna.siege | 0 | 208,721,959 | 100% | ||
seredina | 0 | 2,411,376,290 | 100% | ||
probaperra | 0 | 1,690,067,511 | 100% | ||
ikarus56 | 0 | 867,654,964 | 5% | ||
blockchainstudio | 0 | 4,547,180,416 | 100% | ||
nervniymen | 0 | 1,809,111,420 | 100% | ||
orange777 | 0 | 715,592,775 | 100% | ||
commonlaw | 0 | 3,799,891,474 | 35% | ||
shahabudin | 0 | 33,116,815 | 50% | ||
soundworks | 0 | 2,452,519,896 | 100% | ||
lucky2 | 0 | 1,158,971,072,084 | 100% | ||
jumps | 0 | 62,661,227,408 | 100% | ||
lipraproductions | 0 | 308,098,341 | 24.5% | ||
arsadulislam | 0 | 221,328,909 | 45% | ||
literaturkritik | 0 | 4,539,685,755 | 100% | ||
partiko | 0 | 292,963,480,536 | 3% | ||
marygourmet | 0 | 497,894,943 | 100% | ||
pryncenas | 0 | 0 | 5% | ||
ulockblock | 0 | 45,751,899,543 | 17.16% | ||
wstanley226 | 0 | 275,812,565 | 50% | ||
spero2711 | 0 | 84,896,819 | 25% | ||
piretide | 0 | 532,948,334 | 100% | ||
snafnornode | 0 | 533,699,969 | 100% | ||
thymiscoowes | 0 | 523,342,967 | 100% | ||
fibarsira | 0 | 535,367,709 | 100% | ||
hydquihaipie | 0 | 532,244,680 | 100% | ||
topsrepgome | 0 | 533,813,522 | 100% | ||
momabottpa1 | 0 | 536,094,560 | 100% | ||
luc.real | 0 | 226,202,683 | 100% | ||
nieloagranca | 0 | 6,427,292,648 | 8% | ||
kylietjg4iclark | 0 | 535,204,744 | 100% | ||
steemchoose | 0 | 100,518,826,857 | 4.54% | ||
kryptarion | 0 | 294,191,736 | 100% | ||
tbtek | 0 | 750,185,679 | 25% | ||
holger.random | 0 | 1,379,271,336 | 100% | ||
delicious-kimchi | 0 | 18,051,262,114 | 100% | ||
fullnodeupdate | 0 | 3,057,289,630 | 100% | ||
duarte9sousa | 0 | 17,511,037,104 | 18% | ||
donkeyslayer | 0 | 3,708,480,415 | 100% | ||
fulltimebot | 0 | 124,446,887,911 | 100% | ||
fulltimebot1 | 0 | 124,515,300,490 | 100% | ||
fulltimebot2 | 0 | 124,464,426,467 | 100% | ||
fulltimebot5 | 0 | 124,426,927,640 | 100% | ||
fulltimebot12 | 0 | 124,408,206,708 | 100% | ||
bigpun | 0 | 528,027,995 | 100% | ||
munhenhos | 0 | 1,454,515,145 | 20% | ||
isabelpereira | 0 | 949,799,304 | 4% | ||
drlouwis | 0 | 9,545,404,241 | 100% | ||
dramaking | 0 | 1,275,313,361 | 100% | ||
fulltimebot14 | 0 | 124,312,905,949 | 100% | ||
fulltimebot17 | 0 | 124,169,636,190 | 100% | ||
fulltimebot18 | 0 | 124,317,149,792 | 100% | ||
fulltimebot21 | 0 | 124,169,789,864 | 100% | ||
fulltimebot29 | 0 | 124,239,551,466 | 100% | ||
fulltimebot31 | 0 | 124,241,255,399 | 100% | ||
fulltimebot32 | 0 | 124,327,071,315 | 100% | ||
fulltimebot33 | 0 | 124,244,792,970 | 100% | ||
fulltimebot41 | 0 | 124,222,889,659 | 100% | ||
jacekw.dev | 0 | 2,778,592,400 | 40% | ||
bhaski | 0 | 1,822,606,283 | 20% | ||
fulltimebot48 | 0 | 124,153,180,711 | 100% | ||
fulltimebot50 | 0 | 124,263,097,005 | 100% | ||
chappertron | 0 | 103,968,930,408 | 100% | ||
tiagoferezin | 0 | 74,903,216 | 20% | ||
mattuhedo | 0 | 534,350,649 | 100% | ||
gioteherle | 0 | 535,152,451 | 100% | ||
steem.racing | 0 | 352,553,159 | 23% | ||
perepilichnyy | 0 | 2,100,647,932,654 | 100% | ||
dosdudes | 0 | 54,062,720,153 | 100% | ||
fulltimebot63 | 0 | 123,792,762,929 | 100% | ||
fulltimebot75 | 0 | 123,826,218,957 | 100% | ||
linkerstinker | 0 | 528,184,422 | 50% | ||
bonadicta | 0 | 1,985,490,241 | 100% | ||
vaibhavgond2182 | 0 | 247,891,793 | 100% | ||
steem-ua | 0 | 1,371,750,712,156 | 12.45% | ||
sxtrosa | 0 | 93,355,902 | 100% | ||
alvinvoo | 0 | 933,643,662 | 100% | ||
kaczynski | 0 | 245,384,733 | 100% | ||
ambercookie | 0 | 687,486,940 | 76% | ||
steemitbuzz | 0 | 90,765,640 | 1% | ||
nerdrepost | 0 | 103,046,338 | 100% | ||
jchappe | 0 | 48,640,029 | 49% | ||
luialejavencar | 0 | 214,078,280 | 100% | ||
anthive | 0 | 70,242,414 | 50% | ||
nurah | 0 | 188,640,349 | 50% | ||
kingnosa | 0 | 58,572,588 | 50% | ||
dfen | 0 | 556,000,000 | 100% | ||
bluesniper | 0 | 156,215,495,105 | 10.83% | ||
steemtank | 0 | 2,468,855,309,961 | 100% | ||
whitebot | 0 | 39,694,042,826 | 2% | ||
ascorphat | 0 | 880,276,390 | 2.5% | ||
samantha-w | 0 | 3,114,738,631,080 | 82% | ||
flodor | 0 | 717,641,880 | 25% | ||
cerd26 | 0 | 51,620,852 | 75% | ||
kerrywolf | 0 | 258,098,474,933 | 100% | ||
mgranja | 0 | 16,012,148,329 | 11% | ||
proboards | 0 | 466,539,799,862 | 100% | ||
sternekoechin | 0 | 250,116,834 | 25% | ||
hozn4ukhlytriwc | 0 | 445,688,447 | 100% | ||
themadcurator | 0 | 878,799,470,957 | 31% | ||
orbo | 0 | 253,000,000 | 50% | ||
frederick0016 | 0 | 10,134,526 | 100% | ||
olligamer | 0 | 154,833,469 | 100% | ||
sanjoea | 0 | 306,934,018 | 100% | ||
pioneri | 0 | 117,571,336 | 100% | ||
kizer24 | 0 | 390,566,681 | 100% | ||
ejder329 | 0 | 19,523,461 | 100% | ||
vnz.omar | 0 | 501,529,392 | 100% | ||
josechemi17 | 0 | 150,041,753 | 100% | ||
shana12 | 0 | 397,737,283 | 100% | ||
luismatos | 0 | 68,233,538 | 100% | ||
yrali | 0 | 175,445,863 | 100% | ||
afrodelgado | 0 | 455,867,915 | 100% | ||
metehn | 0 | 371,851,927 | 100% |
is there a command to check the installed version (wich version is installed) for noobs like me?
author | altobee |
---|---|
permlink | re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t183303600z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-12 18:33:03 |
last_update | 2019-01-12 18:33:03 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 18:33: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 | 96 |
author_reputation | 30,842,106,147,377 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,285,771 |
net_rshares | 0 |
Cool beem haaa
author | ankitkholia123 |
---|---|
permlink | re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190113t065329088z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-13 06:53:30 |
last_update | 2019-01-13 06:53:30 |
depth | 1 |
children | 0 |
last_payout | 2019-01-20 06:53: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 | 14 |
author_reputation | 10,257,071,685 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,305,432 |
net_rshares | 288,950,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ankitkholia123 | 0 | 288,950,982 | 100% |
Congratulations @holger80! Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190112) in the following category: * Pending payout - Ranked 8 with $ 78,18
author | arcange |
---|---|
permlink | re-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t174354000z |
category | utopian-io |
json_metadata | "" |
created | 2019-01-13 16:44:51 |
last_update | 2019-01-13 16:44:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-20 16:44: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 | 1,148,315,077,042,392 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,323,763 |
net_rshares | 0 |
- Great article and formatting with images and code samples. - I really liked your bug fix explanations. 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/1-2-1-1-1-1-2-). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t134300213z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-1-1-1-1-2-","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-01-12 13:43:00 |
last_update | 2019-01-12 13:43:00 |
depth | 1 |
children | 1 |
last_payout | 2019-01-19 13:43:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.107 HBD |
curator_payout_value | 1.925 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 603 |
author_reputation | 121,547,934,535,311 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,275,277 |
net_rshares | 15,625,004,477,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 16,031,328,016 | 15% | ||
themarkymark | 0 | 174,166,649,617 | 10% | ||
espoem | 0 | 27,101,224,121 | 15% | ||
utopian-io | 0 | 15,163,215,510,735 | 10.98% | ||
emrebeyler | 0 | 8,630,061,557 | 1% | ||
aydant | 0 | 3,102,318,836 | 50% | ||
amosbastian | 0 | 51,742,004,812 | 24.16% | ||
interfecto | 0 | 6,140,786,655 | 18% | ||
holger80 | 0 | 143,277,702,108 | 25% | ||
reazuliqbal | 0 | 6,003,376,214 | 5% | ||
hakancelik | 0 | 2,075,521,666 | 30% | ||
statsexpert | 0 | 6,757,258,968 | 100% | ||
ulockblock | 0 | 13,008,681,198 | 4.87% | ||
ascorphat | 0 | 886,274,739 | 2.5% | ||
yff | 0 | 2,865,777,838 | 100% |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t134300213z-20190114t135515z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-14 13:55:18 |
last_update | 2019-01-14 13:55:18 |
depth | 2 |
children | 0 |
last_payout | 2019-01-21 13:55: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 | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,364,658 |
net_rshares | 0 |
Thank you so much for participating 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-getaccountvotes-improved-and-signing-speed-improved-20190112t133036 |
category | utopian-io |
json_metadata | "" |
created | 2019-01-12 13:30:39 |
last_update | 2019-01-12 13:30:39 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 13:30:39 |
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 | 210 |
author_reputation | 39,207,160,334,751 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,274,877 |
net_rshares | 0 |
This post has been included in the latest edition of [**SOS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem12january2019-65z2x3oowz) - a digest of all you need to know about the State of Steem. *** * *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem12january2019-65z2x3oowz).* * *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/dtube/@pennsif/k8811wa6).* * *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-7-january-2019).* * *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.* ***
author | pennsif |
---|---|
permlink | re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190113t130847696z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem12january2019-65z2x3oowz","https://steemit.com/dtube/@pennsif/k8811wa6","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-supported-by-dsound-week-beginning-7-january-2019","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"} |
created | 2019-01-13 13:08:48 |
last_update | 2019-01-13 13:08:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-20 13:08: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 | 938 |
author_reputation | 636,410,097,572,565 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,315,548 |
net_rshares | 0 |
Hi, @holger80! You just got a **2.7%** 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-getaccountvotes-improved-and-signing-speed-improved---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-01-13 07:55:21 |
last_update | 2019-01-13 07:55:21 |
depth | 1 |
children | 0 |
last_payout | 2019-01-20 07:55: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 | 434 |
author_reputation | 247,952,188,232,400 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,306,841 |
net_rshares | 0 |
#### Hi @holger80! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t142100z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-12 14:21:00 |
last_update | 2019-01-12 14:21:00 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 14:21: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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,276,629 |
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/comments.png?201901121557</td><td>You made more than 600 comments. Your next target is to reach 700 comments.</td></tr> </table> <sub>_[Click here to view your Board](https://steemitboard.com/@holger80)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steem/@steemitboard/steemwhales-has-officially-moved-to-steemitboard-ranking"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/steemwhales-has-officially-moved-to-steemitboard-ranking">SteemWhales has officially moved to SteemitBoard Ranking</a></td></tr><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-witness-update-2019-01-07"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/7CiQEO.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-witness-update-2019-01-07">SteemitBoard - Witness Update</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-holger80-20190112t163144000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-01-12 16:31:42 |
last_update | 2019-01-12 16:31:42 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 16:31:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,647 |
author_reputation | 38,975,615,169,260 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,281,722 |
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-getaccountvotes-improved-and-signing-speed-improved-20190112t131747 |
category | utopian-io |
json_metadata | "" |
created | 2019-01-12 13:17:48 |
last_update | 2019-01-12 13:17:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 13:17: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 | 345 |
author_reputation | 29,054,729,340 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,274,429 |
net_rshares | 0 |
ǝɹǝɥ sɐʍ ɹoʇɐɹnƆ pɐW ǝɥ┴
author | themadcurator |
---|---|
permlink | re-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t224241 |
category | utopian-io |
json_metadata | "" |
created | 2019-01-12 22:42:42 |
last_update | 2019-01-12 22:42:42 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 22:42:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.207 HBD |
curator_payout_value | 0.068 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 53,938,302,377,048 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,293,722 |
net_rshares | 534,734,851,353 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 30,349,762,610 | 3% | ||
thecyclist | 0 | 5,779,824,583 | 3% | ||
ngc | 0 | 308,903,381,024 | 3% | ||
abusereports | 0 | 189,701,883,136 | 15% |
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-getaccountvotes-improved-and-signing-speed-improved-20190112t195947z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-12 19:59:48 |
last_update | 2019-01-12 19:59:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-19 19:59: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 | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "update for beem - get_account_votes improved and signing speed improved" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,288,351 |
net_rshares | 0 |