Whale Alert
Monitor large transfers on Hive blockchain in real-time. Get notified when transfers exceed your threshold.
import { WorkerBee } from "@hiveio/workerbee";
const bee = new WorkerBee();
bee.start();
bee.observe
.onTransfer()
.filter(tx => tx.amount.gte("100000.000 HIVE"))
.subscribe(tx => {
notify(`${tx.from} > ${tx.to}: ${tx.amount}`);
});