WorkerBee Reactive. Typed. Real-time.

Production-grade framework for Hive blockchain. Type-safe APIs, reactive state, real-time data streaming.

Start Observing in Minutes

Install WorkerBee and write your first observer in 5 lines of code.

$ pnpm add @hiveio/workerbee
quickstart.ts
import WorkerBee from "@hiveio/workerbee";

const bot = new WorkerBee();
await bot.start();

bot.observe.onBlock().subscribe({
  next: (data) => console.log("Block:", data.block.number),
  error: console.error
});
Quickstart code showing how to observe new blocks on the Hive blockchain.

Built for Serious Bots

Everything you need to build production-grade blockchain observers. From reactive streams to type-safe filters — all in one framework.

Real-World Use Cases

From whale tracking to custom bots — see how WorkerBee handles common blockchain monitoring scenarios in just a few lines of code.