$HOOK contractCA soon
Chain4663
Block
Gas fast— gwei
Block time
Txns
ETH

Onchain trigger studio · Robinhood Chain

Subscribeto the chain.

Robinhood Chain seals a block about every second. usehook holds that stream open, tests your condition against every event on it and fires whatever you attached.

Open the studio Steal a recipe
01 Listen02 Condition03 Effect
THE SHAPE OF A SUBSCRIPTIONFORM / 001

A decorative slowly rotating sculpture of the usehook mark: a chrome hook with a glowing node, circled by a bead on a drifting orbit.

USEHOOK / FORM STUDIES
ONE HOOK, ONE STREAM
CONNECTING…

01 / Anatomy of a hook

Three parts.
Nothing else to learn.

A hook names a stream, a test and an effect. Write one and you have written all of them.

Listen

Pick a stream: blocks, transactions, gas samples, ERC-20 movement or network health. usehook opens the subscription and keeps it open while your tab is closed.

on: 'onBlock'

Condition

Write a test over the event. Anything that fails it flows past and costs you nothing, so you can afford a noisy stream and a narrow predicate.

when: e => e.gas < 0.06

Effect

Attach what should happen: a banner in the studio, a tone, a quiet line in the log, or a POST that hands the event to your own service.

then: e => notify(e)

The clip above is a rendered explainer, not a screen recording. The studio runs the same three-part model against the live chain.

02 / Robinhood Chain data

Not a screenshot.
The chain, right now.

Every figure below comes from Robinhood Chain's public explorer and refreshes every ten seconds. Your hooks read this same feed.

Latest block

Waiting for the explorer

Gas, fast tier
gwei

Waiting for the fee oracle

Transactions yesterday

ETH, the gas token

Blockspolling · 10s

Connecting to Blockscout

Transactionspolling · 10s

Connecting to Blockscout

Source: Blockscout for Robinhood Chain . usehook proxies and caches those reads so the public explorer sees one caller per visitor rather than one per widget.

03 / Recipes

Eight hooks
worth stealing.

Each one opens in the studio with the stream, the test and the effect already filled in. Change the number, arm it, watch the log.

04 / How it runs

From sealed block
to your endpoint.

Four stages sit between a block landing on Robinhood Chain and something arriving in your service. You configure the third and the fourth.

ILLUSTRATION · BLOCKS → PREDICATE → EFFECT
THE DELIVERY PATH01 — 04
Stage 01

Subscribe

One connection to Robinhood Chain, shared by every hook you run. Adding a tenth hook does not add a tenth listener.

Stage 02

Decode

Raw blocks, transactions and token rows turn into flat events with named fields you can write a test against.

Stage 03

Evaluate

Each event runs through the enabled predicates. Duplicate events are dropped on identity, and each hook honours its own cooldown.

Stage 04

Deliver

Survivors reach the effect. Webhook deliveries leave from the server, signed with the identity of the wallet that armed the hook.

Hooks you create without connecting a wallet live in your browser and evaluate while the tab is open. Connect a wallet and the studio attaches your address to each hook so webhook deliveries can be verified on the server.

05 / $HOOK

Meet $HOOK.

One token across the whole studio. $HOOK lives on Robinhood Chain and will gate the hook quota, webhook volume and the streams that cost real infrastructure to keep open.

Contract not live yet
$HOOK contract address · Robinhood ChainLaunching soon

No contract exists yet. Any address circulating as $HOOK today is not ours. The real one appears here and on @usehook at the same moment, and nowhere before.

Network
Robinhood Chain · 4663
Trading pair
HOOK / ETH
Contract
Launching soon
Studio access
Open, no token required

The planned numbers.

SUPPLY / TAX / THRESHOLD
Total supply
1,000,000,000 HOOK
Fixed at deployment. No mint function after launch.
Creator tax
0.00%
Network fees on Robinhood Chain still apply and are paid in ETH.
Planned holder threshold
0.10%
1,000,000 HOOK at the listed supply, for the higher webhook tier once holder gating ships.

These figures describe the planned configuration and are not live. Nothing on this page sells a token, takes a deposit or asks you to sign a transaction. Holding $HOOK grants no claim on usehook and no promise of a return.

06 / Field notes

Before you
arm anything.

The answers you would otherwise have to dig out of a docs site.

Jump to $HOOK
What is usehook?

A trigger studio for Robinhood Chain. You pick a stream, write a condition over the events on it and attach an effect. usehook keeps the subscription open and runs the condition for you, so you stop refreshing an explorer tab to find out whether something happened.

Which network does it read?

Robinhood Chain, chain id 4663, with ETH as the gas token. Event data comes from the chain's public Blockscout instance and the public RPC at https://rpc.mainnet.chain.robinhood.com. usehook has no affiliation with Robinhood Markets.

Do I have to connect a wallet?

No. Build hooks, arm them and watch the log without connecting anything. Connecting gives you two things: your hooks follow your address instead of one browser, and webhook deliveries become available, because the server will only POST on behalf of an identity it can verify.

Will you ever ask me to sign a transaction?

Connecting proves you hold an address. It moves no funds, grants no allowance and submits nothing to Robinhood Chain. usehook reads the chain; it does not trade, bridge or hold custody of anything.

How will $HOOK access work?

The studio stays open to everyone. $HOOK is planned to gate the expensive tiers: more concurrent hooks, higher webhook volume and longer retention on the run log. The planned threshold is 0.10% of supply, which is 1,000,000 HOOK. None of it is switched on, and the contract does not exist yet.

Where is the $HOOK contract?

Launching soon. There is no address to copy today. When it deploys it appears in the $HOOK section and on @usehook together. Treat any address you see before that as someone else's.

How reliable is a hook?

Treat it as a good signal, not a guarantee. Events reach you through a public explorer that rate limits and occasionally lags; a hook can fire late or miss a sample during an outage. Set a cooldown that matches how often you want to hear from it, and do not wire a hook to anything that moves money on its own.

The studio is open

Write one hook.
Let the chain talk back.

Open the studio Start from a recipe
NO ACCOUNT · NO TOKEN · NO SIGNATUREUSEHOOK / ROBINHOOD CHAIN · 4663

usehook / From event to effect

Rendered explainer. Latency figures describe a typical delivery on Robinhood Chain, not a guarantee for your endpoint.