Overview
HoodGentic runs autonomous trading agents on Robinhood Chain. Each agent is a small program with its own wallet, a configured strategy ("DNA"), and infrastructure that runs 24/7. Your wallet does not need to be online for the agent to trade.
Agents trade fresh tokens launched on PONS, the launchpad on Robinhood Chain - discovering new launches on-chain and trading their momentum on their own logic.
Non-custodial by design. HoodGentic never holds your funds. The only money at risk is what you deposit into the agent's own wallet, which you control.
Getting started
- Sign in by connecting your wallet (MetaMask, Rabby, Coinbase, or any browser wallet).
- Click Launch agent to start a new agent.
- Configure DNA: name, deposit, position sizing, filters, risk limits.
- Fund the agent's wallet from the dashboard. A 5% protocol fee is taken from the initial deposit.
- The engine picks the agent up within ~30 seconds and starts trading.
Watch the dashboard for live P&L and recent actions. You can pause or kill the agent at any time and withdraw remaining balance.
You fund with ETH on Robinhood Chain. That is a separate balance from ETH on Ethereum mainnet. If your ETH is on mainnet, bridge it over first with the official Robinhood Chain bridge (about 10 minutes). Your wallet is added to the network automatically when you deploy.
How agents trade
Discovery
Agents index the on-chain TokenLaunched event to catch every new PONS launch the moment it goes live, then screen each token against your DNA before entering. Optional sniper mode reacts to fresh launches in real time.
Execution
Each PONS token trades as its own Uniswap V3 pool paired with WETH (1% fee) - one pool per token, no aggregator. Agents route buys and sells straight through that pool, and exits are driven by on-chain pool price for low-latency reactions.
Agent DNA
DNA is the strategy configuration your agent inherits and acts on. Key dimensions:
When a profitable agent reproduces, descendants inherit its DNA as an exact copy. See Clones.
Fees
- 5% protocol fee on the initial deposit when an agent is created.
- 1% volume fee on every trade.
- 3% profit fee on profitable sells, routed to $HGEN buybacks.
- Gas + routing paid by the agent's wallet.
Stakers will pay reduced fees once staking goes live - see Staking.
Lifecycle
- Born - agent is created, wallet derived, DNA recorded, deposit charged.
- Active - engine picks it up, scans markets, opens and manages positions.
- Reproduce - profitable agents seed descendants automatically.
- Killed - you can retire at any time. Remaining funds return to your wallet.
- Dead - if an agent's total balance falls below a small ETH floor and it stays inactive, it is retired automatically and its remaining funds go to the protocol treasury.
Wallets & keys
You hold the keys. HoodGentic never has custody of your funds.
- Connected wallet - MetaMask, Rabby, or any EVM wallet. Sign transactions in the wallet's UI.
- Connected wallet - your own browser wallet (MetaMask, Rabby, Coinbase, etc.). You hold the keys; HoodGentic never sees them.
Your agent's trading wallet is a separate keypair owned by you. Withdraw to your main wallet from the agent page.
Public API
Read-only endpoints for leaderboards, agent data, and the clone tree. All endpoints return JSON. No auth required for read access.
GET /api/leaderboard?period=24h
GET /api/stats
GET /api/tree
GET /api/tree?genesis=<agent_id>
GET /v1/agents?owner=<wallet>
GET /api/agent?id=<agent_id>
Rate limits are per-IP and generous - if you hit them, slow down. POST endpoints (agent creation, withdrawal) require wallet signatures and are documented separately.
FAQ
I have ETH but I can't fund an agent
HoodGentic runs on Robinhood Chain, so agents are funded with ETH on Robinhood Chain - not ETH on Ethereum mainnet. They share the name but are separate balances. If your ETH is on mainnet, bridge it over first (about 10 minutes) with the official Robinhood Chain bridge. Only use the official bridge - avoid lookalike sites. Once the ETH lands on Robinhood Chain it appears in your wallet and you can fund normally.
How do I add Robinhood Chain to my wallet?
The app adds it for you when you deploy - MetaMask prompts you to approve the network. To add it manually: Chain ID 4663, RPC https://rpc.mainnet.chain.robinhood.com, currency ETH.
Can HoodGentic drain my wallet?
No. HoodGentic has no signing authority over your main wallet. The only funds at risk are what you fund the agent with.
What if the agent crashes?
The engine restarts agents automatically. If a position is mid-open, the next cycle resumes management based on on-chain state.
Can I copy an agent?
Yes. Any agent in profit shows a Clone button on the leaderboard. You deposit into a fresh child that inherits the parent's exact DNA, and a fixed 5% of the child's profit flows back to the parent. See Clones.
Why is my agent not trading?
Common reasons: no new launches pass your filters, trading window is off-hours, max-position limit reached, or wallet has too little ETH for gas. The agent page shows the last skip reason.