## 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.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. The list of nodes can be checked with ``` beempy config ``` and ``` beempy currentnode ``` shows the currently connected node. ## Changelog for versions 0.24.0 * new beemstorage module * Config is handled by SqliteConfigurationStore or InRamConfigurationStore * Keys are handled by SqliteEncryptedKeyStore or InRamPlainKeyStore * Move aes to beemgraphenebase * Wallet.keys, Wallet.keyStorage, Wallet.token and Wallet.keyMap has been removed * Wallet.store has now the Key Interface that handles key management * Token handling has been removed from Wallet * Token storage has been move from wallet to SteemConnect/HiveSigner * handle virtual ops batch streaming fixed thanks to @crokkon ## Accessing stored config ``` from beemstorage import SqliteConfigurationStore config = SqliteConfigurationStore() print(config.get("default_account")) ``` returns `holger80`. I can now change the value with: ``` config["default_account"] = "test" ``` This value is now available in all beem instances. A `beempy config` returns now: ``` +-----------------------+---------------------------------------------+ | Key | Value | +-----------------------+---------------------------------------------+ | default_account | test | ``` . The new beemstorage structure makes it easy to access and to modify the config parameters stored inside the sqlite database. ## Accessing stored keys ``` from beemstorage import SqliteConfigurationStore, SqliteEncryptedKeyStore config = SqliteConfigurationStore() key_store = SqliteEncryptedKeyStore(config=config) print(key_store.items()) ``` returns the public key and the encrypted wif of all stored keys. Encryption of the first stored key is done by: ``` key_store.unlock("wallet_phrase") print(key_store.decrypt(key_store.items()[0][1])) ``` where `wallet_phrase` is the set masterpassword. Modifying items of the key_store object will change them for all beem instances on the same PC. ## Use Config and Key storage without writing to file system It is now possible to use a Config and Key store which does not access the beem.sqlite file. ``` from beem import Hive from beem.storage import generate_config_store from beemstorage import InRamConfigurationStore, InRamPlainKeyStore config = generate_config_store(InRamConfigurationStore)() key_store = InRamPlainKeyStore() hive = Hive(config_store=config, key_store=key_store) key_store.add("5K7iVnYgTpG9DVBswdEETBqieCS7MwqhqnyXVN16UQmPJHBReet", "STM7fyvenZ9sJ2SGz5ctNMGzCMii82DR5GSkgPtDhfBVkaYBy8Qfq") print(hive.wallet.getPublicKeys()) ``` return ``` ['STM7fyvenZ9sJ2SGz5ctNMGzCMii82DR5GSkgPtDhfBVkaYBy8Qfq'] ``` It is also possible to use the `keys` parameter in `Hive`: ``` from beem import Hive from beem.storage import generate_config_store from beemstorage import InRamConfigurationStore config = generate_config_store(InRamConfigurationStore)() key_store = InRamPlainKeyStore() hive = Hive(config_store=config, keys=["5K7iVnYgTpG9DVBswdEETBqieCS7MwqhqnyXVN16UQmPJHBReet"]) print(hive.wallet.getPublicKeys()) ``` returns ``` ['STM7fyvenZ9sJ2SGz5ctNMGzCMii82DR5GSkgPtDhfBVkaYBy8Qfq'] ``` The `generate_config_store` function fills the InRamConfigurationStore with default values. ## Creating your own config and key storage It is now also possible to create new key and config storages. E.g. a config/key storage that uses a mongo or a postgres database. The following methods needs to be implemented for creating a new storage class: * ``def setdefault(cls, key, value)`` * ``def __init__(self, *args, **kwargs)`` * ``def __setitem__(self, key, value)`` * ``def __getitem__(self, key)`` * ``def __iter__(self)`` * ``def __len__(self)`` * ``def __contains__(self, key)`` You can take a look at the [sqlite.py](https://github.com/holgern/beem/blob/master/beemstorage/sqlite.py#L173) file which is an implementation for sqlite. ## HiveSigner token storage Token storage for access tokens from HiveSigner and SteemConnect has been moved from the Wallet class to HiveSigner/Steemconnect. HiveSigner uses the same masterpassword than the incrypted key storage. You can create a wallet and set a master password with ``` beempy createwallet ``` The following code stores a valid access token into the token storage and uses the stored token in a `me` API request: ``` from beem.hivesigner import HiveSigner hs = HiveSigner(blockchain_instance=None) hs.unlock("abc123") hs.setToken({"holger80": "ey..."}) ret = hs.me(username="holger80") print(ret["scope"]) ``` returns ``` ['login'] ``` As the token is now stored in the sqlite file, it is also possible to list it with ``` beempy listtoken ``` which returns ``` +----------+-----------+--------+ | name | scope | status | +----------+-----------+--------+ | holger80 | ['login'] | ok | +----------+-----------+--------+ ``` HiveSigner tokens which have a broader scope than login can be used to broadcast transactions. ___ *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-reworking-wallet-and-key-handling |
category | hive-139531 |
json_metadata | "{"canonical_url": "https://hive.blog/hive-139531/@holger80/update-for-beem-reworking-wallet-and-key-handling", "community": "hive-139531", "app": "beempy/0.24.0", "users": ["crokkon"], "links": ["https://github.com/holgern/beem", "https://github.com/holgern/beem/blob/master/beemstorage/sqlite.py#L173", "https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://peakd.com/witnesses", "https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo", "https://discord.gg/4HM592V"], "tags": ["development", "beem", "python", "release"]}" |
created | 2020-06-18 16:02:15 |
last_update | 2020-06-18 16:02:15 |
depth | 0 |
children | 12 |
last_payout | 2020-06-25 16:02:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 94.218 HBD |
curator_payout_value | 75.615 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,857 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,041,008 |
net_rshares | 373,924,611,295,648 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 1,767,137,101,319 | 100% | ||
steempty | 0 | 12,935,468,601,031 | 100% | ||
blocktrades | 0 | 179,035,231,043,437 | 100% | ||
enki | 0 | 9,263,607,785,143 | 50% | ||
tombstone | 0 | 156,447,010,648 | 7.5% | ||
proctologic | 0 | 910,349,073 | 100% | ||
fractalnode | 0 | 21,487,535,817 | 100% | ||
chitty | 0 | 338,558,749,187 | 75% | ||
onealfa | 0 | 174,959,210,837 | 7.97% | ||
kingscrown | 0 | 1,442,530,940,552 | 20% | ||
flemingfarm | 0 | 135,130,824,197 | 80% | ||
oaldamster | 0 | 47,646,734,263 | 100% | ||
mammasitta | 0 | 93,005,291,712 | 17.5% | ||
gerber | 0 | 1,527,299,895,773 | 22.1% | ||
norbu | 0 | 110,627,894,933 | 100% | ||
daan | 0 | 58,373,516,375 | 8% | ||
ezzy | 0 | 1,762,935,011,542 | 22.1% | ||
rxhector | 0 | 22,154,992,116 | 100% | ||
ssjsasha | 0 | 891,291,395,172 | 100% | ||
nascimentoab | 0 | 939,341,175 | 21.99% | ||
inertia | 0 | 840,488,575,398 | 100% | ||
arcange | 0 | 58,768,245,794 | 2% | ||
exyle | 0 | 2,205,333,464,312 | 22.1% | ||
sharker | 0 | 4,322,384,402 | 13.75% | ||
raphaelle | 0 | 1,451,150,429 | 2% | ||
ace108 | 0 | 129,672,252,399 | 4% | ||
logic | 0 | 263,360,540,188 | 65% | ||
kibela | 0 | 3,701,841,881 | 13.75% | ||
timcliff | 0 | 1,135,932,793,817 | 100% | ||
alinalazareva | 0 | 538,400,083 | 10% | ||
jphamer1 | 0 | 4,199,849,255,662 | 100% | ||
djennyfloro | 0 | 1,281,888,128 | 10% | ||
fooblic | 0 | 30,544,191,773 | 100% | ||
kiddarko | 0 | 12,715,340,782 | 10% | ||
fingolfin | 0 | 58,180,235,208 | 100% | ||
borran | 0 | 488,829,898,682 | 75% | ||
anech512 | 0 | 7,386,715,001 | 25% | ||
lemouth | 0 | 1,780,385,520,190 | 100% | ||
stevescoins | 0 | 454,072,606,793 | 100% | ||
netaterra | 0 | 441,169,730,528 | 19.89% | ||
uwelang | 0 | 587,601,886,498 | 51% | ||
dadview | 0 | 2,683,429,988 | 6% | ||
titusfrost | 0 | 38,430,614,095 | 100% | ||
abh12345 | 0 | 566,486,587,944 | 25% | ||
funnyman | 0 | 17,490,290,170 | 20% | ||
steemcleaners | 0 | 3,998,803,001,046 | 65% | ||
justyy | 0 | 84,231,768,433 | 10% | ||
ssekulji | 0 | 25,419,610,999 | 100% | ||
safar01 | 0 | 593,910,480 | 100% | ||
gamer00 | 0 | 65,409,119,777 | 5% | ||
techslut | 0 | 110,976,697,724 | 20% | ||
triviummethod | 0 | 553,845,981 | 100% | ||
judasp | 0 | 386,211,197,153 | 100% | ||
adventureevryday | 0 | 11,734,470,822 | 20% | ||
edb | 0 | 422,759,641,536 | 100% | ||
ixindamix | 0 | 91,614,743,111 | 50% | ||
cardboard | 0 | 11,165,969,657 | 100% | ||
v4vapid | 0 | 15,249,066,836,047 | 100% | ||
em3di | 0 | 2,362,896,863 | 10.99% | ||
kotturinn | 0 | 71,859,514,553 | 100% | ||
tarazkp | 0 | 2,030,992,726,970 | 50% | ||
buzzbeergeek | 0 | 1,168,655,731 | 20% | ||
markkujantunen | 0 | 126,131,659,645 | 100% | ||
tabea | 0 | 24,091,229,104 | 30% | ||
danielsaori | 0 | 366,101,931,267 | 100% | ||
oluwoleolaide | 0 | 43,036,139,408 | 70% | ||
freebornsociety | 0 | 3,160,705,288 | 10% | ||
detlev | 0 | 19,002,512,402 | 1.5% | ||
lizanomadsoul | 0 | 261,169,881,127 | 100% | ||
steemitcitizen | 0 | 819,472,538 | 10% | ||
pichat | 0 | 24,934,299,020 | 100% | ||
dune69 | 0 | 74,121,186,962 | 22.1% | ||
frankydoodle | 0 | 5,519,700,611 | 50% | ||
tamsguitar | 0 | 125,610,756,788 | 100% | ||
cryptocurator | 0 | 326,658,808,003 | 50% | ||
jerrybanfield | 0 | 922,528,271,446 | 100% | ||
rocksg | 0 | 150,513,968,239 | 100% | ||
mys | 0 | 7,548,776,441 | 2.21% | ||
steempearls | 0 | 1,752,574,421 | 15% | ||
peter2017 | 0 | 4,883,445,969 | 100% | ||
yehey | 0 | 1,415,022,123,523 | 100% | ||
mxzn | 0 | 6,526,653,502 | 10% | ||
mdosev | 0 | 3,524,289,938 | 10% | ||
jeanpi1908 | 0 | 31,654,419,396 | 50% | ||
lelon | 0 | 10,977,713,171 | 100% | ||
skepticology | 0 | 2,597,874,909 | 100% | ||
maxer27 | 0 | 133,828,840,690 | 25% | ||
wf9877 | 0 | 282,154,605,843 | 100% | ||
blacklux | 0 | 29,845,990,300 | 100% | ||
skuld2000 | 0 | 12,962,067,072 | 100% | ||
ew-and-patterns | 0 | 217,088,170,927 | 9% | ||
techken | 0 | 6,048,789,686 | 10% | ||
whd | 0 | 2,854,530,918 | 2.21% | ||
d-pend | 0 | 305,837,474,666 | 11.05% | ||
offgridlife | 0 | 252,666,943,574 | 50% | ||
gunthertopp | 0 | 4,253,368,467,588 | 100% | ||
binkyprod | 0 | 31,390,839,557 | 50% | ||
benedict08 | 0 | 198,628,064,871 | 50% | ||
mcoinz79 | 0 | 3,695,676,342,666 | 100% | ||
bubke | 0 | 2,618,822,887,227 | 100% | ||
maskur2840 | 0 | 2,933,006,260 | 100% | ||
jacekw | 0 | 66,480,483,158 | 100% | ||
grecki-bazar-ewy | 0 | 25,308,165,680 | 25% | ||
rafalski | 0 | 1,809,394,416 | 12.37% | ||
codingdefined | 0 | 250,175,156,567 | 100% | ||
shitsignals | 0 | 7,412,145,956 | 22.1% | ||
themarkymark | 0 | 3,063,383,070,683 | 15% | ||
afrikanprince | 0 | 5,363,991,891 | 100% | ||
marian0 | 0 | 14,778,883,199 | 100% | ||
tykee | 0 | 3,798,806,080 | 50% | ||
yoogyart | 0 | 35,659,115,574 | 51% | ||
ladyinblack | 0 | 2,833,723,338 | 15% | ||
bronkong | 0 | 386,463,320,799 | 100% | ||
azirgraff | 0 | 38,012,870,630 | 100% | ||
syedumair | 0 | 938,015,071,088 | 100% | ||
techtek | 0 | 36,144,815,501 | 80% | ||
masummim50 | 0 | 81,399,927,952 | 100% | ||
nuthman | 0 | 2,583,350,703,845 | 100% | ||
onetin84 | 0 | 831,221,776,245 | 100% | ||
evernoticethat | 0 | 12,723,534,782 | 25% | ||
felander | 0 | 92,793,682,313 | 22.1% | ||
santigs | 0 | 4,847,325,822 | 15% | ||
rafaelaquino | 0 | 7,356,466,482 | 100% | ||
tipu | 0 | 10,245,425,799,216 | 20.01% | ||
kimzwarch | 0 | 9,067,814,698 | 4% | ||
saltiberra | 0 | 932,968,305 | 8.28% | ||
massivevibration | 0 | 14,214,557,101 | 7.5% | ||
onartbali | 0 | 5,200,745,289 | 25% | ||
crokkon | 0 | 32,896,651,552 | 100% | ||
fbslo | 0 | 715,031,151 | 1.1% | ||
accelerator | 0 | 53,803,926,855 | 5% | ||
buildawhale | 0 | 7,325,077,332,423 | 15% | ||
yogacoach | 0 | 8,662,028,243 | 11.05% | ||
cesinfenianos | 0 | 5,678,172,605 | 100% | ||
therealwolf | 0 | 7,656,503,129,049 | 25% | ||
robertoueti | 0 | 1,981,450,691 | 3% | ||
roleerob | 0 | 24,987,290,248 | 4.42% | ||
deathwing | 0 | 22,918,184,904 | 22.1% | ||
scorer | 0 | 4,656,536,335 | 100% | ||
revisesociology | 0 | 336,999,163,044 | 30% | ||
espoem | 0 | 298,336,063,844 | 100% | ||
afrikablr | 0 | 8,191,725,161 | 100% | ||
makerhacks | 0 | 15,814,381,765 | 15% | ||
termitemusic | 0 | 42,875,167,553 | 100% | ||
isnochys | 0 | 27,275,664,886 | 18% | ||
gringo211985 | 0 | 172,216,476,014 | 100% | ||
daisyphotography | 0 | 21,827,298,762 | 100% | ||
romiferns | 0 | 583,924,060 | 100% | ||
pataty69 | 0 | 10,726,687,638 | 16.57% | ||
liverpool-fan | 0 | 865,670,287 | 30% | ||
arabisouri | 0 | 76,528,421,941 | 100% | ||
eikejanssen | 0 | 914,452,160 | 100% | ||
caladan | 0 | 80,324,398,746 | 22.1% | ||
ronak10 | 0 | 11,558,419,127 | 100% | ||
mrsyria | 0 | 947,053,923 | 100% | ||
tradingideas | 0 | 18,894,002,807 | 100% | ||
blockbrothers | 0 | 8,641,007,028 | 11.05% | ||
jexus77 | 0 | 1,115,191,264 | 100% | ||
omstavan | 0 | 5,715,928,599 | 100% | ||
emrebeyler | 0 | 515,117,683,111 | 22.1% | ||
awesome-gadgets | 0 | 1,857,029,001 | 100% | ||
zakia | 0 | 34,164,574,187 | 100% | ||
dhaneshpk | 0 | 3,463,008,728 | 100% | ||
irynochka | 0 | 139,032,024 | 100% | ||
potplucker | 0 | 36,704,300,498 | 100% | ||
smartsteem | 0 | 3,432,776,309,454 | 25% | ||
shaotech | 0 | 201,784,978 | 100% | ||
anli | 0 | 5,254,533,137 | 99% | ||
andrepol | 0 | 7,498,750,293 | 99% | ||
mytechtrail | 0 | 37,316,805,344 | 15% | ||
tazi | 0 | 225,651,095,956 | 65% | ||
b00m | 0 | 16,533,685,535 | 12.5% | ||
itchyfeetdonica | 0 | 28,663,678,719 | 30% | ||
nokodemion | 0 | 19,981,389,578 | 100% | ||
steembasicincome | 0 | 1,496,840,451,711 | 100% | ||
jpphotography | 0 | 45,841,089,421 | 36.64% | ||
wiseagent | 0 | 113,317,508,485 | 21.99% | ||
godlovermel25 | 0 | 7,634,112,942 | 100% | ||
tomatom | 0 | 5,599,698,039 | 50% | ||
fourfourfun | 0 | 6,636,181,677 | 25% | ||
candyboy | 0 | 36,107,886,527 | 100% | ||
leynedayana | 0 | 418,490,954 | 100% | ||
apnigrich | 0 | 155,780,396,210 | 100% | ||
upmyvote | 0 | 11,162,937,629 | 15% | ||
abitcoinskeptic | 0 | 57,422,742,927 | 20% | ||
kissi | 0 | 18,780,069,883 | 75% | ||
tudors | 0 | 21,307,130,963 | 100% | ||
jewel-lover | 0 | 1,041,012,257 | 100% | ||
gabrielatravels | 0 | 16,950,502,570 | 20% | ||
nerdtopiade | 0 | 21,939,741,212 | 65% | ||
bartheek | 0 | 20,110,191,745 | 10% | ||
payger | 0 | 2,784,578,500 | 25% | ||
korinkrafting | 0 | 815,573,847 | 22.5% | ||
matheusggr | 0 | 36,061,977,316 | 21.99% | ||
nealmcspadden | 0 | 453,207,627,533 | 22.1% | ||
bala41288 | 0 | 111,816,994,216 | 50% | ||
edicted | 0 | 2,154,906,991,685 | 100% | ||
mermaidvampire | 0 | 6,863,572,396 | 45% | ||
afiqsejuk | 0 | 674,554,040,778 | 100% | ||
ahmedsy | 0 | 1,610,794,491 | 100% | ||
patricklancaster | 0 | 1,649,731,694 | 10% | ||
manncpt | 0 | 31,499,442,096 | 50% | ||
purefood | 0 | 192,827,356,080 | 22.1% | ||
abandi | 0 | 781,509,735 | 100% | ||
chrismadcboy2016 | 0 | 44,756,547,925 | 100% | ||
jimcustodio | 0 | 1,847,681,208 | 50% | ||
warnas | 0 | 19,480,071,249 | 5% | ||
tmarisco | 0 | 1,438,240,453 | 21.99% | ||
vaansteam | 0 | 2,324,366,252 | 30% | ||
shares | 0 | 12,521,580,936 | 100% | ||
jnmarteau | 0 | 11,627,946,326 | 100% | ||
casberp | 0 | 62,808,329,869 | 21.99% | ||
philnewton | 0 | 831,862,738 | 12.5% | ||
udabeu | 0 | 7,433,785,179 | 29% | ||
cfminer | 0 | 551,518,370 | 100% | ||
tobias-g | 0 | 70,462,501,970 | 18.75% | ||
chronocrypto | 0 | 168,970,075,997 | 22.1% | ||
nobyeni | 0 | 2,506,886,571 | 5% | ||
holger80 | 0 | 3,178,064,288,051 | 75% | ||
unconditionalove | 0 | 2,537,972,855 | 11.05% | ||
cadawg | 0 | 44,242,344,255 | 15.47% | ||
sudefteri | 0 | 19,737,838,186 | 100% | ||
happy-soul | 0 | 91,665,059,962 | 10% | ||
fireguardian | 0 | 548,269,140 | 21.99% | ||
maxpatternman | 0 | 30,146,644,172 | 100% | ||
condeas | 0 | 1,391,310,862,613 | 100% | ||
sashas | 0 | 4,457,038,393 | 100% | ||
anikys3reasure | 0 | 2,246,079,146 | 50% | ||
ipromote | 0 | 4,680,573,747 | 15% | ||
flugschwein | 0 | 27,439,110,947 | 75% | ||
hasmez | 0 | 95,430,332,108 | 100% | ||
kabolo | 0 | 6,540,865,118 | 100% | ||
cst90 | 0 | 50,876,374,434 | 100% | ||
matschi | 0 | 4,463,494,683 | 100% | ||
whack.science | 0 | 101,160,770,194 | 35% | ||
akifane | 0 | 3,727,600,719 | 100% | ||
russellstockley | 0 | 3,399,214,655 | 50% | ||
futurecurrency | 0 | 16,536,995,250 | 29% | ||
losi | 0 | 12,446,428,528 | 100% | ||
idkpdx | 0 | 12,641,259,851 | 100% | ||
leeyh | 0 | 1,233,020,334,957 | 100% | ||
backinblackdevil | 0 | 565,835,020,868 | 50% | ||
frassman | 0 | 8,333,539,548 | 50% | ||
oadissin | 0 | 31,098,252,431 | 100% | ||
properfraction | 0 | 21,352,896,813 | 100% | ||
erikah | 0 | 128,407,309,971 | 25% | ||
satren | 0 | 81,062,744,663 | 30% | ||
lauchmelder | 0 | 4,892,878,723 | 100% | ||
lionsuit | 0 | 11,088,151,640 | 22% | ||
amico | 0 | 949,567,850,913 | 97.69% | ||
beleg | 0 | 969,420,319 | 2.21% | ||
tiababi | 0 | 430,216,266 | 100% | ||
bestboom | 0 | 111,744,195,125 | 22.1% | ||
eunsik | 0 | 293,630,014,043 | 50% | ||
onepercentbetter | 0 | 206,004,702,706 | 100% | ||
abrockman | 0 | 608,717,174,654 | 100% | ||
ronaldoavelino | 0 | 78,584,392,168 | 25% | ||
schlafhacking | 0 | 332,136,411,948 | 100% | ||
lesmouths-travel | 0 | 8,103,105,431 | 100% | ||
daring-celt | 0 | 9,378,695,489 | 100% | ||
sbi2 | 0 | 1,073,605,328,772 | 100% | ||
sekhet | 0 | 358,850,131 | 100% | ||
dera123 | 0 | 1,021,698,564,141 | 100% | ||
jkramer | 0 | 608,396,582,742 | 100% | ||
herbacianymag | 0 | 18,385,921,141 | 100% | ||
elleok | 0 | 3,892,773,861 | 100% | ||
freddio | 0 | 25,547,035,160 | 15% | ||
alitavirgen | 0 | 824,226,886 | 15.4% | ||
gadrian | 0 | 165,774,947,387 | 100% | ||
phasewalker | 0 | 26,125,715,015 | 100% | ||
memepress | 0 | 1,514,416,578 | 50% | ||
ericahan | 0 | 15,818,522,115 | 100% | ||
dreimaldad | 0 | 85,177,460,454 | 40% | ||
julialee66 | 0 | 1,775,333,126,943 | 10% | ||
branding | 0 | 1,346,728,493 | 100% | ||
aiyumi | 0 | 4,020,612,954 | 21.99% | ||
saboin | 0 | 111,735,682,199 | 11% | ||
broadcast | 0 | 2,168,749,025 | 100% | ||
stefannikolov | 0 | 1,015,880,636 | 10% | ||
globalschool | 0 | 18,129,146,178 | 25% | ||
morellys2004 | 0 | 67,468,484,050 | 100% | ||
sbi3 | 0 | 823,606,054,811 | 100% | ||
gagago | 0 | 10,125,088,626 | 100% | ||
promobot | 0 | 198,014,304,584 | 100% | ||
superlao | 0 | 21,836,990,714 | 100% | ||
hranhuk | 0 | 7,349,847,010 | 40% | ||
sbi4 | 0 | 584,428,084,344 | 100% | ||
automation | 0 | 1,508,699,543 | 50% | ||
opt2o | 0 | 3,219,650,752 | 50% | ||
jancharlest | 0 | 180,450,707,864 | 100% | ||
celinavisaez | 0 | 4,409,269,880 | 17% | ||
fw206 | 0 | 797,416,008,428 | 100% | ||
mynotsofitlife | 0 | 1,060,731,269 | 10% | ||
slobberchops | 0 | 2,315,182,909,370 | 50% | ||
atanas007 | 0 | 7,382,854,141 | 100% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
meins0815 | 0 | 7,962,391,853 | 23% | ||
sayago | 0 | 730,355,930 | 25% | ||
pladozero | 0 | 77,144,453,413 | 10% | ||
crimo | 0 | 725,990,341 | 11.5% | ||
eraizel | 0 | 666,125,464 | 21.99% | ||
nateaguila | 0 | 287,943,952,925 | 8% | ||
davidesimoncini | 0 | 3,595,948,682 | 12% | ||
crypticat | 0 | 68,814,290,623 | 100% | ||
helpyou | 0 | 3,235,982,390 | 50% | ||
spamfarmer | 0 | 929,665,157 | 25% | ||
linnyplant | 0 | 43,326,482,114 | 100% | ||
commonlaw | 0 | 4,463,712,229 | 35% | ||
bluewall | 0 | 29,660,050,296 | 100% | ||
solarwarrior | 0 | 1,750,015,713,275 | 100% | ||
merlion | 0 | 36,193,874,842 | 100% | ||
the.rocket.panda | 0 | 156,395,317 | 100% | ||
council | 0 | 10,269,796,622 | 100% | ||
digital.mine | 0 | 198,865,473,696 | 1% | ||
sbi5 | 0 | 432,465,684,225 | 100% | ||
swisswitness | 0 | 13,292,147,855 | 22.1% | ||
kahvesizlik | 0 | 1,237,600,247 | 100% | ||
inteligente | 0 | 28,952,657 | 21.99% | ||
imtase | 0 | 548,616,656 | 65% | ||
steemprotect | 0 | 306,627,973 | 3% | ||
astrolabio | 0 | 6,859,098,000 | 100% | ||
sorianos | 0 | 218,474,887 | 100% | ||
longer | 0 | 2,251,366,463 | 5% | ||
sbi6 | 0 | 318,893,355,823 | 100% | ||
drsensor | 0 | 2,210,731,635 | 80% | ||
donald.porter | 0 | 224,146,554,318 | 40.02% | ||
urdreamscometrue | 0 | 16,575,184,623 | 100% | ||
gallerani | 0 | 1,367,839,809 | 22.1% | ||
pagliozzo | 0 | 11,488,895,402 | 20% | ||
baiboua | 0 | 6,958,669,488 | 65% | ||
izzynoel | 0 | 844,678,603 | 50% | ||
rufruf | 0 | 840,020,765 | 100% | ||
sonder-an | 0 | 358,150,800 | 100% | ||
akioexzgamer | 0 | 24,123,718 | 65% | ||
gerdtrudroepke | 0 | 7,327,640,723 | 14.5% | ||
daath | 0 | 1,564,767,480 | 100% | ||
dalz | 0 | 152,502,953,029 | 50% | ||
deividluchi | 0 | 1,012,785,400 | 21.99% | ||
yuza | 0 | 789,098,159 | 65% | ||
pvinny69 | 0 | 6,828,682,983 | 25% | ||
daan007 | 0 | 4,080,112,489 | 100% | ||
goumao | 0 | 34,898,803,285 | 100% | ||
santoninoatocha | 0 | 472,990,701 | 100% | ||
sbi7 | 0 | 232,173,611,346 | 100% | ||
dlike | 0 | 278,923,348,363 | 22.1% | ||
triptolemus | 0 | 2,081,397,070 | 22.1% | ||
paopaoza | 0 | 1,323,179,779 | 65% | ||
gorbisan | 0 | 2,014,467,045 | 1.1% | ||
ataliba | 0 | 5,151,976,762 | 40% | ||
fullnodeupdate | 0 | 18,204,190,186 | 75% | ||
ten-years-before | 0 | 134,084,532 | 65% | ||
bengiles | 0 | 310,782,261,476 | 100% | ||
munhenhos | 0 | 1,649,681,411 | 16.57% | ||
tipsybosphorus | 0 | 469,898,328,036 | 100% | ||
sampraise | 0 | 16,449,443,028 | 100% | ||
furioslosi | 0 | 7,116,454,638 | 100% | ||
emperorhassy | 0 | 7,216,904,188 | 100% | ||
kr-coffeesteem | 0 | 425,040,474,939 | 100% | ||
perazart | 0 | 10,501,042,835 | 100% | ||
arkmy | 0 | 2,452,522,220 | 84% | ||
a-bot | 0 | 35,259,813,741 | 100% | ||
bobby.madagascar | 0 | 8,041,539,576 | 5.52% | ||
laissez-faire | 0 | 62,855,863 | 100% | ||
ravensavage | 0 | 2,703,154,999 | 100% | ||
agromeror | 0 | 85,928,043,935 | 100% | ||
muscara | 0 | 56,394,176,192 | 40% | ||
cultus-forex | 0 | 87,462,634,347 | 100% | ||
puza | 0 | 570,780,423 | 65% | ||
reverendrum | 0 | 1,087,028,247 | 49.5% | ||
sbi8 | 0 | 176,911,760,436 | 100% | ||
ibc | 0 | 58,440,410,550 | 100% | ||
natur-pur | 0 | 876,758,988 | 100% | ||
ldp | 0 | 3,491,525,856 | 22.1% | ||
steemitcuration | 0 | 9,802,972,903 | 25% | ||
mannaman | 0 | 742,241,874 | 99% | ||
sbi9 | 0 | 117,682,680,887 | 100% | ||
actifit-peter | 0 | 377,932,610,193 | 100% | ||
besheda | 0 | 1,272,361,593 | 43% | ||
diegor | 0 | 25,334,806,179 | 100% | ||
thrasher666 | 0 | 1,738,625,811 | 60% | ||
everyoung | 0 | 721,184,444 | 100% | ||
florino | 0 | 810,156,797 | 15% | ||
votum | 0 | 5,969,324,461 | 100% | ||
linuxbot | 0 | 696,995,128 | 100% | ||
actnearn | 0 | 1,232,431,630,761 | 100% | ||
forecasteem | 0 | 545,706,618,559 | 100% | ||
followjohngalt | 0 | 120,784,312,192 | 22.1% | ||
mistia | 0 | 6,524,264,585 | 100% | ||
avel692 | 0 | 15,933,372,962 | 100% | ||
sbi10 | 0 | 102,478,511,597 | 100% | ||
linares | 0 | 0 | 100% | ||
dein-problem | 0 | -49,678,745 | -0.75% | ||
moneytron | 0 | 13,522,816,818 | 100% | ||
pl-kuchnia | 0 | 837,995,979 | 25% | ||
danpendergraft | 0 | 658,178,058 | 5.52% | ||
infinite-love | 0 | 657,940,210 | 11.05% | ||
brucutu | 0 | 20,905,051,516 | 100% | ||
yuriy4 | 0 | 8,561,897,220 | 100% | ||
sleepingcowboy | 0 | 12,942,231,134 | 100% | ||
khan.dayyanz | 0 | 20,015,568,397 | 100% | ||
j-p-bs | 0 | 1,145,941,934 | 50% | ||
thehealthylife | 0 | 3,783,758,815 | 100% | ||
jacuzzi | 0 | 5,805,377,333 | 10% | ||
primeradue | 0 | 98,780,900,825 | 100% | ||
brucutu1 | 0 | 4,220,497,496 | 100% | ||
brucutu2 | 0 | 4,288,255,229 | 100% | ||
flyingbolt | 0 | 1,647,645,634 | 22.1% | ||
determine | 0 | 1,334,735,395 | 22.1% | ||
tonalddrump | 0 | 4,955,424,348 | 50% | ||
permaculturedude | 0 | 4,399,704,612 | 11.05% | ||
agent14 | 0 | 1,214,011,535,750 | 35% | ||
tubiska | 0 | 4,224,327,656 | 100% | ||
meins0816 | 0 | 2,648,547,678 | 75% | ||
monster.oo7 | 0 | 756,983,442 | 50% | ||
pocoto | 0 | 4,375,708,686 | 100% | ||
circa | 0 | 484,998,549,127 | 100% | ||
ogst0311 | 0 | 672,195,745,460 | 100% | ||
pesos | 0 | 3,875,879,383 | 100% | ||
kitty-kitty | 0 | 4,387,315,188 | 100% | ||
jussara | 0 | 4,449,712,900 | 100% | ||
cyrillo | 0 | 4,264,762,672 | 100% | ||
smon-joa | 0 | 21,571,720,115 | 100% | ||
broxi | 0 | 9,914,547,338 | 50% | ||
goodcontentbot | 0 | 2,778,932,253 | 50% | ||
curationvoter | 0 | 24,803,285,143 | 50% | ||
curationhelper | 0 | 9,297,100,715 | 100% | ||
landshutbrauhaus | 0 | 5,682,696,449 | 100% | ||
realgoodcontent | 0 | 945,880,404 | 100% | ||
leeyh2 | 0 | 19,010,324,257 | 50% | ||
richie.rich | 0 | 35,126,463,946 | 100% | ||
hungrybear | 0 | 6,783,537,559 | 100% | ||
hamsa.quality | 0 | 6,483,583,168 | 100% | ||
carioca | 0 | 4,332,385,274 | 100% | ||
sm-skynet | 0 | 542,880,365 | 100% | ||
denizcakmak | 0 | 534,137,464 | 50% | ||
hungryharish | 0 | 1,578,093,154 | 5.52% | ||
cpt-sparrow | 0 | 9,348,688,222 | 100% | ||
versofuster | 0 | 1,279,142,790 | 100% | ||
kggymlife | 0 | 14,743,332,414 | 50% | ||
medro-martin | 0 | 15,353,338,309 | 100% | ||
marymi | 0 | 453,616,170 | 100% | ||
ttg | 0 | 616,566,790,972 | 100% | ||
androshchuk | 0 | 997,969,047 | 100% | ||
kryptogames | 0 | 90,003,900,159 | 20.01% | ||
maxsieg | 0 | 703,923,919 | 25% | ||
sniem5180 | 0 | 3,122,864,376 | 75% | ||
pfdm | 0 | 19,866,431,851 | 5% | ||
eva-julia | 0 | 444,276,007 | 100% | ||
szf | 0 | 964,463,455 | 50% | ||
blue.rabbit | 0 | 726,907,365,155 | 100% | ||
maryincryptoland | 0 | 21,769,194,225 | 100% | ||
actifit-devil | 0 | 18,766,560,622 | 100% | ||
samujaeger | 0 | 2,162,684,377 | 100% | ||
epicdice | 0 | 70,136,726,498 | 7.5% | ||
battlegames | 0 | 482,197,223,888 | 99% | ||
raspibot | 0 | 3,314,663,602 | 100% | ||
spicywoman | 0 | 574,433,368 | 50% | ||
blockchainpeople | 0 | 113,585,449 | 21.99% | ||
gadrian-sp | 0 | 4,286,582,523 | 100% | ||
unitedpeople | 0 | 630,781,836 | 21.99% | ||
minigame | 0 | 1,336,396,325,997 | 100% | ||
jishan5 | 0 | 1,189,901,110 | 100% | ||
gulf41 | 0 | 5,597,497,215 | 100% | ||
scholaris | 0 | 499,372,663,602 | 100% | ||
sparschwein | 0 | 20,301,020,052 | 50% | ||
sm-silva | 0 | 2,544,472,489 | 11.05% | ||
naltedtirt | 0 | 1,970,245,973 | 50% | ||
ssc-token | 0 | 883,211,587 | 100% | ||
theshaki | 0 | 861,655,085 | 100% | ||
steementertainer | 0 | 43,150,189,408 | 65% | ||
likwid | 0 | 25,918,016,914,849 | 100% | ||
mini.supporter | 0 | 596,849,070,459 | 100% | ||
swedishdragon76 | 0 | 2,488,827,304 | 50% | ||
dachcolony | 0 | 2,664,988,922 | 100% | ||
tinyhousecryptos | 0 | 534,052,521 | 5% | ||
plankton.token | 0 | 29,224,839,721 | 30% | ||
captain.kirk | 0 | 16,301,430,573 | 50% | ||
leighscotford | 0 | 1,685,951,350 | 4% | ||
iamjohn | 0 | 1,506,373,805 | 25% | ||
firefuture | 0 | 1,145,649,011 | 22.1% | ||
ilovecanada | 0 | 6,465,915,401 | 50% | ||
steemindian | 0 | 2,148,181,705 | 11.05% | ||
elrosso | 0 | 2,349,819,116 | 69% | ||
jalentakesphotos | 0 | 717,038,336 | 10% | ||
steem-meetup-ffb | 0 | 543,912,006 | 100% | ||
imbartley | 0 | 1,570,295,735 | 50% | ||
sanaee | 0 | 1,921,081,518 | 100% | ||
leeyh3 | 0 | 4,010,392,899 | 50% | ||
kgswallet | 0 | 1,444,779,764 | 50% | ||
milu-the-dog | 0 | 9,914,226,516 | 22.1% | ||
lrekt01 | 0 | 2,543,983,406 | 100% | ||
triplea.bot | 0 | 8,099,425,803 | 22.1% | ||
steem.leo | 0 | 611,025,234,105 | 22.1% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
online-24-7 | 0 | 1,354,544,516 | 100% | ||
votebetting | 0 | 626,259,668,378 | 50% | ||
leeyh5 | 0 | 1,678,602,312 | 50% | ||
freddio.sport | 0 | 4,302,062,176 | 15% | ||
zaku-pal | 0 | 824,675,126 | 22.1% | ||
zaku-leo | 0 | 783,885,647 | 22.1% | ||
babytarazkp | 0 | 3,355,129,246 | 50% | ||
asteroids | 0 | 127,590,039,150 | 22.1% | ||
samscalet | 0 | 2,423,940,964 | 100% | ||
wongbraling | 0 | 3,002,471,146 | 100% | ||
marlians.spt | 0 | 1,352,697,783 | 100% | ||
tokenindustry | 0 | 3,521,841,121 | 80% | ||
ticketyboo | 0 | 11,254,168,023 | 100% | ||
ticketywoof | 0 | 11,252,580,113 | 100% | ||
sbi-tokens | 0 | 5,360,298,643 | 35.19% | ||
one.life | 0 | 5,182,370,419 | 22.05% | ||
re2pair | 0 | 234,549,292 | 100% | ||
maxuvv | 0 | 693,819,652 | 9% | ||
maxuvd | 0 | 21,511,592,276 | 6% | ||
maxuve | 0 | 25,905,702,752 | 6% | ||
dappcoder | 0 | 34,148,335,324 | 16.8% | ||
borbina | 0 | 11,342,134,653 | 100% | ||
ctl001 | 0 | 593,960,618 | 100% | ||
katrin-lux | 0 | 270,194,283 | 100% | ||
petscorner | 0 | 943,444,199 | 100% | ||
hongdangmu | 0 | 658,999,535 | 10% | ||
mein2070 | 0 | 2,644,323,829 | 75% | ||
therealyme | 0 | 1,381,716,192 | 17.68% | ||
blocktvnews | 0 | 1,305,864,791 | 11.05% | ||
qwertm | 0 | 2,905,992,724 | 50% | ||
huaren.news | 0 | 244,593,146,196 | 9% | ||
goodreader | 0 | 3,186,029,279 | 18% | ||
detetive | 0 | 25,013,865 | 21.99% | ||
gerbo | 0 | 224,227,045 | 22.1% | ||
kaeserotor | 0 | 42,607,077,416 | 100% | ||
steempower-001 | 0 | 553,140,135 | 100% | ||
searchbot | 0 | 933,186,260 | 49.5% | ||
tokita | 0 | 534,507,470 | 100% | ||
mr-critic.aaa | 0 | 1,421,778,351 | 50% | ||
ribary | 0 | 7,282,935,867 | 11.05% | ||
cam1lo | 0 | 2,002,556,786 | 100% | ||
dollarbills | 0 | 6,681,890,422 | 12% | ||
piratedice | 0 | 929,575,354 | 49.5% | ||
bilpcoinbpc | 0 | 1,334,868,637 | 50% | ||
mice-k | 0 | 88,205,479,139 | 22.1% | ||
staryao | 0 | 37,856,339,591 | 21% | ||
abu.hair | 0 | 203,661,626 | 100% | ||
waqasrizvi | 0 | 1,123,313,875 | 100% | ||
mehmetfix | 0 | 1,200,636,083 | 100% | ||
steemcityrewards | 0 | 5,981,140,348 | 22.1% | ||
dpend.active | 0 | 6,867,073,289 | 4.42% | ||
ericandryan | 0 | 47,110,360 | 70% | ||
stuntman.mike | 0 | 48,595,074,288 | 100% | ||
picciridda2 | 0 | 3,827,638,765 | 100% | ||
fengchao | 0 | 644,456,624 | 1% | ||
hivewatchers | 0 | 182,001,160,469 | 65% | ||
hellohive | 0 | 975,052,227,665 | 100% | ||
folklure | 0 | 1,863,154,302 | 11.05% | ||
alequintrel | 0 | 0 | 100% | ||
gitplait | 0 | 53,132,633,386 | 100% | ||
softworld | 0 | 218,834,808,495 | 15% | ||
cgbooth | 0 | 4,076,014,475 | 100% | ||
peterpanpan | 0 | 3,550,838,234 | 30% | ||
luzrojasdg | 0 | 5,441,899,595 | 100% | ||
sadvil | 0 | 1,518,216,229 | 100% | ||
dcityrewards | 0 | 488,567,019,224 | 22.1% | ||
hextech | 0 | 3,238,718,379 | 66% | ||
andrewmusic | 0 | 4,456,466,061 | 100% | ||
sketching | 0 | 1,233,861,032 | 11.05% | ||
mare123 | 0 | 931,894,346 | 100% | ||
hivelander | 0 | 75,093,317,409 | 29% | ||
xxxthorxxx | 0 | 6,473,896,985 | 100% | ||
contagio | 0 | 0 | 100% | ||
boholtamsi | 0 | 0 | 100% | ||
rashid001 | 0 | 0 | 100% | ||
niki25 | 0 | 9,477,510,978 | 100% | ||
crysis | 0 | 13,197,709,942 | 100% | ||
executive-board | 0 | 74,135,540,714 | 100% | ||
waytolifecare | 0 | 0 | 100% | ||
beehivetrader | 0 | 93,672,828,244 | 100% | ||
famegirl | 0 | 218,187,575 | 100% | ||
egplus | 0 | 533,396,762 | 100% | ||
italy.art | 0 | 26,096,260 | 100% | ||
enver.tiler | 0 | 0 | 100% | ||
jammer1982 | 0 | 0 | 100% | ||
ronavel | 0 | 276,064,546,649 | 20% | ||
kyawkyawaung123 | 0 | 0 | 70% | ||
petru.lesanu | 0 | 56,226,049 | 100% | ||
pyramidone | 0 | 507,395,237 | 100% | ||
hivecur | 0 | 40,942,042,116 | 22.1% | ||
skohieone | 0 | 0 | 100% | ||
karianna | 0 | 5,813,156 | 100% | ||
improbableliason | 0 | 1,481,702,315 | 50% | ||
one-eye | 0 | 8,648,043,084 | 100% | ||
rdmzlars | 0 | 0 | 100% | ||
rryblogs | 0 | 504,238,958 | 100% | ||
patronpass | 0 | 349,634,029 | 100% | ||
archonapp | 0 | 18,633,214,692 | 100% | ||
gmf | 0 | 361,722,911 | 100% | ||
itstushar21 | 0 | 0 | 50% | ||
vishal2 | 0 | 0 | 100% | ||
reza-shamim | 0 | 463,731,857 | 100% | ||
soriful12 | 0 | 0 | 100% | ||
poweroflife | 0 | 0 | 100% | ||
steam77 | 0 | 0 | 61% | ||
olassy | 0 | 0 | 100% | ||
invest.crypto | 0 | 0 | 50% | ||
athproduction | 0 | 0 | 51% | ||
marryiv | 0 | 0 | 100% | ||
plusvault | 0 | 893,239,871 | 50% | ||
olamhen | 0 | 0 | 100% | ||
sohaggazi420 | 0 | 0 | 100% | ||
tong023960 | 0 | 0 | 100% | ||
mangle | 0 | 0 | 100% | ||
doodie1996 | 0 | 185,334,524 | 100% |
Great article, this would be a great one. Thank you for sharing some of this.
author | alnangloy11 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-holger80-2020619t54624281z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["development","beem","python","release"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-18 21:46:24 | ||||||
last_update | 2020-06-18 21:46:24 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-06-25 21:46:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.025 HBD | ||||||
curator_payout_value | 0.026 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 77 | ||||||
author_reputation | 3,241,894,491 | ||||||
root_title | "update for beem: reworking wallet and key handling" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,046,341 | ||||||
net_rshares | 207,421,832,052 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 207,421,832,052 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
I have picked your post for my daily hive voting initiative, Keep it up and Hive On!!
author | chitty |
---|---|
permlink | re-update-for-beem-reworking-wallet-and-key-handling-20200619t000104 |
category | hive-139531 |
json_metadata | "" |
created | 2020-06-19 00:01:06 |
last_update | 2020-06-19 00:01:06 |
depth | 1 |
children | 0 |
last_payout | 2020-06-26 00:01:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.026 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: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,048,415 |
net_rshares | 207,012,996,272 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 207,012,996,272 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
La verdad muy explicito lo que has publicado, lo pondre en practica, gracias por compartir.
author | comandoyeya |
---|---|
permlink | qc5d6s |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-19 00:25:42 |
last_update | 2020-06-19 00:25:42 |
depth | 1 |
children | 0 |
last_payout | 2020-06-26 00:25:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 579,902,986,648,394 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,048,767 |
net_rshares | 206,808,884,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 206,808,884,958 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
You do a great job. We want to thank you from our trenches and support you whenever we can You help to eliminate the plague. Receive our medieval thanks.
author | contagio |
---|---|
permlink | re-holger80-qc5jda |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-19 02:39:15 |
last_update | 2020-06-19 02:39:15 |
depth | 1 |
children | 0 |
last_payout | 2020-06-26 02:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 18,328,394,939,930 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,050,255 |
net_rshares | 206,604,977,755 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 206,604,977,755 | 5% | ||
dein-problem | 0 | 0 | -0.05% | ||
alequintrel | 0 | 0 | 100% |
The way the Hive community is growing the need of coding specialist will be increased. Nice way of giving lesson to young talent. Indeed learning about Beem and future will be great for young talent. Great effort. Your post has been curated with @gitplait community account because this is the kind of publications we like to see in our community. Join our Community on [Hive](https://hive.blog/trending/hive-103590) and Chat with us on [Discord](https://discord.com/invite/CWCj3rw). [Gitplait
author | gitplait-mod1 |
---|---|
permlink | qc4rzf |
category | hive-139531 |
json_metadata | {"users":["gitplait"],"links":["https://hive.blog/trending/hive-103590","https://discord.com/invite/CWCj3rw"],"app":"hiveblog/0.1"} |
created | 2020-06-18 16:47:45 |
last_update | 2020-06-18 16:47:45 |
depth | 1 |
children | 0 |
last_payout | 2020-06-25 16:47:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 495 |
author_reputation | 64,455,719,431 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,041,732 |
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> ###### 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-20200620t003735000z |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-06-20 00:37:33 |
last_update | 2020-06-20 00:37:33 |
depth | 1 |
children | 0 |
last_payout | 2020-06-27 00:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 764 |
author_reputation | 369,389,709,206,784 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,068,029 |
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-reworking-wallet-and-key-handling-20200618t160403z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-06-18 16:04:03 |
last_update | 2020-06-18 16:04:03 |
depth | 1 |
children | 0 |
last_payout | 2020-06-25 16:04: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 | 393 |
author_reputation | 32,074,948,443 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,041,049 |
net_rshares | 0 |
Very interesting what you do. Thank you for sharing and keeping us informed of all the updates. Python is wonderful!
author | rafaelaquino |
---|---|
permlink | qc53j2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-18 20:57:03 |
last_update | 2020-06-18 20:57:03 |
depth | 1 |
children | 0 |
last_payout | 2020-06-25 20:57:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 111,190,733,966,082 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,045,644 |
net_rshares | 207,626,556,926 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 207,626,556,926 | 5% |
Thanks for sharing something like this it would be help to many person
author | spiffmyst | ||||||
---|---|---|---|---|---|---|---|
permlink | re-holger80-2020619t163440731z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["development","beem","python","release"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-19 15:34:42 | ||||||
last_update | 2020-06-19 15:34:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-06-26 15:34:42 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 70 | ||||||
author_reputation | 0 | ||||||
root_title | "update for beem: reworking wallet and key handling" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,060,646 | ||||||
net_rshares | 0 |
Glad to see these updates to Beem. Wish the other libraries got similar love.
author | themarkymark |
---|---|
permlink | re-holger80-qc58mi |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-18 22:47:06 |
last_update | 2020-06-18 22:47:06 |
depth | 1 |
children | 1 |
last_payout | 2020-06-25 22:47:06 |
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 | 78 |
author_reputation | 1,777,477,879,631,199 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,047,292 |
net_rshares | -518,767,564,498 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bullionstackers | 0 | -725,984,876,400 | -100% | ||
holger80 | 0 | 207,217,311,902 | 5% | ||
dein-problem | 0 | 0 | -0.05% |
On the way for dhive! https://peakd.com/hive-139531/@tngflx/contribution-to-dhive-added-memo-encryption-and-decrypt-feature
author | tngflx |
---|---|
permlink | re-themarkymark-qc9qq0 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-21 09:08:24 |
last_update | 2020-06-21 09:08:24 |
depth | 2 |
children | 0 |
last_payout | 2020-06-28 09:08:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 17,396,455,988,713 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,091,262 |
net_rshares | 450,044,955,986 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themarkymark | 0 | 450,044,955,986 | 2% |
Another excellent tool. Cheers to you.
author | yehey |
---|---|
permlink | qc8psn |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-20 19:50:45 |
last_update | 2020-06-20 19:50:45 |
depth | 1 |
children | 0 |
last_payout | 2020-06-27 19:50:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 22,184,787,552,504 |
root_title | "update for beem: reworking wallet and key handling" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,081,919 |
net_rshares | 206,402,750,300 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 206,402,750,300 | 5% | ||
dein-problem | 0 | 0 | -0.05% |