## 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.2. 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.2 * New UnknownTransaction exception that is raised when using get_transaction with an unknown trx_id * New function is_transaction_existing which returns false, when a trx_id does not exists * beempy info does not show information for a trx_id * broadcast from TransactionBuilder can now return a trx_id, when set trx_id to True (default) * sign and finalizeOp from Hive and Steem return now the trx_id in a field * add export parameter to all broadcast commands in beempy * When setting unsigned in beempy, the default value of expires is changed to 3600 * beempy history returns account history ops in a table or stored in a json file ## Transaction_id is added to the returned dict when broadcasting The transaction id is now returned in the returned dict on sign() and finalizeOp() in Hive and Steem. This allows it to easily check if an operation could successfully send. ``` beempy upvote -w 25 @hivehustlers/hivehustlers-say-hello-to-usdhustlerm-power-up-sundays ``` returns now ``` { "expiration": "2020-06-21T19:38:48", "ref_block_num": 60836, "ref_block_prefix": 3155918752, "operations": [ [ "vote", { "voter": "holger80", "author": "hivehustlers", "permlink": "hivehustlers-say-hello-to-usdhustlerm-power-up-sundays", "weight": 2500 } ] ], "extensions": [], "signatures": [ "2024c3ab9ecd69b010a414114cc956f517d9d664dd24d728829fcebcf9f89b885571099549cb3f537ede0190c638bd0906acbd07994c1d289664236f2ee93b7765" ], "trx_id": "68db2522d1724f02430788e37b27694cbf7eb3f4" } ``` The same result could be obtained by ``` from beem.comment import Comment c= Comment("@dustsweeper/dustsweeper-s-faq") c.blockchain.wallet.unlock("my_pass") ret = c.upvote(weight=25, voter="holger80") print(ret["trx_id"]) ``` which returns ``` 6056e3d1d26bc4c2c637984c21aa841b7b3ea1a4 ``` We can now check both trx_ids and verify that my two votes were successfully broadcasted. ``` from beem.blockchain import Blockchain b = Blockchain() trx1 = b.get_transaction("68db2522d1724f02430788e37b27694cbf7eb3f4") print("Vote was broadcasted at block %d" % trx1["block_num"]) trx2 = b.get_transaction("6056e3d1d26bc4c2c637984c21aa841b7b3ea1a4") print("Vote was broadcasted at block %d" % trx2["block_num"]) ``` returns ``` Vote was broadcasted at block 44494269 Vote was broadcasted at block 44494376 ``` This allows it to check if a transaction was broadcasted without the need to parse all blocks. The information about the trx_id was also available in previous versions, but only when the transaction was build and send by hand with `TransactionBuilder`. ## beempy info can now be used to obtain information about a trx_id The `info` command is now able to return information about a trx_id. ``` beempy info 68db2522d1724f02430788e37b27694cbf7eb3f4 ``` ## Account history check with beempy ``` beempy history ``` can be used to check if a transaction could be broadcasted. ``` beempy history -n 2 ``` returns now ``` +----+---------------------------------------------------------------------------+ | Nr | Hist op | +----+---------------------------------------------------------------------------+ | 1 | { | | | "voter": "holger80", | | | "author": "dustsweeper", | | | "permlink": "dustsweeper-s-faq", | | | "weight": 2500, | | | "trx_id": "6056e3d1d26bc4c2c637984c21aa841b7b3ea1a4", | | | "block": 44494376, | | | "trx_in_block": 11, | | | "op_in_trx": 0, | | | "virtual_op": 0, | | | "timestamp": "2020-06-21T19:43:42", | | | "account": "holger80", | | | "type": "vote", | | | "_id": "d442e4c0b703020f99e7b739f37527fa9477ffa7", | | | "index": 173814 | | | } | | 2 | { | | | "voter": "holger80", | | | "author": "hivehustlers", | | | "permlink": "hivehustlers-say-hello-to-usdhustlerm-power-up-sundays", | | | "weight": 2500, | | | "trx_id": "68db2522d1724f02430788e37b27694cbf7eb3f4", | | | "block": 44494269, | | | "trx_in_block": 10, | | | "op_in_trx": 0, | | | "virtual_op": 0, | | | "timestamp": "2020-06-21T19:38:18", | | | "account": "holger80", | | | "type": "vote", | | | "_id": "6e20f474ff58dcd188763339820105bdbf59a1d4", | | | "index": 173813 | | | } | +----+---------------------------------------------------------------------------+ ``` The ``history` command can also be used to store the entiry account history as json file: ``` beempy history --number -1 --order 1 --virtual-ops --json-file my_hist.json holger80 ``` where `--number -1` returns all ops (otherwise it is used to limit the number of returned ops), `--order 1` returns the ops in the correct order, `--virtual-ops` returns also virtual ops and `--json-file my_hist.json` stores the ops in a json file. The stored ops in a json file can then be loaded and processed, e.g. with excel or similar tools. It is also possible to limit the returned ops by setting one ore more op types with for example`--only-ops transfer,vote`. ## Transaction can be exported to a file with -e or --export in beempy All beempy commands that broadcast something to the chain have now a `--export` parameter. This can be used to do offline signing more easily. ``` beempy -dx upvote --export vote.json -w 25 @paragism/my-thoughts-on-yield-farming-and-bat-pump ``` The `-dx` parameter set the expiration time to a new default value of 3600 seconds, meaning I have 1 hour to sign and broadcast my transaction. Now I can sign vote.json: ``` beempy sign -i vote.json -o vote_signed.json ``` (I do not need to enter my username, as I set holger80 as default account). Due to the new changes, vote_signed.json has now a new field with the trx_id: ``` "trx_id": "c3306c892edf0528b09b1da9c003bca0a0dd7088" ``` I can now broadcast the trx: ``` beempy broadcast -f vote_signed.json ``` After a few seconds ``` beempy info c3306c892edf0528b09b1da9c003bca0a0dd7088 ``` is returning details about the trx. ## How to check if a transaction was successfully broadcasted and retry when not That a transaction could be broadcasted without error message is no guarantee that the transaction is written into the hive chain. There is a small probability that a block could not be signed by a witness in time or is rejected because of an invalid operation inside the block. Thus it is always a good idea to check if the transaction was written into the chain. The new trx field can be used to easily build a loop in which it is checked if the trx_id is valid and known. When this is not the case, the transaction is broadcasted again: ``` from beem.blockchain import Blockchain from beem.comment import Comment import time b = Blockchain() c= Comment("@eveuncovered/roadtrip-east-varkaus") c.blockchain.wallet.unlock("my_pass") trx_id_found = False count = 0 while not trx_id_found and count < 5: count += 1 delay = 0 print("broadcasting trx") ret = c.upvote(weight=25, voter="holger80") trx_id = ret["trx_id"] print("Trx_id: %s" % trx_id) while not trx_id_found and delay < 120: print("checking trx_id...") trx_id_found = b.is_transaction_existing(trx_id) time.sleep(10) delay += 10 if not trx_id_found: print("Could not broadcast!") else: print("Transaction is written into the chain!") ``` returns ``` broadcasting trx Trx_id: d3df7b16b2e8e21a2084af9c21775ea697d0d8a1 checking trx_id... checking trx_id... checking trx_id... checking trx_id... checking trx_id... checking trx_id... Transaction is written into the chain! ``` With the help of the new `is_transaction_existing` function it is quite easy to check if a transaction was successfully broadcasted. ___ *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-transaction-id-is-returned-when-broadcasting |
category | hive-139531 |
json_metadata | "{"canonical_url": "https://hive.blog/hive-139531/@holger80/update-for-beem-transaction-id-is-returned-when-broadcasting", "community": "hive-139531", "app": "beempy/0.24.3", "users": ["paragism", "hivehustlers", "eveuncovered", "dustsweeper"], "links": ["https://peakd.com/witnesses", "https://hivesigner.com/sign/account-witness-vote?witness=holger80&approve=1", "https://github.com/holgern/beem", "https://cdn.steemitimages.com/DQmcRrwLPSywSYMierfP6um6mejeMNGjN9Rxw7audJqTDgb/beem-logo", "https://discord.gg/4HM592V"], "tags": ["development", "beem", "python"]}" |
created | 2020-06-21 20:47:36 |
last_update | 2020-06-21 20:51:18 |
depth | 0 |
children | 7 |
last_payout | 2020-06-28 20:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 38.232 HBD |
curator_payout_value | 26.247 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,413 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,100,574 |
net_rshares | 173,582,123,272,395 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 1,777,825,710,371 | 100% | ||
steempty | 0 | 13,013,728,110,703 | 100% | ||
tombstone | 0 | 157,673,580,574 | 7.5% | ||
fractalnode | 0 | 20,252,460,242 | 100% | ||
onealfa | 0 | 206,175,495,243 | 7.97% | ||
kingscrown | 0 | 1,395,106,807,269 | 20% | ||
flemingfarm | 0 | 140,511,770,332 | 80% | ||
oaldamster | 0 | 47,646,734,263 | 100% | ||
gerber | 0 | 1,410,436,251,926 | 20.6% | ||
ezzy | 0 | 1,623,010,299,406 | 20.6% | ||
ssjsasha | 0 | 810,181,112,759 | 100% | ||
inertia | 0 | 999,122,312,234 | 100% | ||
arcange | 0 | 57,924,921,265 | 2% | ||
deanliu | 0 | 3,372,608,653,194 | 100% | ||
exyle | 0 | 2,059,726,775,079 | 20.6% | ||
raphaelle | 0 | 1,568,613,678 | 2% | ||
marius19 | 0 | 5,715,734,757 | 100% | ||
ace108 | 0 | 163,405,475,686 | 6% | ||
logic | 0 | 260,085,062,397 | 65% | ||
timcliff | 0 | 1,215,304,263,668 | 100% | ||
laoyao | 0 | 47,335,594,273 | 100% | ||
somebody | 0 | 4,408,054,438 | 100% | ||
midnightoil | 0 | 166,121,470,453 | 100% | ||
xiaohui | 0 | 939,835,156,517 | 100% | ||
jphamer1 | 0 | 3,666,251,551,781 | 100% | ||
oflyhigh | 0 | 4,890,262,077,650 | 100% | ||
djennyfloro | 0 | 1,279,426,398 | 10% | ||
bidnat | 0 | 756,916,599 | 7.5% | ||
fooblic | 0 | 30,018,297,126 | 100% | ||
kiddarko | 0 | 12,665,609,142 | 10% | ||
fingolfin | 0 | 71,410,147,909 | 100% | ||
borran | 0 | 503,267,408,283 | 75% | ||
yulan | 0 | 16,734,987,097 | 100% | ||
sc-steemit | 0 | 291,278,841,422 | 100% | ||
helene | 0 | 1,236,362,549,566 | 100% | ||
lemouth | 0 | 1,745,442,440,258 | 100% | ||
stevescoins | 0 | 452,747,900,621 | 100% | ||
ethansteem | 0 | 87,135,952,650 | 100% | ||
someguy123 | 0 | 267,037,642,646 | 20.6% | ||
uwelang | 0 | 1,157,836,254,560 | 100% | ||
richardcrill | 0 | 192,718,036,162 | 100% | ||
dadview | 0 | 2,694,568,462 | 6% | ||
aggroed | 0 | 6,842,850,659,408 | 100% | ||
doitvoluntarily | 0 | 76,871,332,934 | 100% | ||
petrvl | 0 | 34,627,041,711 | 4.5% | ||
abh12345 | 0 | 566,603,206,127 | 25% | ||
funnyman | 0 | 3,738,710,545 | 20% | ||
steemcleaners | 0 | 4,039,326,821,405 | 65% | ||
justyy | 0 | 88,751,570,498 | 10% | ||
ssekulji | 0 | 17,283,291,136 | 100% | ||
gamer00 | 0 | 67,627,445,117 | 5% | ||
techslut | 0 | 106,631,950,645 | 20% | ||
triviummethod | 0 | 549,997,581 | 100% | ||
slider2990 | 0 | 49,378,530,800 | 25% | ||
adventureevryday | 0 | 11,119,647,395 | 20% | ||
devilwsy | 0 | 3,364,469,942 | 100% | ||
janiceting | 0 | 3,367,463,186 | 100% | ||
cardboard | 0 | 13,001,468,965 | 100% | ||
askari | 0 | 55,449,632,905 | 100% | ||
blackbunny | 0 | 74,306,473,417 | 100% | ||
lingfei | 0 | 82,548,314,021 | 100% | ||
tarazkp | 0 | 1,984,417,914,159 | 50% | ||
yyyy | 0 | 463,898,717 | 100% | ||
buzzbeergeek | 0 | 116,943,486 | 20% | ||
markkujantunen | 0 | 130,501,733,828 | 100% | ||
evildeathcore | 0 | 9,935,056,530 | 100% | ||
tabea | 0 | 24,588,701,534 | 30% | ||
danielsaori | 0 | 272,775,168,823 | 100% | ||
freebornsociety | 0 | 3,450,647,843 | 10% | ||
detlev | 0 | 19,904,952,112 | 1.5% | ||
steemitcitizen | 0 | 816,079,180 | 10% | ||
pichat | 0 | 30,045,915,642 | 100% | ||
dune69 | 0 | 69,333,969,718 | 20.6% | ||
tamaralovelace | 0 | 109,912,169,889 | 100% | ||
jerrybanfield | 0 | 940,769,551,994 | 100% | ||
rocksg | 0 | 134,822,294,615 | 100% | ||
mys | 0 | 8,226,781,173 | 2.06% | ||
exec | 0 | 250,258,219,646 | 100% | ||
eval | 0 | 858,184,907 | 100% | ||
mxzn | 0 | 5,735,275,414 | 10% | ||
mdosev | 0 | 3,516,223,669 | 10% | ||
jeanpi1908 | 0 | 71,834,523,598 | 50% | ||
belahejna | 0 | 5,805,837,845 | 4.5% | ||
giuatt07 | 0 | 301,114,143,718 | 25% | ||
lelon | 0 | 10,982,728,721 | 100% | ||
skepticology | 0 | 2,563,418,516 | 100% | ||
blacklux | 0 | 33,089,354,019 | 100% | ||
sam99 | 0 | 5,066,235,972 | 100% | ||
jayna | 0 | 16,022,108,680 | 5% | ||
ew-and-patterns | 0 | 233,725,598,057 | 9% | ||
whd | 0 | 2,695,221,053 | 2.06% | ||
d-pend | 0 | 266,489,624,257 | 10.3% | ||
offgridlife | 0 | 504,813,756,099 | 100% | ||
benedict08 | 0 | 177,060,738,502 | 50% | ||
mcoinz79 | 0 | 3,445,082,768,959 | 100% | ||
bubke | 0 | 2,518,303,333,758 | 100% | ||
maskur2840 | 0 | 3,064,344,558 | 100% | ||
jacekw | 0 | 62,449,101,254 | 100% | ||
rafalski | 0 | 1,711,438,712 | 11.53% | ||
drorion | 0 | 82,409,849,083 | 100% | ||
codingdefined | 0 | 240,313,175,877 | 100% | ||
hope-on-fire | 0 | 551,745,995,686 | 97% | ||
nicniezgrublem | 0 | 746,897,601 | 19.57% | ||
shitsignals | 0 | 7,250,575,003 | 20.6% | ||
themarkymark | 0 | 2,645,890,260,920 | 12% | ||
stayoutoftherz | 0 | 796,017,710,231 | 30% | ||
bambukah | 0 | 6,151,830,820 | 100% | ||
tykee | 0 | 1,945,213,338 | 50% | ||
yoogyart | 0 | 31,833,560,284 | 51% | ||
steemvote | 0 | 1,716,128,010,373 | 100% | ||
minsoenaing | 0 | 30,429,365,168 | 100% | ||
bronkong | 0 | 384,999,061,504 | 100% | ||
pawanregmi28 | 0 | 657,627,486 | 50% | ||
azirgraff | 0 | 46,429,817,141 | 100% | ||
jasonbu | 0 | 88,421,920,933 | 50% | ||
syedumair | 0 | 941,343,647,900 | 100% | ||
techtek | 0 | 45,927,563,957 | 100% | ||
onetin84 | 0 | 734,103,651,750 | 100% | ||
my451r | 0 | 32,836,234,650 | 100% | ||
felander | 0 | 86,150,923,839 | 20.6% | ||
santigs | 0 | 15,454,681,736 | 50% | ||
stoodkev | 0 | 2,891,563,205,410 | 100% | ||
noloafing | 0 | 3,786,822,170 | 5% | ||
tipu | 0 | 10,405,452,383,298 | 20.01% | ||
kimzwarch | 0 | 8,935,561,489 | 4% | ||
crokkon | 0 | 25,828,629,607 | 100% | ||
fbslo | 0 | 743,961,908 | 1.03% | ||
accelerator | 0 | 55,669,947,873 | 5% | ||
buildawhale | 0 | 6,307,698,855,286 | 12% | ||
yogacoach | 0 | 7,916,143,793 | 10.3% | ||
therealwolf | 0 | 7,819,447,251,183 | 25% | ||
deathwing | 0 | 21,156,277,880 | 20.6% | ||
revisesociology | 0 | 326,910,679,223 | 30% | ||
espoem | 0 | 299,191,004,042 | 100% | ||
makerhacks | 0 | 13,605,297,665 | 12% | ||
isnochys | 0 | 27,421,191,601 | 18% | ||
shadflyfilms | 0 | 5,952,244,491 | 100% | ||
daisyphotography | 0 | 25,809,168,355 | 100% | ||
fulcrumleader | 0 | 5,432,751,412 | 100% | ||
arabisouri | 0 | 70,173,573,665 | 100% | ||
eikejanssen | 0 | 634,042,510 | 100% | ||
caladan | 0 | 73,036,759,942 | 20.6% | ||
ronak10 | 0 | 12,453,130,510 | 100% | ||
mrsyria | 0 | 967,542,490 | 100% | ||
der-prophet | 0 | 4,780,830,506 | 100% | ||
tradingideas | 0 | 20,300,150,860 | 100% | ||
blockbrothers | 0 | 5,481,312,990 | 10.3% | ||
jexus77 | 0 | 1,264,170,334 | 100% | ||
quekery | 0 | 70,771,545,935 | 50% | ||
thegossip | 0 | 1,264,936,083 | 100% | ||
omstavan | 0 | 6,606,178,514 | 100% | ||
emrebeyler | 0 | 509,459,665,782 | 20.6% | ||
zakia | 0 | 34,164,574,187 | 100% | ||
dhaneshpk | 0 | 3,552,962,153 | 100% | ||
smartsteem | 0 | 3,433,305,488,257 | 25% | ||
shaotech | 0 | 234,477,611 | 100% | ||
anli | 0 | 4,514,221,912 | 99% | ||
andrepol | 0 | 7,498,750,293 | 99% | ||
mytechtrail | 0 | 38,041,348,252 | 15% | ||
tazi | 0 | 244,529,552,237 | 65% | ||
b00m | 0 | 16,693,456,748 | 12.5% | ||
cloris | 0 | 1,077,421,926 | 100% | ||
itchyfeetdonica | 0 | 26,307,602,863 | 30% | ||
smooms | 0 | 20,819,341,998 | 50% | ||
steembasicincome | 0 | 1,833,600,249,617 | 100% | ||
jpphotography | 0 | 44,038,759,548 | 36.64% | ||
candyboy | 0 | 35,371,804,146 | 100% | ||
leynedayana | 0 | 417,385,973 | 100% | ||
upmyvote | 0 | 9,601,127,284 | 12% | ||
jim888 | 0 | 178,470,706,728 | 22% | ||
phortun | 0 | 225,815,213,481 | 30% | ||
abitcoinskeptic | 0 | 41,773,984,658 | 20% | ||
kissi | 0 | 17,093,998,844 | 75% | ||
bartheek | 0 | 24,761,592,139 | 10% | ||
korinkrafting | 0 | 738,294,751 | 22.5% | ||
nealmcspadden | 0 | 418,972,027,012 | 20.6% | ||
mermaidvampire | 0 | 6,162,738,054 | 45% | ||
afiqsejuk | 0 | 699,167,641,209 | 100% | ||
ahmedsy | 0 | 1,812,781,112 | 100% | ||
patricklancaster | 0 | 1,666,557,640 | 10% | ||
purefood | 0 | 211,755,228,136 | 20.6% | ||
chrismadcboy2016 | 0 | 40,789,145,512 | 100% | ||
jimcustodio | 0 | 1,702,245,418 | 50% | ||
mattockfs | 0 | 25,986,672,565 | 100% | ||
vaansteam | 0 | 2,324,832,839 | 30% | ||
casberp | 0 | 64,266,888,492 | 21.99% | ||
philnewton | 0 | 872,385,035 | 12.5% | ||
udabeu | 0 | 10,875,558,353 | 41% | ||
cfminer | 0 | 559,950,851 | 100% | ||
chronocrypto | 0 | 712,046,207,674 | 20.6% | ||
nobyeni | 0 | 2,505,057,687 | 5% | ||
unconditionalove | 0 | 2,295,220,561 | 10.3% | ||
cadawg | 0 | 40,999,208,148 | 14.42% | ||
upfundme | 0 | 14,268,782,805 | 15% | ||
mastergerund | 0 | 2,692,450,942 | 100% | ||
ericburgoyne | 0 | 1,336,457,821 | 10% | ||
sudefteri | 0 | 20,971,293,223 | 100% | ||
happy-soul | 0 | 92,817,277,356 | 10% | ||
pkocjan | 0 | 8,286,797,791 | 16.48% | ||
maxpatternman | 0 | 29,535,849,270 | 100% | ||
condeas | 0 | 1,313,416,696,000 | 100% | ||
sashas | 0 | 3,876,726,267 | 100% | ||
anikys3reasure | 0 | 2,224,190,930 | 50% | ||
onlavu | 0 | 3,146,244,415 | 15% | ||
ipromote | 0 | 3,792,665,817 | 12% | ||
asgarth | 0 | 724,681,698,197 | 25% | ||
flugschwein | 0 | 26,895,748,079 | 75% | ||
hasmez | 0 | 92,395,992,140 | 100% | ||
cst90 | 0 | 51,573,338,279 | 100% | ||
matschi | 0 | 3,912,834,817 | 100% | ||
whack.science | 0 | 111,815,999,270 | 35% | ||
akifane | 0 | 3,683,574,374 | 100% | ||
russellstockley | 0 | 4,810,998,988 | 50% | ||
futurecurrency | 0 | 17,067,956,588 | 29% | ||
losi | 0 | 11,285,278,671 | 100% | ||
cruisin | 0 | 4,092,305,126 | 10% | ||
leeyh | 0 | 1,141,131,244,056 | 100% | ||
properfraction | 0 | 20,672,623,480 | 100% | ||
erikah | 0 | 132,657,003,975 | 25% | ||
satren | 0 | 84,202,216,175 | 30% | ||
lauchmelder | 0 | 4,583,970,163 | 100% | ||
theophile.roos | 0 | 2,159,954,803 | 100% | ||
lionsuit | 0 | 29,530,161,792 | 55% | ||
amico | 0 | 862,296,949,387 | 97.69% | ||
beleg | 0 | 908,398,166 | 2.06% | ||
marcus0alameda | 0 | 906,508,162 | 50% | ||
bestboom | 0 | 87,556,174,205 | 20.6% | ||
eunsik | 0 | 293,651,749,567 | 50% | ||
onepercentbetter | 0 | 220,257,419,311 | 100% | ||
ronaldoavelino | 0 | 81,905,464,470 | 25% | ||
schlafhacking | 0 | 313,394,143,196 | 100% | ||
lesmouths-travel | 0 | 7,921,087,978 | 100% | ||
sbi2 | 0 | 1,297,716,724,760 | 100% | ||
sekhet | 0 | 391,786,786 | 100% | ||
dera123 | 0 | 1,086,332,295,565 | 100% | ||
paragism | 0 | 11,989,635,261 | 55% | ||
jkramer | 0 | 625,066,221,714 | 100% | ||
flaxz | 0 | 21,612,021,544 | 10% | ||
elleok | 0 | 3,862,299,505 | 100% | ||
freddio | 0 | 28,489,470,008 | 15% | ||
alitavirgen | 0 | 727,322,963 | 15.4% | ||
gadrian | 0 | 163,983,380,664 | 100% | ||
dreimaldad | 0 | 83,696,673,215 | 40% | ||
angelinafx | 0 | 233,238,748 | 6% | ||
steemexperience | 0 | 243,490,076,576 | 100% | ||
saboin | 0 | 120,011,041,529 | 11% | ||
stefannikolov | 0 | 1,072,071,085 | 10% | ||
morellys2004 | 0 | 59,602,896,111 | 100% | ||
sbi3 | 0 | 933,136,304,672 | 100% | ||
gagago | 0 | 9,799,864,529 | 100% | ||
promobot | 0 | 199,389,452,810 | 100% | ||
superlao | 0 | 24,308,040,919 | 100% | ||
glodniwiedzy | 0 | 5,194,182,379 | 19.57% | ||
sbi4 | 0 | 664,357,046,145 | 100% | ||
fw206 | 0 | 917,364,473,027 | 100% | ||
slobberchops | 0 | 2,353,752,473,526 | 50% | ||
atanas007 | 0 | 6,196,221,447 | 100% | ||
carlpei | 0 | 311,571,351,794 | 100% | ||
meins0815 | 0 | 8,361,161,361 | 23% | ||
crimo | 0 | 712,853,661 | 11.5% | ||
davidesimoncini | 0 | 4,247,535,576 | 14% | ||
crypticat | 0 | 7,926,411,503 | 100% | ||
helpyou | 0 | 3,005,058,976 | 50% | ||
archisteem | 0 | 2,523,564,442 | 7.5% | ||
spamfarmer | 0 | 977,632,266 | 25% | ||
linnyplant | 0 | 43,326,559,877 | 100% | ||
commonlaw | 0 | 4,426,524,342 | 35% | ||
bluewall | 0 | 30,266,179,660 | 100% | ||
solarwarrior | 0 | 1,937,577,138,249 | 100% | ||
merlion | 0 | 39,530,997,301 | 100% | ||
chrisbolten | 0 | 9,789,826,468 | 9% | ||
simplegame | 0 | 85,419,092,571 | 100% | ||
digital.mine | 0 | 206,788,959,026 | 1% | ||
elmundodexao | 0 | 9,717,119,242 | 100% | ||
sbi5 | 0 | 486,206,380,960 | 100% | ||
linco | 0 | 7,459,696,794 | 4% | ||
qam2112 | 0 | 12,591,765,427 | 100% | ||
swisswitness | 0 | 12,548,802,125 | 20.6% | ||
kahvesizlik | 0 | 1,197,291,267 | 100% | ||
inteligente | 0 | 30,761,118 | 21.99% | ||
moneybaby | 0 | 809,046,861 | 2.5% | ||
cryptojiang | 0 | 10,195,250,279 | 100% | ||
ashikstd | 0 | 834,237,647 | 10% | ||
longer | 0 | 2,252,180,175 | 5% | ||
roger5120 | 0 | 151,766,691,650 | 14% | ||
sbi6 | 0 | 362,337,535,504 | 100% | ||
libuska | 0 | 1,981,165,382 | 100% | ||
drsensor | 0 | 2,185,219,556 | 80% | ||
urdreamscometrue | 0 | 20,361,039,379 | 100% | ||
gallerani | 0 | 1,271,702,460 | 20.6% | ||
pagliozzo | 0 | 9,280,420,064 | 20% | ||
sonder-an | 0 | 341,713,927 | 100% | ||
toomatoo | 0 | 73,089,773,213 | 100% | ||
dalz | 0 | 154,605,788,824 | 50% | ||
smartvote | 0 | 199,712,765,855 | 6% | ||
goumao | 0 | 34,750,506,247 | 100% | ||
sbi7 | 0 | 263,428,035,087 | 100% | ||
julian2013 | 0 | 927,526,113 | 0.92% | ||
dlike | 0 | 262,749,522,406 | 20.6% | ||
triptolemus | 0 | 1,939,499,034 | 20.6% | ||
gorbisan | 0 | 2,864,352,044 | 1.54% | ||
engrave | 0 | 264,029,845,298 | 19.57% | ||
furioslosi | 0 | 6,281,503,342 | 100% | ||
kr-coffeesteem | 0 | 75,514,964,634 | 100% | ||
arkmy | 0 | 2,055,571,349 | 84% | ||
bergamote | 0 | 4,082,661,696 | 100% | ||
a-bot | 0 | 34,376,171,109 | 100% | ||
bobby.madagascar | 0 | 8,048,957,096 | 5.15% | ||
laissez-faire | 0 | 51,510,574 | 100% | ||
agromeror | 0 | 86,792,622,375 | 100% | ||
cultus-forex | 0 | 87,600,699,788 | 100% | ||
musinka | 0 | 1,976,201,603 | 100% | ||
bonnie30 | 0 | 692,991,660 | 50% | ||
reverendrum | 0 | 1,078,471,006 | 49.5% | ||
sbi8 | 0 | 201,361,438,215 | 100% | ||
ecoinstar | 0 | 67,374,501,398 | 100% | ||
dosdudes | 0 | 24,548,333,401 | 100% | ||
ibc | 0 | 57,018,865,842 | 100% | ||
ldp | 0 | 3,215,975,748 | 20.6% | ||
steemitcuration | 0 | 9,491,622,458 | 25% | ||
mannaman | 0 | 696,569,660 | 99% | ||
sbi9 | 0 | 132,559,769,262 | 100% | ||
actifit-peter | 0 | 350,565,923,721 | 99.83% | ||
besheda | 0 | 1,209,501,662 | 43% | ||
thrasher666 | 0 | 1,807,393,606 | 60% | ||
everyoung | 0 | 623,953,264 | 100% | ||
florino | 0 | 799,213,678 | 15% | ||
forecasteem | 0 | 457,716,587,777 | 100% | ||
eliasseth | 0 | 5,854,757,607 | 100% | ||
followjohngalt | 0 | 109,912,333,278 | 20.6% | ||
mistia | 0 | 6,495,113,991 | 100% | ||
avel692 | 0 | 16,107,848,175 | 100% | ||
sbi10 | 0 | 116,428,562,836 | 100% | ||
smonia | 0 | 1,929,303,900 | 100% | ||
starrouge | 0 | 598,821,614 | 30% | ||
danpendergraft | 0 | 585,240,304 | 5.15% | ||
wherein | 0 | 539,744,341,474 | 60% | ||
brucutu | 0 | 21,133,501,578 | 100% | ||
zerofive | 0 | 544,108,227 | 30% | ||
j-p-bs | 0 | 1,134,015,903 | 50% | ||
cyberrn | 0 | 17,342,100,467 | 100% | ||
smon-fan | 0 | 1,557,479,791 | 100% | ||
brucutu1 | 0 | 4,267,053,985 | 100% | ||
brucutu2 | 0 | 4,336,773,961 | 100% | ||
steemillu | 0 | 19,283,500,092 | 50% | ||
tr77 | 0 | 610,166,622 | 100% | ||
flyingbolt | 0 | 1,532,524,949 | 20.6% | ||
determine | 0 | 1,240,836,941 | 20.6% | ||
smonian | 0 | 876,316,635 | 100% | ||
cnstm | 0 | 177,208,587,800 | 60% | ||
tonalddrump | 0 | 4,317,425,546 | 50% | ||
permaculturedude | 0 | 4,081,075,197 | 10.3% | ||
likuang007 | 0 | 7,650,053,431 | 60% | ||
agent14 | 0 | 1,319,853,853,907 | 35% | ||
tubiska | 0 | 4,270,926,571 | 100% | ||
monster.oo7 | 0 | 700,152,173 | 50% | ||
pocoto | 0 | 4,424,232,949 | 100% | ||
circa | 0 | 324,576,134,599 | 100% | ||
kitty-kitty | 0 | 4,436,099,335 | 100% | ||
jamesbattler | 0 | 128,781,246,893 | 100% | ||
jussara | 0 | 4,499,506,282 | 100% | ||
cyrillo | 0 | 4,311,945,190 | 100% | ||
smon-joa | 0 | 20,534,650,258 | 100% | ||
lianjingmedia | 0 | 561,334,249 | 60% | ||
broxi | 0 | 9,838,379,338 | 50% | ||
brujas | 0 | 1,069,541,250 | 100% | ||
landshutbrauhaus | 0 | 5,986,619,240 | 100% | ||
realgoodcontent | 0 | 870,581,333 | 100% | ||
leeyh2 | 0 | 17,027,694,409 | 50% | ||
richie.rich | 0 | 28,899,971,671 | 100% | ||
peter-bot | 0 | 2,108,480,520 | 100% | ||
hungrybear | 0 | 7,426,987,924 | 100% | ||
carioca | 0 | 4,380,307,868 | 100% | ||
abbenay | 0 | 1,258,748,840 | 6% | ||
sm-skynet | 0 | 604,480,335 | 100% | ||
bewithbreath | 0 | 2,664,065,297 | 5% | ||
hungryharish | 0 | 1,361,783,055 | 5.15% | ||
ttg | 0 | 618,430,875,979 | 100% | ||
maxsieg | 0 | 743,020,145 | 25% | ||
steemcartel | 0 | 4,072,781,316 | 50% | ||
szf | 0 | 964,521,783 | 50% | ||
blue.rabbit | 0 | 725,068,288,727 | 100% | ||
epicdice | 0 | 62,669,302,188 | 7.5% | ||
battlegames | 0 | 504,031,269,272 | 99% | ||
raspibot | 0 | 3,879,098,222 | 100% | ||
blockchainpeople | 0 | 117,327,459 | 21.99% | ||
gadrian-sp | 0 | 18,767,141,820 | 100% | ||
minigame | 0 | 1,292,976,408,364 | 100% | ||
monsterjamgold | 0 | 7,053,098,102 | 100% | ||
gulf41 | 0 | 5,875,188,072 | 100% | ||
sparschwein | 0 | 18,867,927,024 | 50% | ||
sm-silva | 0 | 2,370,088,437 | 10.3% | ||
naltedtirt | 0 | 1,970,245,973 | 50% | ||
stickstore | 0 | 418,816,691 | 50% | ||
likwid | 0 | 23,576,924,204,218 | 100% | ||
mini.supporter | 0 | 596,849,070,459 | 100% | ||
swedishdragon76 | 0 | 2,473,135,941 | 50% | ||
dachcolony | 0 | 2,395,424,130 | 100% | ||
tinyhousecryptos | 0 | 533,381,462 | 5% | ||
plankton.token | 0 | 26,212,015,397 | 30% | ||
captain.kirk | 0 | 14,217,799,544 | 50% | ||
leighscotford | 0 | 1,600,407,671 | 4% | ||
phillarecette | 0 | 23,279,547,170 | 100% | ||
iamjohn | 0 | 1,573,345,118 | 25% | ||
firefuture | 0 | 1,064,656,564 | 20.6% | ||
ilovecanada | 0 | 5,679,024,375 | 50% | ||
steemindian | 0 | 1,775,211,276 | 10.3% | ||
vxc | 0 | 644,513,067 | 10% | ||
imbartley | 0 | 1,555,456,769 | 50% | ||
leeyh3 | 0 | 3,675,220,299 | 50% | ||
milu-the-dog | 0 | 9,194,297,088 | 20.6% | ||
lrekt01 | 0 | 2,668,783,089 | 100% | ||
triplea.bot | 0 | 7,349,407,504 | 20.6% | ||
steem.leo | 0 | 553,446,488,163 | 20.6% | ||
condeas.pal | 0 | 824,258,289 | 90% | ||
holycow2019 | 0 | 287,121,509 | 100% | ||
bizventures | 0 | 934,497,417 | 10% | ||
votebetting | 0 | 628,796,521,055 | 50% | ||
leeyh5 | 0 | 1,678,602,312 | 50% | ||
freddio.sport | 0 | 4,880,823,568 | 15% | ||
zaku-pal | 0 | 765,308,036 | 20.6% | ||
zaku-leo | 0 | 758,930,520 | 20.6% | ||
babytarazkp | 0 | 2,634,402,432 | 50% | ||
asteroids | 0 | 119,190,332,677 | 20.6% | ||
samscalet | 0 | 2,424,252,022 | 100% | ||
mapxv | 0 | 10,798,807,292 | 29% | ||
tokenindustry | 0 | 3,636,284,922 | 80% | ||
ticketyboo | 0 | 13,034,611,144 | 100% | ||
ticketywoof | 0 | 13,032,758,762 | 100% | ||
maddogmike | 0 | 5,569,032,632 | 50% | ||
lisamgentile1961 | 0 | 672,788,479 | 5% | ||
sbi-tokens | 0 | 5,471,816,477 | 35.19% | ||
iamraincrystal | 0 | 15,716,150,661 | 10% | ||
one.life | 0 | 4,460,387,106 | 20.55% | ||
elianaicgomes | 0 | 3,719,645,304 | 25% | ||
bradleyarrow | 0 | 97,893,855,351 | 20% | ||
re2pair | 0 | 240,712,409 | 100% | ||
ufm.pay | 0 | 70,597,861,065 | 11.25% | ||
maxuvv | 0 | 628,016,002 | 9% | ||
maxuvd | 0 | 21,683,058,389 | 6% | ||
dappcoder | 0 | 28,091,909,757 | 16.8% | ||
borbina | 0 | 13,135,074,801 | 100% | ||
ctl001 | 0 | 593,960,618 | 100% | ||
andylein | 0 | 42,102,501,909 | 50% | ||
abh12345.medi | 0 | 39,285,372 | 25% | ||
therealyme | 0 | 1,246,652,544 | 16.48% | ||
blocktvnews | 0 | 1,259,111,463 | 10.3% | ||
huaren.news | 0 | 227,994,196,384 | 9% | ||
goodreader | 0 | 2,846,008,479 | 18% | ||
detetive | 0 | 26,732,106 | 21.99% | ||
gerbo | 0 | 204,112,862 | 20.6% | ||
kaeserotor | 0 | 44,575,304,049 | 100% | ||
kryptoformator | 0 | 2,062,341,789 | 2.25% | ||
policewala | 0 | 32,626,608,527 | 20% | ||
steempower-001 | 0 | 529,714,356 | 100% | ||
rcaine | 0 | 5,024,346,915 | 50% | ||
tongchat27 | 0 | 1,389,672,387,824 | 100% | ||
searchbot | 0 | 875,182,003 | 49.5% | ||
tailah.bayu | 0 | 2,843,813,114 | 100% | ||
ribary | 0 | 6,791,781,453 | 10.3% | ||
jeffmackinnon | 0 | 640,531,103 | 5% | ||
dollarbills | 0 | 5,597,201,516 | 12% | ||
piratedice | 0 | 922,087,354 | 49.5% | ||
bilpcoinbpc | 0 | 852,040,288 | 32.5% | ||
mice-k | 0 | 81,521,975,700 | 20.6% | ||
bela29 | 0 | 314,874,688 | 100% | ||
staryao | 0 | 6,480,137,965 | 21% | ||
abu.hair | 0 | 146,467,588 | 100% | ||
bib15hash | 0 | 769,288,466 | 100% | ||
steemcityrewards | 0 | 5,092,165,813 | 20.6% | ||
dpend.active | 0 | 6,919,217,627 | 4.12% | ||
stuntman.mike | 0 | 47,703,104,187 | 100% | ||
picciridda2 | 0 | 4,071,226,146 | 100% | ||
fengchao | 0 | 1,437,609,762 | 2% | ||
hivewatchers | 0 | 181,412,581,110 | 65% | ||
hiq | 0 | 38,053,679,786 | 50% | ||
folklure | 0 | 1,758,224,659 | 10.3% | ||
robwillmann | 0 | 1,537,435,034 | 10% | ||
nulledgh0st | 0 | 1,383,034,209,953 | 100% | ||
gitplait | 0 | 61,160,025,537 | 100% | ||
softworld | 0 | 671,016,163,754 | 49% | ||
polish.hive | 0 | 53,004,401,593 | 20.6% | ||
alexbalan | 0 | 2,018,574,487 | 100% | ||
dcityrewards | 0 | 517,972,382,993 | 20.6% | ||
sketching | 0 | 1,132,453,919 | 10.3% | ||
ninnu | 0 | 835,383,654 | 15% | ||
tattytoque | 0 | 891,408,402 | 50% | ||
archon-mining | 0 | 4,265,698,765 | 15% | ||
rihc94 | 0 | 13,250,657,721 | 50% | ||
djsl82 | 0 | 2,079,434,488 | 25% | ||
mrpg79 | 0 | 618,270,587 | 50% | ||
rz1996 | 0 | 3,891,297,597 | 100% | ||
hivehustlers | 0 | 436,976,856,696 | 100% | ||
beehivetrader | 0 | 131,317,820,582 | 100% | ||
hiveswag | 0 | 547,800,580 | 50% | ||
ronavel | 0 | 278,188,588,828 | 20% | ||
pyramidone | 0 | 417,340,328 | 100% | ||
hivecur | 0 | 47,294,481,796 | 20.6% | ||
drpull53 | 0 | 0 | 100% | ||
improbableliason | 0 | 1,573,608,629 | 50% | ||
rryblogs | 0 | 572,867,588 | 100% | ||
hiveboy | 0 | 135,083,444 | 100% | ||
kingturk | 0 | 115,077,865 | 100% | ||
saviolajr7 | 0 | 136,946,572 | 100% | ||
luisghs | 0 | 0 | 100% | ||
cryptonax | 0 | 0 | 100% | ||
anewlakdk84 | 0 | 0 | 30% | ||
roselito | 0 | 0 | 100% | ||
saviour98 | 0 | 0 | 100% | ||
doodie1996 | 0 | 0 | 100% |
😯😯😯
author | hiveboy |
---|---|
permlink | qcbmgo |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-06-22 09:31:36 |
last_update | 2020-06-22 09:31:36 |
depth | 1 |
children | 0 |
last_payout | 2020-06-29 09:31: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 | 3 |
author_reputation | 412,839,840,096 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,109,479 |
net_rshares | 518,176,927 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempower-001 | 0 | 518,176,927 | 100% |
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/toppayoutweek.png"></td><td>Your post got the highest payout of the week</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-20200622t033535000z |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-06-22 03:35:33 |
last_update | 2020-06-22 03:35:33 |
depth | 1 |
children | 0 |
last_payout | 2020-06-29 03:35: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 | 766 |
author_reputation | 369,424,490,717,359 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,105,248 |
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-transaction-id-is-returned-when-broadcasting-20200621t204923z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-06-21 20:49:24 |
last_update | 2020-06-21 20:49:24 |
depth | 1 |
children | 0 |
last_payout | 2020-06-28 20:49:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 393 |
author_reputation | 32,074,948,443 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,100,601 |
net_rshares | 0 |
Great addition to the functionality, will be a great helper to make sure things run smoothly.
author | sc-steemit |
---|---|
permlink | re-holger80-qcb893 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-22 04:24:39 |
last_update | 2020-06-22 04:24:39 |
depth | 1 |
children | 0 |
last_payout | 2020-06-29 04:24:39 |
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 | 94 |
author_reputation | 28,448,644,499,713 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,105,820 |
net_rshares | 204,957,085,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 204,957,085,196 | 5% |
# Manage nodes that does not support TRX Lookups This feature is very usefull, but some nodes has lookup by TRX disbaled, making the example code above crash and fail. With a few minor changes we can handle these issues. ``` import beemapi ..... while not trx_id_found and delay < 120: print("- Checking trx_id....") try: trx_id_found = hiveBlockchain.is_transaction_existing(trx_id) except beemapi.exceptions.RPCError as err: old_node_url = hive.rpc.url hive.rpc.next() new_node_url = hive.rpc.url print("Caught RPC Error: %s " % (err)) print("Switching from %s to %s" % (old_node_url, new_node_url)) time.sleep(10) delay += 10 if not trx_id_found: print("- Cound not broadcast!") ..... ``` What this code does is that if we have an exception with "RPCError" we will switch node to the next one. ### Example Output ``` - Checking trx_id.... Caught RPC Error: Assert Exception:false: This node's operator has disabled operation indexing by transaction_id Switching from https://rpc.ausbit.dev to https://hive.roelandp.nl - Checking trx_id.... - Checking trx_id.... ```
author | sc-steemit |
---|---|
permlink | re-holger80-qcmiyr |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-06-28 06:49:39 |
last_update | 2020-06-28 08:17:09 |
depth | 1 |
children | 0 |
last_payout | 2020-07-05 06:49:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.122 HBD |
curator_payout_value | 0.122 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,250 |
author_reputation | 28,448,644,499,713 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,218,279 |
net_rshares | 1,049,238,203,186 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 1,049,238,203,186 | 25% |
As always thanks for what you do. Also the witness comment at the end worked! I went back and checked and did not have you voted. You are now!
author | simplegame |
---|---|
permlink | re-holger80-qcapvm |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-21 21:47:48 |
last_update | 2020-06-21 21:47:48 |
depth | 1 |
children | 1 |
last_payout | 2020-06-28 21:47:48 |
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 | 143 |
author_reputation | 136,655,333,876,456 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,101,400 |
net_rshares | 204,755,032,005 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
holger80 | 0 | 204,755,032,005 | 5% |
Thanks for your support!
author | holger80 |
---|---|
permlink | re-simplegame-qccj6h |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.05.5"} |
created | 2020-06-22 21:18:21 |
last_update | 2020-06-22 21:18:21 |
depth | 2 |
children | 0 |
last_payout | 2020-06-29 21:18: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 | 24 |
author_reputation | 358,857,509,568,825 |
root_title | "update for beem: transaction id is returned when broadcasting" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,120,941 |
net_rshares | 12,557,454,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 4,926,919,242 | 99% | ||
andrepol | 0 | 7,350,123,788 | 99% | ||
holycow2019 | 0 | 280,411,855 | 100% |