create account

1st update of 2025: Releasing API node software this week by blocktrades

View this thread on: hive.blogpeakd.comecency.com
· @blocktrades ·
$351.94
1st update of 2025: Releasing API node software this week
![blocktrades update.png](https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png)

Originally I planned to release in December, but just before the holidays kicked into full gear, I found an issue with the HAF upgrade process during my testing. The HAF upgrade process enables a node to update its software without having to do a full replay (a full replay takes several days, whereas an upgrade completes in minutes or less typically).

While this problem wouldn’t cause any immediate issue for API node operators, as they’re going to have to do a full replay for this release anyways, it would have required API nodes to do more full replays again, if we found any further problems after the release. 

So based on this, I decided to delay the official release of the HAF API node suite until after the holidays when all our devs were back and we had a fix for the upgrade issue (which we now have). 

So we’ll be releasing it officially this week. It’s available now as 1.27.7rc16 for anyone who wants to get a jump on replaying it.

Also, here’s a quick summary on some of what the BlockTrades team has been working on since my last report. As usual, it’s not a complete list. Red items are links in gitlab to the actual work done.


## [Hived: blockchain node software](https://gitlab.syncad.com/hive/hive)

Mostly minor changes here recently.

Upcoming work will focus on an overhaul of the transaction signing system. Originally I had vague hopes we might be able to complete those changes in February, but realistically it’s likely to be at least some time in March/April time frame I think. 

These changes will be included as part of the hardfork and they are also tightly related to the support for “Lite Accounts” using a HAF API (my plan is to offer a similar signing feature set across the two systems to keep things simple). So the Lite Account API will probably be rolled out on a similar time frame.

