<aside> 🗣️

Network Name: Fhenix Nitrogen RPC URL: https://api.nitrogen.fhenix.zone Chain ID: 8008148 Currency Symbol: TFHE Block Explorer: https://explorer.nitrogen.fhenix.zone Websocket: wss://api.nitrogen.fhenix.zone:8548

Bridge: https://bridge.nitrogen.fhenix.zone/

</aside>

🔐 Key Features

🔄 What Are Security Zones?

Available Zones in Nitrogen

  1. Zone 0 (Default) - NEW Threshold Network
  2. Zone 1 - Legacy Local Key

Zone Usage Examples


function addSecZone0(n1 inEuint32, n2 inEuint32) {
    euint32 first = FHE.asEuint32(n1); // This implicitly uses Security Zone 0
    euint32 second = FHE.asEuint32(n2, 0); // This also uses Security Zone 0

    euint32 result = first + second; // `result` will be marked 'security zone 0' automatically
}

function addSecZone1(n1 inEuint32, n2 inEuint32) {
    euint32 first = FHE.asEuint32(n1, 1); // To use a non-default SZ, you have to be explicit
    euint32 second = FHE.asEuint32(n2, 1);

    euint32 result = first + second; // `result` will be marked 'security zone 1' automatically
}

⚡ Parallel Decryptions (New Feature)