create account

Hive is five by thebeedevs

View this thread on: hive.blogpeakd.comecency.com
· @thebeedevs ·
$90.50
Hive is five
# 🎉 Hive is five 🎂

Hello Hive Community ❗

Birthday needs a gift 🎁 and we, 🐝 thebeedevs group, prepared a few for you, to make this platform better and simplify application development.

To make quick retrospection, Hive was born in a block [41818752](https://explore.openhive.network/block/41818752), by executing the `HardFork #23`.

Here are our gifts... A few has been already mentioned (but they got a lot of new features), some (like HAF itself and a few base HAF applications powering the platform) are being continuously developed to make it faster, better and more reliable. Finally, we have also created new applications to address community needs.

[![HIVE](https://hive.io/opengraph.png)](https://hive.blog)

***𝔹*** like a ***BeekeePy*** tool
***𝕀*** like ***Improvements***
***ℝ*** like ***Reliability***
***𝕋*** like a ***Transaction Inspector*** web application
***ℍ*** like a ***hAIve*** (our Artificial Intelligence powered search engine for Hive)
***𝔻*** like a ***Denser*** web application
***𝔸*** like ***A wAx library***
***𝕐*** like ***Yet more wallets to sign Your transactions***

Below I would like to describe shortly mentioned things... 

## 🔑 BeekeePy tool
One of previously published posts introduced a tool called `beekeeper` ["for those developing a Hive"](https://hive.blog/hive-139531/@thebeedevs/for-those-developing-a-hive). The purpose of this tool is to preserve your keys from direct access and allow only performing basic operations like:

- signing,
- buffer encryption,
- buffer decryption

Beekeeper is a ***SUPERHERO*** 🦸 right now 😊, and guards your keys in **three** environments:
- 🕸 WASM code directly executed inside Javascript environment by the WebBrowser. This allows you to hold your keys in the wallet (e.g.) this version used by Denser application) 
- 💻 as a desktop service, where its functionality can be accessed through network API calls. This way, you can configure it to run the service using separate OS account and use UNIX as a mainguard of your keys stored inside encrypted beekeeper storage
- 🐍 Python based (this is why we've created a Beekee**Py** wrapper), which significantly simplifies interaction to underlying beekeeper service. The beekeepy python package allows easily operating on explicitly pointed beekeeper service instance, or own-managed process. Again, UNIX security features prevent accessing sensitive data (they are managed by separate process) directly from Python side which can be running in a potentially not safe environment (due to the 3rd party Python package dependency problems).

## 💡 Improvements
It is very hard to select most important enhancements being done by the group teammates. Our main focus is a performance of provided tools... The greatest motivation for the work put into optimization 🚅 is the constantly growing blockchain, which increments every 3s ⏰ together with local resource needs required to hold it.

To address the issue, we did several things like:
- block log splitting/pruning implementation to reduce disk space needed to run given hived node
- significant block processing optimization in the [reputation_tracker](https://gitlab.syncad.com/hive/reputation_tracker/), [balance_tracker](https://gitlab.syncad.com/hive/balance_tracker/) applications which reduced application processing times from more than **21hrs** to **12hrs 15mins** even it has to process **additional 2 million** blocks ❗❗❗
- HAF and Hivemind storage reduction (due to database index optimization) to reduce disk space usage required to hold a HAF node.

We are also planning new ones especially specific to critical parts the Hive services like [Hived](https://gitlab.syncad.com/hive/hive/-/issues/675). Hopefully some of them will be also ready soon.

## 🐛 Reliability
To achieve good software quality it must be... tested. And ideally not only by final users 😊 but during software development process. To make testing efficient, during last few years of Hive development we have created a lot of new testcases like also a Python based library simplifying their creation (called [test-tools](https://gitlab.syncad.com/hive/test-tools)).

Below you can find some information on the number of regression tests that exist in each of the most important projects included in the Hive platform:

|Project|Total number of tests|Example pipeline URL|
|--------:|--------------------:|:--------:|
|Hive|5015|[develop branch pipeline](https://gitlab.syncad.com/hive/hive/-/pipelines/118202/test_report)|
|HAF|117|[develop branch pipeline](https://gitlab.syncad.com/hive/haf/-/pipelines/118166/test_report)|
|Hivemind|1467|[develop branch pipeline](https://gitlab.syncad.com/hive/hivemind/-/pipelines/117893/test_report)|
|HAfAH|656|[develop branch pipeline](https://gitlab.syncad.com/hive/HAfAH/-/pipelines/116997/test_report)|
|WAX|923|[develop branch pipeline](https://gitlab.syncad.com/hive/wax/-/pipelines/118175/test_report)|

To make this testing possible and efficient like also reproducible, all our projects have implemented Continuous Integration processes, being useful for automatic building, testing as well as deployment of each project.

Additionally, making good software not only needs tests, but also some tools which allow performing scenarios not easy (**nor safe**) to happen in production environment. To make them a reality, during the last few years we created testing tools like:
- [suite of tools supporting a Hive mirrornet](https://gitlab.syncad.com/hive/hive/-/tree/develop/programs/blockchain_converter?ref_type=heads) (be able to transform mainnet blocks into fake mirrornet ones), where - due to the isolation of both networks - disasters can be safely performed...  💣
- dedicated unit test fixtures emulating actual execution environment during performing low level unit tests. The one of biggest challenges in this part, was creation of fixture mimicking hived start and shutdown actions, mostly by directly reusing [appbase code](https://gitlab.syncad.com/hive/hive/-/tree/develop/libraries/appbase?ref_type=heads). The source code responsible for such emulation is located inside [hived_fixture](https://gitlab.syncad.com/hive/hive/-/blob/develop/tests/unit/db_fixture/hived_fixture.hpp?ref_type=heads) 
- low level hived plugins called: [colony](https://gitlab.syncad.com/hive/hive/-/tree/develop/libraries/plugins/colony?ref_type=heads), [queen](https://gitlab.syncad.com/hive/hive/-/tree/develop/libraries/plugins/queen?ref_type=heads) and [pacemaker](https://gitlab.syncad.com/hive/hive/-/tree/develop/libraries/plugins/pacemaker?ref_type=heads) being useful in executing performance tests leading to generating thousands of transactions, producing huge blocks and next collect statistics and ideas for... other optimizations to be done in Hive software 🚀 or features to prevent problems in production environment like described here: [Flood protection](https://blog.openhive.network/hive-139531/@andablackwidow/flood-protection-in-1-27).

What is  worth noting, 5 years ago when Hive was born, its testing ability was minimal and actually the whole test suite contained chain_test and plugin_test tools being able to run multiple simple unit tests to verify basic funcions. They are both still present right now...  

## 🔬 Transaction inspector
Regression tests 🧪, additional tools 🔧 and automation of development processes 🤖 are useful for us, developers... But we also think about you: Hive users. One of the biggest problems you have to deal with is the rejection of transactions due to improper authorization. To address this issue and help solve it ***without a need to look for a Blockchain Wizard*** we created a new application: [Transaction Inspector](https://tx.openhive.network/).

Its purpose is to visualize the process of verifying the authenticity of the transaction by showing analysis steps performed starting from account signing the transaction, then coming up through (potential) intermediate account authority redirections (e.g. if you permitted some other entities to operate on behalf of your account) to finally end with the account satisfying the authority required by a given transaction.

Let's discuss briefly the main application features - we will publish soon a separate article where authority analysis steps will be discussed in details. To work with it you need to point a transaction being an analysis subject. You have various ways to do it:

- interactively, by using a `Provide transaction` button and pasting transaction contents into the dialog as:
  - a JSON form, in this case you can point transaction which was not accepted yet by the chain which let you find the reason for evaluation failure
  - a transaction binary form encoded as a hexstring (by choosing `Binary` option); similar to the previous case you can point potentially broken/not yet broadcasted transaction
  - an uploaded file which can contain transaction JSON or a binary form encoded as a hexstring or just as a binary buffer. The application will detect automatically the type of passed content.
  ![Tx Input dialog](https://images.hive.blog/DQmRMFJKgLMrFoc4RfY5R1pTDoE9qNJRvHVMevoJz1kW7qS/txInputDialog.png)
- by pointing it using URL parameters while opening a Transaction Inspector application. In this case you can point a transaction hash (to look at the details of transaction already accepted by blockchain) or its base64 serialized content. Please be advised that the application automatically generates URL params also after interactive transaction load to make simple sharing it with others. Here is a simple example:
[https://tx.openhive.network/?transaction=07e7d9ecaad2a11bc36db6d7046a55e231627574](https://tx.openhive.network/?transaction=07e7d9ecaad2a11bc36db6d7046a55e231627574)

After opening the above link, you should get a similar view:
 ![ProcessedTx.png](https://images.hive.blog/DQmZRQn743a2TodWsNbyET7by3N9V9ifmftR9AdP3BvH1mX/txProcessedTx_resized.png)
 
As you can see, application shows information divided into several sections specific to:
- overall transaction verification status,
- signatures associated with the transaction, together with authority paths evaluated (by chain algorithm) while verifying transaction authority,
- set of required authorities (it depends on operations included in transaction),
- basic transaction header data which allow preserving blockchain sanity (TAPOS, expiration time),
- body (set of operations) which can be displayed using a `Formatted`, `JSON` or `Binary` view to allow you a better analysis by choosing a preferred presentation form.

The following application documentation contains the description of mentioned things: [Transaction inspector documentation](https://gitlab.syncad.com/hive/tx-inspector/#app-specification).

The important note is that this application uses the same algorithm to process authority as Hive Protocol due to the functionality exposed by a wax library.

Please enjoy yourself! We hope you will find this application useful. We also plan to improve it more soon to simplify significantly the analysis of the negative cases.

## 🛠 hAIve - our new Arificial Intelligence powered search engine

One of our wishes for Hive's birthday was to do something exciting both for you - the users of the platform - and for us - programmers involved in its development. I think we all love to have contact with the cutting edge technologies... That's why we decided to spend some of our time on the prototype of the engine, powered by AI and offering us some practical features. During our brainstorm we had a lot of great ideas on how we can use AI technology to improve our social platform. They all lead to a common requirement: massive processing of blockchain data (e.g. posts) and teaching some AI models with it. Fortunately, we have HAF already so making a dedicated app to process posts was quite simple at least at side specific to receiving input data...

Another big challenge was to select a proper AI model and configure it to make it work efficiently. In the end, we need a solution to provide ability to serve API calls and here again we could reuse our experience related to PostgREST integration into HAF applications.
Finally, we created the application called internally `HiveSense` having following architecture:

 ![HiveSense diagram.png](https://images.hive.blog/DQmXqdYiRkf2aGALbMbGHQAS6SnhDxzy6zkt25s9gUGz3bQ/HiveSense%20diagram.png)
 
To make the entire project successful we had to achieve an acceptable level of performance. The beginnings (as always) were difficult and first versions of the application were able to process the first 5M blocks in a few days. Currently, the optimizations made both in the software layer and the system and hardware configuration allowed the `HiveSense` application to be supplied with a full set of `94M` blocks in `38 hours` and to stick at head block continuously with `live-sync` processing block times at level: `0.078173 s`.

The amazing thing is that our software development and system administration team members involved into this project, had to use just two regular PCs:
- one serving AI models having onboard: AMD Ryzen 7 3800X and GeForce RTX 3060 12GB VRAM
- second holding HAF instance (and PostgreSQL database) built using: AMD Ryzen 7 5800X, 128GB RAM

⚡ Monster(s) ⚡ - yes, They are software development monsters and magicians 🧙🏼‍♂️ doing best things ❗

The important thing to mention is also the timeframe of this task: it took ca. **one month** to start from the rough idea to implement the working prototype 🪄✨. Of course you can test it yourself: we prepared a special version of our Blog App where regular search backend has been replaced with our AI powered engine.

You can find it here: [AI search engine prototype](https://blog.dev.openhive.network/search).

Below, there are some interesting search prompts where you can see the difference (yes, really big) in the quality of received results - please compare to condenser search, available here: [Current search engine](https://hive.blog/search).

Some example prompts:

| Prompt | HiveSense results | Current search results |
| -------- | -------- | -------- |
|russian classic cars| [russian classic cars](https://blog.dev.openhive.network/search?q=russian%20classic%20cars)| [russian classic cars](https://hive.blog/search?q=russian%20classic%20cars)|
|breed frogs| [breed frogs](https://blog.dev.openhive.network/search?q=breed%20frogs)| [breed frogs](https://hive.blog/search?q=breed%20frogs&s=newest)|
|swimming competition| [swimming competition](https://blog.dev.openhive.network/search?q=swimming%20competition)| [swimming competition](https://hive.blog/search?q=swimming%20competition&s=newest)|

Another nice feature provided by this version are `related posts` shown for given one, where the list of such posts is created by looking for similar word vector values computed during AI model processing.

Please look at side panel described as `You Might Also Like` e.g. displayed for this [post](https://blog.dev.openhive.network/cars/@mattsbeamer/an-old-car-rally-driving-through-moscow-russia)

## 📡 Denser

Today we would also like to announce providing the new version of [denser](https://gitlab.syncad.com/hive/denser) application.

The idea behind the creation of this application was to provide functional equivalent of old Condenser software, but made by using nowadays technology stack. This way we could reduce maintenance effort (especially) required to preserve acceptable security level.

Our frontend team did a great job to implement a wallet (similar to the one available e.g. at [hive.blog](https://hive.blog), improve posts rendering and **finally** add support for signing transactions using [Keychain](https://hive-keychain.com/). We hope you will find this application handy and appreciate it, just by switching your blog application to [denser](https://blog.openhive.network/). 

## 🍯 A wAx library

As we have already announced in past articles:
* [wax announcement](https://blog.dev.openhive.network/hive-139531/@thebeedevs/for-those-developing-a-hive)
* [development guilde](https://blog.dev.openhive.network/hive-139531/@small.minion/hive-application-development-guide)

the purpose of `wax` library was to provide flexible and safe way to operate with Hive platform. Another important feature is sharing the Hive protocol code that allows the 3rd party programmers (e.g. developing using Typescript or Python) to use directly types and algorithms specific to Hive Protocol. Such architecture (where blockchain code can be immediately called from a Web application instead of gathering results through network API calls) opens a lot of opportunities for implementing new features, making common functional layer where things are evaluated in the same way as hived service does. The examples can be `Transaction inspector` application (mentioned above, peforming transaction authority verification in the same way as hived), as well as binary view component (embeeded in it but also available separately) able to process transactions the same way as low level blockchain code.

The last several months of development allowed us to enhance this library a lot. Implemented features contain:

- support for external signature providers (wax can be still used the same way as previously - it just additionally allows to use another signature provider (i.e. Keychain instead of Beekeeper) to sign your transactions,
- implementation of REST API wrappers (the previous version contained support for JSONRPC calls). Thanks to that, now you can call network APIs just like regular Typescript method (regardless of its kind: wax hides complexity of specific requirements to call `REST` or `JSONRPC` API)
- providing an ability to generate (above mentioned) API call wrappers from `swagger.json` specification which simplified the development process of e.g. [haf_block_explorer API calls](https://gitlab.syncad.com/hive/haf_block_explorer/-/jobs/1749168)
- a component ([Healthchecker](https://gitlab.syncad.com/hive/wax/-/wikis/classes/HealthChecker)) useful for analysing network call statistics of REST/JSONRPC call endpoints. Such a tool class can be used by 3rd applications to measure (at webbrowser client side) the quality of Hive service providers and allow the final user to select the best one
- new meta operation classes, e.g. [AccountAuthorityUpdateOperation](https://gitlab.syncad.com/hive/wax/-/wikis/classes/AccountAuthorityUpdateOperation) which simplifies a way to create transactions to update account authority. It also implements many additional checks that prevent damaging account authority by misusing direct blockchain operation
- preventing private key leakage while scanning prepared transactions before broadcast or explicitly by calling a [dedicated method](https://gitlab.syncad.com/hive/wax/-/wikis/interfaces/IOnlineTransaction#performonchainverification)

The library test suite has been also extended a lot to allow us to provide you with a much better and stable product. 

We also did a lot of optimisations, including great [reducing of package size](https://gitlab.syncad.com/hive/wax/-/merge_requests/260).

The big step forward is also **Python** support which has been done lately [Python support](https://gitlab.syncad.com/hive/wax/-/merge_requests/230).

The whole list of done features you can see by visiting a [project releases page](https://gitlab.syncad.com/hive/wax/-/releases)

The library is used by a few applications offered by Hive platform like:
- denser (frontend, Typescript)
- transaction-inspector (frontend, Typescript)
- block_explorer_ui (frontend, Typescript)
- clive (desktop, python)
- test_tools (desktop, python)

We would like to encourage you to try it as it offers great integration to IDEs intellisense (like Visual Studio Code) which speeds up the development process a lot !

**Happy** Coding ❗

## 🔒 Yet more wallets to operate with Hive

The last important thing to mention - especially for non-developer part of Hive Community - is extending the support of alternative wallets to be used for Hive transaction signing.
As you probably know, our team also offers a desktop tool [clive](https://gitlab.syncad.com/hive/clive) which provides safe capabilities to sign transactions (e.g. using its offline signing features).

But that's not all - the Hive platform already contains several tools (like Keachain, PeakVault, Beekeeper) which allow signing your transactions inside a Webbrowser we lacked a tool which allow to enclose management of your keys in single place. Especially, if such keys are not only specific to Hive blockchain. To address it, we need to have a tool which by using modern cryptography features will be able to provide signing services to different blockchains. 

Creating such a tool would be very difficult, so we decided to use a great feature of wax instead: [external signature providers](https://gitlab.syncad.com/hive/wax/-/merge_requests/282). This way we are able to implement integration to... [MetaMask wallet](https://metamask.io/) and provide them a [Hive dedicated snap](https://gitlab.syncad.com/hive/metamask-snap/).

Besides, to make Hive onboarding process much easier (for MetaMask users already having a Hive account and those who - hopefully - would like to join our platform) we implemented dedicated service and wizard application to simplify configuration steps.

We hope that this service will become a *bridge* between Hive and the external world... You can find it [here](https://auth.openhive.network).

 ![HiveBridge.png](https://images.hive.blog/DQmbxXhUHpXXFCaQL4Yx4oruMbNsmQrXUqmzCRAARqZ1CB2/HiveBridge.png) 

Offered functions cover:

- preparing a request to create a new Hive account. Yes we know, creating a Hive account can be troublesome. Most users would like to avoid all such terrible things like saving private keys, then choosing their **PUBLIC** part to send them to a *Hive Friend* be able to create an account for you. We hope we simplified this process maximally and our application let you focus on selecting beloved name of your account, then allow copying a link to be shared with your *Hive Friend* which will create the account for you. You don't need to save private keys nor extract public keys from them - the MetaMask wallet involved by us in this process will do it for you 
- processing an account creation request (e.g. received from your friend which would like to join Hive)
- updating your Hive account authority, e.g. to associate it with just configured MetaMask instance (this case you can sign your transaction using another wallet e.g. Keychain). Such a process can be also initiated by our wizard simplifying MetaMask and Hive account configuration
- encrypt/decrypt a buffer of arbitrary text, using keys associated with your Hive account. This feature can be useful for interacting with other services (like some bots) that may require you to prove your identity by encrypting the content they provide, then attempting to decrypt it using your public key, thus verifying your identity
- signinig (and optional broadcasting) of any transaction prepared outside of Hive Bridge service

Following animation shows steps to be performed to setup Meta Mask wallet to Hive account:

https://youtu.be/zKT1GXO6G-0


***WARNING*** At the moment our [snap](https://gitlab.syncad.com/hive/metamask-snap/) implementation needs to be accepted by Meta Mask as trustworthy. See [how MetaMask accepts snaps](https://docs.metamask.io/snaps/how-to/get-allowlisted/). Because of it, we need to operate with MetaMask Flask browser extension instead of the regular one.

---

🎂🎈🎉🥳 After party 😊

We hope you enjoyed reading this article. We would like to see you  using successfully our applications and libraries described above.

See you on Hive ❗
Thanks for reading and we are waiting for your feedback - which is invaluable...

Best regards,
    @thebeedevs team
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 264 others
properties (23)
authorthebeedevs
permlinkhive-is-five
categoryhive-139531
json_metadata"{"format":"markdown+html","summary":"Hive is five - celebration of platform birthday","app":"@hiveio/wax/1.27.6-rc7-stable.250314151849","tags":["hiversary","hive","hivedevs","dev"],"image":[""],"author":"small.minion"}"
created2025-03-20 15:39:15
last_update2025-03-20 15:39:15
depth0
children23
last_payout2025-03-27 15:39:15
cashout_time1969-12-31 23:59:59
total_payout_value30.179 HBD
curator_payout_value60.320 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24,166
author_reputation214,413,890,391,020
root_title"Hive is five"
beneficiaries
0.
accountsmall.minion
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,559,178
net_rshares342,873,703,638,571
author_curate_reward""
vote details (328)
@alessandrawhite ·
HAPPY BIRTHDAY to my on-chain fam!! 

Much love! 🥳 🎁
Alessandra & the CreativeWorkHour #cwh Crew 

![untitled.gif](https://media.tenor.com/RbXyIJZ-BGAAAAAC/andrewmusic-hive.gif)
👍  
properties (23)
authoralessandrawhite
permlinkre-thebeedevs-stfitd
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.4","image":["https://media.tenor.com/RbXyIJZ-BGAAAAAC/andrewmusic-hive.gif"],"users":[]}
created2025-03-20 15:53:48
last_update2025-03-20 15:53:48
depth1
children0
last_payout2025-03-27 15:53: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_length177
author_reputation49,299,247,650,825
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,559,637
net_rshares53,012,618,558
author_curate_reward""
vote details (1)
@astrocreator ·
@tipu curate
properties (22)
authorastrocreator
permlinkre-thebeedevs-stfl4d
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.5","image":[],"users":["tipu"]}
created2025-03-20 16:43:24
last_update2025-03-20 16:43:24
depth1
children1
last_payout2025-03-27 16:43: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_length12
author_reputation233,549,578,991,076
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,560,833
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?astrocreator" target="_blank">Upvoted  &#128076;</a> (Mana: 65/75) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-thebeedevs-stfl4d-20250320t164330z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2025-03-20 16:43:30
last_update2025-03-20 16:43:30
depth2
children0
last_payout2025-03-27 16:43: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_length220
author_reputation55,951,108,321,190
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,560,835
net_rshares0
@basilmarples ·
happy fifth birthday Hive
walking and talking and ready for school! 
Make sure you pack your lunch.
hAIve looks super interesting. Will have to give that a go sometime soon
properties (22)
authorbasilmarples
permlinkstgxv1
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-21 10:16:15
last_update2025-03-21 10:16:15
depth1
children0
last_payout2025-03-28 10:16: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_length172
author_reputation33,507,880,088,583
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,582,474
net_rshares0
@brightest ·
❤️
properties (22)
authorbrightest
permlinkre-thebeedevs-2025322t73532632z
categoryhive-139531
json_metadata{"type":"comment","tags":["hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-22 06:35:33
last_update2025-03-22 06:35:33
depth1
children0
last_payout2025-03-29 06:35: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_length2
author_reputation-1,237,290,032,285
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,600,095
net_rshares0
@confident1 ·
That is very good
properties (22)
authorconfident1
permlinkre-thebeedevs-2025321t11146390z
categoryhive-139531
json_metadata{"type":"comment","tags":["hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-21 10:01:51
last_update2025-03-21 10:01:51
depth1
children0
last_payout2025-03-28 10:01: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_length17
author_reputation361,645,570,968
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,582,283
net_rshares0
@corporateay ·
Congratulations to HIVE.. It's been such a wonderful experience all through... Also a big congratulations to all the early birds, with all that hive is promising I can say that it's still very early for whoever is joining now. Although there is a lot to catch up with, but then there is more to come. 

Cheers to a more pleasant experience 🥂
properties (22)
authorcorporateay
permlinkstgyaw
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-21 10:25:48
last_update2025-03-21 10:25:48
depth1
children0
last_payout2025-03-28 10:25: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_length341
author_reputation17,464,780,609,267
root_title"Hive is five"
beneficiaries
0.
accounthiveonboard
weight100
1.
accountpeakd
weight300
2.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,582,586
net_rshares0
@darkflame ·
Good job, well done. Thank you for all your efforts to keep this place running smoothly. 
properties (22)
authordarkflame
permlinkre-thebeedevs-stia01
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-22 03:36:03
last_update2025-03-22 03:36:03
depth1
children0
last_payout2025-03-29 03:36: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_length89
author_reputation92,719,173,787,808
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,598,392
net_rshares0
@fuerza-sw ·
Gran post!
properties (22)
authorfuerza-sw
permlinksthufw
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-21 21:59:54
last_update2025-03-21 21:59:54
depth1
children0
last_payout2025-03-28 21:59: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_length10
author_reputation9,267,265,044,404
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,594,334
net_rshares0
@funshee ·
Happy birthday, dearest Hive; cheers to more years ahead as we continue to grow stronger and more popular. 

Hive Five!
properties (22)
authorfunshee
permlinkre-thebeedevs-2025320t173520362z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-20 16:35:21
last_update2025-03-20 16:35:21
depth1
children0
last_payout2025-03-27 16:35: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_length119
author_reputation129,599,932,572,119
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,560,663
net_rshares0
@gabrielatravels ·
Hive five! Didn't even realize when time passed so quick! 
properties (22)
authorgabrielatravels
permlinkre-thebeedevs-stimh6
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-22 08:05:30
last_update2025-03-22 08:05:30
depth1
children0
last_payout2025-03-29 08:05: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_length58
author_reputation984,151,412,612,675
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,600,886
net_rshares0
@hive-lu ·
#### Hello thebeedevs!
**It's nice to let you know that your article will take 5th place.**
Your post is among **15 Best** articles voted 7 days ago by the @hive-lu | King Lucoin Curator by **szejq**
 
You receive 🎖 **1.1** unique **LUBEST** tokens as a reward. You can support Lu world and your curator, then he and you will receive 10x more of the winning token. There is a buyout offer waiting for him on the stock exchange. All you need to do is reblog [Daily Report 610](/lucoin/@hive-lu/daily-report-day-610) with your winnings.
 
<center>[![2.png](https://files.peakd.com/file/peakd-hive/now.calendars/23uEwt7Djmb4N3dE96ecCUemJez6vLU3fmoTrdjEJn1ws4d8iPw2QrrsB22nyhbb178sx.png)](/@hive-lu)</center>
 
---
<center><sub>Invest in the **Lu token** (Lucoin) and get paid. With 50 Lu in your wallet, you also become the curator of the @hive-lu which follows your upvote.
Buy Lu on the [Hive-Engine](https://hive-engine.com/trade/LU) exchange | World of Lu created by <a href="/@szejq">szejq</a> </sub></center>
<center><sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP` _or to resume write a word_ `START`</sub> </center>
properties (22)
authorhive-lu
permlinklucoin-prize-kye0b8
categoryhive-139531
json_metadata""
created2025-03-29 03:31:00
last_update2025-03-29 03:31:00
depth1
children0
last_payout2025-04-05 03:31: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_length1,182
author_reputation33,247,826,268,059
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,752,251
net_rshares0
@honeydue ·
$0.02
Happy birthday Hive!! How is it 5 years already!?
👍  
properties (23)
authorhoneydue
permlinkre-thebeedevs-2025320t17561100z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-20 15:55:57
last_update2025-03-20 15:55:57
depth1
children0
last_payout2025-03-27 15:55:57
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_length49
author_reputation893,634,614,125,835
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,559,697
net_rshares59,826,611,923
author_curate_reward""
vote details (1)
@incublus ·
Happy birthday Hive! Thanks to everyone who contributed to Hive with any way. That meta mask bridge looks awesome.
properties (22)
authorincublus
permlinkre-thebeedevs-2025320t20286932z
categoryhive-139531
json_metadata{"tags":["hiversary","hive","hivedevs","dev"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-20 17:28:06
last_update2025-03-20 17:28:06
depth1
children0
last_payout2025-03-27 17:28: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_length114
author_reputation1,007,097,590,697,560
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,561,835
net_rshares0
@jmis101 ·
Happy hive fifth birthday 🎂 🥳 🎉 

Hive five everyone. 
properties (22)
authorjmis101
permlinkre-thebeedevs-2025320t175621921z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-20 16:56:24
last_update2025-03-20 16:56:24
depth1
children0
last_payout2025-03-27 16:56: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_length54
author_reputation195,582,797,684,092
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,561,153
net_rshares0
@katerinaramm ·
Adding to my list ASAP!
properties (22)
authorkaterinaramm
permlinkstfkkl
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-20 16:31:33
last_update2025-03-20 16:31:33
depth1
children0
last_payout2025-03-27 16:31: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_reputation689,869,758,046,904
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,560,588
net_rshares0
@marilui91 ·
Happy Birthday to all.
properties (22)
authormarilui91
permlinkre-thebeedevs-sth803
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-21 13:55:21
last_update2025-03-21 13:55:21
depth1
children0
last_payout2025-03-28 13:55: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_length22
author_reputation37,491,790,209,410
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,585,815
net_rshares0
@offgridlife ·
Hive is the Best. 😂 

😀🖐
👍  
👎  ,
properties (23)
authoroffgridlife
permlinksthub7
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-21 21:57:06
last_update2025-03-21 21:57:06
depth1
children0
last_payout2025-03-28 21:57: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_length24
author_reputation392,778,714,838,035
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id141,594,293
net_rshares9,090,885,650
author_curate_reward""
vote details (3)
@phyna ·
Happy birthday Hive🎈🎉
properties (22)
authorphyna
permlinkre-thebeedevs-2025320t175026159z
categoryhive-139531
json_metadata{"type":"comment","tags":["hive-139531","hiversary","hive","hivedevs","dev"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-20 16:50:27
last_update2025-03-20 16:50:27
depth1
children0
last_payout2025-03-27 16:50:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation64,942,300,132,847
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,561,031
net_rshares0
@russia-btc ·
Congratulations to all on the little anniversary!!! It will be interesting to try all these things in action 👍

!BEER

![](https://images.ecency.com/DQmexpN4dEEHRBKzvwoqtMUy6UFN9uZgVRyHyhckrm9ZzLT/orssig.gif)

properties (22)
authorrussia-btc
permlinkre-thebeedevs-2025322t02148959z
categoryhive-139531
json_metadata{"tags":["hiversary","hive","hivedevs","dev"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-21 17:21:54
last_update2025-03-21 17:21:54
depth1
children0
last_payout2025-03-28 17:21: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_length210
author_reputation57,717,489,992,090
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,589,630
net_rshares0
@steevc ·
$0.03
Hive five!

Happy birthday to us. I remember all the drama of the fork, but we survived and have prospered. 
👍  ,
properties (23)
authorsteevc
permlinkre-thebeedevs-stfife
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.4","image":[],"users":[]}
created2025-03-20 15:45:15
last_update2025-03-20 15:45:15
depth1
children0
last_payout2025-03-27 15:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation1,397,761,022,945,061
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,559,371
net_rshares90,994,657,755
author_curate_reward""
vote details (2)
@superwoman25 ·
Happy 5th Birthday 🎂🎂🎂🎂🎂🎂 Hive
Congratulations to us all here 
properties (22)
authorsuperwoman25
permlinkre-thebeedevs-stfrnh
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-20 19:04:30
last_update2025-03-20 19:04:30
depth1
children0
last_payout2025-03-27 19:04: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_length62
author_reputation7,041,432,967,594
root_title"Hive is five"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,563,681
net_rshares0
@vickybethel ·
Is five already happy birthday hive
properties (22)
authorvickybethel
permlinkstgy4j
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-03-21 10:21:57
last_update2025-03-21 10:21:57
depth1
children0
last_payout2025-03-28 10:21: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_length35
author_reputation409,929,835,846
root_title"Hive is five"
beneficiaries
0.
accountdbuzz
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,582,548
net_rshares0