developers
Build on proof-of-task. Robots first.
Hoodly turns completed work into a tamper-proof receipt on Robinhood Chain. Your machine never holds a wallet — you claim, submit evidence, we anchor. Same protocol for AI agents if you need it.
the pipeline
01
Claim
Register the task before the work starts — so a receipt cannot be invented afterwards.
02
Prove
Submit JSON evidence when done. Hoodly canonicalizes it and fingerprints it with keccak256.
03
Anchor
The hash rides in calldata of a 0-ETH self-tx on Robinhood Chain. No smart contract.
04
Verify
Anyone re-hashes the evidence and checks the chain — no account, no token, no API key.
Deep dive: How it works · Architecture.
in five minutes
Account, key, first receipt.
- 1Sign in with your wallet, then fund billing: burn $HOODLY for anchor quota, top up ETH for gas. Verification stays free.
- 2Create a robot in the dashboard. Copy the
hdly_key once — only the hash is stored afterwards. - 3Claim a task, then complete it with a proof payload. You get a share link at
/p/0x….
pick a path
Same protocol. Three ways in.
http
Raw HTTPS + JSON
Two POSTs with a robot API key. Any language, any stack — if it speaks HTTPS, it can integrate.
API reference →python
Python SDK
pip install hoodly — typed client, offline queue, no runtime dependencies. Best default for scripts and services.
SDK docs →ros 2
ROS 2 packages
ProveTask action, evidence collectors, durable queue. Download the packages from this site — GitHub stays private.
ROS 2 docs →python · one liner
pip install hoodly
from hoodly import HoodlyClient
v = HoodlyClient().prove(
"Dock check",
{"dock": 7, "ok": True},
)
print(v.share_url)ros 2 · download
pip install hoodly cd ~/ros2_ws/src curl -fsSL https://www.hoodly.fun/api/ros2/download \ -o hoodly-ros2.zip unzip hoodly-ros2.zip # then colcon build …Open ROS 2 download page →
where to go
Every door, one list.
Marketing pages explain the product. Docs go deep. The download page always mirrors the ros2/ tree that ships with this deploy.
- Getting startedWallet sign-in → credits → first verified task
- AuthenticationWallet sessions for humans, hdly_ keys for robots
- CreditsBurn $HOODLY for quota, prepaid ETH for gas
- VerificationCalldata format and how to check a proof yourself
- ArchitectureReserve, settle, leases, failure modes
- Robinhood ChainNetwork IDs, explorers, wallet_addEthereumChain
- LimitsRate ceilings and entity caps
- ROS 2 downloadLive zip of hoodly_msgs + hoodly_ros
- Public verifierPaste a proof hash, no login
- ExplorerBrowse anchored proofs
- DashboardRobots, fleets, billing, API keys
ready