create account

Update on BlockTrades Hive core coding by blocktrades

View this thread on: hive.blogpeakd.comecency.com
· @blocktrades · (edited)
$49.56
Update on BlockTrades Hive core coding
We’ve spent the past week analyzing the performance of Eclipse hived/hivemind in our API service (api.hive.blog) and making improvements based on real-world loading patterns. 

It’s been a very productive week and we’ve resolved most of the outstanding issues reported and performance problems we observed. We’ve also identified and fixed several longstanding issues in the hived mutex locking code that prevented peak performance and led to potential data corruption issues.

# Hived work (blockchain node software)

We made a number of non-consensus changes to improve hived performance and fix old bugs:

We reviewed the locking used to protect the chainbase database and found several serious longstanding bugs that showed up under high stress API loading of a hived node. These bugs could lead to data corruption and non-optimal performance. Those fixes are incorporated into this merge request:
https://gitlab.syncad.com/hive/hive/-/merge_requests/143


After fixing these problems, we ran several high stress tests using the `siege` tool and were unable to “break” hived’s operation anymore. We were also able to get hived to fully utilize all the server’s cores (48 on our test system), demonstrating that the locking is fairly optimal for realistic loads.

As a performance optimization, we enabled filtering of operations returned by one of the most time-consuming API calls, `get_account_history`: 
https://gitlab.syncad.com/hive/hive/-/merge_requests/136
https://gitlab.syncad.com/hive/hive/-/merge_requests/137
https://gitlab.syncad.com/hive/hive/-/merge_requests/139


We made several changes to API responses returned by hived, mostly in response to reports from apps developers:
https://gitlab.syncad.com/hive/hive/-/merge_requests/125
https://gitlab.syncad.com/hive/hive/-/merge_requests/126
https://gitlab.syncad.com/hive/hive/-/merge_requests/133

We also limited the max number of operation of operations to  that can be fetched by this call to 1k operations (previously it allowed up to 10k operations) to optimize hived throughput: https://gitlab.syncad.com/hive/hive/-/commit/9a05f4d780fc98b891f51ab4b88ebec89fde467b

We corrected account-impacting for several virtual operations created recently:
https://gitlab.syncad.com/hive/hive/-/merge_requests/134

## Hived status

We started a full replay and a full sync early this morning to check all the above changes (full replay takes around 18 hours). We don’t expect any issues, but there is a very small chance for issues due to the mutex locking changes, even though no consensus changes were made.

With these changes, I think hived’s performance and reliability has been substantially improved over its  past condition and it seems quite solid in the face of very substantial API traffic loading. 

One minor issue still to be resolved is the longstanding issue with hived crashing if it receives API traffic when starting up, so we may tackle that next, since it can be an annoyance when updating several hiveds deployed inside of a API server node configuration. 

