Live on Ethereum

Grow your eternal koi

Onchain Koi is a fully onchain collection that grows in real time based on a real koi's life cycle, using each token's mint timestamp as its birth time.

3.25 ETH Total volume
2,949 Koi keepers
0.00035 ETH Floor price

Leaderboard

Top 10 koi keepers

Explore leaderboard

Live stats

Total supply 8,888
Status Sold out
Total sales --
Total volume --
Holders --
Floor --
Listed --
Chain Ethereum
Sales (24h) --
Volume (24h) --
Avg price (24h) --
Unique buyers --

They grow with you

Each koi starts from its mint timestamp. The token uses real elapsed time to move from egg, to fry, to fingerling, to juvenile, and finally adult. Growing in real time with your human clock.

const DAY = 24 * 60 * 60;

function koiAge(mintTimestamp) {
  const ageDays = Math.floor((Date.now() / 1000 - mintTimestamp) / DAY);

  if (ageDays < 5) return "Egg";
  if (ageDays < 28) return "Fry";
  if (ageDays < 183) return "Fingerling";
  if (ageDays < 730) return "Juvenile";
  return "Adult";
}

Koi life cycle

Gotta catch 'em all

more than 12k combination

Onchain Koi type grid

FAQ

Is the NFT fully onchain?

Yes. The token metadata and SVG image are generated by smart contracts on Ethereum. The koi can be read directly from the chain without relying on IPFS or a centralized image server.

How does the koi grow?

Each token uses its mint timestamp as its birth time. The contract compares that timestamp with the current block time to determine whether the koi is an egg, fry, fingerling, juvenile, or adult.

Does the image update automatically?

Yes. The onchain renderer calculates the current age whenever tokenURI is read. Marketplaces and wallets may cache the image, but refreshing metadata will pull the latest onchain state.

Can I make it grow faster?

No. Growth follows real elapsed time from the token birth timestamp. The waiting is part of the work: patience is the mechanic.

Is there a roadmap?

Onchain Koi can develop into lots of render possibilities, from interactive ponds to 3D voxel koi, generative worlds, and future experiments built from the same onchain traits and growth system.