Testnet (Sepolia)
All Sepolia testnet contract addresses, faucet links, and developer instructions for testing the Inferno protocol.
Note: Mainnet contracts are deployed and verified. This page preserves Sepolia testnet addresses for developers and community auditors who want to test without real funds.
Sepolia Contract Addresses
All contracts are deployed and verified on Sepolia Etherscan. These are the original testnet deployments used during development.
| Contract | Sepolia Address |
|---|---|
| InfernoToken | 0x3Bd71947F288d1dd8B21129B1bE4FF16EDd5d1F4 |
| Governance | 0x6050b22E4EAF3f414d1155fBaF30B868E0107017 |
| IFRLock | 0x0Cab0A9440643128540222acC6eF5028736675d3 |
| LiquidityReserve (v2) | 0xF7E90D0d17f8232365186AA085D26eaEfAf011aF |
| Vesting | 0xa710f9FE7bf42981E60BE2Fbe7D87Fb3541a3F8B |
| BuybackVault (v2) | 0xC8ABb9039BEd24f4dBf5Cff09699877D81f0D63C |
| BurnReserve (v2) | 0x6D4582FCac792FD3880e252fC0a585A0c1823e80 |
| PartnerVault (v2) | 0x5F12C0bC616e9Ca347D48C33266aA8fe98490A39 |
| FeeRouterV1 | 0x499289C8Ef49769F4FcFF3ca86D4BD7b55B49aa4 |
| LP Pair (IFR/WETH) | 0x2252e8bBDE0E50CD372748aC233A99C08627d9c7 |
| BootstrapVaultV3 | 0x16086d4f7F191047d8A4fFf2090126E12e865A7E |
Infrastructure
| Component | Sepolia Address |
|---|---|
| Deployer | 0x5Ecc668eab04C5bee81b5c7242e1077c946dE406 |
| Uniswap V2 Router | 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008 |
All Inferno contracts are open source and deployed on Sepolia testnet. Community security researchers are invited to review, test, and report findings.
- Test freely on Sepolia — no real funds required
- All 9 contracts verified on Sepolia Etherscan
- Responsible disclosure via GitHub Issues
- Hall of Fame recognition for valid findings
↓ Get Sepolia Test ETH below — auto-fills your wallet address.
Getting Started with Testnet
1. Get Sepolia Test ETH
💡 Copy your address above, then click a faucet. Paste your address on the faucet page. Funds arrive within ~30 seconds on Sepolia.
2. Add Sepolia IFR to MetaMask
Add the token manually in MetaMask:
- Network: Sepolia (Chain ID: 11155111)
- Token Address:
0x3Bd71947F288d1dd8B21129B1bE4FF16EDd5d1F4 - Symbol: IFR
- Decimals: 9
3. Interact with Contracts
All contracts are verified on Sepolia Etherscan — you can read and write directly from the "Read Contract" and "Write Contract" tabs.
# Clone the repo
git clone https://github.com/NeaBouli/inferno
cd inferno
npm install
# Copy .env and add your Sepolia RPC URL
cp .env.example .env
# Run all tests locally (no network needed)
npx hardhat test
# Run live smoke test on Sepolia
npx hardhat run scripts/sepolia-smoke-test.js --network sepolia
4. Run the Dashboard Locally
cd apps/dashboard
npm install
npm run dev
# Opens at http://localhost:5173
# Connect MetaMask to Sepolia
Governance Proposals (Sepolia)
10 governance proposals were executed on Sepolia to validate the full lifecycle: propose → 48h wait → execute.
| # | Action | Status |
|---|---|---|
| 0 | setFeeExempt (test) | Executed |
| 1 | setFeeExempt(IFRLock, true) | Executed |
| 2 | Cancelled (v1 deprecated) | Cancelled |
| 3 | setFeeExempt(PartnerVault v2, true) + top-up | Executed |
| 4–6 | transferOwnership (cancelled, v1 immutable) | Cancelled |
| 7–9 | setFeeExempt(LR v2, BV v2, BR v2) | Executed |
Community Audit
All smart contracts are open source. Security findings are welcome via GitHub Issues. The testnet deployment allows anyone to verify contract behavior without risking real funds.
Mainnet contracts are listed on the Deployment page. For production addresses, see the main landing page.