Gamification & XP System

Users accumulate XP by interacting with KAIZO through:

  • Completing on-chain missions

  • Posting insightful questions

  • Reacting to community topics

function getLevel(xp: number): string {
  if (xp > 5000) return "Sensei";
  if (xp > 1000) return "Ronin";
  return "Genin";
}

XP affects:

  • Response tone (more respectful at higher levels)

  • Unlockable missions or airdrop access

  • Status-based responses on social platforms

Last updated