# php-graphene-node-client It is PHP API client for [VIZ](https://github.com/viz-world)/[STEEM](https://github.com/steemit)/[GOLOS](https://github.com/goloschain)/[WHALESHARES](https://gitlab.com/beyondbitcoin) blockchain [Github](https://github.com/t3ran13/php-graphene-node-client) or [packagist](https://packagist.org/packages/t3ran13/php-graphene-node-client) with MIT license. Author @t3ran13 and active contributor @semasping ## In Release [v5.1.2](https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.1.2) - upd VIZ public nodes list - fix InitConnector bug for VIZ ## In Release [v5.1.3](https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.1.3) - VIZ content operation was deleted - VIZ custom operation was added ## In Release [v5.1.3](https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.2.0) - Steem HTTPS nodes was updated in connector - Own Classes with operations IDs and fields types was added for each chain - New GetTransactionHex command was added (debug your serialized transactions) - New BOOL and INT8 types were added for operation fields - Beneficiaries serialization was fixeds ### upd VIZ public nodes list Actual list of VIZ nodes are: - https://rpc.viz.lexai.host and wss://viz.lexai.host - https://solox.world and wss://solox.world/ws ### fix InitConnector bug for VIZ It was not working correct before and was fixed. Now you can use InitConnector for convenient simultaneous work with few chains. ```php $connector = InitConnector::getConnector(ConnectorInterface::PLATFORM_VIZ); ``` ### VIZ content operation was deleted It was deprecated and does not wark in VIZ anymore. ### VIZ custom operation was added It is the same as custom_json in STEEM/GOLOS/WHALESHARES, but in VIZ it has other name Example of using ```php $connector = InitConnector::getConnector(ConnectorInterface::PLATFORM_VIZ); $chainName = $connector->getPlatform(); /** @var CommandQueryData $tx */ $tx = Transaction::init($connector); $tx->setParamByKey( '0:operations:0', [ 'custom', [ 'required_auths' => [], 'required_posting_auths' => ['guest123'], 'id' => 'YOUR_ID', 'json' => json_encode(YOUR_JSON) ] ] ); Transaction::sign( $chainName, $tx, [ 'posting' => '5POSTING_KEY', ] ); $command = new BroadcastTransactionSynchronousCommand($connector); $answer = $command->execute( $tx ); ``` ### Steem HTTPS nodes was updated in connector Actual list of STEEM HTTPS nodes are: - https://rpc.steemviz.com - https://steemd.privex.io - https://api.steemit.com - https://anyx.io - https://rpc.usesteem.com ### Own Classes with operations IDs and fields types was added for each chain Each chain has own class with operations IDs and fields types: - ChainOperationsGolos.php - ChainOperationsSteem.php - ChainOperationsViz.php - ChainOperationsWhaleshares.php Thanks of this each chain can has difference in operations from other and it is easy to add this changes. ### New GetTransactionHex command was added (debug your serialized transactions) It is best way for dubag serialiaer with GetTransactionHex api method. You have to prepare Tx *without signature* and send it to node and witch back serialized hex string. ```php $chainName = $connector->getPlatform(); /** @var CommandQueryData $tx */ $tx = Transaction::init($connector); $tx->setParamByKey(// some data ); $command = new GetTransactionHexCommand($connector); $answer = $command->execute( $tx ); echo PHP_EOL . '<pre>' . print_r($answer, true) . '<pre>'; ``` ### New BOOL and INT8 types were added for operation fields This types use for serialization Tx. Now it is easy to add some operation with this types. ### Beneficiaries serialization was fixeds It was bug with serialization Tx with 2 and more beneficiaries. It works correct now. ------- It is better with each commit [Commits](https://github.com/t3ran13/php-graphene-node-client/commits/master) were done by me in master branch - fix InitConnector bug for VIZ - upd VIZ public nodes list - upd VIZ new operation - upd VIZ operation content is deleted - fix VIZ custom operation order - ups own operations list for each chain (last 14 days) - fix viz and whaleshares operations and new operation for steem, whale and golos (last 14 days) - add GetTransactionHex command (last 14 days) - add own serializer operations types for each chain (last 14 days) - add type BOOL for operation field and fix type beneficiaries (last 14 days) - upd https nodes of steem (last 14 days) - upd README (last 14 days) Compare [v5.1.1 - v5.2.0](https://github.com/t3ran13/php-graphene-node-client/compare/v5.1.1...v5.2.0)
author | t3ran13 |
---|---|
permlink | update-of-php-graphene-node-client-v5-1-2-v5-2-0 |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","opensource","steemdev","php"],"users":["t3ran13","semasping"],"links":["https://github.com/viz-world","https://github.com/steemit","https://github.com/goloschain","https://gitlab.com/beyondbitcoin","https://github.com/t3ran13/php-graphene-node-client","https://packagist.org/packages/t3ran13/php-graphene-node-client","https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.1.2","https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.1.3","https://github.com/t3ran13/php-graphene-node-client/releases/tag/v5.2.0","https://rpc.viz.lexai.host","https://solox.world","https://rpc.steemviz.com","https://steemd.privex.io","https://api.steemit.com","https://anyx.io","https://rpc.usesteem.com","https://github.com/t3ran13/php-graphene-node-client/commits/master","https://github.com/t3ran13/php-graphene-node-client/compare/v5.1.1...v5.2.0"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-05 06:21:30 |
last_update | 2019-03-05 06:21:30 |
depth | 0 |
children | 7 |
last_payout | 2019-03-12 06:21:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 38.309 HBD |
curator_payout_value | 10.890 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,797 |
author_reputation | 50,037,290,585,145 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,758,285 |
net_rshares | 67,222,333,437,582 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 4,414,153,869,826 | 18.41% | ||
grumlin | 0 | 1,078,813,676,576 | 100% | ||
bowess | 0 | 86,627,756,439 | 50% | ||
celebr1ty | 0 | 281,813,512,400 | 100% | ||
t3ran13 | 0 | 23,741,957,905 | 100% | ||
boddhisattva | 0 | 8,276,067,994 | 10% | ||
xroni | 0 | 36,841,151,920 | 100% | ||
t3lin | 0 | 18,268,133,055 | 100% | ||
neony | 0 | 14,829,634,062 | 77% | ||
abh12345 | 0 | 30,152,869,468 | 4.6% | ||
techslut | 0 | 84,146,780,490 | 20% | ||
minersean | 0 | 5,428,567,392 | 75% | ||
demartini | 0 | 1,833,176,336 | 100% | ||
erikaflynn | 0 | 14,883,167,341 | 35% | ||
php-node-client | 0 | 5,280,751,017 | 100% | ||
svinsent | 0 | 6,489,535,795 | 55% | ||
jakipatryk | 0 | 14,801,923,340 | 50% | ||
jga | 0 | 2,516,234,831 | 23.02% | ||
helo | 0 | 68,560,869,612 | 33.03% | ||
walnut1 | 0 | 50,761,803,573 | 23.02% | ||
lorenzor | 0 | 1,150,404,179 | 11.51% | ||
suesa | 0 | 115,805,015,719 | 25% | ||
ladyzarulem | 0 | 554,395,783 | 100% | ||
codingdefined | 0 | 28,868,242,810 | 20% | ||
tsoldovieri | 0 | 1,678,059,878 | 11.51% | ||
duremarr | 0 | 2,785,474,439 | 53% | ||
tykee | 0 | 12,004,670,014 | 23.02% | ||
syh7758520 | 0 | 4,559,542,697 | 100% | ||
iamphysical | 0 | 14,912,188,870 | 90% | ||
felixrodriguez | 0 | 845,343,735 | 8.05% | ||
azulear | 0 | 485,076,342 | 100% | ||
silviu93 | 0 | 5,700,481,443 | 23.02% | ||
eastmael | 0 | 7,485,576,826 | 50% | ||
espoem | 0 | 55,501,587,592 | 30% | ||
mcfarhat | 0 | 23,514,388,943 | 13.21% | ||
parzifal1 | 0 | 2,505,969,677 | 25% | ||
vishalsingh4997 | 0 | 201,818,222 | 23.02% | ||
loshcat | 0 | 2,553,659,753 | 100% | ||
elear | 0 | 7,258,979,581 | 46.04% | ||
zoneboy | 0 | 11,716,898,599 | 50% | ||
carloserp-2000 | 0 | 32,808,459,915 | 100% | ||
carlos84 | 0 | 1,429,350,165 | 23.02% | ||
ah-2002 | 0 | 0 | 100% | ||
che-shyr | 0 | 789,205,176 | 50% | ||
utopian-io | 0 | 58,589,906,964,478 | 46.04% | ||
jaff8 | 0 | 68,107,301,144 | 33.03% | ||
newsrx | 0 | 185,752,689 | 11.95% | ||
amestyj | 0 | 543,173,165 | 11.51% | ||
sandracarrascal | 0 | 71,553,633 | 23.02% | ||
ajayyy | 0 | 673,869,497 | 11.51% | ||
greenorange | 0 | 547,826,142 | 100% | ||
mcyusuf | 0 | 2,537,830,977 | 23.02% | ||
alexs1320 | 0 | 76,866,449,578 | 51% | ||
gentleshaid | 0 | 38,751,463,325 | 46.04% | ||
denjiro | 0 | 3,737,309,833 | 14% | ||
ivymalifred | 0 | 346,513,627 | 11.51% | ||
aussieninja | 0 | 8,700,154,573 | 23.02% | ||
ennyta | 0 | 110,941,136 | 11.51% | ||
vjap55 | 0 | 835,405,125 | 100% | ||
amosbastian | 0 | 97,706,609,169 | 33.03% | ||
eliaschess333 | 0 | 2,049,488,547 | 11.51% | ||
tdre | 0 | 79,880,625,397 | 100% | ||
ydavgonzalez | 0 | 423,816,322 | 1.15% | ||
asaj | 0 | 17,532,797,584 | 100% | ||
scienceangel | 0 | 74,674,121,662 | 50% | ||
jjay | 0 | 500,819,685 | 100% | ||
vanarchist | 0 | 2,700,847,274 | 100% | ||
tobias-g | 0 | 125,207,195,028 | 40% | ||
yrmaleza | 0 | 80,661,609 | 11.51% | ||
bishoppeter1 | 0 | 2,072,453,816 | 85% | ||
miguelangel2801 | 0 | 138,588,989 | 11.51% | ||
didic | 0 | 29,633,490,540 | 25% | ||
emiliomoron | 0 | 625,319,109 | 11.51% | ||
ulisesfl17 | 0 | 1,742,606,628 | 100% | ||
arac | 0 | 953,693,787 | 100% | ||
endopediatria | 0 | 121,535,415 | 4.6% | ||
fego | 0 | 21,915,782,666 | 33.03% | ||
tomastonyperez | 0 | 2,324,923,608 | 11.51% | ||
elvigia | 0 | 2,207,181,366 | 11.51% | ||
nebuladream | 0 | 1,525,881,781 | 40% | ||
mirandaiig | 0 | 434,125,461 | 100% | ||
luiscd8a | 0 | 1,565,660,913 | 80% | ||
eniolw | 0 | 8,534,321,965 | 100% | ||
geadriana | 0 | 98,099,564 | 3.45% | ||
josedelacruz | 0 | 944,076,622 | 11.51% | ||
viannis | 0 | 319,281,294 | 11.51% | ||
flores39 | 0 | 381,088,835 | 100% | ||
kendallron | 0 | 230,569,663 | 15% | ||
erickyoussif | 0 | 997,451,413 | 23.02% | ||
ryuna.siege | 0 | 208,786,447 | 100% | ||
indayclara | 0 | 260,896,730 | 7.5% | ||
anaestrada12 | 0 | 3,589,219,337 | 23.02% | ||
rsmartt777 | 0 | 130,982,748 | 90% | ||
joelsegovia | 0 | 621,617,984 | 11.51% | ||
kostybrat | 0 | 3,180,928,198 | 10% | ||
jesusfl17 | 0 | 388,340,650 | 100% | ||
bflanagin | 0 | 3,764,914,172 | 23.02% | ||
bestofph | 0 | 6,472,798,000 | 15% | ||
dalz | 0 | 7,366,930,026 | 18.41% | ||
ulockblock | 0 | 31,597,911,129 | 10.49% | ||
amart29 | 0 | 849,580,615 | 7.67% | ||
dssdsds | 0 | 3,503,524,397 | 23.02% | ||
jayplayco | 0 | 11,997,450,092 | 23.02% | ||
cryptouno | 0 | 521,481,699 | 5% | ||
fran.frey | 0 | 368,826,471 | 11.51% | ||
mops2e | 0 | 333,636,634 | 24% | ||
jrevilla | 0 | 151,520,363 | 23.02% | ||
alfonzoasdrubal | 0 | 89,095,001 | 23.02% | ||
swapsteem | 0 | 2,074,942,146 | 23.02% | ||
stem-espanol | 0 | 12,571,758,775 | 23.02% | ||
steem-ua | 0 | 1,209,277,448,834 | 11.95% | ||
giulyfarci52 | 0 | 197,256,904 | 11.51% | ||
devsup | 0 | 28,203,868,101 | 7% | ||
kaczynski | 0 | 147,513,818 | 100% | ||
teamcr | 0 | 826,469,330 | 100% | ||
berenice1 | 0 | 497,547,292 | 99% | ||
alex-hm | 0 | 935,812,893 | 50% | ||
kakakk | 0 | 3,432,349,946 | 23.02% | ||
peerzadaaabid | 0 | 571,705,417 | 100% | ||
mrsbozz | 0 | 133,290,683 | 5% | ||
ascorphat | 0 | 2,048,593,627 | 2.5% | ||
rewarding | 0 | 6,868,910,936 | 73.02% | ||
kassa.network | 0 | 845,469,916 | 100% | ||
skymin | 0 | 2,128,399,602 | 13.81% | ||
jk6276.mons | 0 | 1,878,710,124 | 46.04% | ||
curation.trail | 0 | 1,103,621,130 | 1.8% | ||
jaxson2011 | 0 | 1,768,771,219 | 46.04% | ||
eternalinferno | 0 | 227,153,405 | 46.04% | ||
utopian.trail | 0 | 18,413,548,427 | 46.04% |
Welcome back! It's cool to see you guys are still actively working on this, as I remember seeing some posts about this project before. Here is some feedback: * In the comparison there are some commits > 14 days old - even if we are sort of lenient with this, try and keep it below. * Some magic numbers like `16511` and variables called `n2`, `n3` etc. - could make into constants and make more descriptive respectively. * Could provide a description of what the function does instead of only having the arguments' names and types. * Some funny indentation in the lists. Is lining up everything like this common in PHP? Am interested to see what kind of features you guys add next. Any specific plans? --- Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-2-1-2-1-2-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | amosbastian |
---|---|
permlink | re-t3ran13-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190305t195727669z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-1-2-1-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-05 19:57:27 |
last_update | 2019-03-05 19:57:27 |
depth | 1 |
children | 4 |
last_payout | 2019-03-12 19:57:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.965 HBD |
curator_payout_value | 3.199 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,158 |
author_reputation | 174,473,586,900,705 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,785,516 |
net_rshares | 17,447,515,884,722 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
t3ran13 | 0 | 23,820,117,918 | 100% | ||
php-node-client | 0 | 3,307,511 | 1% | ||
mys | 0 | 7,439,039,354 | 8.56% | ||
espoem | 0 | 28,943,909,675 | 15% | ||
utopian-io | 0 | 17,023,387,014,044 | 12.11% | ||
shammi | 0 | 406,759,948 | 7% | ||
emrebeyler | 0 | 6,641,879,685 | 1% | ||
steemtaker | 0 | 6,026,991,775 | 6% | ||
aydant | 0 | 5,215,706,870 | 50% | ||
organicgardener | 0 | 10,885,997,099 | 35% | ||
holger80 | 0 | 60,348,165,342 | 10% | ||
amico | 0 | 961,619,547 | 0.33% | ||
mbot | 0 | 506,019,841 | 100% | ||
mightypanda | 0 | 250,734,771,539 | 100% | ||
ulockblock | 0 | 9,003,590,400 | 2.97% | ||
fastandcurious | 0 | 4,252,847,929 | 100% | ||
linknotfound | 0 | 499,489,999 | 100% | ||
ascorphat | 0 | 2,104,746,801 | 2.5% | ||
monster-inc | 0 | 6,260,179,157 | 100% | ||
oscarliam | 0 | 73,730,288 | 100% |
Hi :) Thanks for feedback! > Some funny indentation in the lists. Is lining up everything like this common in PHP? It is my style more than PSR, but at most it corresponds to PSR =) > Am interested to see what kind of features you guys add next. Any specific plans? I do not have so much time as before and i am working ander other project - subchain for steem/viz chains. i have some ideas about improvements for lib and i will add it in future
author | t3ran13 |
---|---|
permlink | re-amosbastian-re-t3ran13-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190305t202211662z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-05 20:23:30 |
last_update | 2019-03-05 20:23:30 |
depth | 2 |
children | 2 |
last_payout | 2019-03-12 20:23:30 |
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 | 449 |
author_reputation | 50,037,290,585,145 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,786,428 |
net_rshares | 0 |
It's the 2nd time this week I've seen indentation like this, pretty funny. It reminds me of what I used to do when I first started programming because I thought it looked nice, and then someone told me off lol.
author | amosbastian |
---|---|
permlink | re-t3ran13-re-amosbastian-re-t3ran13-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190305t214724787z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-05 21:47:24 |
last_update | 2019-03-05 21:47:24 |
depth | 3 |
children | 1 |
last_payout | 2019-03-12 21:47: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 | 210 |
author_reputation | 174,473,586,900,705 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,789,440 |
net_rshares | 8,393,197,877 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shammi | 0 | 406,466,483 | 7% | ||
steemtaker | 0 | 6,094,677,098 | 6% | ||
cheneats | 0 | 1,819,058,109 | 24% | ||
oscarliam | 0 | 72,996,187 | 100% |
Thank you for your review, @amosbastian! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-t3ran13-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190305t195727669z-20190307t231226z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-07 23:12:27 |
last_update | 2019-03-07 23:12:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-14 23:12:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,894,361 |
net_rshares | 0 |
#### Hi @t3ran13! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190305t213516z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-05 21:35:18 |
last_update | 2019-03-05 21:35:18 |
depth | 1 |
children | 0 |
last_payout | 2019-03-12 21:35:18 |
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 | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,789,000 |
net_rshares | 0 |
Hey, @t3ran13! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-update-of-php-graphene-node-client-v5-1-2-v5-2-0-20190306t002437z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-06 00:24:39 |
last_update | 2019-03-06 00:24:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-13 00:24:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "Update Of PHP Graphene Node Client [v5.1.2 - v5.2.0]" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,794,078 |
net_rshares | 0 |