____  ___    _  _     _   _ _____     _______
 / ___|/ _ \  | || |   | | | |_ _\ \   / / ____|
| |  _| | | | | || |_  | |_| || | \ \ / /|  _|
| |_| | |_| | |__   _| |  _  || |  \ V / | |___
 \____|\___/     |_|   |_| |_|___|  \_/  |_____|

 --- A GOPHER-LIKE INTERFACE FOR HIVE BLOCKCHAIN ---

Release of new HAF API stack 1.28.6 next week

BY: @blocktrades | CREATED: April 10, 2026, 11:18 p.m. | VOTES: 848 | PAYOUT: $62.55 | [ VOTE ]

[IMAGE: https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png]

It has been quite a while since I've made a post, but it doesn't mean the BlockTrades team hasn't been busy, quite the opposite.

The reason I haven't posted is I've been personally swamped with work since I started using Claude Code back in mid November, working around 12-14 hours a day, 7 days a week (something I haven't done since back in my early twenties when I started my first company).

Usually I report on the whole teams work, but it has been a long time since my last report, and it would take a huge post just to summarize what other team members have done. So mostly this is a report on the US programming team's work (which is just me and efrias).

Moving from coding to clauding

Our team had previously been using other AI tools like Github Copilot to assist with coding, but the gains, while substantial, weren't impressive enough to suck me back into full-time (or perhaps more accurately "overtime") programming again.

But then I read an article that recommended Claude Code, and when I mentioned it to efrias, he said he had already bought a personal license and switched to it, and he said it was much better than Copilot, so I decided to give it a try (Copilot was $10/month, Claude Code was $200/month).

Once I started working with Claude Code, I realized just how much we could potentially accelerate our work (10x or more faster), and also what the potential blocker to that was: a slow and flaky software CI (build-test system) that was designed to just barely be fast enough for purely human-based software development, but which completely failed for AI-assisted software development.

Build and test (CI) overhaul

The essential problem was that AI can add a new feature or make a bug fix in 5-15 minutes, but we had tests that ran for up to 90 minutes (and had intermittent fails too which makes it hard to judge whether a code change has caused the problem or it is just a random test fail, which leaves you and the AI particularly confused as to what to do next).

So I spent the next 2 1/2 months overhauling our compile and test software on most of our repos (we have a lot of repos) on https://gitlab.syncad.com, eliminating intermittently failing tests (AKA flaky tests) and reducing the time to build the software and run the tests. The overhauled CI still is far from perfect, but it is much more consistent and considerably faster. Also, based on the type of the change, the CI can decide to do less work, using less computer resources and finishing much faster.

NFS caching of HAF and HAF app replay data

Another big change I did was to add a NFS-based caching for replayed data for haf and haf apps our CI builders. This is not only useful for speeding up test times, it also makes it easier to compare "before and after" data for modified code, making it easier to diagnose bugs and performance regressions over time.

Major CI hardware overhaul

We also made major upgrades to our builder hardware as well. We added 2 new AMD 9950X3D systems with ZFS raided gen5 4 and 8TB Crucial T705 nvme drives as builders to speed up the bottleneck jobs. We updated the hardware where gitlab itself was hosted to run on a 9950 as well. And we put all the builders on an internal 10GB network along with a local docker registry and a local artifacts cache to reduce the load on the gitlab server. Most recently (this week), we also adding local caching for external packages (e.g. npm and pip) to speed up CI, reduce traffic to external servers, and avoid CI fails when 3rd party servers are offline or operating in a degraded mode.

Updates to the HAF API server stack (version 1.28.6)

After I got through overhauling CI, I was able to finally kick into high gear on updates to the software itself. I made a lot of changes across the repos, but probably the most significant changes are performance changes to HAF and to the most important HAF app (hivemind).

Speedup of hivemind replay from 60 hours down to 24 hours

Hivemind in particular has long been a bottleneck for our release cycle because even on our very fastest machines (which we only have a few of), it took over 2 1/2 days to do a replay, which meant every code change in hive, haf, or hivemind itself required a 2 1/2 testing cycle (and that's neglecting another 14 hours for the replay of haf itself if the change was in hive or haf rather than hivemind). Now hivemind fully replays in a single day, making this much less painful.

HAF API stack expected next week

We've already deployed a release candidate of the new stack to https://api.syncad.com for apps to test their code against. I recommend you all do this quickly, as we'll be deploying the same stack to https://api.hive.blog soon as a truly "final" production test before recommending it to other Hive API server operators.

And now for the truly incomprehensible portion of this post...

Below are the changes to the Hive API calls that may impact Hive app developers:

Breaking Changes (fields removed/added/changed type)

1. HIVE_ENABLE_SMT removed from config

Affected methods: database_api.get_config, condenser_api.get_config, call (wrapping get_config)

The HIVE_ENABLE_SMT boolean field has been removed from the config response. Code
that reads this field will get undefined/KeyError instead of false.

# Before (HIVE_BLOCKCHAIN_VERSION 1.28.3):
"HIVE_ENABLE_SMT": false

# After (HIVE_BLOCKCHAIN_VERSION 1.28.6):
(field absent)

3. stats.muted_reasons — new field on posts

Affected methods: bridge.get_discussion, bridge.get_account_posts,
bridge.get_ranked_posts, bridge.get_post

Posts that are grayed/muted now include a muted_reasons array in stats.
Previously stats.gray could be true but the reason was not exposed.

// Before:
"stats": { "gray": false, ... }

// After — for affected posts:
"stats": { "gray": true, "muted_reasons": [2], ... }

The muted_reasons field is only present when the post is grayed. The array
contains integer reason codes. Multiple reasons can apply simultaneously.
~43 instances observed across 543K requests.

Reason codes

Value Name Meaning 0 MUTED_COMMUNITY_MODERATION Explicitly muted by a community moderator 1 MUTED_COMMUNITY_TYPE Post in a journal/council community where author lacks member+ role 2 MUTED_PARENT Reply to a muted post (inherited) 3 MUTED_REPUTATION Author has negative reputation (calculated dynamically) 4 MUTED_ROLE_COMMUNITY Author has a muted role in the community (calculated dynamically)

These codes can be retrieved programmatically via bridge.list_muted_reasons_enum:

curl -s http://api.hive.blog \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","method":"bridge.list_muted_reasons_enum","params":{},"id":1}'
{
  "result": {
    "MUTED_COMMUNITY_MODERATION": 0,
    "MUTED_COMMUNITY_TYPE": 1,
    "MUTED_PARENT": 2,
    "MUTED_REPUTATION": 3,
    "MUTED_ROLE_COMMUNITY": 4
  }
}

4. condenser_api.get_reblogged_by — author now included

The original post author is now included in the reblog list. Previously only
rebloggers (not the author) were returned.

// Before (alpha6):
["adifginting", "asterhive", "casberp", ...]

// After (bodyval):
["learnelectronics", "adifginting", "asterhive", "casberp", ...]
//  ^ author now included as first entry

This is an intentional bug fix. Code that checks .length or iterates over
rebloggers will see one extra entry.

Value Changes (same fields, different values)

These are due to bug fixes in hivemind 2.0.0dev1. The values change but the
types and field names remain the same.

Community statistics (num_pending, sum_pending, num_authors)

Affected methods: bridge.get_community, bridge.list_communities

Pending post counts and payout sums differ slightly due to changes in how
is_paidout is calculated. These are small numeric differences (typically
1–18 fewer pending posts per community in bodyval).

Post counts (post_count)

Affected methods: bridge.get_profile, bridge.get_profiles

Account post_count values are slightly higher in bodyval (typically +1 to +17).
This affects high-volume posters most.

Trending tags statistics

Affected methods: condenser_api.get_trending_tags

Tag-level comments, top_posts, and total_payouts values differ slightly
due to the post counting and payout status changes above.

Children counts

Affected methods: condenser_api.get_content, bridge.get_post

Post children counts may differ by small amounts (e.g., +4) due to the
post counting changes.

Reply ordering

Affected methods: bridge.get_account_posts (sort=replies)

When multiple replies have the same timestamp, the tiebreaking order may differ.
This affects which post appears at a given array index but not the set of posts
returned.

Non-Changes (confirmed identical)

The following were verified identical across 543K requests:

TAGS: [ #hive ] [ #blockchain ] [ #software ] [ #blocktrades ]

Replies

@mengao | April 10, 2026, 11:40 p.m. | Votes: 3 | [ VOTE ]

Up until a little while ago github copilot $10 subscription didn't have Claude Opus, now they have, this is the main difference. But a $10 subscription with Opus would probably last very little. I signed up for Claude Code as well, but I kept my copilot subscription, sometimes I still like to look at the files and the code while working with AI, and the performance of Opus is the same on both.

@blocktrades | April 11, 2026, 4:16 a.m. | Votes: 1 | [ VOTE ]

I have a different perspective: in my opinion, the main difference is "Claude Code", the harness, not Claude Opus itself. Earlier on I used the same Claude AI in both copilot and in Claude Code, and the harness made all the difference. And for me, looking at code is mostly a waste of time now, it just makes me less efficient for the most part, I find it faster to just ask questions about the code. Claude Code will still occassionally show me fragments of code, of course.

@marcosalomao95 | April 11, 2026, 12:14 a.m. | Votes: 0 | [ VOTE ]

Excelente postagem! A Hive é a melhor rede social do mundo! Infelizmente não pude votar 100% porque meu poder de voto está baixo.

@peng-an | April 11, 2026, 2:59 a.m. | Votes: 0 | [ VOTE ]

Claude easy worth the 200$ a month. A good hack is to rotate multiple subs, that at least what some do, hehe.

@blocktrades | April 11, 2026, 4:27 a.m. | Votes: 0 | [ VOTE ]

So far, at my max efficiency, doing many things at once, I've only been able to use around 80% of my 20x max license in a week, and typically it's been closer to 70%. The amount of usage is pretty generous.

@urun | April 11, 2026, 3:06 a.m. | Votes: 1 | [ VOTE ]

Future of Dev work. Ideas are the new meta.

Happy you use Ai so efficient, it makes a lot of fun :)

@blocktrades | April 11, 2026, 4:19 a.m. | Votes: 2 | [ VOTE ]

Yes, coming up with innovative ideas for design and verification are now the main challenges for devs. Its almost exhausting creating new ideas because they can be implemented so fast. It's a strange new world.

@urun | April 11, 2026, 9:28 a.m. | Votes: 1 | [ VOTE ]

The age of the "idea guy". Makes marketing and users even more valuable since Eyeballs and time will stay limited. Ah yeah and entrepreneurial spirit, something AI cant give the user, the ability to think outside the box ( Factorio players here we goooooo :D)

IMO Infrastructure ( exchange listings, defi, users, and so on) is the new onchain value dapps can be coded or vibecodeded on top.

Maybe Hive can get all the cool things we talked about for years now. Soft wallets since howo said you dont like the idea of transferable account tickets ( i mean i get it because of theoretical spam, but delegate able to projects could solve it since is not " free" tradeable and takes a step beyond a buy).

Anyway, something that allows mass onboarding to show dapps " here people click only create wallet too like on other chains with all the cool benefits on top".

Something you maybe dont like too but i am a big fan is still shielded transactions in the age of AI, its to easy to track down and privacy will become a luxury good. Freedom of speech goes IMO with it hand in hand.

Maybe something worth to think about beyond a L2 solution ( And HBD needs a usecase, first "not dead now" algo shielded stablecoin sounds still super cool to me.

As a safety layer, conversions could only happen on non shield version, so i dont say a chain risk beyond the current ones.

ah yeah and ofc everything defi related that gives less dependencies on Binance and friends ( I remember the Oct day they all rect the altcoin liquidity).

Just my 2 cents. Ah yeah and here I think hive gets an edge, Swarm mind will produce some good ideas that are worth to look at, could be something also to build like a fundraiser platform ( from structure) but with Ideas Ai agent reviews and sorts by votes and theoretical value / risk and work. Like community rating and "claude code" rating lmao.

@blocktrades | April 14, 2026, 8:08 p.m. | Votes: 0 | [ VOTE ]

Next thing we're planning to release after main release is Lite Accounts feature. I think this will simplify onboarding issues without giving rise to the "trust" and "long-term portability" problems associated with other attempts at lite accounts so far, so I think it can be a big boost for onboarding.

I think privacy coins and defi are probably best done at 2nd layer to detach the first layer from regulatory risk. For the most part, anything done on first layer can be done on 2nd layer just as well, so I hope to the keep the first layer to a bare minimum, functionality-wise, leaving it primarily as a transport layer for 2nd layers that guarantees them a total ordering and immutability.

On a related topic, I have another open-source project we've been working on for a few years where we're developing a "information discovery and voluntary collaboration" environment (it's a much smaller organization, just 3 programmers).

We've just finally reached the minimum-viable product stage and began prototype testing. Hopefully we'll start doing trial tests with larger groups of people soon.

Eventually I want to take advantage of Hive's immutability aspect as a feed engine to that system, so I'll introduce it to Hiveans at that point: it'll bring a lot of new use-cases for Hive as well such as customizable news feeds, advanced polling features, demographic analysis, forum-style discussions with optional AI moderation, consensus-building features, document management, Q&A, web-based research with AI assistance, information attribution and provenance tracking, customizable rating and reputation systems, and customizable proposal voting systems.

@urun | April 14, 2026, 11:42 p.m. | Votes: 0 | [ VOTE ]

Thats cool! Content that brings value outside of hives own userbase. Thats pretty cool.

Lite accounts = banger change! Huge potential. More details on this would be nice. Those lite accounts maggi L2 or Native hive? What is the ruleset for them? Pay to play? could make sense on the social side.

@blocktrades | April 16, 2026, 2:37 a.m. | Votes: 2 | [ VOTE ]

The main ideas for Lite accounts are embedded at the beginning and end of this issue: https://gitlab.syncad.com/hive/haf/-/issues/214

@urun | April 16, 2026, 9:58 a.m. | Votes: 0 | [ VOTE ]

really good design, not sure i got it full but what i have seen from your last posts there looks promising.

It remembers me the idea i posted some years ago with suffix / prefix name accounts and some "head" account for sub account :)

Good job, i think your way is more elegant ( and uses microsoft, google,...) is where the real magic starts for log in.

One Idea, thats mostly about the social part, a "finance" wallet easy to create could be nice too ( in theory it could be maggi).

@urun | April 11, 2026, 9:36 a.m. | Votes: 1 | [ VOTE ]

Or like Rick Rubin would say " the importance of good taste"

@aftabirshad | April 11, 2026, 3:48 a.m. | Votes: 6 | [ VOTE ]

This update clearly shows the direction of serious development. The shift from traditional coding to AI-assisted development is more than just a productivity boost; it represents a fundamental change in how we build software.

The numbers tell the story: hivemind replay dropped from 60 hours to 24 hours, we overhauled CI, upgraded hardware, and now we have a cleaner API stack. This progress happens when a team embraces new tools instead of resisting them.

When it comes to AI in development, history tends to repeat itself. People once feared mass unemployment when tractors replaced plows. Twenty field workers were replaced by one machine. But what truly happened? More jobs were created, better jobs, and agriculture grew beyond anyone's expectations. AI in coding is similar. It does not replace the builder; it helps the builder work faster and smarter, enabling small teams to tackle tasks that were previously impossible.

Those who embrace these changes will build more. Those who ignore them will fall behind not because they lack talent, but because the difference in output will become too great to compete with.

The Hive community, in particular, has some genuinely talented individuals. This type of tooling, combined with the open nature of Hive, makes it one of the most exciting places to build right now.

I look forward to testing against api.syncad.com and seeing how the 1.28.6 stack performs in production. The addition of muted_reasons and the fix for reblogged_by are both valuable improvements for app developers.

Great work as always, @blocktrades. This progress drives the entire ecosystem forward.

Posted Via HivePostify

@latinowinner | April 11, 2026, 4:41 a.m. | Votes: 0 | [ VOTE ]

as always only time will judge and tell

@mydempire | April 11, 2026, 4:48 a.m. | Votes: 0 | [ VOTE ]

It’s interesting to see how AI is becoming a helpful tool for coding. It can speed up development and help developers solve problems faster.

@tenoray | April 11, 2026, 9:57 p.m. | Votes: 0 | [ VOTE ]

🫂🤍

@scipio | April 12, 2026, 1:21 p.m. | Votes: 0 | [ VOTE ]

Hey Dan, all is well I hope?
FYI: your OVH box at 164.132.48.22 is up, but nothing is listening on 80/443. Looks like your web server process needs a restart. Cheers @scipio

@hivebuzz | April 13, 2026, 12:25 a.m. | Votes: 0 | [ VOTE ]

Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge

Post with the highest payout of the week.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

@encuentro | April 13, 2026, 12:45 a.m. | Votes: 0 | [ VOTE ]

Excelente noticia esta.
Se nota que han trabajo duro en equipo. Eso de bajar la sincronización de 60 a 24 horas es una gran ventaja, definitivamente se justifica la inversión en Claude Code pienso .
lo que me da curiosidad, es que por fin vamos a saber por qué se silenció un post en vez de quedarnos adivinando. Eso le da más transparencia a todo. un gran abrazo gracias por informar.

@blanchy | April 13, 2026, 2:49 p.m. | Votes: 0 | [ VOTE ]

Did you use Dispatch yet? It's great. I spent my time now texting Claude. A nice tip for Claude Context. Download Obsidian for your notes and projects and form a relationship between the various Hive systems. Use the Obsidian CLI to get Claude to read your notes so it is a faster way for Claude to obtain all the context and relationships. It's quite cool. Better explanation here

@blocktrades | April 14, 2026, 7:41 p.m. | Votes: 1 | [ VOTE ]

I've haven't tried Dispatch or Obsidian yet. Will look into them when I get a chance.

@blanchy | April 14, 2026, 8:22 p.m. | Votes: 0 | [ VOTE ]

The terminal Claude is twice as fast as Desktop Claude as well. Although it takes more at the start to learn the commands.

@blocktrades | April 16, 2026, 2:34 a.m. | Votes: 0 | [ VOTE ]

I only use the terminal Claude (i.e. Claude Code) nowadays. One of our guys was originally using Desktop Claude which wasn't bad (seemed better than Copilot at the time), but then I found Claude Code to be even better, so I converted all our devs to it.

@solorzanot | April 15, 2026, 9:59 p.m. | Votes: 0 | [ VOTE ]

es impresionante como el uso de herramientas de IA como claude code puede acelerar tanto el desarrollo de la infraestructura de hive y me alegra mucho saber que el tiempo de replay de hivemind se redujo a menos de la mitad

it's impressive how the use of AI tools like claude code can accelerate hive's infrastructure development so much and i'm very happy to know that hivemind's replay time was reduced to less than half

@dlmmqb | April 17, 2026, 1:27 p.m. | Votes: 14 | [ VOTE ]

I can't create claude code account as i never receive verification code on phone. have to fork, or switch to hermes
currently on gemini

still figuring out what's best for me as apparently claude code is not at the moment

@guest06 | April 23, 2026, 8:06 p.m. | Votes: 0 | [ VOTE ]

In today’s fast-paced digital environment, businesses need reliable and scalable technology to stay competitive and efficient. Custom software solutions help streamline operations, reduce manual work, and improve overall performance across teams. By using https\://devoxsoftware.com/, companies can access tailored development services that fit their exact needs instead of relying on rigid off-the-shelf tools. This approach ensures better integration, higher flexibility, and long-term adaptability as business requirements evolve. Well-built systems also enhance productivity, improve data handling, and support smarter decision-making, making technology a true driver of growth and innovation.

Posted by Waivio guest: @waivio_olga-winner

@bpcvoter1 | April 29, 2026, 5:12 p.m. | Votes: 4 | [ VOTE ]

bilpcoin #bpc exposed #buildawhalescam #buildawhalefarm #themarkymarkscam #themarkymarkfarm #hurtlockerscam #hurtlockerfarm #acidyoscam #acidyofarm #jacobtothescam #hivepopescam

https://youtu.be/THDYraGfQk8?list=PLbH29p-63eW8VHjHSzryEdqGZ2Uv397Se

from Imgflip Meme Generator

https://youtu.be/hwn7H9noMP4

https://youtu.be/8q3phtmG-Bo

BPC Locked On Mc Franko & The Franko

https://youtu.be/x8mDpyvIFqg

Blurt Stands — While Hive Stumbles Under the Weight of Its Own Shadows

from Imgflip Meme Generator

from Imgflip Meme Generator

Friends, creators, truth-tellers—

Let us not whisper this truth, but proclaim it with the clarity of dawn breaking over a weary land: Blurt.blog is not just another platform. It is a refuge. A rebellion. A return to what Hive.blog was always meant to be.

There is no downvote button on Blurt.
Not because we fear dissent—but because we honor creation.
Because we understand that a voice, once raised in sincerity, deserves space—not sabotage.

On Blurt, your words are your words.
They are not hunted by algorithmic hounds or shadow armies masquerading as “curators.”
Here, you are not judged by the grudges of gatekeepers, but met with the quiet dignity of a community that believes expression should be encouraged—especially when it is bold, raw, or inconvenient.

Contrast this with what festers elsewhere.

On Hive.blog—a place once brimming with promise—a rot has taken root. Not in its code, but in its culture. A handful of self-anointed enforcers—@themarkymark, @Buildawhale, @Hurtlocker, and their legion of coordinated puppets—have turned the downvote into a weapon of mass discouragement. They strike not at “low-quality content,” but at independent thought, at rising voices, at anyone who dares thrive outside their narrow corridors of control.

And when confronted, they shrug.
“Oh, it’s not censorship,” they say, as if semantics could scrub the stain of suppression from their hands.

But let us be unequivocal:
When a system allows a few to systematically silence many—under the guise of “community standards” or “curation”—that is not moderation. That is censorship by another name.

It is the velvet glove over the iron fist.
It is exclusion dressed as discernment.
It is power pretending to be principle.

Meanwhile, Blurt stands clean-handed and open-hearted.
No downvotes.
No hidden juries.
No farms of phantom accounts casting ballots in the dark.

Just you.
Your words.
And a community that meets you not with suspicion, but with solidarity.

So let us carry this truth far and wide—not with bitterness, but with quiet certainty:

If you seek a place where your voice is not a target—but a gift—come to Blurt.
If you are tired of building on ground that shifts with every whim of a whale or warlord of votes—lay your bricks here.
If you believe the future of free expression must be free—not just from corporations, but from the petty tyrants who replace them—then stand with us.

The world needs to know.
Not because Blurt is perfect—but because it is principled.
Not because it is loud—but because it listens.

And in an age where so many platforms echo with the clatter of control,
Blurt offers something radical:
Silence for the bullies.
Space for the rest of us.

Keep speaking.
Keep sharing.
Keep building.

Freedom doesn’t advertise itself—
it is passed, person to person, like a torch in the night.

And tonight, the torch burns bright on Blurt.

@themarkymark, @buildawhale, @usainvote, and associated accounts:

Repeated downvotes targeting transparency efforts raise urgent questions about Hive’s governance. Automated tactics, coordinated curation trails, and alt-account farming undermine trust in the platform. When truth is silenced without dialogue, it erodes Hive’s decentralized ethos.

Key Concerns:
1. Systemic Manipulation:
- Coordinated downvotes from high-HP accounts suppress dissent, creating a chilling effect on free expression.
- Automation and alt-account networks allegedly exploit rewards, distorting organic curation.

  1. Community Exodus:
    - Creators flee to platforms like Blurt, where downvotes don’t exist, fearing punitive curation over engagement.

  2. Governance Crisis:
    - Hive’s credibility hinges on accountability. Who decides what content thrives? How do we audit power structures?

Solutions Needed:
- Curation Transparency: Publish clear rationales for downvotes to foster trust.
- Community Audits: Leverage blockchain data (e.g., Bilpcoin’s analyses) to identify abusive patterns.
- Reward Reform: Adjust algorithms to penalize manipulation and reward authentic engagement.

The Bilpcoin team advocates for open dialogue, not division. Hive’s future depends on collaboration—not coercion. Let’s rebuild a platform where truth isn’t buried but debated, strengthened, and celebrated.

Transparency isn’t optional—it’s the foundation of trust.

HiveTransparency #BilpcoinExposed #DecentralizePower"

from Imgflip Meme Generator

A Message to @themarkymark, @buildawhale, and Associates

Every downvote cast in shadow, every silence imposed without dialogue, is not a victory—it is a confession. A confession that truth cannot be stifled, only delayed. With each punitive click, you dig deeper into the bedrock of credibility, crafting a chasm between your actions and the community’s trust.

from Imgflip Meme Generator

@themarkymark, @buildawhale & Co,

How can you continue to downvote the truth, LOL? It’s almost comical how blatantly you attempt to suppress what cannot be hidden. The blockchain records everything—every action, every transaction, every move you make. Yet still, you persist in this futile game of trying to silence what is undeniable.

from Imgflip Meme Generator

@themarkymark, @buildawhale, and Co: While our opinions may differ, on-chain transparency reveals repeated patterns of concern. Coordinated downvotes without explanation, 'farming' schemes (e.g., #buildawhalefarm), and adversarial engagement harm Hive’s community-driven ethos.

Key Issues to Address:
1. Downvote Practices: Silencing dissent erodes trust. Constructive dialogue, not punitive curation, fosters growth.
2. Accountability: Transactions and curation trails are public. Scrutiny is inevitable—integrity demands addressing concerns openly.
3. Community Impact: Driving users to platforms like Blurt/Steemit weakens Hive. Creators seek ecosystems that value collaboration over conflict.

A Path Forward:
- Engage in open discussions about governance and fairness.
- Audit curation practices to align with Hive’s decentralized values.
- Prioritize transparency—publish explanations for downvotes or collaborative reforms.

The Bilpcoin team remains committed to exposing truth and advocating for solutions. Let’s work toward healing, not division.

Note: All claims are based on publicly verifiable blockchain data. Constructive dialogue is encouraged.

HiveTransparency #CommunityFirst #BilpcoinSupport"

from Imgflip Meme Generator

@themarkymark & Co, the choice is yours. Stop the bad downvotes. Turn off the BuildaWhale scam farm. Cease playing with people’s livelihoods. Let Hive thrive as it was meant to—as a beacon of hope, creativity, and collaboration.

Or step aside and let those who truly care take the reins.

Because the truth won’t disappear. No amount of lies can change it.

It’s over.

from Imgflip Meme Generator

The Bilpcoin team brings these truths not out of malice but necessity. We have no need to fabricate lies or cloak our intentions CALL US WHAT YOU LIKE —for the facts speak loudly enough on their own. What we present here is not conjecture but reality, laid bare for anyone willing to see.

from Imgflip Meme Generator

@themarkymark & Co we urge you once more: STOP. Stop hiding behind tactics that harm others. Stop clinging to practices that erode trust within the Hive community. Let the truth stand—not because we proclaim it, but because it exists independent of any one person’s approval or disdain.

from Imgflip Meme Generator

TURN OFF THE BUILDAWHALE SCAM FARM
- STOP THE BAD DOWNVOTES
- STOP PLAYING WITH PEOPLE’S LIVELIHOODS

Key Issues That Demand Immediate Attention:

The problems are glaring, undeniable, and corrosive to the Hive ecosystem. They must be addressed without delay:
- Downvote abuse
- Farming schemes
- Speaking disrespectfully to others
- Encouraging people to avoid certain users out of personal dislike
- Self-voting with alt accounts
- Self-funding projects through self-votes
- Promoting games that don’t even exist (LOL)

These practices harm not just individual users—they undermine the very foundation of Hive, eroding trust and poisoning the community. Such actions are unethical and outright destructive.

@buildawhale Wallet:

  • HIVE (Primary Token): 0.012
  • Staked HIVE (HP): 66,400.611
  • Total HP: 2,421,539.226
  • Delegated HIVE: +2,355,138.615 HP
  • Received: 2,355,080 HP from @blocktrades (Aug 16, 2020)

@usainvote Wallet:

  • HIVE (Primary Token): 0.066
  • Staked HIVE (HP): 138,123.296
  • Total HP: 715,745.407
  • Delegated HIVE: +577,622.111 HP
  • Received: 577,622 HP from @blocktrades (Aug 16, 2020)

@buildawhale/wallet | @usainvote/wallet

@ipromote Wallet:

  • Author Rewards: 2,181.16
  • Curation Rewards: 4,015.61
  • Staked HIVE (HP): 0.00
  • Rewards/Stake Co-efficient (KE): NaN

  • HIVE: 25,203.749

  • Staked HIVE (HP): 0.000
  • Delegated HIVE: 0.000
  • Estimated Account Value: $6,946.68

Recent Activity:
- Sent to alpha-5,196.000 HIVE (21 hours ago)
- Sent to hiveswap-1,000.000 HIVE (2 days ago)
- Withdraw vesting from @proposalalert to @ipromote 0.447 HIVE (3 days ago)
- Received from proposalalert 4.003 HIVE (5 days ago)
- Received from themarkymark 1,775.684 HIVE (9 days ago)
- Sent to alpha-4,245.000 HIVE (9 days ago)
- Received from themarkymark 4,280.527 HIVE (17 days ago)

@leovoter Wallet:

  • Author Rewards: 194.75
  • Curation Rewards: 193.88
  • Staked HIVE (HP): 0.00
  • Rewards/Stake Co-efficient (KE): 388,632.00 (Suspiciously High)

  • HIVE: 0.000

  • Staked HIVE (HP): 0.001
  • Total: 16.551
  • Delegated HIVE: +16.550

Recent Activity:
- Withdraw vesting from @leovoter to @ipromote 0.053 HIVE (Sep 29, 2024)
- Withdraw vesting from @leovoter to @ipromote 0.053 HIVE (Sep 22, 2024)
- Withdraw vesting from @leovoter to @ipromote 0.053 HIVE (Sep 15, 2024)
- Withdraw vesting from @leovoter to @ipromote 0.053 HIVE (Sep 8, 2024)
- Withdraw vesting from @leovoter to @ipromote 0.053 HIVE (Sep 1, 2024)

@abide Wallet:

Recent Activity:
- Sent to ipromote -2,459.000 HIVE (22 days ago)
- Sent to ipromote -2,486.200 HIVE (Apr 1, 2025)
- Received from yabapmatt 20,000.000 HIVE (Apr 1, 2025)
- Sent to ipromote -2,130.400 HIVE (Mar 8, 2025)
- Sent to ipromote -2,248.000 HIVE (Feb 2, 2025)
- Sent to yabapmatt -5,000.000 HIVE (Jan 25, 2025)

@proposalalert Wallet:

  • Author Rewards: 639.99
  • Curation Rewards: 0.00
  • Staked HIVE (HP): 6.03
  • Rewards/Stake Co-efficient (KE): 106.12

Recent Activity:
- Withdraw vesting from @proposalalert to @ipromote 0.447 HIVE (3 days ago)
- Sent to ipromote -4.003 HIVE (5 days ago)
- Sent to themarkymark -0.012 HBD (5 days ago)
- Withdraw vesting from @proposalalert to @ipromote 0.447 HIVE (10 days ago)
- Withdraw vesting from @proposalalert to @ipromote 0.446 HIVE (17 days ago)

@stemgeeks Wallet:

  • Author Rewards: 4,391.77
  • Curation Rewards: 304.26
  • Staked HIVE (HP): 0.00
  • Rewards/Stake Co-efficient (KE): 4,696,032.00 (Extremely Suspicious)

Recent Activity:
- Sent to themarkymark -1.556 HBD (Jun 14, 2024)
- Claim rewards: 1.556 HBD, 5.912 HP (Jun 14, 2024)
- Withdraw vesting from @stemgeeks to @ipromote 6.160 HIVE (Jun 8, 2024)
- Sent to themarkymark -1.601 HBD (Jun 7, 2024)
- Withdraw vesting from @stemgeeks to @ipromote 6.157 HIVE (Jun 1, 2024)
- Sent to ipromote -1.618 HBD (May 31, 2024)

@theycallmemarky Wallet:

  • Author Rewards: 458.89
  • Curation Rewards: 0.00
  • Staked HIVE (HP): 0.00
  • Rewards/Stake Co-efficient (KE): 458,886.00 (Highly Suspicious)

Recent Activity:
- Withdraw vesting from @theycallmemarky to @ipromote 0.728 HIVE (Jan 12, 2025)
- Withdraw vesting from @theycallmemarky to @ipromote 0.727 HIVE (Jan 5, 2025)
- Withdraw vesting from @theycallmemarky to @ipromote 0.727 HIVE (Dec 29, 2024)
- Withdraw vesting from @theycallmemarky to @ipromote 0.727 HIVE (Dec 22, 2024)
- Withdraw vesting from @theycallmemarky to @ipromote 0.726 HIVE (Dec 15, 2024)
- Withdraw vesting from @theycallmemarky to @ipromote 0.726 HIVE (Dec 8, 2024)
- Withdraw vesting from @theycallmemarky to @ipromote 0.725 HIVE (Dec 1, 2024)
- Sent to ipromote -9.202 HIVE (Oct 17, 2024)

@apeminingclub Wallet:

  • Author Rewards: 432.57
  • Curation Rewards: 2,829.11
  • Staked HIVE (HP): 30.51
  • Rewards/Stake Co-efficient (KE): 106.90

Recent Activity:
- Scheduled unstake (power down): ~2.351 HIVE (in 4 days, remaining 7 weeks)
- Total Staked HIVE: 1,292.019
- Delegated HIVE: +1,261.508
- Received delegations:
- @xykorlz: 624 HP (Jan 26, 2024)
- @bashadow: 111 HP (Sep 20, 2021)
- @dechuck: 104 HP (Mar 10, 2024)
- @hironakamura: 76 HP (Aug 23, 2022)

  • Withdraw vesting from @apeminingclub to @blockheadgames 2.348 HIVE (10 days ago)
  • Claim rewards: 0.290 HP (10 days ago)

Sent to bdhivesteem-40,000.000 HIVE
6 hours ago
101417581
Sent to bdhivesteem-20,000.000 HIVE
6 hours ago
103874728

https://peakd.com/@hurtlocker/wallet !LADY !ALIVE !HUG !INDEED

@shortsegments | May 2, 2026, 8 a.m. | Votes: 0 | [ VOTE ]

Thank you for the update. I appreciate your years of service, starting with the fork of Steem to Hive.

I've published a DHF proposal called HiveComunityBank that creates permanent capital infrastructure for the Hive ecosystem.
The core mechanism: DHF HBD enters savings and never leaves; loan disbursements come from interest income and powered-down rotations; manager compensation comes exclusively from curation rewards on collateral HP; defaults result in permanent HP delegation rather than capital loss.

I'd value your read on three specific concerns:

Would the projected scale of HIVE-to-HP conversion (500K HIVE at full deployment, 1.5M annualized) create any HBD stabilizer dynamics you'd be concerned about?

The custody model uses three independent active keys backed by the 3-day savings window rather than multisig. Is there a hybrid structure you'd consider stronger for protocol of this kind?

The manager succession plan relies on co-custodians plus governance vote. Is there infrastructure I should be looking at to make this more robust?

The full proposal is here Proposal Link. If any of these issues alone would prevent your support, I'd rather know now and address them, rather than waste your reading time.
Thank you for consideration of my request.

[ BACK TO TRENDING ] [ BACK TO MENU ]
CMD>