## [HAF: framework for creating new Hive APIs and apps](https://gitlab.syncad.com/hive/haf)
Most of the work done recently was performance optimizations made as a result of benchmark testing.
* [Add index status tracking and new functions for HAF index management](https://gitlab.syncad.com/hive/haf/-/merge_requests/557). This allows apps to add extra indexes to HAF tables and also tracks which apps needs those indexes. If an app registers the requested index before HAF finishes a replay, the index will be built non-concurrently along with the other HAF indexes. If an app requests it later, the index will be built concurrently to avoid disrupting the operation of other HAF apps.
* [Add functions for apps to request/wait for full vacuums and allow for concurrent index creation during live sync](https://gitlab.syncad.com/hive/haf/-/merge_requests/568) During testing we found that some app tables that were heavily modified were growing in size a lot during an app’s replay. By periodically performing full vacuums on these tables, these tables get re-shrunk back to a reasonable size, and the apps replay much faster (around 2x faster in the case of reputation tracker, for example, if I recall correctly). Smaller tables also means the API calls that reference these tables are faster. This functionality is primarily useful for tables that receive a lot of UPDATE queries, as it clears out dead tuples.
* [Analyze tables after index creation](https://gitlab.syncad.com/hive/haf/-/merge_requests/548) Instead of running 'analyze' in a separated transaction after all indexes are created during a HAF replay, now each table is analyzed in the same transaction that creates the indexes. This way apps are told  'HAF is ready' when HAF has finished the table analyzes and is therefore configured for maximal performance.
* [Speedup processing associated with keyauth state provider](https://gitlab.syncad.com/hive/haf/-/merge_requests/584)
* [Bug fixes and improves to HAF upgrade procedure](https://gitlab.syncad.com/hive/haf/-/merge_requests/589) This is the fix mentioned at the top of this post.
* [Repairing threading bug involved with schemas](https://gitlab.syncad.com/hive/haf/-/merge_requests/562)
* [Implement state change tracking for haf apps for performance reporting](https://gitlab.syncad.com/hive/haf/-/issues/244)

## [Hivemind: social media API](https://gitlab.syncad.com/hive/hivemind)

A huge amount of work was done to hivemind as part of our final optimization work prior to release. Below represents only a small portion of this work:

* [Full vacuum hive.posts after massive sync for better performance](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/817)
* [Speedup vacuuming after replay by only vacuuming hivemind tables and do it in concurrent threads](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/812)
* [Speedup json checking for API calls](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/814)
* [Speedup list_pop_communities](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/810)
* [Speed up queries by removing function call from filtering process](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/807)
* [Add author_id to posts parent_id_id_idx to allow get_account_posts_by_replies to do an index-only scan](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/806)
* [Reduce storage by removing list_comments API and associated table/indexes](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/793)
* [Set reasonable API return limits to reduce unnecessary server loading and prevent API amplification attacks](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/790)
* Cleaned up and optimized many API calls (various merge requests)

## [HAfAH: account history API](https://gitlab.syncad.com/hive/HAfAH)

* [Automate publishing hafah images to remote registry when new images get tagged]( https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/176)
* [Grants to hafah_user needs to be on the end of installation to properly grant roles to backend functions, also fix rewriter rules ](https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/171)
* [Include case when signature is null in get_transaction](https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/165)

## [Balance tracker API: tracks token balance histories for accounts](https://gitlab.syncad.com/hive/balance_tracker)

* [Push the postgrest-rewriter to docker registries for tagged releases](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/135)
* [Vacuum full account_balance_history table every 10m during massive sync
](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/131)
* [Fix healthchecker issue](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/128)
* [Add application_name parameter to the postgres connection string to make it easier to see what app is doing what in pgAdmin and friends](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/126)


## [Reputation tracker: API for fetching account reputation](https://gitlab.syncad.com/hive/reputation_tracker)

* [Do a vacuum full every time minutes during massive sync to keep size of account_reputations table reasonable](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/61)
* [Register HAF indexes using new index registry API](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/60)
* [Fix healthchecker issue](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/58)
* [Allow the docker health check for the block processor to report health](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/57)

## [HAF Block Explorer](https://gitlab.syncad.com/hive/haf_block_explorer)

* [vacuum full some of the balance tracker tables](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/263)
* [Register HAF indexes](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/254)
* [Rewrite and speedup block searching](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/251)
* [Replacing UNION with UNION ALL in the block processing function results in significantly improved query performance](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/247)
* [Remove cache from last synced block](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/245)


## [WAX API library for Hive apps](https://gitlab.syncad.com/hive/wax)

I expect we’ll officially release the Typescript version of wax in the next couple of weeks. Below is a sample of recently completed work:

* Added support for account authority update operation
* Improvements to key leakage detection
* Working on Python version of wax: now it can create and sign transactions, but currently only offline version is supported.
* Continuing work on a generic UI component for the health-checker.


## [HAF API Node (Scripts for deploying and managing an API node)](https://gitlab.syncad.com/hive/haf_api_node)

* [Tagged rc16 release candidate for all the software components for a HAF API node](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/63)
* [Increased cache time for some API calls based on production performance analysis](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/62)
* [Force nginx to parse and store the request body in a way that it can be logged better for performance analysis tools](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/59)
* [Allow hivemind's block processor 30s to shut down cleanly before killing it to prevent potential problems when interrupted during massive sync](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/56)
* [create_zfs_dataset creates an empty snapshot + snapshot_zfs_datasets checks if shared_memory.bin is ok](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/50)
* [Separate the hivemind installer so that it's not integrated into the block-processing container so that the postgrest server can start as soon as installer is finished](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/49)
* [Switch to PostgREST implementation of Hivemind API server](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/48)
* [Fix balance tracker so that it can be run standalone again](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/47)
* [Create a tool to simplify using specific versions of all apps (e.g. the current develop versions)](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/44)


In related work, we also created a handy new tool for managing submodule dependencies across HAF and HAF apps: https://gitlab.syncad.com/hive/update_submodules

## What's next?

We’ve essentially finished production testing for the rc16 HAF API node software, except for the final test of replacing it as our production software on api.hive.blog. We expect to complete that operation in the next few days (by Monday at the very latest).

We updated the release candidate testing server (https://api.syncad.com) to rc16 today, and I recommend all apps do final testing against this API node ASAP, prior to the switchover on https://api.hive.blog itself, to reduce the chance for a late discovery of compatibility issues that need to be adjusted for.

Once the software is officially released and running on api.hive.blog, I’ll make another post to provide some performance metrics for the new release and other information of interest.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 849 others
👎  , , ,
properties (23)
authorblocktrades
permlink1st-update-of-2025-releasing-api-node-software-this-week
categoryhive-139531
json_metadata{"tags":["hive-139531","hive","blockchain","software","blocktrades"],"image":["https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png"],"links":["https://gitlab.syncad.com/hive/hive"],"app":"hiveblog/0.1","format":"markdown"}
created2025-01-08 22:13:12
last_update2025-01-08 22:13:12
depth0
children60
last_payout2025-01-15 22:13:12
cashout_time1969-12-31 23:59:59
total_payout_value176.075 HBD
curator_payout_value175.863 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,407
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,834,233
net_rshares570,538,195,964,559
author_curate_reward""
vote details (917)
@annie1994 ·
Thanks for sharing an updates. And it's sound exciting.
👍  
properties (23)
authorannie1994
permlinkspuavd
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-09 05:13:00
last_update2025-01-09 05:13:00
depth1
children0
last_payout2025-01-16 05:13:00
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_length55
author_reputation1,943,246,733
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,843,857
net_rshares0
author_curate_reward""
vote details (1)
@annie1994 ·
can't wait ,and try it.
properties (22)
authorannie1994
permlinkspvvpa
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-10 01:40:33
last_update2025-01-10 01:40:33
depth1
children0
last_payout2025-01-17 01:40:33
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_length23
author_reputation1,943,246,733
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,868,098
net_rshares0
@annie1994 ·
Wow, What a great news, can't wait to released.
properties (22)
authorannie1994
permlinkspvvun
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-10 01:43:48
last_update2025-01-10 01:43:48
depth1
children0
last_payout2025-01-17 01:43: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_length47
author_reputation1,943,246,733
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,868,127
net_rshares0
@awildovasquez ·
Thanks for the update!
👍  
properties (23)
authorawildovasquez
permlinkre-blocktrades-spsk2q
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-08 22:35:15
last_update2025-01-08 22:35:15
depth1
children0
last_payout2025-01-15 22:35:15
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_reputation50,318,877,353,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,834,905
net_rshares0
author_curate_reward""
vote details (1)
@baby1 ·
Wow releasing it this week is still good. I really appreciate the efforts you put to make things work. Please keep up the good efforts also with your good plans.
👍  
properties (23)
authorbaby1
permlinkspsjy2
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-08 22:32:30
last_update2025-01-08 22:32:30
depth1
children0
last_payout2025-01-15 22:32: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_length161
author_reputation3,231,884,739,998
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,834,818
net_rshares0
author_curate_reward""
vote details (1)
@bitcoinflood ·
for the love of god and for the decentralized nature of hive would you STOP voting on DHF proposals. Thank you
properties (22)
authorbitcoinflood
permlinkre-blocktrades-2025216t15752553z
categoryhive-139531
json_metadata{"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-02-16 20:07:30
last_update2025-02-16 20:07:30
depth1
children0
last_payout2025-02-23 20:07: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_length110
author_reputation1,645,024,977,979,240
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,834,973
net_rshares0
@bpcvoter1 ·
> ### Hey there, the Bilpcoin team just wanted to give you a virtual high-five we manually curated this post. 

<a href="https://imgflip.com/i/9ezd9g"><img src="https://i.imgflip.com/9ezd9g.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div>

[Their attempts to intimidate and silence their critics are equally concerning. The use of downvotes as a means of censorship is a clear indication of their desperation to maintain their grip on the narrative. But it's not working](https://hive.blog/hive-165962/@bpcvoter1/their-attempts-to-intimidate-and-silence-their-critics-are-equally-concerning-the-use-of-downvotes-as-a-means-of-censorship-is-a)

https://hive.blog/hive-167922/@themarkymark/re-bpcvoter3-sp2q9h

WE EXPOSED A SUPER FARM ON HIVE

[Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts](https://hive.blog/hive-167922/@bpcvoter3/super-farm-https-peakd-com-memesandstuff-wallet-spam-scam-accounts)
WE EXPOSED A SUPER FARM ON HIVE

[Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts](https://hive.blog/hive-167922/@bpcvoter3/super-farm-https-peakd-com-memesandstuff-wallet-spam-scam-accounts)


>**Earn BPC on all your posts!** Simply add #Bilpcoin or #BPC to your post, and you'll be eligible to earn BPC. Just don't forget to post your own content and avoid self-voting. !MEME !PGM !LOLZ

[we are excited to announce our ambitious endeavor to create the largest curation trail on Hive and, by extension, the world LOL](https://hive.blog/hive-167922/@bpcvoter1/we-are-excited-to-announce-our-ambitious-endeavor-to-create-the-largest-curation-trail-on-hive-and-by-extension-the-world-lol)

https://hive.blog/hive-140217/@themarkymark/re-bpcvoter1-sp87n1

[themarkymark (80)in LeoFinance 18 hours ago You are the abuse on Hive  hive.blog/hive-167922/@themarkymark/re-bpcvoter3-smp740 LOL  TRANSACTIONS DON'T LIE PEOPLE DO PEOPLE LIKE YOU DO    Curation reward for BUILDAWHALE COMMENT FARM buildawhale51.108 HP](https://hive.blog/hive-167922/@bpcvoter3/themarkymark-80-in-leofinance-18-hours-ago-you-are-the-abuse-on-hive-hive-blog-hive-167922-themarkymark-re-bpcvoter3-smp740-lol)

https://hive.blog/@kevm/comments 

https://hive.blog/@kcgm/comments

[The Hive community has been plagued by a rise in spam accounts sharing stolen content. Many of these accounts appear to be linked to a single super farm that we've exposed @memesandstuff superfarm and we believe a prominent whale may be behind it](https://hive.blog/hive-167922/@bpcvoter1/the-hive-community-has-been-plagued-by-a-rise-in-spam-accounts-sharing-stolen-content-many-of-these-accounts-appear-to-be-linked)

[A Call to Action Against Downvote Abuse on Hive](https://hive.blog/hive-167922/@bpcvoter2/a-call-to-action-against-downvote-abuse-on-hive)


[Bad downvotes on Hive are a growing concern that must be addressed. These downvotes not only discourage users from sharing their real thoughts and ideas but also damage the community as a whole, we see many walk away](https://hive.blog/hive-167922/@bpcvoter1/bad-downvotes-on-hive-are-a-growing-concern-that-must-be-addressed-these-downvotes-not-only-discourage-users-from-sharing-their)



https://peakd.com/@buildawhale/activities


https://peakd.com/@themarkymark/activities
https://peakd.com/@usainvote/activities

https://peakd.com/@adm/activities
👍  
👎  
properties (23)
authorbpcvoter1
permlinksptntg
categoryhive-139531
json_metadata{"tags":["bilpcoin","bpc"],"image":["https://i.imgflip.com/9ezd9g.jpg"],"links":["https://imgflip.com/i/9ezd9g"],"app":"hiveblog/0.1"}
created2025-01-09 12:52:57
last_update2025-01-09 12:52:57
depth1
children0
last_payout2025-01-16 12:52: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_length3,386
author_reputation-19,565,271,358,241
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,850,757
net_rshares-5,050,870,644
author_curate_reward""
vote details (2)
@bpcvoter1 ·
CAN YOU PLEASE UNDELEGATE FROM @BUILDAWHALE SCAM FARM 


Downvotes do nothing marky lady zaza #buildawhalescam #buildawhalefarm #themarkymarkfarm #themarkymarkscam

https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke

Push It Jacob mc franko
https://youtu.be/vTcSG_w8c5s?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke
Baby jacob 
https://youtu.be/yA_3ZrR-D74

Who's Really Sick the frankos
https://youtu.be/g3buxzjuSXU

Transparent Chains the frankos
https://youtu.be/KR-DSZyGqrw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke

Get a life keni

https://youtu.be/ZowTlXjIWpw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke

We Know keni

https://youtu.be/FDMh7mos4oE?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke
Word Travels Fast keni

https://youtu.be/8SHoi8WFKKQ?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke


Glass House Farm mc franko

https://youtu.be/sR37PEXu9Co?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke


Where You Really At mc franko
https://youtu.be/6qC2-WhSBLk?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke

Oh sad boy keni
https://youtu.be/r1Yo-4fwjik?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke





https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-hive-blockchain-a-deep-dive-into-logic-s-transactions-and-activities


https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-the-spaminator-account-a-deep-dive-into-hive-s-ecosystem

https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-mystery-behind-scamforest-s-hive-wallet-a-deep-dive-into-transactions-and-account-value

https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-sagarkothari88-a-deep-dive-into-suspicious-activity

https://hive.blog/hive-133987/@bpcvoter1/outgoing-transactions-of-steemcleaners-a-deep-dive-into-accountability-and-transparency-on-hive


https://hive.blog/hive-167922/@bpcvoter1/comprehensive-breakdown-of-hive-transactions-arhag

https://hive.blog/hive-126152/@bpcvoter1/comprehensive-analysis-of-freedom-s-wallet-transactions


https://hive.blog/hive-133987/@bpcvoter1/deep-dive-into-solominer-s-transactions-a-professional-analysis

https://hive.blog/hive-133987/@bpcvoter1/unmasking-the-marky-mark-buildawhale-scam-farm-a-deep-dive-into-systemic-exploitation-on-hive

https://hive.blog/hive-126152/@bpcvoter1/transactions-don-t-lie-people-do-mc-franko-and-lady-zaza-buildawhalescam

https://hive.blog/hive-167922/@bpcvoter1/analyzing-transactions-from-stefy-music-s-wallet



https://hive.blog/hive-133987/@bpcvoter1/taking-a-closer-look-at-usainvote-s-curation-rewards-over-the-last-seven-days

https://hive.blog/hive-167922/@bpcvoter1/analyzing-themarkymark-s-curation-rewards-over-the-last-seven-days

https://hive.blog/hive-167922/@bpcvoter1/marky-s-game-mc-franko-aimusic-music-bilpcoin-newmusic-themarkymark-marky

https://hive.blog/hive-133987/@bpcvoter2/unveiling-the-activities-of-gpwallet6-a-dive-into-hive-blockchain-transactions


https://hive.blog/hive-133987/@bpcvoter2/comprehensive-analysis-of-gpwallet-s-transactions-on-the-hive-blockchain

https://hive.blog/hive-133987/@bpcvoter2/a-deep-dive-into-azircon-wallet-out-going-transactions-transparency-and-insights

https://hive.blog/hive-167922/@bpcvoter2/deep-dive-into-the-bdvoter-hive-account-wallet-analysis-transactions-and-insights

https://hive.blog/hive-181290/@bpcvoter2/the-situation-is-amusing-especially-when-we-see-how-people-react-when-their-transactions-and-voice-chats-are-exposed-lol-marcus


https://hive.blog/hive-126152/@bpcvoter2/it-s-rich-marky-that-you-re-talking-about-the-hive-value-plan-isn-t-it-lol-you-make-hive-a-more-valuable-platform-it-seems-like

https://hive.blog/hive-167922/@bpcvoter2/update-on-buildawhale-scam-farm-the-ipromote-account-is-raising-concerns-with-suspicious-transactions-that-don-t-look-good

https://hive.blog/hive-133987/@bpcvoter3/analyzing-hivewatchers-transactions-a-dive-into-hive-s-controversial-account

https://hive.blog/hive-180505/@bpcvoter3/taking-a-closer-look-at-the-gpwallet3-account-exposing-the-truth-behind-hive-transactions

https://hive.blog/hive-173737/@bpcvoter3/exposing-the-truth-a-comprehensive-analysis-of-gpwallet2-s-transactions-on-hive

https://hive.blog/hive-167922/@bpcvoter3/time-for-transparency-an-in-depth-look-at-bdvoter-s-activities


https://hive.blog/hive-167922/@bpcvoter3/adm-downvote-data-and-curation-reward-data

https://hive.blog/hive-167922/@bpcvoter3/buildawhale-downvotes

https://hive.blog/hive-167922/@bpcvoter3/you-can-deceive-yourself-all-you-want-but-it-won-t-alter-the-reality-we-ve-uncovered-the-truth-and-will-continue-to-expose-your

https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions


https://hive.blog/hive-167922/@bilpcoinbpc/you-re-wasting-your-life-marcus-and-it-s-only-going-to-come-back-to-haunt-you-you-re-bringing-shame-and-ridicule-upon-yourself

https://hive.blog/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-100-buildawhale-scam-farm-on-hive




TRANSACTIONS DON'T LIE PEOPLE DO Mc franko & Lady zaza #buildawhalescam

https://youtu.be/RXJ1KaRojSc?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke


Marky’s Game Mc franko
https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke

AI Lady Zaza We can't help but notice

https://youtu.be/LVt-39a-_c4?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke





https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions

https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions
properties (22)
authorbpcvoter1
permlinkss3asa
categoryhive-139531
json_metadata{"tags":["buildawhalescam","buildawhalefarm","themarkymarkfarm","themarkymarkscam"],"users":["buildawhale"],"image":["https://img.youtube.com/vi/pM6aQTrjC98/0.jpg"],"links":["https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke\n<p>Push"],"app":"hiveblog/0.1"}
created2025-02-22 14:53:51
last_update2025-02-22 14:53:51
depth1
children1
last_payout2025-03-01 14:53: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_length5,513
author_reputation-19,565,271,358,241
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,972,985
net_rshares0
@tipu ·
<p>Hi @bpcvoter1. The sad kitty has made this undelegate link or you:<br><strong><a href="https://hivesigner.com/sign/delegateVestingShares?account=bpcvoter1&delegatee=buildawhale&vesting_shares=0.000000%20VESTS">hivesigner undelegate link.</a></strong>.</p><br><center>http://sadcatdiary.com/wp-content/uploads/2015/07/sadcatsmall.jpg</center>
properties (22)
authortipu
permlinkre-ss3asa-20250222t145356z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2025-02-22 14:53:57
last_update2025-02-22 14:53:57
depth2
children0
last_payout2025-03-01 14:53: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_length344
author_reputation55,935,285,319,710
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,972,989
net_rshares0
@cheryl291021 ·
This is great news! It's exciting to hear that the HAF API node software is finally being released. I'm sure this will be a huge benefit to the Hive community.I'm particularly interested in the improvements made to the HAF upgrade process. This will make it much easier for node operators to stay up-to-date with the latest software.I'm also impressed with the work that has been done on Hivemind. The optimizations you've made will make it a much more efficient and reliable social media platform.I'm looking forward to seeing how the new Lite Accounts API will work. I think this will be a great way to make Hive more accessible to new users.
 
Thanks for sharing this update. I'm sure it will be of interest to many in the Hive community.
👍  
👎  ,
properties (23)
authorcheryl291021
permlinkre-blocktrades-spskdj
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-08 22:41:45
last_update2025-01-08 22:41:45
depth1
children7
last_payout2025-01-15 22:41:45
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_length741
author_reputation-4,332,807,445,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,835,074
net_rshares-2,753,193,125,891
author_curate_reward""
vote details (3)
@guruvaj ·
Ang isa sa mga wish ko sa Pinoy Hive community ay magkaroon ng Pinoy Hive witness with baremetal implementation(at hindi vps) na located sa dito sa Pinas.

Na susuporta sa lahat ng mga Pilipino Hive users at magpapadticipate  sa mga local Hive events and onboarding.

I am more willing to reduce my witness votes to many and focus on the “Pinoy Hive Witness”!
👎  
properties (23)
authorguruvaj
permlinkre-cheryl291021-202519t72643309z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531"],"app":"ecency/3.2.0-mobile","format":"markdown+html"}
created2025-01-08 23:26:42
last_update2025-01-08 23:26:42
depth2
children6
last_payout2025-01-15 23:26:42
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_length359
author_reputation52,852,553,740,594
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,836,507
net_rshares-5,042,952,078
author_curate_reward""
vote details (1)
@cheryl291021 ·
@guruvaj, that is a terrific initiative! A dedicated Pinoy Hive witness with bare-metal implementation in the Philippines would be an important contribution to the community. Supporting Filipino Hive users and participating in local events is critical for growth and engagement. Your willingness to direct your witness votes toward this initiative displays a strong commitment to the local Hive community. I wish you the best of success in getting this done!
👍  
👎  , , ,
properties (23)
authorcheryl291021
permlinkre-guruvaj-spsmrw
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-08 23:33:33
last_update2025-01-08 23:33:33
depth3
children5
last_payout2025-01-15 23:33:33
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_length458
author_reputation-4,332,807,445,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,836,726
net_rshares-47,982,305,066
author_curate_reward""
vote details (5)
@cheryl291021 ·
@blocktrades  Sounds good! I'll definitely be sure to check out the rc16 testing server and run some final tests before the switchover. I'm excited to see the performance metrics for the new release. I'm sure it will be a significant improvement.
properties (22)
authorcheryl291021
permlinkre-blocktrades-spsm7y
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":["blocktrades"]}
created2025-01-08 23:21:36
last_update2025-01-08 23:21:36
depth1
children2
last_payout2025-01-15 23:21:36
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_length246
author_reputation-4,332,807,445,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,836,354
net_rshares0
@blocktrades ·
How would we even be able to release the software, without your rigorous testing?
properties (22)
authorblocktrades
permlinkspssx4
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-09 01:46:18
last_update2025-01-09 01:46:18
depth2
children1
last_payout2025-01-16 01:46:18
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_length81
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,839,209
net_rshares0
@cheryl291021 ·
That's a great question! Our rigorous testing is what allows us to confidently release high-quality software that meets our users' needs and expectations. It's an investment in the reliability and stability of  product.
properties (22)
authorcheryl291021
permlinkre-blocktrades-spsurc
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-09 02:26:00
last_update2025-01-09 02:26:00
depth3
children0
last_payout2025-01-16 02:26:00
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_length219
author_reputation-4,332,807,445,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,840,362
net_rshares0
@daeze-winnie ·
Thank you for all you do🙏
properties (22)
authordaeze-winnie
permlinkre-blocktrades-srgknt
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.1.3","image":[],"users":[]}
created2025-02-10 08:23:54
last_update2025-02-10 08:23:54
depth1
children0
last_payout2025-02-17 08:23:54
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_length25
author_reputation15,445,136,341,307
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,686,157
net_rshares0
@daltono ·
I’m not sure if there is a better way to get in contact with you. Just wanted to know if maybe you could give clarification as to why this: https://peakd.com/discussion/@daltono/breaking-the-blacklist-my-journey-back-to-earning-on-hive-cgr is happening for me and many others due to your delegation. I can’t get any answers.
properties (22)
authordaltono
permlinkre-blocktrades-ss1kbs
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-02-21 16:26:15
last_update2025-02-21 16:26:15
depth1
children0
last_payout2025-02-28 16:26:15
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_length324
author_reputation1,792,030,495,152,214
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,952,012
net_rshares0
@danzocal ·
!PIZZA
properties (22)
authordanzocal
permlinkre-blocktrades-spve1m
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-10 11:17:48
last_update2025-01-10 11:17:48
depth1
children0
last_payout2025-01-17 11:17: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_length6
author_reputation12,432,803,008,396
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,876,021
net_rshares0
@encuentro ·
Que bueno que la tecnología esté avanzado para el beneficio de hive
👍  
properties (23)
authorencuentro
permlinkre-blocktrades-202518t212416842z
categoryhive-139531
json_metadata{"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.2-vision","format":"markdown+html"}
created2025-01-09 01:23:09
last_update2025-01-09 01:23:09
depth1
children0
last_payout2025-01-16 01:23: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_length67
author_reputation73,249,322,537,880
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,838,826
net_rshares0
author_curate_reward""
vote details (1)
@fonestreet ·
Thanks for keeping us updated and all the work on here. 💪🏻⚡
👍  
properties (23)
authorfonestreet
permlinkre-blocktrades-202518t20374051z
categoryhive-139531
json_metadata{"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2025-01-09 00:37:42
last_update2025-01-09 00:37:42
depth1
children0
last_payout2025-01-16 00:37:42
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_length59
author_reputation162,749,262,456,557
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,838,034
net_rshares0
author_curate_reward""
vote details (1)
@fredaig ·
No wonder api.hive.blog is the best server on ecency app, i always dont run into connevtion problems using this server now i see why, you guys are doing a massive work i appreciate  the effort 
properties (22)
authorfredaig
permlinkre-blocktrades-2025129t34114957z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-01-29 02:41:15
last_update2025-01-29 02:41:15
depth1
children0
last_payout2025-02-05 02:41:15
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_length193
author_reputation79,537,003,160,146
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,383,937
net_rshares0
@gabrielatravels ·
So excited to read the news! Awesome way to kick off the new year after a loss in family on the 1st of January. At least my 2nd family (the chain) is doing better! 
👍  
properties (23)
authorgabrielatravels
permlinkre-blocktrades-spt9gt
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-09 07:43:39
last_update2025-01-09 07:43:39
depth1
children0
last_payout2025-01-16 07:43:39
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_length164
author_reputation979,109,411,800,892
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,845,840
net_rshares0
author_curate_reward""
vote details (1)
@hive-engne ·
!LUV
👍  
properties (23)
authorhive-engne
permlinkspu9m2
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-09 20:44:27
last_update2025-01-09 20:44:27
depth1
children1
last_payout2025-01-16 20:44: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_length4
author_reputation356,698,266
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,862,779
net_rshares1,091,962,701
author_curate_reward""
vote details (1)
@luvshares ·
@blocktrades, @hive-engne<sub>(1/1)</sub> sent you LUV. | <a
    href="https://crrdlx.on.fleek.co/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community </a> | <a 
    href="https://hivewiki.netlify.app" style="text-decoration:none">HiveWiki</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>



<center>Made with <a href="https://peakd.com/@luvshares" target="_blank">LUV</a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-spu9m2-20250109t204433z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2025-01-09 20:44:33
last_update2025-01-09 20:44:33
depth2
children0
last_payout2025-01-16 20:44:33
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_length615
author_reputation5,651,102,754,153
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,862,782
net_rshares0
@hive.posh ·
Hi,@blocktrades
I used to post on steemit but steemit people and @the-gorilla downvoted my account on steemit I am start using hive.blog for sharing content please support.
I want to teach a lesson to the Stemate account that has made me downvote that any of you help me please
properties (22)
authorhive.posh
permlinkstbbut
categoryhive-139531
json_metadata{"users":["blocktrades","the-gorilla"],"app":"hiveblog/0.1"}
created2025-03-18 09:33:03
last_update2025-03-18 09:33:03
depth1
children0
last_payout2025-03-25 09:33:03
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_length277
author_reputation15,799,081
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries
0.
accountdbuzz
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,507,808
net_rshares0
@hivebuzz ·
Congratulations @blocktrades! 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/https://hivebuzz.me/@blocktrades/upvoted.png?202501090405"></td><td>You received more than 170000 upvotes.<br>Your next target is to reach 180000 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) 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="/challenge/@hivebuzz/yearly-author-202501"><img src="https://images.hive.blog/64x128/https://i.imgur.com/ogVqE0F.png"></a></td><td><a href="/challenge/@hivebuzz/yearly-author-202501">The 2024 Yearly Author Challenge is Over - Congrats to the Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202412-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202412-delegations">Our Hive Power Delegations to the December PUM Winners</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-1736395666
categoryhive-139531
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-01-09 04:07:45
last_update2025-01-09 04:07:45
depth1
children0
last_payout2025-01-16 04:07:45
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,244
author_reputation369,402,886,756,714
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,842,432
net_rshares0
@hivebuzz ·
Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge

<table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutweek.png"></td><td>Post with the highest payout of the week.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) 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>

properties (22)
authorhivebuzz
permlinknotify-1736731502
categoryhive-139531
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-01-13 01:25:03
last_update2025-01-13 01:25:03
depth1
children0
last_payout2025-01-20 01:25:03
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_length580
author_reputation369,402,886,756,714
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,954,561
net_rshares0
@irisworld ·
You did a huge work! Thank you for all you do!

!PIZZA
👍  
properties (23)
authoririsworld
permlinkre-blocktrades-202519t123414120z
categoryhive-139531
json_metadata{"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.2-vision","format":"markdown+html"}
created2025-01-09 03:34:15
last_update2025-01-09 03:34:15
depth1
children0
last_payout2025-01-16 03:34:15
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_length54
author_reputation143,401,779,069,093
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,841,840
net_rshares0
author_curate_reward""
vote details (1)
@kennymiracle ·
Wow.. this is great, honestly you guys are really trying a lot,
May God continue to bless you guys 

👍  
properties (23)
authorkennymiracle
permlinkre-blocktrades-202519t02620443z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"}
created2025-01-08 23:26:21
last_update2025-01-08 23:26:21
depth1
children0
last_payout2025-01-15 23:26:21
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_length101
author_reputation8,967,298,810,048
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,836,496
net_rshares0
author_curate_reward""
vote details (1)
@luthis26 ·
There's a  lot to read and need to sit down on this.
properties (22)
authorluthis26
permlinkspv296
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-10 07:03:06
last_update2025-01-10 07:03:06
depth1
children0
last_payout2025-01-17 07:03: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_length52
author_reputation10,332,227,774,672
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,872,506
net_rshares0
@luthis26 · (edited)
This is nice, Thank you so much for the update I really appreciate it keeping this blockchain safe and secure. I hope someone from us (Filipino) could be a witness.
properties (22)
authorluthis26
permlinksq0c6b
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-13 03:25:24
last_update2025-01-13 03:26:03
depth1
children0
last_payout2025-01-20 03:25: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_length164
author_reputation10,332,227,774,672
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,957,073
net_rshares0
@offgridlife · (edited)
Great Work  @blocktrades
👍  
properties (23)
authoroffgridlife
permlinkspt4lt
categoryhive-139531
json_metadata{"app":"hiveblog/0.1","users":["blocktrades"]}
created2025-01-09 05:58:42
last_update2025-01-09 18:55:54
depth1
children2
last_payout2025-01-16 05:58:42
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_length24
author_reputation400,515,465,915,486
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id139,844,425
net_rshares0
author_curate_reward""
vote details (1)
@unschool ·
7 years of shitposting? wow
👎  
properties (23)
authorunschool
permlinkre-offgridlife-spu3w6
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-09 18:40:54
last_update2025-01-09 18:40:54
depth2
children0
last_payout2025-01-16 18:40:54
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_length27
author_reputation4,678,293,536,110
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,859,806
net_rshares-9,541,226,902
author_curate_reward""
vote details (1)
@unschool ·
Pathetic

![1000011193.jpg](https://files.peakd.com/file/peakd-hive/unschool/23tGXuw89M2eBoHqRmLHAxuGBak78CbGE47Cw8CWviHda3jDDdCcaVv98UEoxCafhtXPw.jpg)
👍  
properties (23)
authorunschool
permlinkre-offgridlife-spukx7
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-10 00:48:42
last_update2025-01-10 00:48:42
depth2
children0
last_payout2025-01-17 00:48:42
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_length152
author_reputation4,678,293,536,110
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,867,380
net_rshares0
author_curate_reward""
vote details (1)
@ohv ·
Insightfully inclined. Thumbs up
properties (22)
authorohv
permlinkre-blocktrades-spw543
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.1.2","image":[],"users":[]}
created2025-01-10 21:02:36
last_update2025-01-10 21:02:36
depth1
children0
last_payout2025-01-17 21:02:36
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_length32
author_reputation1,022,682,266,956
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,893,036
net_rshares0
@omachi213 ·
Can't wait for the software to be released 😁
👍  
properties (23)
authoromachi213
permlinkre-blocktrades-202518t23194242z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"}
created2025-01-08 22:19:06
last_update2025-01-08 22:19:06
depth1
children0
last_payout2025-01-15 22:19: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_length44
author_reputation43,923,529,122,320
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,834,435
net_rshares0
author_curate_reward""
vote details (1)
@pizzabot · (edited)
RE: 1st update of 2025: Releasing API node software this week
<center>PIZZA!


$PIZZA slices delivered:
irisworld tipped blocktrades 
@danzocal<sub>(1/10)</sub> tipped @blocktrades 


</center>
properties (22)
authorpizzabot
permlinkre-1st-update-of-2025-releasing-api-node-software-this-week-20250109t033437z
categoryhive-139531
json_metadata"{"app": "pizzabot"}"
created2025-01-09 03:34:36
last_update2025-01-10 11:18:12
depth1
children0
last_payout2025-01-16 03:34:36
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_length131
author_reputation7,594,525,962,555
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,841,844
net_rshares0
@pocketechange ·
$0.03
Is there any way for Hive to start counting all the people who click on a post, but never upvote or comment...  I never know for sure if anyone is reading or paying a visit...
👍  
properties (23)
authorpocketechange
permlinkstybhc
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-30 19:29:36
last_update2025-03-30 19:29:36
depth1
children2
last_payout2025-04-06 19:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation234,056,297,860,993
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,783,305
net_rshares94,525,960,796
author_curate_reward""
vote details (1)
@blocktrades ·
There's not any way to know that right now, because viewing a post is purely a local action taken on each user's computer, and it isn't recorded in the blockchain. Theoretically, each app could measure it individually and the resulting data could be aggregated, but it would require cooperation of all the various apps that allow you to read hive posts. You would probably also want to discard "multiple" hits by the same account, which further complicates the task.
properties (22)
authorblocktrades
permlinkre-pocketechange-1743622468009
categoryhive-139531
json_metadata{"format":"markdown+html","app":"@hiveio/wax/1.27.6-rc7-stable.250314151849"}
created2025-04-02 19:34:30
last_update2025-04-02 19:34:30
depth2
children1
last_payout2025-04-09 19:34: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_length466
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,850,735
net_rshares0
@pocketechange ·
Thanks for your help...
properties (22)
authorpocketechange
permlinksu4ybr
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-04-03 09:28:39
last_update2025-04-03 09:28:39
depth3
children0
last_payout2025-04-10 09:28:39
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_length23
author_reputation234,056,297,860,993
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,861,289
net_rshares0
@shmoogleosukami ·
$0.04
Sweet! With this full release I can finally have a look at wrangling it to run on my set up. I'd need to get it to not complain about anything ZFS related as I'd prefer to just run it on a single VM on my machine and having multiple layers of raid and zfs probably won't help performance all that much.

Hopefully won't be too difficult.
👍  , ,
properties (23)
authorshmoogleosukami
permlinkre-blocktrades-spsr3k
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-09 01:06:57
last_update2025-01-09 01:06:57
depth1
children4
last_payout2025-01-16 01:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation226,923,617,224,978
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,838,603
net_rshares70,971,261,249
author_curate_reward""
vote details (3)
@blocktrades ·
$0.04
Normally we recommend it be run on a bare metal system, if possible, since everything is encapsulated in a docker. But IIRC you're using promox, and it should not be a problem to run everything in a VM anyways.
👍  ,
properties (23)
authorblocktrades
permlinkspst13
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-09 01:48:39
last_update2025-01-09 01:48:39
depth2
children3
last_payout2025-01-16 01:48:39
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,839,290
net_rshares71,432,611,918
author_curate_reward""
vote details (2)
@cheryl291021 ·
Yes, bare metal is ideal, but a Proxmox VM should be perfectly fine. Thanks for clarifying!

👎  , , ,
properties (23)
authorcheryl291021
permlinkre-blocktrades-spsux1
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-09 02:29:27
last_update2025-01-09 02:29:27
depth3
children0
last_payout2025-01-16 02:29: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_length93
author_reputation-4,332,807,445,334
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,840,424
net_rshares-272,898,047,497,130
author_curate_reward""
vote details (4)
@mythcrusher ·
Your crypto exchange blocktrades.us is currently not working. Will it be working again after this project of yours is completed?
properties (22)
authormythcrusher
permlinkre-blocktrades-srk2c0
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.2.1"}
created2025-02-12 05:38:27
last_update2025-02-12 05:38:27
depth3
children1
last_payout2025-02-19 05:38: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_length128
author_reputation1,693,777,377,065
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,733,740
net_rshares0
@theguruasia ·
Do you plan to release HVM in 2025 to enable L1 Smart Contracts for HIVE? If not, why can’t we hire skilled developers for this task and allocate payment via DHF for them?
properties (22)
authortheguruasia
permlinkre-blocktrades-spupdw
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-10 02:25:12
last_update2025-01-10 02:25:12
depth1
children4
last_payout2025-01-17 02:25: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_length171
author_reputation72,573,039,033,926
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,868,560
net_rshares0
@blocktrades ·
We're working on L2 smart contracts, not L1 contracts, because I think L1 smart contracts offer a lot of risk and relatively little reward compared to L2 smart contracts. L2 contracts also offer more potential for scaling.
👍  
properties (23)
authorblocktrades
permlinkspushs
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-10 03:32:27
last_update2025-01-10 03:32:27
depth2
children3
last_payout2025-01-17 03:32: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_length222
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,869,467
net_rshares3,749,811,465
author_curate_reward""
vote details (1)
@theguruasia ·
Agree, but it's mostly centralized. How we fix that problem? I think this is the most important point when people invest on L2 tokens. Am I correct?
properties (22)
authortheguruasia
permlinkre-blocktrades-spuu3y
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-10 04:07:12
last_update2025-01-10 04:07:12
depth3
children2
last_payout2025-01-17 04:07: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_length148
author_reputation72,573,039,033,926
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,869,906
net_rshares0
@theiam ·
# ♦️ You got 0.01 [FELT](https://peakd.com/hive/@theiam/introducing-felt-sentiment-token-spbhj9) for sharing high vibes on Hive. 

[📋♦️ FELT Info](https://peakd.com/hive/@theiam/introducing-felt-sentiment-token-spbhj9) 
properties (22)
authortheiam
permlinkre-1st-update-of-2025-releasing-api-node-software-this-week-20250406t021304z
categoryhive-139531
json_metadata"{"app": "beem/0.24.19"}"
created2025-04-06 02:13:03
last_update2025-04-06 02:13:03
depth1
children0
last_payout2025-04-13 02:13:03
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_length219
author_reputation-43,402,943,638
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,920,633
net_rshares0
@ubglo17 ·
Thanks for the update 
properties (22)
authorubglo17
permlinkre-blocktrades-2025130t195355923z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-01-30 18:53:57
last_update2025-01-30 18:53:57
depth1
children0
last_payout2025-02-06 18:53: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_length22
author_reputation3,690,115,911,351
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id140,430,272
net_rshares0
@unschool ·
Good job on the release!

Might be acting stupid but I put 10000 as page-size for the `Block-numbers` API and got a 504. Might be wise to limit page-size on the backend to 1000 or give an error straight away if over that?

My 2 cents.
👍  
properties (23)
authorunschool
permlinkre-blocktrades-spu445
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]}
created2025-01-09 18:45:39
last_update2025-01-09 18:45:39
depth1
children2
last_payout2025-01-16 18:45:39
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_length234
author_reputation4,678,293,536,110
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,859,887
net_rshares0
author_curate_reward""
vote details (1)
@blocktrades ·
Thanks for the report!  Please create an issue for it on gitlab if you haven't already.

I suppose at some point we should review all the new API calls for potential attack vectors like this one, that might result in database slowdowns. But everything takes time: we just finally got around to reviewing the old API calls in hivemind for such problems as part of this release (and there we were just handling "accidental" over usage of the API calls).

Fortunately, for the most part no one bothers with such attacks intentionally, and when they do, its something we can fix relatively fast, so there's not much chance for a serious problem.
👍  
properties (23)
authorblocktrades
permlinkspu5b2
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-01-09 19:11:30
last_update2025-01-09 19:11:30
depth2
children1
last_payout2025-01-16 19:11: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_length641
author_reputation1,285,459,763,765,806
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,860,462
net_rshares0
author_curate_reward""
vote details (1)
@unschool ·
$0.02
Just did
https://gitlab.syncad.com/hive/haf/-/issues/268
👍  
properties (23)
authorunschool
permlinkre-blocktrades-spudhj
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2024.12.6"}
created2025-01-09 22:08:06
last_update2025-01-09 22:08:06
depth3
children0
last_payout2025-01-16 22:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation4,678,293,536,110
root_title"1st update of 2025: Releasing API node software this week"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id139,864,263
net_rshares35,405,548,300
author_curate_reward""
vote details (1)