## Repository https://github.com/holgern/beem<center>  </center> [beem](https://github.com/holgern/beem) is a python library for STEEM and HIVE. The current version is 0.23.0. There is also a discord channel for beem: https://discord.gg/4HM592V The newest beem version can be installed by: ``` pip install -U beem ``` Check that you are using hive nodes. The following command ``` beempy updatenodes --hive ``` updates the nodelist and uses only hive nodes. After setting hive as default_chain, `beempy updatenodes` can be used without switching to steem. The list of nodes can be checked with ``` beempy config ``` and ``` beempy currentnode ``` shows the currently connected node. ## Changelog for versions 0.23.0 * new chain ID for HF24 on HIVE has been added * set hive as default for default_chain * get_steem_nodes added to NodeList * Prepared for Hive HF 24 * steem object in all classes is replaced by blockchain * Hive class has been added * Hive and Steem are now BlockChainInstance classes * Hive and Steem have now is_hive and is_steem properties * Each class has now blockchain_instance parameter (steem_instance is stil available) * shared_blockchain_instance and set_shared_blockchain_instance can be used for Hive() and Steem() instances * token_symbol, backed_token_symbol and vest_token_symbol * Rename SteemWebsocket to NodeWebsocket and SteemNodeRPC to NodeRPC * Rshares, vote percentage and SBD/HBD calculation has been fixed for votes * post_rshares parameter added to all vote calculations * Account class has now get_token_power(), get_voting_value() and get_vote_pct_for_vote_value() * HF 23 and HF24 operations were added thanks to @flugschwein * Downvote power was added to Snapshot thanks to @flugschwein ## New Hive class There is a new Hive class that works similarly to the Steem class. ``` from beem import Hive hive = Hive("https://api.hive.blog") print(hive) ``` returns ``` <Hive node=https://api.hive.blog, nobroadcast=False> ``` Please node that Hive is not checking if the given node url is a hive node. ``` from beem import Hive hive = Hive("https://api.steemit.com") print(hive.get_blockchain_name()) print(hive.is_hive) ``` returns ``` steem False ``` This allows `beem` to be compatible with old code. Thus, Steem() can still be used for Hive nodes. ``` from beem import Steem hive = Steem("https://api.hive.blog") print(hive) print(hive.get_blockchain_name()) ``` returns ``` <Steem node=https://api.hive.blog, nobroadcast=False> hive ``` ## All `steem` objects are renamed to `blockchain` and `steem_instance` is now `blockchain_instance` Each `Account`, `Amount`, `Block`, `Blockchain`, `Comment`, `Discussions`, `Market`, `Price`, `Vote`, `Wallet` and `Witness` object had a `steem` object which stored the Steem() class with the node-rpc. This is now renamed to `blockchain`: ``` from beem.account import Account acc = Account("holger80") print(acc.blockchain) ``` returns ``` <Hive node=https://api.hivekings.com, nobroadcast=False> ``` The Hive/Steem instance can no be set with `blockchain_instance`: ``` from beem.account import Account from beem import Hive hive = Hive("https://api.hive.blog") acc = Account("holger80", blockchain_instance=hive) print(acc.blockchain) ``` returns ``` <Hive node=https://api.hive.blog, nobroadcast=False> ``` `steem_instance` is still available and does the same as `blockchain_instance`: ``` from beem.account import Account from beem import Hive hive = Hive("https://api.hive.blog") acc = Account("holger80", steem_instance=hive) print(acc.blockchain) ``` returns ``` <Hive node=https://api.hive.blog, nobroadcast=False> ``` It is also possible to set the used blockchain instance with `set_shared_blockchain_instance` (set_shared_steem_instance is still available): ``` from beem import Hive from beem.account import Account from beem.instance import set_shared_blockchain_instance hive = Hive("https://api.hive.blog") set_shared_blockchain_instance(hive) acc = Account("holger80") print(acc.blockchain) ``` returns ``` <Hive node=https://api.hive.blog, nobroadcast=False> ``` ## Hive is the new default on a new installed pc The nodes are stored in the persistent config. The new default for a freshly install beem is: ``` nodelist = NodeList() { 'default_chain': 'hive', 'node': nodelist.get_hive_nodes(testnet=False) ... } ``` ## Renaming of some functions ### For Account * `get_steem_power()` -> `get_token_power()` * `get_voting_value_SBD()` -> `get_voting_value()` * `get_vote_pct_for_SBD()` -> `get_vote_pct_for_vote_value()` * `sp` -> `tp` is the same as `get_token_power()` ### Steem() and Hive() * `steem_symbol` -> `token_symbol` * `sbd_symbol` -> `backed_token_symbol` * `vests_symbol` -> `vest_token_symbol` ## Classes * `SteemNodeRPC` -> `NodeRPC` * `SteemWebsocket` -> `Websocket` ## Hive() has some different functions names * `rshares_to_hbd` * `get_hbd_per_rshares` * `get_hive_per_mvest` * `vests_to_hp` * `hp_to_vests` * `vests_to_hbd` * `hp_to_rshares` * `hbd_to_rshares` * `hbd_to_vote_pct` ## Vote calculation has been fixed ``` from beem.account import Account acc = Account("holger80") print("%.2f $" % acc.get_voting_value()) ``` shows ``` 0.95 $ ``` which is the same amount as hive-now.com is showing:  #### What is my vote on a post showing 10 $? The `get_voting_value` function has a `post_rshares` parameter, which can be used to answer such questions. ``` from beem import Hive from beem.account import Account hive = Hive() acc = Account("holger80") print("%.2f $ on a 10 $ post" % acc.get_voting_value(post_rshares=hive.hbd_to_rshares(10))) ``` returns ``` 1.41 $ on a 10 $ post ``` ### Calculate the vote percentage `get_vote_pct_for_vote_value` can be used to calculate the needed vote percentage. Let's try to push the post output to exactly 10 $  ``` from beem import Hive from beem.account import Account hive = Hive() acc = Account("holger80") print("%.2f %% needed to push the post to 10 $" % (acc.get_vote_pct_for_vote_value(10 - 9.337, post_rshares=hive.hbd_to_rshares(9.337))/100)) ``` returns the needed vote percentage: ``` 47.34 % needed to push the post to 10 $ ``` Let's vote ``` beempy upvote -a holger80 -w 47.34 @ocd/ocd-daily-issue-542 ``` It worked:  *** *If you like what I do, consider casting a vote for me as witness on [Hivesigner](https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1) or on [PeakD](https://peakd.com/witnesses)*.
author | holger80 |
---|---|
permlink | update-for-beem-steem-objects-renamed-to-blockchain-new-hive-class-and-vote-calculation-has-been-fixed |
category | hive-139531 |
json_metadata | {"app":"peakd/2020.04.3","format":"markdown","tags":["development","hive","beem","python"],"users":["flugschwein","ocd"],"links":["https://github.com/holgern/beem","https://github.com/holgern/beem","https://discord.gg/4HM592V","/@flugschwein","/@flugschwein","https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1","/witnesses"],"image":["https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo","https://files.peakd.com/file/peakd-hive/holger80/vpp87qrJ-image.png","https://files.peakd.com/file/peakd-hive/holger80/9JWZO14d-image.png","https://files.peakd.com/file/peakd-hive/holger80/9Yvyehyv-image.png"]} |
created | 2020-04-18 19:35:03 |
last_update | 2020-04-18 20:25:54 |
depth | 0 |
children | 8 |
last_payout | 2020-04-25 19:35:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 40.919 HBD |
curator_payout_value | 36.322 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,786 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 96,897,367 |
net_rshares | 188,493,966,701,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 2,126,428,224,517 | 100% | ||
steempty | 0 | 8,688,556,785,184 | 100% | ||
wackou | 0 | 8,541,175,106,267 | 100% | ||
bue | 0 | 609,792,605,733 | 100% | ||
chitty | 0 | 438,191,511,049 | 100% | ||
flemingfarm | 0 | 82,640,850,259 | 100% | ||
oaldamster | 0 | 46,282,021,921 | 100% | ||
mexbit | 0 | 1,209,972,606,584 | 100% | ||
gerber | 0 | 512,177,663,326 | 9.6% | ||
daan | 0 | 83,923,068,617 | 8% | ||
hitmeasap | 0 | 6,572,250,969 | 25% | ||
knircky | 0 | 1,449,367,649,382 | 100% | ||
ausbitbank | 0 | 2,348,324,200,558 | 100% | ||
ssjsasha | 0 | 802,617,933,209 | 100% | ||
karenmckersie | 0 | 25,983,798,163 | 100% | ||
inertia | 0 | 793,788,805,814 | 100% | ||
arcange | 0 | 67,616,345,824 | 3% | ||
sharker | 0 | 5,346,168,635 | 24.5% | ||
bowess | 0 | 263,231,448,811 | 100% | ||
raphaelle | 0 | 2,272,398,123 | 3% | ||
kibela | 0 | 7,548,339,375 | 24.5% | ||
originate | 0 | 304,083,739,030 | 34% | ||
twinner | 0 | 19,411,910,624,654 | 100% | ||
timcliff | 0 | 998,957,593,853 | 100% | ||
alinalazareva | 0 | 756,059,470 | 14% | ||
jphamer1 | 0 | 4,452,244,845,348 | 100% | ||
kpine | 0 | 9,588,634,183,726 | 30% | ||
fooblic | 0 | 30,424,951,042 | 100% | ||
fingolfin | 0 | 118,334,801,400 | 100% | ||
borran | 0 | 238,921,749,361 | 43% | ||
lightsplasher | 0 | 830,397,545,743 | 100% | ||
lemouth | 0 | 1,581,222,665,764 | 100% | ||
stevescoins | 0 | 243,477,107,509 | 75% | ||
themanualbot | 0 | 15,573,696,767 | 10% | ||
someguy123 | 0 | 133,997,122,315 | 9.6% | ||
krnel | 0 | 2,630,325,105,749 | 100% | ||
jlufer | 0 | 9,469,598,210 | 20% | ||
cnfund | 0 | 16,766,139,718 | 100% | ||
abh12345 | 0 | 215,135,735,918 | 15% | ||
funnyman | 0 | 3,655,980,371 | 20% | ||
steemcleaners | 0 | 6,048,118,110,870 | 100% | ||
btshuang | 0 | 208,635,425,162 | 100% | ||
rishi556 | 0 | 9,022,911,135 | 100% | ||
techslut | 0 | 108,113,779,093 | 20% | ||
mangos | 0 | 1,024,484,608,119 | 26% | ||
judasp | 0 | 904,551,771,525 | 100% | ||
trieuvinhkim | 0 | 2,357,537,631 | 100% | ||
pqlenator | 0 | 263,736,884 | 100% | ||
tarazkp | 0 | 2,104,343,823,547 | 50% | ||
markkujantunen | 0 | 9,989,599,984 | 25% | ||
freebornsociety | 0 | 1,409,755,011 | 10% | ||
detlev | 0 | 1,229,446,531,339 | 100% | ||
dickturpin | 0 | 27,604,248,903 | 100% | ||
cryptocurator | 0 | 171,706,389,131 | 27% | ||
mys | 0 | 9,338,970,334 | 2.41% | ||
nrg | 0 | 2,378,897,185,227 | 100% | ||
fredrikaa | 0 | 1,612,427,399,666 | 100% | ||
yehey | 0 | 1,376,560,030,174 | 100% | ||
alexwonderful | 0 | 34,073,473,051 | 100% | ||
rmsbodybuilding | 0 | 7,627,878,044 | 100% | ||
jeanpi1908 | 0 | 59,964,814,378 | 100% | ||
giuatt07 | 0 | 264,572,320,733 | 25% | ||
lelon | 0 | 8,043,190,053 | 100% | ||
skepticology | 0 | 4,160,137,931 | 100% | ||
maxer27 | 0 | 140,641,367,258 | 35% | ||
wf9877 | 0 | 698,428,793,320 | 100% | ||
blacks | 0 | 274,177,993,552 | 100% | ||
blacklux | 0 | 33,178,905,356 | 100% | ||
sam99 | 0 | 21,039,337,407 | 100% | ||
pinoy | 0 | 1,723,662,871 | 100% | ||
jayna | 0 | 8,935,581,117 | 3% | ||
whd | 0 | 3,109,221,174 | 2.41% | ||
netuoso | 0 | 1,768,973,688,609 | 100% | ||
bubke | 0 | 2,287,039,984,975 | 100% | ||
eturnerx | 0 | 509,828,222,845 | 20% | ||
jacekw | 0 | 56,207,351,156 | 100% | ||
jeffrey24864 | 0 | 172,441,371,281 | 100% | ||
rafalski | 0 | 584,989,875 | 2.41% | ||
face2face | 0 | 20,413,290,074 | 50% | ||
mygod | 0 | 208,658,866,889 | 100% | ||
shebe | 0 | 6,436,607,739 | 53% | ||
yoogyart | 0 | 22,186,030,344 | 51% | ||
rickie | 0 | 4,005,886,792 | 100% | ||
superhardness | 0 | 5,865,117,822,724 | 100% | ||
steemik | 0 | 1,389,816,805,724 | 100% | ||
windtalker | 0 | 805,391,567 | 100% | ||
onetin84 | 0 | 401,086,344,831 | 100% | ||
spaminator | 0 | 2,191,584,701,135 | 100% | ||
tipu | 0 | 9,150,911,332,222 | 20.01% | ||
kimzwarch | 0 | 8,691,933,125 | 4% | ||
redouanemez | 0 | 162,584,425,789 | 75% | ||
crokkon | 0 | 41,171,815,511 | 100% | ||
eriq | 0 | 1,490,215,628 | 100% | ||
chinchilla | 0 | 254,097,864,427 | 100% | ||
roleerob | 0 | 9,303,173,890 | 1.92% | ||
deathwing | 0 | 3,499,433,004 | 9.6% | ||
scorer | 0 | 123,907,498,565 | 100% | ||
revisesociology | 0 | 299,200,283,328 | 30% | ||
filipino | 0 | 2,886,681,717 | 100% | ||
mendoza | 0 | 6,403,697,112 | 100% | ||
isnochys | 0 | 23,555,993,659 | 18% | ||
gringo211985 | 0 | 180,631,606,392 | 100% | ||
elizibar | 0 | 21,646,181,252 | 100% | ||
pataty69 | 0 | 3,426,173,848 | 4.8% | ||
arabisouri | 0 | 75,366,122,098 | 100% | ||
eikejanssen | 0 | 8,778,618,037 | 100% | ||
mrsyria | 0 | 966,115,386 | 100% | ||
jexus77 | 0 | 1,204,727,625 | 100% | ||
imisstheoldkanye | 0 | 261,509,040,373 | 100% | ||
omstavan | 0 | 5,984,803,294 | 100% | ||
emrebeyler | 0 | 147,752,228,709 | 9.6% | ||
zakia | 0 | 38,624,757,272 | 100% | ||
travoved | 0 | 33,405,111,681 | 66% | ||
suzn.poudel | 0 | 4,285,859,222 | 100% | ||
anli | 0 | 5,890,000,690 | 99% | ||
andrepol | 0 | 37,210,435,078 | 99% | ||
mytechtrail | 0 | 44,420,878,555 | 20% | ||
itchyfeetdonica | 0 | 96,380,551,115 | 30% | ||
nokodemion | 0 | 39,676,915,831 | 100% | ||
treble | 0 | 8,288,358,036 | 100% | ||
steembasicincome | 0 | 1,077,424,087,467 | 100% | ||
jpphotography | 0 | 165,584,294,580 | 39.58% | ||
cpufronz | 0 | 11,093,916,607 | 100% | ||
candyboy | 0 | 299,360,036,107 | 100% | ||
leynedayana | 0 | 289,580,589 | 100% | ||
oliverschmid | 0 | 829,985,801,094 | 50% | ||
abitcoinskeptic | 0 | 102,939,293,243 | 20% | ||
kissi | 0 | 14,897,318,373 | 75% | ||
jgvinstl | 0 | 16,611,883,776 | 100% | ||
bluenarcolepsy | 0 | 739,209,902 | 100% | ||
adityajainxds | 0 | 23,096,021,316 | 100% | ||
communitybank | 0 | 572,388,191 | 100% | ||
edicted | 0 | 1,134,414,144,812 | 100% | ||
ahmedsy | 0 | 941,563,137 | 100% | ||
chrismadcboy2016 | 0 | 43,869,482,725 | 100% | ||
kimjaguar | 0 | 4,254,278,140 | 50% | ||
vaansteam | 0 | 42,378,326,804 | 30% | ||
shares | 0 | 42,453,025,591 | 100% | ||
ran.koree | 0 | 1,081,816,738 | 50% | ||
zainnosa | 0 | 1,378,910,793 | 100% | ||
udabeu | 0 | 11,593,418,605 | 38% | ||
videosteemit | 0 | 154,389,959,981 | 100% | ||
atongis | 0 | 636,970,085,697 | 100% | ||
nobyeni | 0 | 2,506,886,571 | 5% | ||
holger80 | 0 | 3,796,668,756,921 | 100% | ||
shmoogleosukami | 0 | 7,643,676,912 | 25% | ||
cadawg | 0 | 21,567,983,739 | 6.72% | ||
raise-me-up | 0 | 0 | 0.01% | ||
sudefteri | 0 | 20,285,136,697 | 100% | ||
happy-soul | 0 | 76,269,004,488 | 10% | ||
beggars | 0 | 59,253,262,861 | 100% | ||
maxpatternman | 0 | 29,797,564,300 | 100% | ||
condeas | 0 | 1,244,720,842,379 | 100% | ||
sashas | 0 | 3,423,125,249 | 100% | ||
anikys3reasure | 0 | 1,481,395,165 | 50% | ||
bhattg | 0 | 14,896,953,328 | 100% | ||
onlavu | 0 | 1,272,892,355 | 19.79% | ||
asgarth | 0 | 1,194,808,924,398 | 50% | ||
aotearoa | 0 | 724,357,468 | 4.75% | ||
flugschwein | 0 | 24,743,378,329 | 75% | ||
royfletcher | 0 | 3,798,322,271 | 100% | ||
cst90 | 0 | 35,882,461,164 | 100% | ||
whack.science | 0 | 158,990,511,665 | 35% | ||
akifane | 0 | 3,579,407,223 | 100% | ||
anonek | 0 | 232,437,846 | 100% | ||
fego | 0 | 16,445,598,777 | 14% | ||
idkpdx | 0 | 1,173,416,407 | 100% | ||
backinblackdevil | 0 | 226,746,421,171 | 20% | ||
olimiesma | 0 | 35,787,556,710 | 100% | ||
oadissin | 0 | 30,447,831,907 | 100% | ||
properfraction | 0 | 20,147,508,720 | 100% | ||
satren | 0 | 70,680,785,604 | 25% | ||
lauchmelder | 0 | 19,001,779,647 | 100% | ||
lionsuit | 0 | 69,217,398,762 | 100% | ||
amico | 0 | 1,044,330,655,001 | 99.64% | ||
beleg | 0 | 1,071,232,806 | 2.41% | ||
bestboom | 0 | 76,453,977,625 | 9.6% | ||
eunsik | 0 | 291,106,250,332 | 50% | ||
onepercentbetter | 0 | 247,960,341,172 | 100% | ||
abrockman | 0 | 835,211,952,929 | 100% | ||
dotwin1981 | 0 | 27,961,160,293 | 13% | ||
ronaldoavelino | 0 | 434,056,674,093 | 30% | ||
marcybetancourt | 0 | 24,346,937,821 | 100% | ||
schlafhacking | 0 | 336,164,769,085 | 100% | ||
sereze | 0 | 363,850,317 | 9.6% | ||
lesmouths-travel | 0 | 8,103,105,431 | 100% | ||
sbi2 | 0 | 628,815,706,863 | 100% | ||
jonybraim | 0 | 334,612,474 | 100% | ||
dera123 | 0 | 783,903,088,262 | 100% | ||
tibfox | 0 | 34,862,132,478 | 100% | ||
paragism | 0 | 13,350,976,184 | 60% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 55,195,651,436 | 15% | ||
alitavirgen | 0 | 27,777,998,725 | 15.4% | ||
gadrian | 0 | 310,141,935,429 | 100% | ||
dreimaldad | 0 | 65,332,501,988 | 50% | ||
taldor | 0 | 864,713,202 | 4.6% | ||
roinv | 0 | 3,320,706,852 | 50% | ||
payroll | 0 | 3,924,129,498,724 | 10% | ||
branding | 0 | 1,346,220,814 | 100% | ||
saboin | 0 | 98,600,285,270 | 12.24% | ||
agmoore | 0 | 120,817,782,446 | 100% | ||
getpromoted | 0 | 214,727,208 | 100% | ||
stefannikolov | 0 | 1,084,529,469 | 10% | ||
morellys2004 | 0 | 1,222,863,734 | 2% | ||
sbi3 | 0 | 489,886,363,260 | 100% | ||
promobot | 0 | 875,776,342,047 | 100% | ||
superlao | 0 | 62,769,341,212 | 100% | ||
sbi4 | 0 | 422,121,789,755 | 100% | ||
thebot | 0 | 770,199,785,807 | 100% | ||
automation | 0 | 1,508,055,308 | 50% | ||
kadna | 0 | 610,846,803,224 | 100% | ||
fw206 | 0 | 838,026,430,515 | 100% | ||
slobberchops | 0 | 1,892,449,794,264 | 52% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
blockchainstudio | 0 | 137,146,053,214 | 100% | ||
pladozero | 0 | 75,099,986,051 | 10% | ||
nateaguila | 0 | 281,203,404,863 | 8% | ||
variola | 0 | 196,226,779,352 | 100% | ||
helpyou | 0 | 1,889,010,584 | 50% | ||
archisteem | 0 | 3,049,094,981 | 7.5% | ||
linnyplant | 0 | 43,302,343,733 | 100% | ||
commonlaw | 0 | 4,424,786,670 | 35% | ||
bluewall | 0 | 30,253,746,836 | 100% | ||
solarwarrior | 0 | 1,216,803,411,642 | 100% | ||
sbi5 | 0 | 308,864,401,542 | 100% | ||
swisswitness | 0 | 50,968,120,745 | 100% | ||
kahvesizlik | 0 | 1,278,252,731 | 100% | ||
imtase | 0 | 17,387,674,841 | 65% | ||
elvielins | 0 | 26,250,015,793 | 100% | ||
roger5120 | 0 | 119,294,255,285 | 10% | ||
agathusia | 0 | 906,930,865 | 100% | ||
sbi6 | 0 | 216,609,509,216 | 100% | ||
drsensor | 0 | 2,199,969,293 | 80% | ||
hemo | 0 | 1,315,376,316 | 50% | ||
quinteroyolanda | 0 | 557,025,089 | 100% | ||
gnomed0 | 0 | 3,083,505,568 | 100% | ||
urdreamscometrue | 0 | 24,054,344,748 | 100% | ||
gallerani | 0 | 17,719,541,442 | 9.6% | ||
mightypanda | 0 | 2,834,013,188 | 14% | ||
pagliozzo | 0 | 21,765,230,343 | 20% | ||
mastersa | 0 | 3,362,623,316 | 55% | ||
baiboua | 0 | 33,785,432,388 | 65% | ||
izzynoel | 0 | 621,008,952 | 37.5% | ||
akioexzgamer | 0 | 2,026,180,329 | 65% | ||
dog-marley | 0 | 4,870,305,007 | 17.59% | ||
daath | 0 | 3,967,081,223 | 100% | ||
bendi | 0 | 1,743,134,965 | 100% | ||
dalz | 0 | 109,864,051,513 | 50% | ||
french-tech | 0 | 13,063,998,080 | 65% | ||
yuza | 0 | 5,596,446,172 | 65% | ||
pvinny69 | 0 | 6,527,852,999 | 25% | ||
goumao | 0 | 86,200,053,079 | 100% | ||
dustsweeper | 0 | 68,534,610,123 | 20% | ||
sbi7 | 0 | 168,029,304,265 | 100% | ||
julian2013 | 0 | 2,643,094,427 | 1.08% | ||
dlike | 0 | 186,017,074,245 | 9.6% | ||
triptolemus | 0 | 21,749,952,482 | 9.6% | ||
doldrums | 0 | 4,260,799,941 | 5% | ||
paopaoza | 0 | 6,057,174,000 | 65% | ||
fullnodeupdate | 0 | 18,111,560,282 | 100% | ||
ten-years-before | 0 | 5,757,164,796 | 65% | ||
a-bot | 0 | 162,647,462,602 | 100% | ||
bobby.madagascar | 0 | 9,563,331,157 | 7.2% | ||
digitalfund | 0 | 103,887,508,142 | 100% | ||
muscara | 0 | 45,832,847,233 | 40% | ||
jenniferjulius | 0 | 2,372,510,952 | 50% | ||
puza | 0 | 3,971,043,672 | 65% | ||
crypto.story | 0 | 57,192,589 | 65% | ||
sbi8 | 0 | 135,328,702,480 | 100% | ||
gamer0815 | 0 | 584,561,383 | 13% | ||
univers.crypto | 0 | 182,673,201 | 65% | ||
dosdudes | 0 | 13,664,621,018 | 100% | ||
ibc | 0 | 49,458,276,182 | 100% | ||
mintrawa | 0 | 290,268,855 | 65% | ||
sbi9 | 0 | 98,046,755,382 | 100% | ||
besheda | 0 | 1,096,235,173 | 43% | ||
brianoflondon | 0 | 653,428,684,857 | 100% | ||
votum | 0 | 1,649,072,576 | 100% | ||
actnearn | 0 | 3,136,211,341,036 | 100% | ||
mistia | 0 | 6,230,164,383 | 100% | ||
sbi10 | 0 | 95,848,134,708 | 100% | ||
dein-problem | 0 | 0 | -0.05% | ||
moneytron | 0 | 34,381,168,937 | 100% | ||
elkaos | 0 | 1,304,844,763 | 15% | ||
yuriy4 | 0 | 8,728,945,016 | 100% | ||
dfen | 0 | 1,598,855,853 | 100% | ||
twizeh | 0 | 6,569,645,469 | 50% | ||
kaldewei | 0 | 2,066,317,485 | 13% | ||
samsemilia7 | 0 | 7,612,482,006 | 40% | ||
flyingbolt | 0 | 685,367,255 | 9.6% | ||
determine | 0 | 17,707,007,001 | 9.6% | ||
tonalddrump | 0 | 6,891,484,791 | 50% | ||
permaculturedude | 0 | 1,866,589,620 | 4.8% | ||
e-r-k-a-n | 0 | 71,674,018,163 | 100% | ||
circa | 0 | 25,298,499,764 | 100% | ||
pesos | 0 | 3,679,598,563 | 100% | ||
idiosyncratic1 | 0 | 12,391,077,287 | 100% | ||
smon-joa | 0 | 147,070,184,612 | 100% | ||
broxi | 0 | 12,649,351,807 | 50% | ||
brujas | 0 | 1,061,062,299 | 100% | ||
richie.rich | 0 | 35,158,233,474 | 100% | ||
hamsa.quality | 0 | 6,261,349,968 | 100% | ||
waleedtee | 0 | 3,172,708,331 | 100% | ||
giftgiver | 0 | 17,717,343,597 | 100% | ||
denizcakmak | 0 | 561,144,701 | 50% | ||
womic | 0 | 81,811,111,286 | 100% | ||
cpt-sparrow | 0 | 27,096,814,252 | 100% | ||
marymi | 0 | 244,653,440 | 100% | ||
ttg | 0 | 652,719,395,016 | 100% | ||
maxsieg | 0 | 552,000,679 | 25% | ||
gruntprime | 0 | 1,777,086,653 | 100% | ||
szf | 0 | 957,718,363 | 50% | ||
maryincryptoland | 0 | 17,908,310,368 | 100% | ||
memehub | 0 | 3,675,947,346,646 | 100% | ||
megavest | 0 | 688,304,887 | 3.74% | ||
nextcolony | 0 | 1,371,742,305,792 | 50% | ||
gulf41 | 0 | 5,354,738,692 | 100% | ||
sparschwein | 0 | 12,135,837,640 | 50% | ||
naltedtirt | 0 | 5,321,183,532 | 50% | ||
canercanbolat | 0 | 286,296,387 | 100% | ||
steementertainer | 0 | 85,923,469,479 | 65% | ||
gruntalpha | 0 | 1,546,873,448 | 100% | ||
gruntbeta | 0 | 1,614,204,248 | 100% | ||
likwid | 0 | 31,980,767,074,409 | 100% | ||
swedishdragon76 | 0 | 2,478,202,488 | 50% | ||
dachcolony | 0 | 14,592,098,233 | 100% | ||
tinyhousecryptos | 0 | 536,957,079 | 5% | ||
grunt | 0 | 1,460,350,108 | 100% | ||
gruntomega | 0 | 599,012,701 | 100% | ||
captain.kirk | 0 | 22,640,598,172 | 50% | ||
leighscotford | 0 | 795,750,097 | 2% | ||
iktisat | 0 | 987,278,439 | 100% | ||
oxoskva | 0 | 1,013,772,237 | 100% | ||
ilovecanada | 0 | 13,083,493,308 | 50% | ||
jean-luc.picard | 0 | 2,736,526,042 | 100% | ||
stubborn-soul | 0 | 4,141,939,366 | 80% | ||
nalexadre | 0 | 296,260,895 | 65% | ||
denisdenis | 0 | 1,399,345,854 | 100% | ||
imbartley | 0 | 1,530,565,278 | 50% | ||
steem.leo | 0 | 125,655,297,723 | 9.5% | ||
leo.voter | 0 | 79,407,265,230 | 3.74% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
freddio.sport | 0 | 6,167,155,878 | 15% | ||
dcinside | 0 | 2,967,135,627 | 50% | ||
asteroids | 0 | 26,236,941,412 | 9.6% | ||
mapxv | 0 | 33,502,996,683 | 11.2% | ||
ticketyboo | 0 | 11,535,768,022 | 100% | ||
ticketywoof | 0 | 11,534,013,117 | 100% | ||
thranax | 0 | 11,970,328,804 | 15% | ||
sbi-tokens | 0 | 601,339,061 | 14.47% | ||
leo.syndication | 0 | 2,954,692,307 | 9.6% | ||
drlobes | 0 | 9,513,444,046 | 50% | ||
one.life | 0 | 28,661,492,320 | 9.58% | ||
tomhall.leo | 0 | 467,582,522 | 100% | ||
re2pair | 0 | 243,389,205 | 100% | ||
maxuvv | 0 | 182,325,999 | 2.47% | ||
maxuvd | 0 | 5,888,193,615 | 9.6% | ||
maxuve | 0 | 13,198,911,552 | 2.47% | ||
borbina | 0 | 11,634,411,060 | 100% | ||
ctl001 | 0 | 593,960,618 | 100% | ||
petscorner | 0 | 943,366,079 | 100% | ||
mowemu | 0 | 21,955,412,410 | 50% | ||
huaren.news | 0 | 196,220,167,527 | 3% | ||
cloudedmercy | 0 | 557,244,875 | 100% | ||
gerbo | 0 | 68,753,524 | 9.6% | ||
kaeserotor | 0 | 6,720,866,091 | 20% | ||
sportsbuddy | 0 | 564,927,541 | 100% | ||
abachon | 0 | 13,648,450,509 | 100% | ||
steemonboarder | 0 | 20,929,652,008 | 25% | ||
angel33 | 0 | 55,735,969 | 17% | ||
tailah.bayu | 0 | 3,643,356,114 | 100% | ||
dollarbills | 0 | 28,392,039,191 | 29% | ||
diamond-head | 0 | 3,553,163,595 | 100% | ||
steemcityrewards | 0 | 46,126,466,154 | 9.6% | ||
stuntman.mike | 0 | 52,248,514,558 | 100% | ||
fengchao | 0 | 954,910,273 | 1% | ||
diosaerys | 0 | 360,877,276 | 100% | ||
aron88 | 0 | 0 | 68% | ||
nicjulius | 0 | 0 | 100% | ||
uniquetutorials | 0 | 0 | 100% | ||
fth09000 | 0 | 0 | 19% | ||
i-am-pakistani | 0 | 0 | 100% |
___ A huge hug from @amico! 🤗
author | amico |
---|---|
permlink | re-update-for-beem-steem-objects-renamed-to-blockchain-new-hive-class-and-vote-calculation-has-been-fixed-20200418t193919z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-04-18 19:39:27 |
last_update | 2020-04-18 19:39:27 |
depth | 1 |
children | 0 |
last_payout | 2020-04-25 19:39:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 51,076,240,298,517 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,897,429 |
net_rshares | 470,475,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holydog | 0 | 470,475,791 | 100% |
I have picked your post for my daily hive voting initiative, Keep it up and Hive On!!
author | chitty |
---|---|
permlink | re-update-for-beem-steem-objects-renamed-to-blockchain-new-hive-class-and-vote-calculation-has-been-fixed-20200420t000821 |
category | hive-139531 |
json_metadata | "" |
created | 2020-04-20 00:08:24 |
last_update | 2020-04-20 00:08:24 |
depth | 1 |
children | 0 |
last_payout | 2020-04-27 00:08: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 | 86 |
author_reputation | 86,901,300,608,582 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,914,128 |
net_rshares | 0 |
thanks for the info
author | fth09000 |
---|---|
permlink | re-holger80-q917bx |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.3"} |
created | 2020-04-19 10:48:00 |
last_update | 2020-04-19 10:48:00 |
depth | 1 |
children | 0 |
last_payout | 2020-04-26 10: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 | 19 |
author_reputation | 0 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,905,355 |
net_rshares | 0 |
Thanks a lot! I am using your package a lot for all my local scripts and I have never taken the time to thank. Now it is done :) PS: I will test the new version next week.
author | lemouth |
---|---|
permlink | re-holger80-q908q0 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.3"} |
created | 2020-04-18 22:20:24 |
last_update | 2020-04-18 22:20:24 |
depth | 1 |
children | 0 |
last_payout | 2020-04-25 22:20: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 | 172 |
author_reputation | 338,011,164,701,274 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,899,112 |
net_rshares | 0 |
Ill definitely use your libs when I get into python. I think I already have when I was messing around with scripts
author | nrg |
---|---|
permlink | q911u2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-04-19 08:49:15 |
last_update | 2020-04-19 08:49:15 |
depth | 1 |
children | 0 |
last_payout | 2020-04-26 08:49:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 1,378,983,266,690 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,904,284 |
net_rshares | 0 |
This is important update
author | paragism | ||||||
---|---|---|---|---|---|---|---|
permlink | re-holger80-2020420t04036430z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["development","hive","beem","python"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-04-19 19:10:39 | ||||||
last_update | 2020-04-19 19:10:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-04-26 19:10: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 | 25 | ||||||
author_reputation | 36,292,755,022,096 | ||||||
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,911,066 | ||||||
net_rshares | 0 |
@holger80, your Hivesigner link has double .com in its address.
author | scorer |
---|---|
permlink | q903b7 |
category | hive-139531 |
json_metadata | {"users":["holger80"],"app":"hiveblog/0.1"} |
created | 2020-04-18 20:23:33 |
last_update | 2020-04-18 20:23:33 |
depth | 1 |
children | 1 |
last_payout | 2020-04-25 20:23:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 5,082,149,757,589 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,897,905 |
net_rshares | 552,842,983,031 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 552,842,983,031 | 15% | ||
dein-problem | 0 | 0 | -0.15% |
Thanks, I fixed the link.
author | holger80 |
---|---|
permlink | re-scorer-q903pe |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.3"} |
created | 2020-04-18 20:32:03 |
last_update | 2020-04-18 20:32:03 |
depth | 2 |
children | 0 |
last_payout | 2020-04-25 20:32: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 | 25 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for beem: steem objects renamed to blockchain, new Hive class and vote calculation has been fixed" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,898,005 |
net_rshares | 43,026,447,258 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 5,729,444,457 | 99% | ||
andrepol | 0 | 36,771,933,155 | 99% | ||
holycow2019 | 0 | 283,045,617 | 100% | ||
re2pair | 0 | 242,024,029 | 100% |