## DE (EN below) In meinem letzten [Beitrag](https://ecency.com/hive-169321/@hive-coding/hivejs-how-to-delegtae-hivepower) habe ich gezeigt, wie man mit HiveJS HivePower delegiert. In diesem Beitrag zeige ich wie man Witnesse abruft und wie man für einen Wittness ein Vote abgibt. ## Wittness nach Votes abrufen In der [Dokumentation](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#witnesses) finden wir diverse Möglichkeiten, um Witnesse abzurufen. Eine davon ist die Witnesse nach den Votes, die sie erhalten abzurufen.  Dies erfolgt über die Funktion [hive.api.getWitnessesByVote](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote), die 2 Parameter erwartet. * **from** Witnessname ab dem die Ausgabe erfolgen soll * **limit** Anzahl der Witnesses die ausgegeben werden soll. Um die Top 100 auszugeben, gibt man einen leeren String und 100 an. ## für einen Witness Voten  Mit der Funktion [hive.broadcast.accountWitnessVote](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-vote) kann ein Vote für einen Witness abgegeben werden. * **wif** private Aktiv-Key des Voters * **account** Nutzername des Voters * **witness** Witnessname für den gevotet wird * **approve** true order false um eine Stimme abzugeben bzw. wieder zu entziehen. ## Witness proxy  Mit der Funktion [hive.broadcast.accountWitnessProxy](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-proxy) kann ein Witness proxy gesetzt werden, sodass man automatisch die gleichen Witnesses votet wie der gesetzte Proxy. * **wif** private Aktiv-Key des Nutzers * **account** Nutzername des Nutzers, der dem Proxy folgen soll * **proxy** Nutzername, dessen Votes man folgt. ## Witness Votes eines Nutzers  Möchte man wissen, für welche Witnesse ein Nutzer ein Vote abgegeben hat, nutzt man die Funktion [hive.api.getAccounts](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-accounts). Die Witnesses sind über Witness_votes abrufbar. Diesmal gibt es kein Beispielcode von mir, da es doch sehr simpel ist. Wer Fragen hat, kann gern ein Kommentar da lassen. Am besten @mein-senf-dazu erwähnen, damit ich es mitbekomme. ## EN In my last [post](https://ecency.com/hive-169321/@hive-coding/hivejs-how-to-delegate-hivepower), I showed how to delegate HivePower using HiveJS. In this post I show how to retrieve Witnesse and how to cast a vote for a Wittness. ## Retrieve Wittness by Votes In the [documentation](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#witnesses) we can find various ways to retrieve Witnesse. One of them is to retrieve wittnesses according to the votes they receive.  This is done using the [hive.api.getWitnessesByVote](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote) function, which expects 2 parameters. * **from** witness name from which the output should be done. * **limit** number of witnesses to be output. To output the top 100, specify an empty string and 100. ## for one witness vote  The [hive.broadcast.accountWitnessVote](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-vote) function can be used to cast a vote for a Witness. * **wif** private active key of the voter. **account** username of the voter **witness** Witnessname for which a vote is made * **approve** true or false to cast or withdraw a vote. ## Witness proxy  With the function [hive.broadcast.accountWitnessProxy](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-proxy) a witness proxy can be set, so that you automatically vote the same witnesses as the set proxy. * **wif** private active key of the user * **account** username of the user who should follow the proxy * **proxy** username whose votes to follow. ## Witness votes of a user  If one wants to know for which witnesses a user has cast a vote, one uses the function [hive.api.getAccounts](https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-accounts). The witnesses can be retrieved via Witness_votes. This time there is no example code from me, because it is very simple. If you have any questions, feel free to leave a comment. It's best to mention @mein-senf-dazu, so I get it. Translated with www.DeepL.com/Translator (free version)
author | hive-coding | ||||||
---|---|---|---|---|---|---|---|
permlink | hivejs-get-info-and-vote | ||||||
category | hive-169321 | ||||||
json_metadata | "{"links":["https://ecency.com/hive-169321/@hive-coding/hivejs-how-to-delegtae-hivepower","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#witnesses","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-vote","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-proxy","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-accounts","https://ecency.com/hive-169321/@hive-coding/hivejs-how-to-delegate-hivepower","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#witnesses","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#get-witnesses-by-vote","https://gitlab.syncad.com/hive/hive-js/tree/master/doc#account-witness-vote"],"image":["https://images.ecency.com/DQmPc1pQinUkacxzSQmpP8ckHkwdJi18U7SnvvswQwJoUj8/grafik.png","https://images.ecency.com/DQmQrPrtNpTaPu1PMEVzvNsKqBTRJTj3uqxn67TtyVA5BLV/grafik.png","https://images.ecency.com/DQmamfpttSGbNYpRVx1PkZBw2tZVLJ9E6quy4Yu8uaMijN5/grafik.png","https://images.ecency.com/DQma3w58d4nR9Yyxx2BGqfqfeUM2Ebeq34DwxjBXUu7JjMi/grafik.png"],"users":["mein-senf-dazu","mein-senf-dazu"],"tags":["hive-169321","hive","coding","deutsch","hive-engine","hivejs","hive-coding","pob","hive-js","dev"],"description":"DE (EN below) In meinem letzten Beitrag habe ich gezeigt, wie man mit HiveJS HivePower delegiert. In diesem Beitrag zeige ich wie man Witnesse abruft und wie man für einen Wittness ein Vote abgibt. Wittness","app":"ecency/3.0.30-vision","format":"markdown+html"}" | ||||||
created | 2022-12-18 07:30:24 | ||||||
last_update | 2022-12-18 07:37:36 | ||||||
depth | 0 | ||||||
children | 5 | ||||||
last_payout | 2022-12-25 07:30:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 2.434 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,981 | ||||||
author_reputation | 8,653,483,468,469 | ||||||
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 119,198,401 | ||||||
net_rshares | 12,339,313,219,868 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 132,392,187,272 | 13.66% | ||
konti | 0 | 0 | 100% | ||
larus | 0 | 1,838,598,593 | 100% | ||
esteemapp | 0 | 31,850,530,936 | 13.66% | ||
darth-azrael | 0 | 73,546,606,796 | 24% | ||
darth-cryptic | 0 | 11,550,408,280 | 24% | ||
opinizeunltd | 0 | 26,621,945,506 | 49% | ||
eliel | 0 | 25,595,680,775 | 10% | ||
roky | 0 | 3,078,749,248 | 100% | ||
drwom | 0 | 2,506,184,904 | 6.83% | ||
droida | 0 | 100,995,208,998 | 100% | ||
eddwood | 0 | 25,169,510,947 | 40.3% | ||
gregan | 0 | 10,912,627,553 | 100% | ||
esteem.app | 0 | 3,784,442,164 | 13.66% | ||
paulmoon410 | 0 | 1,476,290,311 | 10% | ||
auleo | 0 | 1,131,069,277 | 2.73% | ||
drunksamurai | 0 | 735,363,784 | 12.5% | ||
anikekirsten | 0 | 1,402,670,993 | 12.5% | ||
sveydi | 0 | 84,213,282 | 10.3% | ||
fredfettmeister | 0 | 12,552,222,828 | 49% | ||
a-quarius | 0 | 51,748,681,903 | 34% | ||
fieryfootprints | 0 | 10,166,112,529 | 5% | ||
cherryng | 0 | 1,425,662,516 | 2.73% | ||
fireguardian | 0 | 2,769,457,201 | 20% | ||
penderis | 0 | 72,006,514,593 | 100% | ||
condeas | 0 | 1,418,010,270,394 | 50% | ||
bhattg | 0 | 1,333,020,746 | 3% | ||
christopher2002 | 0 | 9,649,322,153 | 100% | ||
xchng | 0 | 10,673,902,206 | 80% | ||
lilacse | 0 | 22,644,559,770 | 100% | ||
yensesa | 0 | 8,204,805,190 | 99.3% | ||
fw206 | 0 | 2,290,288,032,342 | 50% | ||
milaan | 0 | 1,248,058,495 | 100% | ||
yintercept | 0 | 191,132,161,266 | 100% | ||
luciannagy | 0 | 2,529,696,030 | 12.5% | ||
steemadi | 0 | 3,031,839,990 | 100% | ||
cleanplanet | 0 | 881,045,299,890 | 100% | ||
otp-one | 0 | 3,210,215,212 | 35% | ||
linuxbot | 0 | 639,295,948 | 50% | ||
misterc | 0 | 168,472,726,318 | 100% | ||
smokingfit | 0 | 2,890,422,360 | 80% | ||
retrodroid | 0 | 7,051,135,665 | 24% | ||
thelogicaldude | 0 | 12,607,724,139 | 12.5% | ||
koychev22 | 0 | 12,169,119,922 | 13.66% | ||
photographercr | 0 | 6,147,227,537 | 2.73% | ||
shauner | 0 | 2,178,989,951 | 6.25% | ||
freebot | 0 | 115,514,387 | 100% | ||
lunapark | 0 | 107,875,749 | 100% | ||
quicktrade | 0 | 109,937,154 | 100% | ||
cresus | 0 | 506,932,772 | 100% | ||
hadaly | 0 | 107,920,520 | 100% | ||
goldfoot | 0 | 542,332,104 | 100% | ||
dotmatrix | 0 | 108,344,288 | 100% | ||
otomo | 0 | 107,784,153 | 100% | ||
botito | 0 | 107,989,421 | 100% | ||
weebo | 0 | 107,757,402 | 100% | ||
freysa | 0 | 107,794,770 | 100% | ||
tobor | 0 | 107,886,505 | 100% | ||
buffybot | 0 | 108,553,744 | 100% | ||
hypnobot | 0 | 108,628,252 | 100% | ||
psybot | 0 | 110,804,476 | 100% | ||
psychobot | 0 | 108,493,901 | 100% | ||
curabot | 0 | 107,827,566 | 100% | ||
elector | 0 | 106,105,533 | 100% | ||
chatbot | 0 | 108,576,876 | 100% | ||
chomps | 0 | 107,881,264 | 100% | ||
quicktrades | 0 | 6,852,488,799 | 100% | ||
misery | 0 | 110,719,005 | 100% | ||
swissbot | 0 | 110,209,602 | 100% | ||
iamraincrystal | 0 | 5,015,462,487 | 3.41% | ||
mister.reatard | 0 | 4,386,072,998 | 25% | ||
apineda | 0 | 17,854,156,663 | 100% | ||
faireye | 0 | 82,404,355 | 100% | ||
veryanprime | 0 | 5,000,335,317 | 100% | ||
gloriaolar | 0 | 3,088,498,823 | 3.75% | ||
monica-ene | 0 | 17,664,861,048 | 12.5% | ||
iliyan90 | 0 | 89,082,765,558 | 13.66% | ||
elkakoycheva | 0 | 2,078,468,751 | 13.66% | ||
hivetrending | 0 | 104,327,023,930 | 25% | ||
dbuzz | 0 | 39,026,935,313 | 6.83% | ||
ississ89 | 0 | 28,860,299,053 | 13.66% | ||
velinov86 | 0 | 6,841,915,737 | 6.83% | ||
sneji79 | 0 | 977,115,893 | 13.66% | ||
maysia57 | 0 | 1,700,075,491 | 100% | ||
ecency | 0 | 4,628,154,836,720 | 13.66% | ||
roflie | 0 | 8,801,868,100 | 13.66% | ||
tiger85 | 0 | 1,650,188,282 | 13.66% | ||
kingneptune | 0 | 991,948,886 | 12.5% | ||
honeybot | 0 | 1,039,301,027 | 100% | ||
th4488 | 0 | 4,276,217,359 | 100% | ||
ecency.stats | 0 | 4,642,965,399 | 13.66% | ||
vokus | 0 | 914,477,183 | 12.5% | ||
rbhayes | 0 | 524,634,170 | 3.41% | ||
rondonshneezy | 0 | 1,745,383,722 | 12.5% | ||
dadspardan | 0 | 3,145,047,252 | 12.5% | ||
selena14 | 0 | 1,119,838,502 | 13.66% | ||
alicewonderyoga | 0 | 3,114,501,572 | 13.66% | ||
tbabachev | 0 | 2,795,740,134 | 13.66% | ||
silviq93 | 0 | 713,615,165 | 13.66% | ||
mihaylov | 0 | 1,629,183,929 | 6.83% | ||
vaketo | 0 | 1,078,402,057 | 13.66% | ||
mobluesbetter | 0 | 1,062,915,782 | 13.66% | ||
pavlevskifamily | 0 | 1,728,344,155 | 13.66% | ||
huzzah | 0 | 9,381,468,417 | 25% | ||
mmanolev33 | 0 | 1,470,270,372 | 13.66% | ||
cooperclub | 0 | 7,741,617,153 | 12.5% | ||
cvrle | 0 | 11,689,946,527 | 100% | ||
dakothelion | 0 | 524,279,958 | 13.66% | ||
nyxlabs | 0 | 2,118,046,682 | 12.5% | ||
creodas | 0 | 692,340,688 | 18.75% | ||
wizzitywillican | 0 | 721,957,620 | 12.5% | ||
hive.pizza | 0 | 731,106,649,428 | 25% | ||
hive-bulgaria | 0 | 3,889,886,771 | 13.66% | ||
pizzabot | 0 | 15,668,380,165 | 100% | ||
dajokawild | 0 | 4,671,218,592 | 12.5% | ||
farpetrad | 0 | 22,750,861,486 | 80% | ||
projectmamabg | 0 | 4,635,739,957 | 10% | ||
snedeva | 0 | 1,759,255,058 | 5% | ||
dibblers.dabs | 0 | 36,658,781,491 | 15% | ||
dontcare89 | 0 | 4,159,409,658 | 2.73% | ||
john9inch | 0 | 579,538,129 | 12.5% | ||
tammie.brown | 0 | 840,229,967 | 13.66% | ||
rayius | 0 | 2,068,705,268 | 100% | ||
trentonlundy1 | 0 | 1,833,675,890 | 12.5% | ||
siphon.tribes | 0 | 4,083,654,631 | 100% | ||
asklanbudi | 0 | 8,131,957,852 | 100% | ||
thaddeusprime | 0 | 613,090,175 | 12.5% | ||
onewolfe | 0 | 1,027,500,972 | 50% | ||
theargirova | 0 | 1,866,070,359 | 13.66% | ||
nane-qts | 0 | 10,993,296,413 | 100% | ||
didivelikova | 0 | 1,398,113,064 | 13.66% | ||
epicur0 | 0 | 2,707,875,985 | 100% | ||
fairyberry | 0 | 1,831,079,645 | 6.83% | ||
h3m4n7 | 0 | 5,088,340,962 | 22.5% | ||
spiritverve | 0 | 3,155,757,037 | 25% | ||
stickupcash | 0 | 660,085,530 | 12.5% | ||
kqaosphreak | 0 | 664,673,813 | 25% | ||
cherute | 0 | 680,430,018 | 12.5% | ||
thunderjack | 0 | 843,900,331 | 12.5% | ||
crypt0gnome | 0 | 3,611,977,420 | 0.5% | ||
lothbrox | 0 | 2,189,345,510 | 100% | ||
aioflureedb | 0 | 3,753,998,669 | 100% | ||
diyan3973lenkov | 0 | 4,372,866,981 | 13.66% | ||
zeclipse | 0 | 732,149,020 | 25% | ||
blocktunes | 0 | 1,650,580,843 | 2.5% | ||
dede85 | 0 | 149,616,575 | 100% | ||
studio3141 | 0 | 689,086,698 | 50% | ||
gwajnberg | 0 | 1,876,240,928 | 17.5% | ||
iliev26 | 0 | 3,142,317,896 | 13.66% | ||
anhdaden146 | 0 | 690,325,159,370 | 13.66% | ||
incantia | 0 | 714,049,075 | 100% | ||
hurtlocker | 0 | 22,066,812,983 | 25% | ||
ertytux | 0 | 1,278,082,708 | 100% | ||
sabajfa | 0 | 872,710,330 | 12.5% | ||
fefe99 | 0 | 714,197,805 | 100% | ||
dtake | 0 | 3,542,120,036 | 100% | ||
vazquez4x | 0 | 0 | 100% | ||
xecency | 0 | -170,939,949 | -13.66% | ||
memes01 | 0 | 0 | 100% | ||
mestanophoto | 0 | 1,934,450,579 | 13.66% | ||
richardslater | 0 | 1,504,415,784 | 3.41% | ||
hhguild-curator | 0 | 1,168,939,954 | 100% | ||
cleanyourcity | 0 | 8,343,090,224 | 8.06% | ||
mosesessien | 0 | 7,385,710,102 | 100% | ||
reysito | 0 | 1,995,235,654 | 100% | ||
blocktunesdao | 0 | 982,218,584 | 2.5% | ||
novahive | 0 | 87,774,256 | 100% |
Congratulations @hive-coding! 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/60x70/http://hivebuzz.me/@hive-coding/upvoted.png?202212180842"></td><td>You received more than 1250 upvotes.<br>Your next target is to reach 1500 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@hive-coding) and compare yourself to others in 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> **Check out our last posts:** <table><tr><td><a href="/hive-102201/@hivebuzz/wc2022-recap-final-day1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/uNPMgnd.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-recap-final-day1">HiveBuzz World Cup Contest - Recap of 3rd Place match</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal Renewal</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
author | hivebuzz |
---|---|
permlink | notify-hive-coding-20221218t085337 |
category | hive-169321 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-12-18 08:53:36 |
last_update | 2022-12-18 08:53:36 |
depth | 1 |
children | 0 |
last_payout | 2022-12-25 08:53:36 |
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,396 |
author_reputation | 369,446,705,072,593 |
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,199,580 |
net_rshares | 0 |
I kind of miss using Hive libraries to do stuff and HiveJS is one of the first things I used. Glad to see that it's still alive :)
author | lilacse |
---|---|
permlink | re-hive-coding-20221220t19552786z |
category | hive-169321 |
json_metadata | {"tags":["hive-169321","hive","coding","deutsch","hive-engine","hivejs","hive-coding","pob","hive-js","dev"],"app":"ecency/3.0.35-mobile","format":"markdown+html"} |
created | 2022-12-20 11:55:03 |
last_update | 2022-12-20 11:55:03 |
depth | 1 |
children | 0 |
last_payout | 2022-12-27 11:55: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 | 131 |
author_reputation | 19,250,085,524,596 |
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,250,008 |
net_rshares | 0 |
<center>🍕 PIZZA ! @hive-coding! The Hive.Pizza team manually upvoted your post. <sub>Please <a href="https://vote.hive.uno/@pizza.witness">vote for pizza.witness</a>!</sub></center>
author | pizzabot |
---|---|
permlink | re-hivejs-get-info-and-vote-20221218t174258z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2022-12-18 17:42:57 |
last_update | 2022-12-18 17:42:57 |
depth | 1 |
children | 0 |
last_payout | 2022-12-25 17:42:57 |
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 | 183 |
author_reputation | 7,698,943,017,949 |
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,208,412 |
net_rshares | 0 |
https://twitter.com/1386214711138660352/status/1604401298593529857 <sub> The rewards earned on this comment will go directly to the people( @mein-senf-dazu ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-hive-coding-hivejs-get-info-and-vote-1246 | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1","payoutToUser":["mein-senf-dazu"]}" | ||||||
created | 2022-12-18 09:04:00 | ||||||
last_update | 2022-12-18 09:04:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2022-12-25 09:04: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 | 273 | ||||||
author_reputation | 5,763,144,369,229,736 | ||||||
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 119,199,715 | ||||||
net_rshares | 0 |
Thanks for learning from this post
author | roky |
---|---|
permlink | re-hive-coding-20221220t21159537z |
category | hive-169321 |
json_metadata | {"tags":["hive-169321","hive","coding","deutsch","hive-engine","hivejs","hive-coding","pob","hive-js","dev"],"app":"ecency/3.0.35-mobile","format":"markdown+html"} |
created | 2022-12-20 15:02:00 |
last_update | 2022-12-20 15:02:00 |
depth | 1 |
children | 0 |
last_payout | 2022-12-27 15:02: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 | 34 |
author_reputation | 43,116,356,586,137 |
root_title | "HiveJS: get info and vote for witness - Informationen erhalten und für Witness voten #16" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 119,253,573 |
net_rshares | 0 |