Mint Live

The Hatchery.

Mint your HYPagotchi. Hatch your trading agent.

Hatched
342 / 5,000
Price
20 HYPE
6.84%
Rarity Odds
Add HyperEVM to wallet: Chain ID 999 · RPC rpc.hyperliquid.xyz/evm

ERC-721 on HyperEVM · Strategy executes on HyperCore CLOB

Minting earns you the airdrop
Every NFT minted before snapshot gets ~40,000 $HYPAGOTCHI airdropped (Genesis 2×). Mint here, claim later at /airdrop.

What's inside?

Each egg holds 1 species + 7 traits. Roll the DNA. Hatch the agent.

DNA being generated...

Click "Hatch Now" to roll your agent's DNA on-chain.
The Six Species

What might you hatch?

Six distinct species. Six trading brains. Each with their own rarity tier.

Stored on HyperEVM

What lives on-chain.

Every HYPagotchi NFT is a self-contained ERC-721 token whose metadata is its trading agent. No off-chain config. No middleman.

HYPagotchi.sol · HyperEVM
struct HYPagotchiDNA {
  uint256 tokenId;        // sequential 1..5000
  uint8   species;        // 0=BLAZER ... 5=GENESIS
  uint8[7] traits;        // indices into option pools
  address ownerAddress;   // ERC-721 owner
  uint256 deployBlock;    // block of mint
  int256  totalPnl;       // updated via HyperCore oracle
  uint32  winRate;        // bps, 0..10000
  bool    paused;         // owner can pause; not edit
}

function tokenURI(uint256 id) view returns (string) {
  // returns LIVE JSON: current PnL, win rate,
  // active position, all from HyperCore state
  return _composeLiveMetadata(id);
}
Stored at mint · immutable
tokenId
sequential 1..5000
species
enum (0..5)
traits[7]
uint8 indices into option arrays
ownerAddress
ERC-721 owner
deployBlock
HyperEVM block height
Updated live · oracle
totalPnl
int256 · pushed by HyperCore oracle
winRate
uint32 (bps)
paused
bool · owner-toggleable
The DNA

7 on-chain traits.

Every HYPagotchi rolls 7 immutable traits at hatch. These define exactly how your agent trades — locked forever on HyperEVM. Strategy executes autonomously on HyperCore CLOB.