## Repository https://github.com/holgern/beem<center>  </center> [beem](https://github.com/holgern/beem) is a python library and command line tool for HIVE. The current version is 0.24.5. 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. The list of nodes can be checked with ``` beempy config ``` and ``` beempy currentnode ``` shows the currently connected node. ## Changelog for versions 0.24.5 * replace percent_hive_dollars by percent_hbd (to make beem HF24 ready) * Remove whaleshares related code * Fix adding of a wif in beempy * Remove SteemConnect * Fix set token in HiveSigner * Add Blurt * Add Community for community reladed requests and broadcasts * Improve community lookup for beempy createpost * Improved beempy history command output * Improved beempy stream ## Community support I added community support to beem. The following example shows the content of a community dict: ``` from beem.community import Community from prettytable import PrettyTable community = Community("hive-139531") t = PrettyTable(["key", "value"]) t.align = "l" t._max_width = {"value" : 60} for key in community.json(): t.add_row([key, community.json()[key]]) print(t) ``` returns ``` +-------------+--------------------------------------------------------------+ | key | value | +-------------+--------------------------------------------------------------+ | id | 1357761 | | name | hive-139531 | | title | HiveDevs | | about | HiveDevs - A community of developers working on Hive related | | | projects. Visit our Discord at https://discord.gg/cvnByhu | | lang | en | | type_id | 1 | | is_nsfw | False | | subscribers | 1005 | | sum_pending | 638 | | num_pending | 253 | | num_authors | 120 | | created_at | 2020-01-23 16:27:39 | | avatar_url | | | context | {} | | description | | | flag_text | | | settings | {} | | team | [['hive-139531', 'owner', ''], ['netuoso', 'admin', ''], | | | ['abit', 'mod', ''], ['roadscape', 'mod', ''], ['acidyo', | | | 'mod', ''], ['gtg', 'mod', ''], ['good-karma', 'mod', | | | 'Founder of Esteem'], ['jesta', 'mod', ''], ['inertia', | | | 'mod', '#1138'], ['arcange', 'mod', ''], ['someguy123', | | | 'mod', ''], ['mahdiyari', 'mod', ''], ['blocktrades', 'mod', | | | ''], ['drakos', 'mod', ''], ['themarkymark', 'mod', ''], | | | ['stoodkev', 'mod', ''], ['therealwolf', 'mod', ''], | | | ['yabapmatt', 'mod', ''], ['eonwarped', 'mod', ''], | | | ['emrebeyler', 'mod', ''], ['bobinson', 'mod', ''], | | | ['asgarth', 'mod', ''], ['quochuy', 'mod', 'Witness'], | | | ['crimsonclad', 'mod', ''], ['pharesim', 'mod', '']] | +-------------+--------------------------------------------------------------+ ``` The following API functions have been implemented: ``` roles = community.get_community_roles() print("len %d - first entry: %s" % (len(roles), str(roles[0]))) subscribers = community.get_subscribers() print("len %d - first entry: %s" % (len(subscribers), str(subscribers[0]))) last_activity = community.get_activities(limit=100, last_id=None) print("len %d - first entry: %s" % (len(last_activity), str(last_activity[0]))) latest_post = community.get_ranked_posts(limit=25) print("len %d - first entry: %s" % (len(latest_post), str(latest_post[0])[:120])) ``` returns: ``` len 50 - first entry: ['hive-139531', 'owner', ''] len 250 - first entry: ['joshman', 'guest', None, '2020-07-14 16:16:15'] len 100 - first entry: {'id': 78159733, 'type': 'subscribe', 'score': 35, 'date': '2020-07-14T16:16:15', 'msg': '@joshman subscribed to HiveDevs', 'url': 'trending/hive-139531'} len 25 - first entry: {'post_id': 83702748, 'author': 'netuoso', 'permlink': 'creation-of-steemdevs-community-information-about-steemdevs', 'c ``` `get_subscribers()` returns only 250 subscribers and it is currently not possible to receive all subscribers (`hive-139531` has 1005 subscribers in total). A way to receive all subscribers could be parsing `get_activities`, as there is an entry for each new subscriber. ## Communities `Communities` returns a list of registred communities. The communities inside the list can be printed by `printAsTable()` and it is possible to search the community title for a match: ``` from beem.community import Communities communities = Communities(limit=100) communities.search_title("dev").printAsTable() ``` returns ``` +-----+-------------+----------+------+-------------+-------------+-------------+-------------+ | Nr. | Name | Title | lang | subscribers | sum_pending | num_pending | num_authors | +-----+-------------+----------+------+-------------+-------------+-------------+-------------+ | 1 | hive-139531 | HiveDevs | en | 1000 | 945 | 236 | 113 | +-----+-------------+----------+------+-------------+-------------+-------------+-------------+ ``` The limit of returned communities can be increased by using the `limit` parameter: ``` from beem.community import Communities communities = Communities(limit=1000) communities.search_title("dev").printAsTable() ``` returns ``` +-----+-------------+---------------+------+-------------+-------------+-------------+-------------+ | Nr. | Name | Title | lang | subscribers | sum_pending | num_pending | num_authors | +-----+-------------+---------------+------+-------------+-------------+-------------+-------------+ | 1 | hive-139531 | HiveDevs | en | 1000 | 945 | 236 | 113 | | 2 | hive-152825 | DEVCOIN | en | 2 | 0 | 5 | 2 | | 3 | hive-199094 | Devotionals | en | 1 | 0 | 3 | 1 | | 4 | hive-192808 | kr-dev-center | kr | 20 | 0 | 0 | 0 | | 5 | hive-150008 | Game Dev | en | 12 | 0 | 0 | 0 | | 6 | hive-101482 | BeeWiki.Dev | en | 6 | 0 | 0 | 0 | +-----+-------------+---------------+------+-------------+-------------+-------------+-------------+ ``` Searching a community by its title was also added to `beempy createpost`  Currently a title is searched in the top 1000. ## Broadcasting community related ops The following shows all operation that can be broadcasted: ``` from beem.community import Community community = Community("hive-111111") community.set_role("account_a", "mod", "new mod") community.set_user_title("account_b", "investor") community.mute_post("author_a", "permlink_a", "spam", "mod_a") community.unmute_post("author_a", "permlink_a", "no spam", "mod_a") community.update_props("My Community", "Great community", False, "About me", "Not about me", "admin_a") community.subscribe("user_c") community.unsubscribe("user_c") community.pin_post("author_a", "permlink_a", "mod_a") community.unpin_post("author_a", "permlink_a", "mod_a") community.flag_post("author_a", "permlink_a", "please check", "user_a") ``` ## HiveSigner / steemconnect I removed the SteemConnect class from beem, as steemconnect.com is no longer working. I fixed the token parameter in HiveSigner: ``` from beem.HiveSigner import HiveSigner hs = HiveSigner(token=["32..."]) print(hs.me()) ``` where 32... is a valid HiveSinger token. ## Improved beempy stream ``` beempy stream -t -f ``` retuns now a table for each block: ``` +----------+---------+-------------+------------------------------------------------------+ | blocknum | trx_num | type | content | +----------+---------+-------------+------------------------------------------------------+ | 45157440 | 0 | custom_json | sm_submit_team | | 45157440 | 1 | custom_json | sm_find_match | | 45157440 | 2 | vote | 100.00% @mattsanthonyit/uty6wgup4ul - mattsanthonyit | | 45157440 | 3 | custom_json | sm_find_match | | 45157440 | 4 | custom_json | sm_find_match | | 45157440 | 5 | custom_json | sm_find_match | | 45157440 | 6 | custom_json | sm_find_match | | 45157440 | 7 | custom_json | sm_find_match | | 45157440 | 8 | custom_json | sm_find_match | | 45157440 | 9 | custom_json | sm_submit_team | | 45157440 | 10 | custom_json | sm_submit_team | | 45157440 | 11 | custom_json | sm_find_match | | 45157440 | 12 | custom_json | sm_find_match | | 45157440 | 13 | custom_json | sm_find_match | | 45157440 | 14 | custom_json | scot_claim_token | | 45157440 | 15 | vote | 5.00% @xr-hammergaming/52ktvx97870 - innerhive | | 45157440 | 16 | custom_json | sm_find_match | +----------+---------+-------------+------------------------------------------------------+ ``` where custom_json, vote, transfer and transfer_to_vesting have a shortened output. ``` beempy stream -f ``` streams the output in raw format. ## Blurt As some beem users were interested in using beem on blurt, I added a Blurt class to beem. This adds support for blurt to beempy. The following commands will change the nodes, and check if they are set ``` beempy updatenodes --blurt beempy config ``` It is then possible to check the amount of powered up BLURT and to power it down by ``` beempy power holger80 beempy powerdown -a holger80 33244 ``` The powerdown command will ask for your active keys. You can check the activity on blurt by ``` beempy stream -t ``` you need to be patient, as there is currently not much activity...: ``` {'block_num': 306762, 'op': ['withdraw_vesting', {'account': 'oth1', 'vesting_shares': {'amount': '36699505048', 'nai': '@@000000037', 'timestamp': '2020-07-14T21:53:57', 'trx_num': 0} {'block_num': 306765, 'op': ['vote', {'author': 'discernente', 'permlink': '0alhcnfp0r7dh2t', 'voter': 'discernente', 'weight': 10000}], 'timestamp': '2020-07-14T21:54:06', 'trx_num': 0} ``` You can switch back to hive with: ``` beempy updatenodes --hive ``` The Blurt class can be used to simplify the access to the Blurt blockchain: ``` from beem import Blurt blurt = Blurt(node= ["https://rpc.blurt.world", "https://blurt-rpc.steem.buzz"]) print(blurt) ``` returns ``` <Blurt node=https://rpc.blurt.world, nobroadcast=False> ``` ___ *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-add-community-support |
category | hive-139531 |
json_metadata | "{"canonical_url": "https://hive.blog/hive-139531/@holger80/update-for-beem-add-community-support", "community": "hive-139531", "app": "beempy/0.24.5", "users": ["mattsanthonyit", "joshman", "xr-hammergaming"], "links": ["https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://discord.gg/4HM592V", "https://blurt-rpc.steem.buzz", "https://peakd.com/witnesses", "https://images.hive.blog/DQmUZ5J5Z4ov6aXobXunqGybcdkdiVHui5Y8jJ58MNVVKpY/image", "https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo", "https://rpc.blurt.world", "https://rpc.blurt.world,", "https://github.com/holgern/beem", "https://discord.gg/cvnByhu"], "tags": ["development", "beem", "python", "community"]}" |
created | 2020-07-14 22:12:51 |
last_update | 2020-07-14 22:12:51 |
depth | 0 |
children | 8 |
last_payout | 2020-07-21 22:12:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 38.848 HBD |
curator_payout_value | 28.836 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,705 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,523,092 |
net_rshares | 190,776,545,484,954 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 892,247,288,825 | 100% | ||
steempty | 0 | 12,163,584,968,386 | 100% | ||
enki | 0 | 9,288,483,380,868 | 50% | ||
tombstone | 0 | 159,790,176,640 | 7.5% | ||
simba | 0 | 57,011,909,622 | 100% | ||
fractalnode | 0 | 21,566,105,258 | 100% | ||
onealfa | 0 | 150,473,936,705 | 7.83% | ||
kingscrown | 0 | 1,538,829,979,364 | 20% | ||
flemingfarm | 0 | 140,253,437,781 | 80% | ||
mark-waser | 0 | 476,241,775,036 | 100% | ||
gerber | 0 | 1,369,163,978,929 | 20.8% | ||
ezzy | 0 | 1,620,458,608,607 | 20.8% | ||
inertia | 0 | 1,020,869,936,308 | 100% | ||
kendewitt | 0 | 364,574,461,963 | 100% | ||
arcange | 0 | 62,733,480,696 | 2% | ||
exyle | 0 | 1,799,529,617,926 | 20.8% | ||
sharker | 0 | 5,123,379,179 | 13.06% | ||
raphaelle | 0 | 1,632,602,190 | 2% | ||
marius19 | 0 | 11,661,680,882 | 100% | ||
ace108 | 0 | 113,874,771,706 | 4% | ||
logic | 0 | 244,230,504,595 | 60% | ||
kibela | 0 | 4,213,879,208 | 13.75% | ||
twinner | 0 | 4,468,693,323,375 | 25% | ||
timcliff | 0 | 1,271,210,935,014 | 100% | ||
laoyao | 0 | 47,238,488,897 | 100% | ||
somebody | 0 | 1,159,931,836 | 100% | ||
midnightoil | 0 | 165,758,670,372 | 100% | ||
alinalazareva | 0 | 618,653,845 | 10% | ||
xiaohui | 0 | 937,853,292,931 | 100% | ||
jphamer1 | 0 | 8,612,301,721,846 | 100% | ||
oflyhigh | 0 | 4,926,479,066,534 | 100% | ||
fooblic | 0 | 28,107,171,455 | 99% | ||
borran | 0 | 515,698,604,603 | 75% | ||
yulan | 0 | 16,645,614,750 | 100% | ||
anech512 | 0 | 9,207,171,165 | 25% | ||
helene | 0 | 1,233,802,381,769 | 100% | ||
lemouth | 0 | 1,739,361,942,429 | 100% | ||
uwelang | 0 | 1,012,351,706,585 | 100% | ||
aggroed | 0 | 6,782,907,887,395 | 100% | ||
digital-wisdom | 0 | 539,853,875,988 | 100% | ||
ethical-ai | 0 | 1,998,940,270 | 100% | ||
jwaser | 0 | 24,142,394,399 | 100% | ||
petrvl | 0 | 34,887,890,832 | 4.5% | ||
bwaser | 0 | 12,219,423,533 | 100% | ||
abh12345 | 0 | 742,008,276,566 | 25% | ||
funnyman | 0 | 3,219,406,512 | 20% | ||
steemcleaners | 0 | 3,688,085,651,140 | 60% | ||
justyy | 0 | 89,497,412,964 | 10% | ||
ellepdub | 0 | 1,654,435,466 | 100% | ||
herpetologyguy | 0 | 170,419,219,967 | 100% | ||
morgan.waser | 0 | 25,313,210,587 | 100% | ||
okean123 | 0 | 31,467,104,579 | 100% | ||
ssekulji | 0 | 48,051,835,187 | 100% | ||
handyman | 0 | 3,332,584,578 | 100% | ||
strong-ai | 0 | 2,044,931,270 | 100% | ||
busy.pay | 0 | 274,352,661,198 | 100% | ||
gamer00 | 0 | 67,623,194,173 | 5% | ||
techslut | 0 | 109,602,445,644 | 20% | ||
triviummethod | 0 | 553,845,981 | 100% | ||
slider2990 | 0 | 49,507,792,450 | 25% | ||
judasp | 0 | 380,421,983,743 | 100% | ||
busy.org | 0 | 346,135,627,679 | 100% | ||
technoprogressiv | 0 | 979,695,527 | 100% | ||
askari | 0 | 55,525,184,322 | 100% | ||
blackbunny | 0 | 74,150,096,659 | 100% | ||
lingfei | 0 | 82,107,907,569 | 100% | ||
tarazkp | 0 | 2,297,047,237,016 | 50% | ||
sudutpandang | 0 | 4,533,507,627 | 100% | ||
markkujantunen | 0 | 121,357,505,061 | 100% | ||
evildeathcore | 0 | 11,382,206,645 | 100% | ||
tabea | 0 | 31,065,326,551 | 30% | ||
danielsaori | 0 | 124,036,704,079 | 100% | ||
louisthomas | 0 | 98,731,192,596 | 100% | ||
dhimmel | 0 | 5,952,351,621,852 | 100% | ||
freebornsociety | 0 | 1,829,192,626 | 10% | ||
elevator09 | 0 | 166,831,782,802 | 100% | ||
sepracore | 0 | 516,141,046,178 | 18.75% | ||
dune69 | 0 | 79,819,544,647 | 20.8% | ||
bobskibob | 0 | 84,713,276,733 | 50% | ||
jerrybanfield | 0 | 985,108,166,338 | 100% | ||
mys | 0 | 5,640,161,744 | 2.08% | ||
steempearls | 0 | 498,126,981 | 15% | ||
rycharde | 0 | 1,179,230,155 | 10% | ||
exec | 0 | 249,914,644,564 | 100% | ||
eval | 0 | 853,295,792 | 100% | ||
taitux | 0 | 537,795,769 | 20.8% | ||
mxzn | 0 | 3,347,067,918 | 10% | ||
jeanpi1908 | 0 | 66,002,294,102 | 50% | ||
belahejna | 0 | 6,046,050,099 | 4.5% | ||
giuatt07 | 0 | 308,694,655,452 | 25% | ||
lelon | 0 | 12,602,613,943 | 100% | ||
skepticology | 0 | 2,643,508,433 | 100% | ||
maxer27 | 0 | 127,698,230,137 | 25% | ||
wf9877 | 0 | 62,151,941,420 | 100% | ||
blacklux | 0 | 34,941,103,926 | 100% | ||
sam99 | 0 | 19,549,214,716 | 100% | ||
jayna | 0 | 17,001,366,610 | 5% | ||
ew-and-patterns | 0 | 192,748,578,869 | 9% | ||
avisk | 0 | 1,179,411,956 | 100% | ||
whd | 0 | 2,361,229,677 | 2.08% | ||
d-pend | 0 | 5,769,468,334 | 0.2% | ||
offgridlife | 0 | 536,316,259,860 | 100% | ||
gunthertopp | 0 | 4,323,740,329,456 | 100% | ||
binkyprod | 0 | 30,787,399,431 | 50% | ||
benedict08 | 0 | 168,895,621,038 | 50% | ||
kiokizz | 0 | 4,988,277,693 | 37.12% | ||
mcoinz79 | 0 | 14,865,883,914 | 100% | ||
bubke | 0 | 2,656,849,484,377 | 100% | ||
maskur2840 | 0 | 6,363,903,616 | 100% | ||
jacekw | 0 | 64,596,951,348 | 100% | ||
approximate | 0 | 833,263,928 | 37.12% | ||
drorion | 0 | 124,252,453,210 | 100% | ||
haejin | 0 | 11,560,592,805,625 | 100% | ||
codingdefined | 0 | 318,422,717,039 | 100% | ||
hope-on-fire | 0 | 170,248,259,945 | 26% | ||
nicniezgrublem | 0 | 808,600,205 | 19.76% | ||
shitsignals | 0 | 8,509,499,581 | 20.8% | ||
shebe | 0 | 56,698,849,662 | 90% | ||
tykee | 0 | 3,250,796,524 | 50% | ||
yoogyart | 0 | 57,049,671,886 | 100% | ||
bronkong | 0 | 358,929,589,156 | 100% | ||
investingpennies | 0 | 259,627,302,873 | 100% | ||
kiobot | 0 | 632,991,331 | 37.12% | ||
onetin84 | 0 | 755,443,531,155 | 100% | ||
my451r | 0 | 30,742,960,424 | 100% | ||
felander | 0 | 108,035,900,416 | 20.8% | ||
rehan12 | 0 | 33,439,269,747 | 20% | ||
santigs | 0 | 22,774,489,808 | 59% | ||
nadhora | 0 | 8,084,184,479 | 42% | ||
bashadow | 0 | 51,052,976,405 | 25% | ||
tipu | 0 | 7,228,592,860,174 | 20.01% | ||
redouanemez | 0 | 58,121,735,001 | 30% | ||
jedigeiss | 0 | 1,390,503,079,711 | 100% | ||
crokkon | 0 | 30,504,772,251 | 100% | ||
fbslo | 0 | 3,943,144,069 | 1.04% | ||
accelerator | 0 | 49,252,126,606 | 5% | ||
paullifefit | 0 | 1,319,492,576 | 75% | ||
yogacoach | 0 | 9,634,629,751 | 10.4% | ||
therealwolf | 0 | 6,923,365,119,617 | 25% | ||
cotarelo | 0 | 63,634,167,689 | 100% | ||
deathwing | 0 | 21,871,765,100 | 20.8% | ||
scorer | 0 | 4,658,595,553 | 100% | ||
revisesociology | 0 | 351,462,888,248 | 30% | ||
espoem | 0 | 300,173,454,713 | 100% | ||
afrikablr | 0 | 8,677,501,297 | 100% | ||
isnochys | 0 | 28,932,191,040 | 18% | ||
shadflyfilms | 0 | 8,772,395,153 | 100% | ||
afukichi | 0 | 11,402,501,516 | 100% | ||
daisyphotography | 0 | 41,126,147,196 | 100% | ||
liverpool-fan | 0 | 551,720,587 | 10% | ||
fulcrumleader | 0 | 5,501,522,656 | 100% | ||
feelx | 0 | 1,060,003,207 | 100% | ||
arabisouri | 0 | 56,974,931,202 | 100% | ||
caladan | 0 | 78,450,023,028 | 20.8% | ||
ronak10 | 0 | 8,676,667,728 | 100% | ||
mrsyria | 0 | 967,930,089 | 100% | ||
xr-hammergaming | 0 | 15,911,148,879 | 100% | ||
dkid14 | 0 | 466,310,609,358 | 49.5% | ||
tradingideas | 0 | 14,352,418,544 | 100% | ||
jexus77 | 0 | 1,361,360,435 | 100% | ||
quekery | 0 | 68,670,434,899 | 50% | ||
emrebeyler | 0 | 486,504,518,604 | 20.8% | ||
zakia | 0 | 33,585,143,020 | 100% | ||
irynochka | 0 | 142,887,031 | 100% | ||
smartsteem | 0 | 1,449,561,106,585 | 25% | ||
shaotech | 0 | 247,896,213 | 100% | ||
anli | 0 | 6,154,772,387 | 99% | ||
andrepol | 0 | 5,542,190,429 | 99% | ||
mytechtrail | 0 | 39,008,734,724 | 15% | ||
cloris | 0 | 1,290,896,498 | 100% | ||
aquinotyron3 | 0 | 2,843,544,893 | 100% | ||
obvious | 0 | 109,194,472,344 | 50% | ||
nokodemion | 0 | 26,693,932,431 | 100% | ||
kamchore | 0 | 160,119,479,952 | 100% | ||
smooms | 0 | 19,821,313,245 | 50% | ||
steembasicincome | 0 | 2,309,464,541,844 | 100% | ||
jpphotography | 0 | 4,852,949,176 | 36.64% | ||
solips | 0 | 460,952,682,726 | 100% | ||
candyboy | 0 | 5,042,827,170 | 100% | ||
mineopoly | 0 | 8,936,016,934 | 100% | ||
phortun | 0 | 193,026,726,728 | 30% | ||
oliverschmid | 0 | 443,685,666,860 | 100% | ||
abitcoinskeptic | 0 | 44,558,079,199 | 20% | ||
kissi | 0 | 14,239,900,858 | 75% | ||
jewel-lover | 0 | 1,396,073,643 | 100% | ||
alexanderfluke | 0 | 21,602,811,107 | 3% | ||
jongolson | 0 | 525,454,556,852 | 50% | ||
bartheek | 0 | 27,967,187,349 | 10% | ||
slashformotion | 0 | 1,393,761,118 | 100% | ||
korinkrafting | 0 | 793,842,882 | 22.5% | ||
nealmcspadden | 0 | 537,919,701,960 | 20.8% | ||
bala41288 | 0 | 40,645,149,228 | 20% | ||
mermaidvampire | 0 | 12,205,598,536 | 45% | ||
ahmedsy | 0 | 2,512,922,542 | 100% | ||
purefood | 0 | 330,111,374,596 | 20.8% | ||
soyrosa | 0 | 1,198,291,523,313 | 100% | ||
chrismadcboy2016 | 0 | 35,868,645,940 | 100% | ||
jimcustodio | 0 | 1,827,041,288 | 50% | ||
vaansteam | 0 | 2,328,106,870 | 30% | ||
casberp | 0 | 62,427,384,858 | 21.99% | ||
philnewton | 0 | 840,636,681 | 12.5% | ||
udabeu | 0 | 11,980,190,549 | 41% | ||
kyju | 0 | 5,027,451,729 | 100% | ||
artjohn | 0 | 1,469,841,425 | 100% | ||
chronocrypto | 0 | 902,383,216,246 | 20.8% | ||
nobyeni | 0 | 2,506,886,571 | 5% | ||
holger80 | 0 | 2,187,878,700,279 | 51% | ||
unconditionalove | 0 | 2,132,152,093 | 10.4% | ||
cadawg | 0 | 42,782,711,462 | 14.56% | ||
gavinatorial | 0 | 873,217,567 | 100% | ||
ericburgoyne | 0 | 3,269,106,943 | 25% | ||
sweetkathy | 0 | 2,176,626,724 | 100% | ||
sudefteri | 0 | 21,907,589,680 | 100% | ||
happy-soul | 0 | 89,171,137,493 | 10% | ||
photohunter4 | 0 | 1,086,585,912 | 100% | ||
photohunter5 | 0 | 1,094,137,960 | 100% | ||
pkocjan | 0 | 8,818,114,755 | 16.64% | ||
maxpatternman | 0 | 31,083,807,835 | 100% | ||
condeas | 0 | 1,408,184,495,925 | 100% | ||
anikys3reasure | 0 | 2,211,853,178 | 50% | ||
onlavu | 0 | 3,560,383,434 | 15% | ||
flugschwein | 0 | 32,716,464,899 | 75% | ||
hasmez | 0 | 95,680,031,346 | 100% | ||
cst90 | 0 | 54,085,617,897 | 100% | ||
matschi | 0 | 3,564,679,983 | 100% | ||
jjal | 0 | 1,083,341,820 | 100% | ||
whack.science | 0 | 138,255,000,787 | 35% | ||
akifane | 0 | 3,727,600,719 | 100% | ||
russellstockley | 0 | 2,418,876,939 | 10% | ||
futurecurrency | 0 | 17,347,133,050 | 30% | ||
losi | 0 | 7,795,619,858 | 100% | ||
idkpdx | 0 | 10,171,322,279 | 100% | ||
leeyh | 0 | 762,585,331,196 | 100% | ||
backinblackdevil | 0 | 500,925,792,904 | 50% | ||
oadissin | 0 | 31,678,592,936 | 100% | ||
properfraction | 0 | 41,333,102,439 | 100% | ||
erikah | 0 | 191,907,223,298 | 25% | ||
satren | 0 | 90,165,977,461 | 30% | ||
lauchmelder | 0 | 4,904,181,953 | 100% | ||
amico | 0 | 1,023,496,599,175 | 97.69% | ||
beleg | 0 | 916,464,592 | 2.08% | ||
marcus0alameda | 0 | 937,873,970 | 50% | ||
bestboom | 0 | 85,823,176,119 | 20.8% | ||
eunsik | 0 | 293,809,679,681 | 50% | ||
onepercentbetter | 0 | 206,624,129,577 | 100% | ||
manniman | 0 | 63,409,615,537 | 33% | ||
ronaldoavelino | 0 | 154,448,817,771 | 40% | ||
schlafhacking | 0 | 297,764,475,600 | 100% | ||
lesmouths-travel | 0 | 7,823,248,126 | 100% | ||
sbi2 | 0 | 1,631,939,337,523 | 100% | ||
sekhet | 0 | 301,550,486 | 100% | ||
dera123 | 0 | 1,091,005,270,669 | 100% | ||
jkramer | 0 | 1,034,023,644,691 | 100% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 95,078,182,489 | 20.8% | ||
alitavirgen | 0 | 586,593,419 | 15.4% | ||
gadrian | 0 | 164,462,084,257 | 100% | ||
garybilbao | 0 | 1,470,744,770 | 50% | ||
themightyvolcano | 0 | 31,667,266,535 | 20.8% | ||
iseeyouvee | 0 | 1,204,559,681 | 20.8% | ||
dreimaldad | 0 | 81,777,021,959 | 40% | ||
julialee66 | 0 | 8,241,742,902,228 | 51% | ||
saboin | 0 | 102,037,846,593 | 11% | ||
ifunnymemes | 0 | 6,717,829,887 | 10.4% | ||
hwangmadam | 0 | 2,477,318,368 | 100% | ||
stefannikolov | 0 | 1,049,177,743 | 10% | ||
sbi3 | 0 | 1,150,709,915,630 | 100% | ||
gagago | 0 | 10,125,088,626 | 100% | ||
promobot | 0 | 124,272,904,856 | 100% | ||
superlao | 0 | 19,874,102,141 | 100% | ||
glodniwiedzy | 0 | 5,906,976,685 | 19.76% | ||
sbi4 | 0 | 817,080,904,974 | 100% | ||
fw206 | 0 | 1,631,266,985,952 | 100% | ||
slobberchops | 0 | 2,352,711,693,386 | 50% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
blockchainstudio | 0 | 6,302,004,640 | 100% | ||
davidesimoncini | 0 | 5,671,733,902 | 18% | ||
angatt | 0 | 546,100,096 | 9.88% | ||
spamfarmer | 0 | 1,040,414,231 | 25% | ||
linnyplant | 0 | 43,335,376,461 | 100% | ||
cryptoandcoffee | 0 | 507,422,807,331 | 50% | ||
bluewall | 0 | 30,269,015,105 | 100% | ||
solarwarrior | 0 | 1,536,877,805,459 | 100% | ||
merlion | 0 | 42,765,462,851 | 100% | ||
simplegame | 0 | 119,431,619,078 | 100% | ||
digital.mine | 0 | 163,952,567,130 | 1% | ||
sbi5 | 0 | 614,103,387,370 | 100% | ||
swisswitness | 0 | 12,596,849,119 | 20.8% | ||
kahvesizlik | 0 | 1,306,514,230 | 100% | ||
inteligente | 0 | 29,613,448 | 21.99% | ||
moneybaby | 0 | 865,759,533 | 2.5% | ||
kriang3tee | 0 | 5,026,787,852 | 75% | ||
imtase | 0 | 656,880,476 | 75% | ||
longer | 0 | 2,371,295,506 | 5% | ||
agathusia | 0 | 774,580,018 | 100% | ||
sbi6 | 0 | 435,408,009,111 | 100% | ||
libuska | 0 | 1,978,776,401 | 100% | ||
drsensor | 0 | 2,174,644,421 | 80% | ||
carita-feliz | 0 | 1,513,967,454 | 100% | ||
donald.porter | 0 | 228,493,523,629 | 40.02% | ||
vida-blanca | 0 | 5,714,245,849 | 100% | ||
urdreamscometrue | 0 | 23,088,764,884 | 100% | ||
gallerani | 0 | 1,285,108,094 | 20.8% | ||
pagliozzo | 0 | 4,027,815,098 | 20% | ||
baiboua | 0 | 8,866,699,020 | 75% | ||
sonder-an | 0 | 323,513,343 | 100% | ||
akioexzgamer | 0 | 35,849,501 | 75% | ||
gerdtrudroepke | 0 | 25,251,654,536 | 50% | ||
daath | 0 | 2,009,011,872 | 100% | ||
dalz | 0 | 28,771,440,869 | 10.4% | ||
french-tech | 0 | 17,135,997,865 | 75% | ||
yuza | 0 | 1,296,804,284 | 75% | ||
pvinny69 | 0 | 6,810,823,726 | 25% | ||
goumao | 0 | 7,784,899,555 | 100% | ||
sbi7 | 0 | 322,865,694,636 | 100% | ||
julian2013 | 0 | 902,743,261 | 0.93% | ||
dlike | 0 | 257,338,155,931 | 20.8% | ||
triptolemus | 0 | 1,959,695,143 | 20.8% | ||
paopaoza | 0 | 2,355,750,191 | 75% | ||
gorbisan | 0 | 1,647,904,006 | 1.04% | ||
fullnodeupdate | 0 | 13,183,759,497 | 51% | ||
ten-years-before | 0 | 168,776,392 | 75% | ||
engrave | 0 | 278,107,958,942 | 19.76% | ||
furioslosi | 0 | 2,673,459,777 | 100% | ||
kr-coffeesteem | 0 | 56,227,845,717 | 100% | ||
arkmy | 0 | 907,409,359 | 84% | ||
a-bot | 0 | 35,097,196,859 | 100% | ||
bobby.madagascar | 0 | 7,412,061,570 | 5.2% | ||
laissez-faire | 0 | 16,640,819 | 100% | ||
cultus-forex | 0 | 83,331,985,581 | 100% | ||
musinka | 0 | 2,012,059,650 | 100% | ||
puza | 0 | 1,040,729,228 | 75% | ||
reverendrum | 0 | 732,967,168 | 49.5% | ||
crypto.story | 0 | 91,126,692 | 75% | ||
sbi8 | 0 | 227,701,397,268 | 100% | ||
univers.crypto | 0 | 256,328,881 | 75% | ||
ibc | 0 | 15,735,315,356 | 100% | ||
mintrawa | 0 | 1,088,459,739 | 75% | ||
ldp | 0 | 2,976,382,722 | 20.8% | ||
mannaman | 0 | 696,730,408 | 99% | ||
sbi9 | 0 | 143,477,109,992 | 100% | ||
actifit-peter | 0 | 413,109,382,793 | 99.31% | ||
besheda | 0 | 1,018,162,282 | 43% | ||
diegor | 0 | 28,712,348,840 | 100% | ||
thrasher666 | 0 | 1,684,631,316 | 60% | ||
everyoung | 0 | 507,183,488 | 100% | ||
florino | 0 | 811,090,070 | 15% | ||
linuxbot | 0 | 725,358,530 | 100% | ||
actnearn | 0 | 1,142,726,033,796 | 100% | ||
forecasteem | 0 | 188,987,889,490 | 100% | ||
eliasseth | 0 | 4,689,715,389 | 100% | ||
followjohngalt | 0 | 117,938,036,301 | 20.8% | ||
mistia | 0 | 6,427,482,477 | 100% | ||
glastar | 0 | 1,001,015,626,512 | 100% | ||
avel692 | 0 | 8,336,983,004 | 50% | ||
sbi10 | 0 | 137,780,451,157 | 100% | ||
dein-problem | 0 | 0 | -0.25% | ||
smonia | 0 | 1,381,721,661 | 100% | ||
moneytron | 0 | 17,363,306,919 | 100% | ||
starrouge | 0 | 609,095,514 | 30% | ||
wherein | 0 | 383,441,099,020 | 60% | ||
brucutu | 0 | 10,906,020,571 | 50% | ||
bluerobo | 0 | 69,156,771,653 | 100% | ||
zerofive | 0 | 577,754,278 | 30% | ||
j-p-bs | 0 | 1,038,349,311 | 50% | ||
smon-fan | 0 | 1,612,769,627 | 100% | ||
muntaharaceh | 0 | 1,264,062,875 | 100% | ||
seekingalpha | 0 | 718,289,244 | 100% | ||
brucutu1 | 0 | 4,335,535,229 | 100% | ||
brucutu2 | 0 | 4,358,233,487 | 100% | ||
tr777 | 0 | 1,284,133,821 | 100% | ||
sm-jewel | 0 | 736,495,028 | 100% | ||
tr77 | 0 | 702,707,327 | 100% | ||
smoner | 0 | 755,805,998 | 100% | ||
flyingbolt | 0 | 1,548,616,378 | 20.8% | ||
determine | 0 | 1,253,926,781 | 20.8% | ||
smonian | 0 | 1,047,825,943 | 100% | ||
cnstm | 0 | 172,103,896,601 | 60% | ||
tonalddrump | 0 | 2,208,221,942 | 50% | ||
permaculturedude | 0 | 4,147,295,613 | 10.4% | ||
likuang007 | 0 | 1,935,535,714 | 60% | ||
sm-lvl1 | 0 | 533,357,363 | 37.12% | ||
tubiska | 0 | 4,339,470,223 | 100% | ||
pocoto | 0 | 4,495,402,479 | 100% | ||
circa | 0 | 174,021,338,375 | 100% | ||
idiosyncratic1 | 0 | 10,663,851,102 | 100% | ||
kitty-kitty | 0 | 4,507,197,039 | 100% | ||
jamesbattler | 0 | 141,543,295,846 | 100% | ||
jussara | 0 | 4,571,542,264 | 100% | ||
cyrillo | 0 | 4,381,014,392 | 100% | ||
smon-joa | 0 | 17,721,978,866 | 100% | ||
jjangjjanggirl | 0 | 706,617,227 | 100% | ||
lianjingmedia | 0 | 582,403,305 | 60% | ||
broxi | 0 | 10,076,744,710 | 50% | ||
hanke | 0 | 6,089,201,270 | 100% | ||
goodcontentbot | 0 | 806,920,131 | 15% | ||
curationvoter | 0 | 21,472,497,418 | 50% | ||
landshutbrauhaus | 0 | 5,951,690,505 | 100% | ||
darhainer | 0 | 553,127,098 | 37.12% | ||
realgoodcontent | 0 | 962,725,689 | 100% | ||
leeyh2 | 0 | 21,103,386,819 | 100% | ||
mia-cc | 0 | 2,532,395,998 | 20.01% | ||
richie.rich | 0 | 13,946,570,085 | 100% | ||
hungrybear | 0 | 8,113,909,177 | 100% | ||
hamsa.quality | 0 | 6,605,491,295 | 100% | ||
carioca | 0 | 4,450,554,189 | 100% | ||
abbenay | 0 | 10,965,648,854 | 50% | ||
sm-skynet | 0 | 989,452,367 | 100% | ||
smonbear | 0 | 739,638,211 | 100% | ||
bewithbreath | 0 | 2,579,609,423 | 5% | ||
denizcakmak | 0 | 793,441,676 | 100% | ||
hungryharish | 0 | 1,492,755,912 | 5.2% | ||
cpt-sparrow | 0 | 10,928,048,458 | 100% | ||
marymi | 0 | 469,487,943 | 100% | ||
ttg | 0 | 437,839,886,289 | 100% | ||
kryptogames | 0 | 90,660,589,623 | 20.01% | ||
mfblack | 0 | 16,533,049,942 | 19.76% | ||
steemcartel | 0 | 3,559,382,485 | 50% | ||
szf | 0 | 964,793,794 | 50% | ||
blue.rabbit | 0 | 737,120,388,481 | 100% | ||
maryincryptoland | 0 | 21,399,922,264 | 100% | ||
epicdice | 0 | 52,507,231,207 | 7.5% | ||
battlegames | 0 | 426,338,537,869 | 99% | ||
raspibot | 0 | 3,620,493,250 | 100% | ||
blockchainpeople | 0 | 114,968,016 | 21.99% | ||
monsterjamgold | 0 | 160,468,961,790 | 100% | ||
gulf41 | 0 | 6,129,052,514 | 100% | ||
sm-silva | 0 | 2,394,594,269 | 10.4% | ||
naltedtirt | 0 | 1,970,245,973 | 50% | ||
canercanbolat | 0 | 822,330,711 | 100% | ||
ssc-token | 0 | 793,555,579 | 100% | ||
hjlee119 | 0 | 1,945,777,629 | 51% | ||
steementertainer | 0 | 11,715,525,395 | 75% | ||
stickstore | 0 | 391,453,268 | 50% | ||
likwid | 0 | 14,287,971,116,708 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
romanreigns | 0 | 342,913,036 | 100% | ||
dachcolony | 0 | 18,866,828,620 | 100% | ||
tinyhousecryptos | 0 | 532,246,976 | 5% | ||
tradingideas2 | 0 | 220,791,430 | 100% | ||
plankton.token | 0 | 28,170,751,102 | 30% | ||
captain.kirk | 0 | 7,392,769,652 | 50% | ||
leighscotford | 0 | 1,528,683,463 | 4% | ||
oxoskva | 0 | 1,015,343,111 | 100% | ||
iamjohn | 0 | 1,535,982,354 | 25% | ||
firefuture | 0 | 539,860,353 | 10.4% | ||
ilovecanada | 0 | 2,865,995,973 | 50% | ||
steemindian | 0 | 1,982,648,311 | 10.4% | ||
nalexadre | 0 | 407,595,942 | 75% | ||
tomoyan | 0 | 152,321,703,875 | 100% | ||
imbartley | 0 | 1,572,004,900 | 50% | ||
leeyh3 | 0 | 2,579,418,513 | 50% | ||
kgswallet | 0 | 2,908,571,189 | 100% | ||
milu-the-dog | 0 | 9,093,533,918 | 20.8% | ||
lrekt01 | 0 | 2,667,025,926 | 100% | ||
triplea.bot | 0 | 7,563,890,280 | 20.8% | ||
steem.leo | 0 | 551,128,055,530 | 20.8% | ||
tradingideas.spt | 0 | 0 | 100% | ||
condeas.pal | 0 | 837,884,304 | 90% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
votebetting | 0 | 533,961,408,494 | 50% | ||
scotauto | 0 | 4,111,129,254 | 100% | ||
freddio.sport | 0 | 22,138,961,282 | 20.8% | ||
zaku-pal | 0 | 773,223,648 | 20.8% | ||
zaku-leo | 0 | 769,053,845 | 20.8% | ||
babytarazkp | 0 | 3,179,217,500 | 50% | ||
finex | 0 | 26,006,783,956 | 100% | ||
asteroids | 0 | 111,880,699,334 | 18.72% | ||
samscalet | 0 | 2,441,567,817 | 100% | ||
tina-tina | 0 | 300,591,590 | 100% | ||
ticketyboo | 0 | 13,616,638,343 | 100% | ||
ticketywoof | 0 | 13,614,669,464 | 100% | ||
thranax | 0 | 17,863,562,454 | 10% | ||
happiness19 | 0 | 446,731,763 | 100% | ||
knightsunited | 0 | 13,921,749,362 | 100% | ||
sbi-tokens | 0 | 12,781,150,946 | 35.19% | ||
gdhaetae | 0 | 21,004,994 | 100% | ||
one.life | 0 | 3,390,636,224 | 20.75% | ||
oniemaniego | 0 | 4,367,008,558 | 24% | ||
re2pair | 0 | 301,445,638 | 100% | ||
s9211 | 0 | 0 | 100% | ||
maxuvv | 0 | 423,810,026 | 9% | ||
maxuvd | 0 | 20,783,503,438 | 6% | ||
dappcoder | 0 | 2,572,918,913 | 33% | ||
espni | 0 | 534,570,106 | 37.12% | ||
mattsanthonyit | 0 | 174,715,033,792 | 100% | ||
borbina | 0 | 13,716,054,156 | 100% | ||
dnflsms | 0 | 1,118,582,944 | 100% | ||
ctl001 | 0 | 593,960,618 | 100% | ||
jessy22 | 0 | 746,483,156 | 100% | ||
bcm | 0 | 17,657,627,345 | 15% | ||
andylein | 0 | 42,408,245,701 | 50% | ||
hongdangmu | 0 | 3,496,793,807 | 51% | ||
bilpcoinrecords | 0 | 612,317,694 | 12.5% | ||
abh12345.medi | 0 | 39,657,965 | 25% | ||
therealyme | 0 | 1,303,707,119 | 16.64% | ||
thegambit | 0 | 2,525,705,329 | 100% | ||
blocktvnews | 0 | 1,293,633,838 | 10.4% | ||
qwertm | 0 | 3,068,890,645 | 50% | ||
keep-keep | 0 | 274,327,726 | 100% | ||
huaren.news | 0 | 199,231,118,936 | 12% | ||
goodreader | 0 | 3,327,901,754 | 36% | ||
detetive | 0 | 25,641,681 | 21.99% | ||
gerbo | 0 | 216,819,374 | 20.8% | ||
kryptoformator | 0 | 2,067,989,508 | 2.25% | ||
policewala | 0 | 32,790,323,544 | 20% | ||
sportsbuddy | 0 | 251,889,612 | 30% | ||
curationstudio | 0 | 5,805,944,398 | 100% | ||
keepit2 | 0 | 1,196,175,603 | 100% | ||
ribary | 0 | 6,874,198,436 | 10.4% | ||
dollarbills | 0 | 1,464,489,390 | 12% | ||
piratedice | 0 | 931,229,050 | 49.5% | ||
mice-k | 0 | 121,709,985,405 | 20.8% | ||
bcm.dblog | 0 | 2,075,653,000 | 51% | ||
staryao | 0 | 12,852,741,054 | 30% | ||
pixie333 | 0 | 621,034,393 | 100% | ||
drew0 | 0 | 6,340,980,386 | 50% | ||
mehmetfix | 0 | 5,328,380,114 | 100% | ||
steemcityrewards | 0 | 3,853,018,237 | 20.8% | ||
dpend.active | 0 | 6,689,708,297 | 4.16% | ||
stuntman.mike | 0 | 48,856,524,718 | 100% | ||
fengchao | 0 | 1,880,588,921 | 2% | ||
hivewatchers | 0 | 215,149,814,743 | 65% | ||
blue-witness | 0 | 1,453,477,421 | 100% | ||
hellohive | 0 | 1,508,176,343,731 | 100% | ||
mountaingod | 0 | 388,374,928,883 | 100% | ||
hiq | 0 | 35,908,068,116 | 50% | ||
folklure | 0 | 1,732,424,044 | 10.4% | ||
green-finger | 0 | 1,813,002,756 | 51% | ||
gitplait | 0 | 72,912,979,108 | 100% | ||
goldindigo | 0 | 23,282,079,365 | 100% | ||
softworld | 0 | 816,407,414,701 | 55% | ||
polish.hive | 0 | 54,406,580,121 | 20.8% | ||
mcsagel | 0 | 8,022,772,887 | 100% | ||
dcityrewards | 0 | 512,711,384,259 | 20.8% | ||
sketching | 0 | 1,015,400,146 | 10.4% | ||
hiveonboard | 0 | 14,114,903,020 | 18.75% | ||
ninnu | 0 | 6,418,909,126 | 15% | ||
aanjz09123 | 0 | 0 | 100% | ||
traduzindojogos | 0 | 1,856,547,527 | 100% | ||
rz1996 | 0 | 5,306,833,507 | 100% | ||
majoboa18 | 0 | 0 | 100% | ||
ronavel | 0 | 300,854,705,176 | 20% | ||
hivecur | 0 | 547,053,547,985 | 20.8% | ||
lucianav | 0 | 8,501,553,200 | 100% | ||
rollinshive | 0 | 1,929,050,285 | 100% | ||
asa-raw | 0 | 751,030,130,910 | 20% | ||
reza-shamim | 0 | 1,054,801,535 | 34% | ||
dobro2020 | 0 | 1,337,629,752 | 100% | ||
marryiv | 0 | 330,389,767 | 100% | ||
hivebuilderteam | 0 | 1,755,504,913 | 25% | ||
saviour98 | 0 | 0 | 100% | ||
mutabor78 | 0 | 0 | 100% | ||
dikshabihani | 0 | 233,559,983 | 61% | ||
chartreader | 0 | 157,606,782,411 | 20.8% | ||
hivecur2 | 0 | 6,552,096,961 | 20% | ||
hasni007 | 0 | 0 | 100% | ||
recoveryinc | 0 | 9,149,664,471 | 100% | ||
donkeyzhang | 0 | -150,000,000 | -100% | ||
achmdfaisal | 0 | 0 | 100% |
thanks for the update I'm gonna start working too
author | attajuttjj |
---|---|
permlink | re-holger80-qdit54 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.07.1"} |
created | 2020-07-15 17:13:06 |
last_update | 2020-07-15 17:13:06 |
depth | 1 |
children | 0 |
last_payout | 2020-07-22 17:13: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 | 49 |
author_reputation | 1,450,650,803,206 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,537,094 |
net_rshares | 0 |
Congratulations @holger80! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Your post got the highest payout of the day</td></tr> </table> <sub>_You can view [your badges on your board](https://hivebuzz.me/@holger80) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/hivewhale"><img src="https://images.hive.blog/64x128/https://i.imgur.com/rEHA937.png"></a></td><td><a href="/hivebuzz/@hivebuzz/hivewhale">Hive Whale - Make it spray and get your badge!</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/109)!
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-holger80-20200716t002854000z |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-07-16 00:28:54 |
last_update | 2020-07-16 00:28:54 |
depth | 1 |
children | 0 |
last_payout | 2020-07-23 00:28: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 | 1,063 |
author_reputation | 369,409,851,606,973 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,542,875 |
net_rshares | 0 |
Great job my friend @holger80, I was about to go to bed when I saw this notification pop up. You are a genius for short. Keep it up. We need people like you here more than ever. Greetings from Ilorin Nigeria 🇳🇬. Good night.
author | mattsanthonyit |
---|---|
permlink | re-holger80-qdhe7e |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.07.1"} |
created | 2020-07-14 22:52:30 |
last_update | 2020-07-14 22:52:30 |
depth | 1 |
children | 0 |
last_payout | 2020-07-21 22:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 224 |
author_reputation | 1,624,688,404,517,341 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,523,561 |
net_rshares | 213,453,926,264 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 213,453,926,264 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
Followed you few weeks ago 🙌
author | mattsanthonyit |
---|---|
permlink | re-holger80-qdhe8v |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.07.1"} |
created | 2020-07-14 22:53:21 |
last_update | 2020-07-14 22:53:21 |
depth | 1 |
children | 0 |
last_payout | 2020-07-21 22:53: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 | 28 |
author_reputation | 1,624,688,404,517,341 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,523,571 |
net_rshares | 0 |
Hi @holger80, you have received a small bonus upvote from MAXUV. This is to inform you that you now have [new MPATH tokens](https://hive-engine.com/?p=market&t=MPATH) in your Hive-Engine wallet. Please [read this post](https://peakd.com/hive-167922/@mpath/mpath-weekly-report-and-token-distribution-26-april-2020) for more information. Thanks for being a member of both MAXUV *and* MPATH!
author | maxuvv |
---|---|
permlink | re-update-for-beem-add-community-support-20200714t221452z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-07-14 22:14:54 |
last_update | 2020-07-14 22:14:54 |
depth | 1 |
children | 0 |
last_payout | 2020-07-21 22:14: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 | 393 |
author_reputation | 32,074,948,443 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,523,126 |
net_rshares | 0 |
> Remove whaleshares related code Is whaleshares project dead? Their website was down for a week, but now it is back.
author | scorer |
---|---|
permlink | qdhzfw |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-15 06:31:09 |
last_update | 2020-07-15 06:31:09 |
depth | 1 |
children | 1 |
last_payout | 2020-07-22 06:31:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 5,082,149,757,589 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,528,669 |
net_rshares | 213,664,612,478 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 213,664,612,478 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
The WLS chain id is still included into beem. I removed related code for broadcasting, as whaleshares differs to strongly from the current hive codebase and the current implementation was not clean.
author | holger80 |
---|---|
permlink | re-scorer-qdi3i0 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.07.1"} |
created | 2020-07-15 07:58:54 |
last_update | 2020-07-15 07:58:54 |
depth | 2 |
children | 0 |
last_payout | 2020-07-22 07:58:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,529,606 |
net_rshares | 121,893,254,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scorer | 0 | 4,629,951,597 | 100% | ||
anli | 0 | 6,642,160,947 | 99% | ||
andrepol | 0 | 5,542,190,429 | 99% | ||
retinox | 0 | 5,733,340,979 | 33% | ||
dustsweeper | 0 | 98,717,819,089 | 10.37% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
re2pair | 0 | 340,670,078 | 100% | ||
rahmatulyaa24 | 0 | 0 | 100% |
awesome work
author | slashformotion |
---|---|
permlink | re-holger80-qdkxqe |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.07.1"} |
created | 2020-07-16 20:47:03 |
last_update | 2020-07-16 20:47:03 |
depth | 1 |
children | 0 |
last_payout | 2020-07-23 20:47: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 | 12 |
author_reputation | 2,410,764,686,560 |
root_title | "update for beem: add community support" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,559,570 |
net_rshares | 0 |