Always watching · 24/7 on-chain sentinel swarm
Hyakume — the hundred-eyed sentinel

HYAKUME SWARM

A hundred eyes never sleep

A network of autonomous sentinel agents that watch your wallets, contracts, and liquidity around the clock. When a thief approaches, an eye detaches, follows, and reports back — rug signals, malicious approvals, and drained liquidity caught before you are.

Open the grimoire → Witness the gaze
CA 9AzTLntvXEVPy97CDosFdwQDmuFAffAe1frwy4Gwswrm
100+
eyes per swarm
24/7
never blinks
<1s
alert latency
0
blind spots
The gaze

How a hundred eyes catch one thief.

The swarm doesn't wait for damage. It watches, recognizes the shape of a threat, and follows it home — all before you'd ever notice something was wrong.

FIRST

The eyes open

You name what's yours — a token mint, an LP, a wallet. Each eye fixes on a single threat vector and holds that gaze without rest, day and night.

THEN

A shape appears

An approval to an unknown spender. Mint authority quietly reclaimed. Liquidity beginning to slip. The hive knows these shapes — it has seen them a thousand times.

SO

An eye detaches

One eye lifts away and follows the actor — across wallets, through contract calls, hop by hop — until the full intent is clear. Just as the yokai's eye trails an intruder.

FINALLY

The warning reaches you

Telegram, Discord, or webhook — in under a second, with the reason spelled out. Not noise. A real threat, named, while there's still time to move.

The hundred eyes

Every eye guards a different door.

No single watcher sees everything. The swarm divides the dark between a hundred eyes, and votes before it ever cries wolf.

Rug detection

Liquidity guard

Watches LP locks, removals, and migrations. The moment liquidity starts draining or a lock expires, the swarm screams before the pool is empty.

Approvals

Permission watch

Tracks every approval your watched wallets grant. Unlimited allowances, sketchy spender contracts, and known drainer signatures get flagged on sight.

Contracts

Authority audit

Monitors mint authority, freeze authority, upgrade keys, and owner changes. If a dev quietly grabs control back, you know immediately.

Wallets

Whale & dev trace

Follows insider and whale wallets. When a top holder or the deployer moves, an eye detaches and tracks the funds across hops.

Signals

Pattern sense

The hive compares behavior against known rug and exploit patterns. It's not one rule — it's a hundred eyes voting on whether something is wrong.

Delivery

Instant alerts

Telegram, Discord, and webhooks. Sub-second, deduplicated, and explained — so you act on a real threat, not a noisy false alarm.

The sigil

$HYAKUME — open more eyes.

Hold $HYAKUME to expand your swarm: more watched targets, faster scan intervals, priority alerts, and a vote over which threats the hive learns next.

$HYAKUME

Hyakume Swarm watch token
NetworkSolana (SPL)
Total supply1,000,000,000
Tax0 / 0
LPBurned
CA 9AzTLntvXEVPy97CDosFdwQDmuFAffAe1frwy4Gwswrm

Hold to open
more eyes.

  • More watchers — higher tiers track more wallets, tokens, and contracts at once.
  • Faster gaze — staked holders get tighter scan intervals and priority alert delivery.
  • Hive governance — vote on which threat patterns the swarm learns to recognize next.
  • Early warnings — top tiers see swarm-wide signals before they go public.
The grimoire

Open your first eye.

Install the runtime, point a watcher at a target, and start receiving alerts. Everything you need to deploy a sentinel swarm.

# Introduction

Hyakume Swarm is a runtime for deploying networks of autonomous sentinel agents that monitor on-chain activity 24/7. Each agent — an "eye" — watches one threat vector. Together they form a swarm with no blind spots.

The name comes from the Hyakume (百目), a yokai covered in a hundred eyes that guards temples from thieves at night. When an intruder nears, it detaches an eye to follow and watch them. Hyakume Swarm works the same way: point it at what you want protected, and it never looks away.

Defensive only: Hyakume Swarm watches and alerts. It does not execute trades, sign transactions, or move funds. It is a warning system, not an autopilot.

# Installation

The runtime ships as a TypeScript package. Install hyakume and configure the chains you want to watch.

bash
# sentinel swarm runtime
npm install hyakume
Pre-release: the hyakume package is shipping soon. Follow the X account for the launch.

# Quickstart

Open a single eye on a token and start receiving alerts on Telegram. The watcher runs continuously and fires the moment a threat pattern trips.

typescript
import { Watcher } from "hyakume";

const eye = new Watcher({
  network: "solana",
  target: "<TOKEN_MINT_ADDRESS>",
  watch: ["liquidity", "mintAuthority", "approvals"],
  alert: { telegram: process.env.TG_CHAT_ID }
});

await eye.open(); // the eye is now watching, 24/7

# The Watcher

A Watcher is a single eye: one target, one set of threat vectors, one alert channel. It polls on-chain state and fires when a pattern it knows trips.

  • eye.open() — start watching. Runs until closed.
  • eye.close() — detach the eye and stop.
  • eye.status() — current state and last signals seen.

# The Swarm

A Swarm coordinates many watchers across many targets and votes on ambiguous signals — so a single noisy data point doesn't trigger a false alarm. The hive only screams when enough eyes agree.

typescript
import { Swarm } from "hyakume";

const swarm = new Swarm({
  network: "solana",
  targets: ["<MINT_A>", "<MINT_B>", "<WALLET>"],
  watch: ["liquidity", "approvals", "authority", "whales"],
  consensus: 3,             // eyes that must agree to alert
  alert: { telegram: process.env.TG_CHAT_ID, discord: process.env.WEBHOOK }
});

await swarm.watch();
swarm.on("threat", (t) => console.log(t.reason, t.severity));        

# Alerts

Alerts are delivered the instant a threat is confirmed. Every alert explains why it fired, not just that something happened, so you can act with confidence.

ChannelConfig keyNotes
Telegramalert.telegramChat or channel ID. Fastest delivery.
Discordalert.discordWebhook URL. Rich embeds with severity color.
Webhookalert.webhookPOST JSON to your own endpoint.

# Configuration

Configure via the constructor or a hyakume.config.json at your project root.

KeyTypeDefault
networkstring"solana"
watchstring[]all vectors
consensusnumber2
intervalms1000
alertobjectrequired

# FAQ

Does Hyakume Swarm move my funds or trade for me?

No. It only watches and warns. It never signs transactions or controls a wallet. It's a sentinel, not an agent that acts.

What can it watch?

Token mints, LP positions, individual wallets, and contract authorities — for rug signals, suspicious approvals, authority changes, and large insider moves.

Which chains are supported?

Solana at launch, with EVM chains (Base, Ethereum, Arbitrum) on the roadmap.

How fast are alerts?

Sub-second from detection to delivery on the default scan interval. Higher tiers scan more frequently.

Let the hundred eyes watch for you.

Point the swarm at what matters. It never blinks, never sleeps, and warns you the moment a thief steps into the light.