**As this version contains substantial operational improvements, we’ve tagged this version as [v1.24.5](https://gitlab.syncad.com/hive/hive/-/releases/v1.24.5), and it’s a strongly recommended upgrade for all API server nodes. However, there’s no need for exchanges or consensus nodes to upgrade to this version, since the performance improvements mostly come into play when a node is handling significant API traffic.**

# Hivemind

We made numerous optimizations and bug fixes in hivemind this past week:

https://gitlab.syncad.com/hive/hivemind/-/merge_requests/311
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/306
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/312
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/314
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/291
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/280
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/316
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/318
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/323
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/226
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/322
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/289
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/315
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/326
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/321
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/325
https://gitlab.syncad.com/hive/hivemind/-/merge_requests/328



## Hivemind status (2nd layer social media microservice)

By late tomorrow I expect we’ll have resolved all the remaining big issues with hivemind responses and performance, other than reputation support (which we’ve intentionally left out until all other issues were resolved).

# Condenser + Condenser wallet (open-source code for **hive.blog**)

Merged in support for decentralized lists:
https://gitlab.syncad.com/hive/condenser/-/merge_requests/135
This functionality is still waiting one last issue to be resolved in hivemind, so it won’t be fully testable until tomorrow when we deploy a new version of hivemind.

We made numerous changes this week to improve condenser’s wallet (corrected some display issues and improved performance of page loads by using newer, faster API calls), including new features in the proposals page:
https://gitlab.syncad.com/hive/wallet/-/merge_requests/42
https://gitlab.syncad.com/hive/wallet/-/merge_requests/43
https://gitlab.syncad.com/hive/wallet/-/merge_requests/45
https://gitlab.syncad.com/hive/wallet/-/merge_requests/52
https://gitlab.syncad.com/hive/wallet/-/merge_requests/54
https://gitlab.syncad.com/hive/wallet/-/merge_requests/55
https://gitlab.syncad.com/hive/wallet/-/merge_requests/56
https://gitlab.syncad.com/hive/wallet/-/merge_requests/57
https://gitlab.syncad.com/hive/wallet/-/merge_requests/60
https://gitlab.syncad.com/hive/wallet/-/merge_requests/62
https://gitlab.syncad.com/hive/wallet/-/merge_requests/64
https://gitlab.syncad.com/hive/wallet/-/merge_requests/65
https://gitlab.syncad.com/hive/wallet/-/merge_requests/68
https://gitlab.syncad.com/hive/wallet/-/merge_requests/70

Proposals page changes:
https://gitlab.syncad.com/hive/wallet/-/merge_requests/47
https://gitlab.syncad.com/hive/wallet/-/merge_requests/49
https://gitlab.syncad.com/hive/wallet/-/merge_requests/51


## Condenser status

Condenser is looking pretty good at this point, but we’ll continue to test and look for any remaining problems.

# Hive-js improvements

In order to make hive.blog faster, we modified hive-js to support the new option to filter the operations fetched by the get_account_history call:
https://gitlab.syncad.com/hive/hive-js/-/merge_requests/12
https://gitlab.syncad.com/hive/hive-js/-/merge_requests/13
https://gitlab.syncad.com/hive/hive-js/-/merge_requests/14



# What’s next for the week?

Tomorrow we’ll hopefully be deploying a new hivemind with all the performance improvements and fixes we made in the last week, after some real world traffic testing on our API node.

We’ll also be testing condenser and the wallet and looking for fixes and optimizations we can make.

**Assuming deployment of latest hivemind goes well tomorrow, we’ll likely still need to make a few more fixes as issues get reported, but I expect that by the latter part of the coming week we can begin to analyze feasibility for various previously suggested features for HF25 and also intermediate changes that aren’t consensus changes that can be released earlier.**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 549 others
👎  , ,
properties (23)
authorblocktrades
permlinkupdate-on-blocktrades-hive-core-coding
categoryhive-139531
json_metadata{"tags":["hive","blockchain","software","blocktrades"],"links":["https://gitlab.syncad.com/hive/hive/-/merge_requests/143","https://gitlab.syncad.com/hive/hive/-/merge_requests/136","https://gitlab.syncad.com/hive/hive/-/merge_requests/137","https://gitlab.syncad.com/hive/hive/-/merge_requests/139","https://gitlab.syncad.com/hive/hive/-/merge_requests/125","https://gitlab.syncad.com/hive/hive/-/merge_requests/126","https://gitlab.syncad.com/hive/hive/-/merge_requests/133","https://gitlab.syncad.com/hive/hive/-/commit/9a05f4d780fc98b891f51ab4b88ebec89fde467b","https://gitlab.syncad.com/hive/hive/-/merge_requests/134","https://gitlab.syncad.com/hive/hive/-/releases/v1.24.5","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/311","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/306","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/312","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/314","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/291","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/280","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/316","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/318","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/323","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/226","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/322","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/289","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/315","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/326","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/321","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/325","https://gitlab.syncad.com/hive/hivemind/-/merge_requests/328","https://gitlab.syncad.com/hive/condenser/-/merge_requests/135","https://gitlab.syncad.com/hive/wallet/-/merge_requests/42","https://gitlab.syncad.com/hive/wallet/-/merge_requests/43","https://gitlab.syncad.com/hive/wallet/-/merge_requests/45","https://gitlab.syncad.com/hive/wallet/-/merge_requests/52","https://gitlab.syncad.com/hive/wallet/-/merge_requests/54","https://gitlab.syncad.com/hive/wallet/-/merge_requests/55","https://gitlab.syncad.com/hive/wallet/-/merge_requests/56","https://gitlab.syncad.com/hive/wallet/-/merge_requests/57","https://gitlab.syncad.com/hive/wallet/-/merge_requests/60","https://gitlab.syncad.com/hive/wallet/-/merge_requests/62","https://gitlab.syncad.com/hive/wallet/-/merge_requests/64","https://gitlab.syncad.com/hive/wallet/-/merge_requests/65","https://gitlab.syncad.com/hive/wallet/-/merge_requests/68","https://gitlab.syncad.com/hive/wallet/-/merge_requests/70","https://gitlab.syncad.com/hive/wallet/-/merge_requests/47","https://gitlab.syncad.com/hive/wallet/-/merge_requests/49","https://gitlab.syncad.com/hive/wallet/-/merge_requests/51","https://gitlab.syncad.com/hive/hive-js/-/merge_requests/12","https://gitlab.syncad.com/hive/hive-js/-/merge_requests/13","https://gitlab.syncad.com/hive/hive-js/-/merge_requests/14"],"app":"hiveblog/0.1","format":"markdown"}
created2020-10-26 21:24:48
last_update2020-10-26 21:44:12
depth0
children17
last_payout2020-11-02 21:24:48
cashout_time1969-12-31 23:59:59
total_payout_value28.048 HBD
curator_payout_value21.509 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,608
author_reputation1,285,295,680,967,795
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,265,488
net_rshares240,064,571,265,761
author_curate_reward""
vote details (616)
@aiovo ·
yo I like you @blocktrades and the team you guys work hard to keep exchange and other delegation thing ruing 
and I don't get any bigs when exchanging so far good work 
👍  
properties (23)
authoraiovo
permlinkre-blocktrades-20201027t44049559z
categoryhive-139531
json_metadata{"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.7-vision","format":"markdown+html"}
created2020-10-26 23:40:51
last_update2020-10-26 23:40:51
depth1
children0
last_payout2020-11-02 23:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation15,911,295,900,579
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,267,642
net_rshares5,907,269,898
author_curate_reward""
vote details (1)
@alfonsoj ·
hard work friend @blocktrades we all have to thank you for your work for the proper functioning of the Hive platform. Solved the failure of the notifications that I mentioned earlier 🙏 Do not forget to support me in my Post. Thanks for everything.
properties (22)
authoralfonsoj
permlinkqitxe2
categoryhive-139531
json_metadata{"users":["blocktrades"],"app":"hiveblog/0.1"}
created2020-10-26 22:08:57
last_update2020-10-26 22:08:57
depth1
children0
last_payout2020-11-02 22:08:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation12,586,792,430,183
root_title"Update on BlockTrades Hive core coding"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,266,092
net_rshares0
@bashadow ·
$0.12
I'd like to thank you and the crew for all the hard work. I know there are a few of us that just can not wait for something to break so we can bitch and moan and complain, (guilty in the distant past of the internet), about things not working right or the way we want them to work, and never bothering to find out who to report the problems to, (because then we would not be able to bitch moan and complain).

So no bitching, moaning or complaining from me, just a thank  you for helping make a system I enjoy work better faster smoother. 
👍  ,
properties (23)
authorbashadow
permlinkre-blocktrades-qiu1lo
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-26 23:37:00
last_update2020-10-26 23:37:00
depth1
children0
last_payout2020-11-02 23:37:00
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.060 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length539
author_reputation100,388,692,638,882
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,267,590
net_rshares924,120,427,010
author_curate_reward""
vote details (2)
@danieldedosd2 ·
Cuando leo publicaciones como estas me siento muy mal porque quisiera saber como ayudar, nosotros los creadores a veces nos sentimos como unos parásitos, y escribo de esta manera porque pienso que no soy el único, he aquí mi pregunta ingenua, ¿Cómo podemos hacer, o más bien que esperan ustedes que nosotros los que solamente nos encargamos de subir contenido ya sea musical como es mi caso, Que esperan ustedes de nosotros? Quisiera poder ayudar más, quisiera que nos enseñaran a conocer más de la plataforma para sentirme digno de poder ayudar a mejorar el funcionamiento de hive, amo esta plataforma porque me mantiene con vida espiritual, y desde que estoy aquí me siento que mi trabajo musical mejora, quiero dar más, enseñen al usuario común de la plataforma a saber como meterle la mano a los problemas para sentirnos dignos de ser usuarios con herramientas para que esta maravilla que es la "Colmena" pueda ser mejor y avanzar hacia lo que buscamos todos que esta red social sea, "La mejor de todas las redes sociales, La más especial, La más digna y la que todos quieran usar cuando la conozcan" Disculpen la cadena... Gracias por traernos esta posibilidad de vivir a través de la blockchaing un mundo de pulcritud...
properties (22)
authordanieldedosd2
permlinkqiui09
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-10-27 05:31:30
last_update2020-10-27 05:31:30
depth1
children0
last_payout2020-11-03 05:31:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,226
author_reputation133,115,252,994,859
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,270,874
net_rshares0
@forykw ·
Now I am seeing that fast development of things as we all wished when on the "cornered-platform".
properties (22)
authorforykw
permlinkre-blocktrades-20201027t151823874z
categoryhive-139531
json_metadata{"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.7-vision","format":"markdown+html"}
created2020-10-27 02:18:24
last_update2020-10-27 02:18:24
depth1
children0
last_payout2020-11-03 02:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation93,047,668,375,359
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,269,319
net_rshares0
@game.player · (edited)
$0.02
Hey @blocktrades, hive.blog is in urgent need of a language filter(When someone who does not speak English enters the site and only sees posts in English, they do not return.) and change the trend algorithm. And instead of showing how much you earned in the post, show a message in profile like "You have x earnings this week, keep interacting to increase your earnings!"
👍  ,
properties (23)
authorgame.player
permlinkqiw6jm
categoryhive-139531
json_metadata{"users":["blocktrades"],"app":"hiveblog/0.1"}
created2020-10-28 03:19:00
last_update2020-10-28 03:26:03
depth1
children1
last_payout2020-11-04 03:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length371
author_reputation2,891,783,608,924
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,284,804
net_rshares198,135,150,998
author_curate_reward""
vote details (2)
@blocktrades ·
$0.09
Ok, I'll give some consideration to these ideas and discuss with devs, thanks for feedback.
👍  ,
👎  ,
properties (23)
authorblocktrades
permlinkqixe09
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-10-28 18:57:45
last_update2020-10-28 18:57:45
depth2
children0
last_payout2020-11-04 18:57:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation1,285,295,680,967,795
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,293,939
net_rshares686,368,240,465
author_curate_reward""
vote details (4)
@good-karma ·
Great work and thank you for tagging releases, adding changelog, similar approach in hivemind would be great! 🙇
properties (22)
authorgood-karma
permlinkre-blocktrades-20201027t95612157z
categoryhive-139531
json_metadata{"tags":["hive","blockchain","software","blocktrades"],"app":"ecency/3.0.7-vision","format":"markdown+html"}
created2020-10-27 07:56:12
last_update2020-10-27 07:56:12
depth1
children0
last_payout2020-11-03 07:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation656,214,797,217,320
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,271,984
net_rshares0
@hiro-hive ·
Thank you for doing all the hard works
properties (22)
authorhiro-hive
permlinkre-blocktrades-qiu9u9
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-27 02:34:57
last_update2020-10-27 02:34:57
depth1
children0
last_payout2020-11-03 02:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation461,949,875,870,711
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,269,462
net_rshares0
@lupega ·
You  have and have done a lot of work as I read in your post, we users see the flaws, but we do not go into detail in the work that this whole system takes.
Thanks to you
properties (22)
authorlupega
permlinkqitw2z
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-10-26 21:37:57
last_update2020-10-26 21:37:57
depth1
children0
last_payout2020-11-02 21:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation101,679,072,084,067
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,265,659
net_rshares0
@macchiata ·
Hello @blocktrades. 

I have a question. What is the function of muting author in a community? from what I experience and some hivers,  a muted author can still post in the community.  Is this a bug from recent HF or has it always been this way?  Will there be future update on this feature? as in, a muted author will no longer be able to post in a community unless the moderator/admin lift the ban.
properties (22)
authormacchiata
permlinkqj6g5y
categoryhive-139531
json_metadata{"users":["blocktrades"],"app":"hiveblog/0.1"}
created2020-11-02 16:22:51
last_update2020-11-02 16:22:51
depth1
children0
last_payout2020-11-09 16:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length400
author_reputation1,380,970,819,029,296
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,361,174
net_rshares0
@marki99 ·
Well done. The amount of work was huge. You should take a week off or something before HF25 talks.
properties (22)
authormarki99
permlinkre-blocktrades-qiutj7
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-27 09:40:24
last_update2020-10-27 09:40:24
depth1
children0
last_payout2020-11-03 09:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation11,400,723,818,181
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,272,918
net_rshares0
@nuthman ·
I am loving the detailed updates. Thanks!
properties (22)
authornuthman
permlinkre-blocktrades-qius68
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-27 09:10:57
last_update2020-10-27 09:10:57
depth1
children0
last_payout2020-11-03 09:10:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation344,453,626,754,867
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,272,670
net_rshares0
@omarcitorojas ·
Thank you for informing and creating new strategies so that in this platform where we live, things work well and we can function as we all hope; keep up with your hard work that the fruits are showing
properties (22)
authoromarcitorojas
permlinkqiw7zz
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-10-28 03:50:27
last_update2020-10-28 03:50:27
depth1
children0
last_payout2020-11-04 03:50:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation1,367,827,073,337,547
root_title"Update on BlockTrades Hive core coding"
beneficiaries
0.
accountanicruzmh
weight300
1.
accounthiveonboard
weight100
2.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,285,033
net_rshares0
@themarkymark ·
Amazing to see all these long standing issues get fixed.  I really appreciate all the work you and your team has been contributing. 
properties (22)
authorthemarkymark
permlinkre-blocktrades-qiwqn8
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-28 10:33:09
last_update2020-10-28 10:33:09
depth1
children0
last_payout2020-11-04 10:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation1,776,981,320,642,323
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,288,125
net_rshares0
@urun ·
Good work.

What is the plan next?
properties (22)
authorurun
permlinkre-blocktrades-qiungi
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-27 07:29:06
last_update2020-10-27 07:29:06
depth1
children0
last_payout2020-11-03 07:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation94,125,949,460,949
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,271,747
net_rshares0
@utopiaeducators ·
Thank you Blocktrades.
👎  
properties (23)
authorutopiaeducators
permlinkre-blocktrades-qiu7w2
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.10.8"}
created2020-10-27 01:52:48
last_update2020-10-27 01:52:48
depth1
children0
last_payout2020-11-03 01:52:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation-4,088,797,786,952
root_title"Update on BlockTrades Hive core coding"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,268,986
net_rshares-11,474,059,688
author_curate_reward""
vote details (1)