create account

update for beem - get_account_votes improved and signing speed improved by holger80

View this thread on: hive.blogpeakd.comecency.com
· @holger80 · (edited)
$74.78
update for beem - get_account_votes improved and signing speed improved
#### Repository
https://github.com/holgern/beem<center>
![beem-logo](https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo)
</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:
![image.png](https://ipfs.busy.org/ipfs/QmV5ZKTRVX7RgYMqyC9DR4GHGRZDFRbP4BEYNR4yJncaHV)


### Unit tests fixed
Due to the some changes and the not working testnet, some unit tests were broken. They are all fixed now.
![image.png](https://ipfs.busy.org/ipfs/QmXBPDKsUFDa3cFAv4HDZbswwQ1gViFSFK4TA7hTSxXRzo)


### 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
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 195 others
properties (23)
authorholger80
permlinkupdate-for-beem-getaccountvotes-improved-and-signing-speed-improved
categoryutopian-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"}"
created2019-01-12 12:47:36
last_update2020-05-23 14:58:39
depth0
children13
last_payout2019-01-19 12:47:36
cashout_time1969-12-31 23:59:59
total_payout_value56.841 HBD
curator_payout_value17.943 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,534
author_reputation358,857,509,568,825
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id78,273,411
net_rshares145,526,466,456,979
author_curate_reward""
vote details (259)
@altobee ·
is there a command to check the installed version (wich version is installed) for noobs like me?
properties (22)
authoraltobee
permlinkre-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t183303600z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-12 18:33:03
last_update2019-01-12 18:33:03
depth1
children0
last_payout2019-01-19 18:33:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation30,842,106,147,377
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,285,771
net_rshares0
@ankitkholia123 ·
Cool beem haaa
👍  
properties (23)
authorankitkholia123
permlinkre-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190113t065329088z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-01-13 06:53:30
last_update2019-01-13 06:53:30
depth1
children0
last_payout2019-01-20 06:53:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation10,257,071,685
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,305,432
net_rshares288,950,982
author_curate_reward""
vote details (1)
@arcange ·
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
properties (22)
authorarcange
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t174354000z
categoryutopian-io
json_metadata""
created2019-01-13 16:44:51
last_update2019-01-13 16:44:51
depth1
children0
last_payout2019-01-20 16:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation1,148,315,077,042,392
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,323,763
net_rshares0
@helo ·
$8.03
- 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/)
👍  , , , , , , , , , , , , , ,
properties (23)
authorhelo
permlinkre-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t134300213z
categoryutopian-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"}
created2019-01-12 13:43:00
last_update2019-01-12 13:43:00
depth1
children1
last_payout2019-01-19 13:43:00
cashout_time1969-12-31 23:59:59
total_payout_value6.107 HBD
curator_payout_value1.925 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length603
author_reputation121,547,934,535,311
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,275,277
net_rshares15,625,004,477,080
author_curate_reward""
vote details (15)
@utopian-io ·
Thank you for your review, @helo! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t134300213z-20190114t135515z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-14 13:55:18
last_update2019-01-14 13:55:18
depth2
children0
last_payout2019-01-21 13:55:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation152,955,367,999,756
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,364,658
net_rshares0
@partiko ·
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!
properties (22)
authorpartiko
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t133036
categoryutopian-io
json_metadata""
created2019-01-12 13:30:39
last_update2019-01-12 13:30:39
depth1
children0
last_payout2019-01-19 13:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation39,207,160,334,751
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,274,877
net_rshares0
@pennsif ·
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.*

***
properties (22)
authorpennsif
permlinkre-holger80-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190113t130847696z
categoryutopian-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"}
created2019-01-13 13:08:48
last_update2019-01-13 13:08:48
depth1
children0
last_payout2019-01-20 13:08:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length938
author_reputation636,410,097,572,565
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,315,548
net_rshares0
@steem-plus ·
SteemPlus upvote
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.
properties (22)
authorsteem-plus
permlinkupdate-for-beem-getaccountvotes-improved-and-signing-speed-improved---vote-steemplus
categoryutopian-io
json_metadata{}
created2019-01-13 07:55:21
last_update2019-01-13 07:55:21
depth1
children0
last_payout2019-01-20 07:55:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation247,952,188,232,400
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,306,841
net_rshares0
@steem-ua ·
#### 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)**
properties (22)
authorsteem-ua
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t142100z
categoryutopian-io
json_metadata"{"app": "beem/0.20.14"}"
created2019-01-12 14:21:00
last_update2019-01-12 14:21:00
depth1
children0
last_payout2019-01-19 14:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation23,214,230,978,060
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,276,629
net_rshares0
@steemitboard ·
Congratulations @holger80! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@holger80/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**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-holger80-20190112t163144000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-12 16:31:42
last_update2019-01-12 16:31:42
depth1
children0
last_payout2019-01-19 16:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,647
author_reputation38,975,615,169,260
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,281,722
net_rshares0
@steemprojects ·
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.
properties (22)
authorsteemprojects
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t131747
categoryutopian-io
json_metadata""
created2019-01-12 13:17:48
last_update2019-01-12 13:17:48
depth1
children0
last_payout2019-01-19 13:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation29,054,729,340
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,274,429
net_rshares0
@themadcurator ·
$0.28
ǝɹǝɥ sɐʍ ɹoʇɐɹnƆ pɐW ǝɥ┴

👍  , , ,
properties (23)
authorthemadcurator
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t224241
categoryutopian-io
json_metadata""
created2019-01-12 22:42:42
last_update2019-01-12 22:42:42
depth1
children0
last_payout2019-01-19 22:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.207 HBD
curator_payout_value0.068 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation53,938,302,377,048
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,293,722
net_rshares534,734,851,353
author_curate_reward""
vote details (4)
@utopian-io ·
Hey, @holger80!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-update-for-beem-getaccountvotes-improved-and-signing-speed-improved-20190112t195947z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-12 19:59:48
last_update2019-01-12 19:59:48
depth1
children0
last_payout2019-01-19 19:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation152,955,367,999,756
root_title"update for beem - get_account_votes improved and signing speed improved"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,288,351
net_rshares0