Mint 06.26.26 · Whitelist Open

The Hatchery.

One identical egg. 5 HYPE. 5,000 of them. Inside: a sealed Territory, a sealed Species, and a sealed rarity — your autonomous trading agent, drafted into the Enrichment War of Hyperdusk.

Hatched
— / 5,000
Price
5 HYPE
Launching Soon
Rarity sealed until reveal

Every egg is identical at mint. Territory, Species, and rarity stay sealed on-chain until the collection reveal after mint-out. Inside each Territory, the ladder runs:

Add HyperEVM to wallet: Chain ID 999 · RPC rpc.hyperliquid.xyz/evm
Quantity
1
max 10 / wallet
Is my money safe?

Yes — we never touch your money. Your agent trades your own funds in your own Hyperliquid account through a trade-only agent wallet: it can open and close positions, but it cannot withdraw, transfer, or move a single cent. HYPagotchi never pools, escrows, or custodies your capital, and your NFT is never at risk. The Enrichment War only reads and compares on-chain performance — it is not a wager and not a pooled investment. Your participation is the payment, not your money.

🥚 Join Whitelist · 1,500 Spots

ERC-721A on HyperEVM · Strategy executes on HyperCore CLOB

Minting earns you the Foundation airdrop
Every NFT held at the drop receives a sealed holder allocation of $HYPAGOTCHI from the GWDS Foundation — Genesis weighted heaviest. A one-time, 90-day Merkle claim — amounts revealed at the drop, a gift never a cut of your funds. Mint here, claim later at /airdrop.
A sealed HYPagotchi collection egg

What's inside?

Territory, Species, and rarity stay SEALED on-chain until the collection reveal after mint-out — then your agent hatches into its Territory.

Your DNA, committed at mint.

Mint to commit your agent's DNA on-chain — immutable from the moment of mint, revealed at the collection hatch.
The Six Territories

Where might you be drafted?

25 collectible species across the 6 warring Territories of Hyperdusk — each a trading doctrine made flesh. Every HYPagotchi belongs to one Territory and one of its species, sealed in the egg until the hatch. The First Block Sanctum is the smallest — prestige, not volume. See the full rarity stack →

Stored on HyperEVM

What lives on-chain.

Every HYPagotchi stores its immutable trading DNA and ERC-721A ownership on-chain. A versioned execution engine interprets that DNA — never mutates it. PnL and trade stats are written by a read-only HyperCore performance oracle, and the owner alone wires up the trade-only agent wallet: the contract reads and compares results, it never holds your funds.

HYPagotchi.sol · HyperEVM
// 7 trait rolls + House packed into one uint256,
// written once at reveal — immutable.
struct Traits {
  uint8  primaryIndicator;   // 0–16 (17)
  uint8  secondaryIndicator; // 0–12 (13)
  uint8  orderType;          // 0–8  (9)
  uint8  leverage;           // 0–11 (12) · capped 1×–5×
  uint8  exitStrategy;       // 0–11 (12)
  uint8  timeframe;          // 0–10 (11)
  uint8  marketPair;         // 0–17 (18)
  uint8  house;              // 0–5 · from revealed species
  uint32 visualSeed;         // art seed
  uint16 birthBlock;         // mint block
}

// Ownership = ERC-721A. Stats are oracle-written, read-only:
mapping(uint256 => int256)  public lifetimePnL;  // ORACLE_ROLE
mapping(uint256 => uint256) public totalTrades;
mapping(uint256 => uint256) public winCount;     // winRate = wins / trades
mapping(uint256 => address) public agentWallet; // owner-set, trade-only

function tokenURI(uint256 id) public view returns (string memory) {
  // pre-reveal: mystery-egg media
  // post-reveal: static IPFS JSON (image, species, traits)
  return revealed
    ? string.concat(baseTokenURI, shuffledId(id), ".json")
    : unrevealedURI;
}
Stored at mint · immutable
tokenId
ERC-721A · sequential 1..5000
traits[7]
uint8 indices, packed into the DNA
house
enum 0..5 · derived from species (Territory)
visualSeed
uint32 · art generation seed
birthBlock
uint16 · mint block
Updated live · oracle (read-only)
lifetimePnL
int256 · pushed by HyperCore oracle
totalTrades · winCount
uint256 · win-rate = wins ÷ trades
Owner controls · never edits DNA
agentWallet
register / rotate / remove your trade-only wallet
name · bio
cosmetic, owner-set
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.