Status Network Evaluation
Date: 2026-02-20 Bead: beads-hub-607 โ “DAO Phase 2: Extend to Status Network (gasless L2)” Status: Evaluation complete โ prep work done, not yet deployed
Network Details
| Property | Value |
|---|---|
| Network Name | Status Network Testnet |
| Chain ID | 1660990954 (0x6300b5ea) |
| RPC Endpoint | https://public.sepolia.rpc.status.network |
| Currency Symbol | ETH |
| Block Explorer | https://sepoliascan.status.network |
| Bridge | https://bridge.status.network |
| WebSocket RPC | Contact Status team on Telegram |
| Stack | Linea zkEVM rollup (L2 on Sepolia) |
Faucet Info
- ETH Faucet: https://faucet.status.network โ 0.01 ETH/day, requires 0.01 ETH on mainnet
- STT (test SNT) Faucet: https://hub.status.network/stake โ 10,000 STT/day
- Alternative: Bridge Sepolia ETH via https://bridge.status.network
EVM Compatibility Assessment
Verdict: COMPATIBLE โ
- Built on Linea zkEVM stack โ full EVM bytecode compatibility
- Solidity 0.8.20 and 0.8.28 both supported (docs show
^0.8.24in examples) - Standard EVM opcodes supported; Linea zkEVM has minor limitations on some precompiles but nothing affecting our contracts (B4MAD.sol, MyVestingWallet.sol)
- Hardhat + ethers.js deployment workflow works (confirmed by their docs)
Aragon OSx Support
Verdict: NOT SUPPORTED โ
Aragon OSx does not have official deployments on Status Network. This means:
- No pre-deployed DAOFactory, PluginRepoFactory, etc.
- We would need to deploy the full Aragon OSx framework ourselves (complex, not recommended)
- Recommendation: Use our own lightweight DAO contracts (B4MAD.sol) instead of Aragon OSx on Status Network, OR wait for Aragon to add support
Pros vs Base (Sepolia)
| Factor | Status Network | Base Sepolia |
|---|---|---|
| Gas fees | Gasless (zero gas for users) โ | Low but non-zero |
| User onboarding | No gas needed = frictionless โ | Need to acquire ETH first |
| Spam protection | RLN (rate-limiting nullifiers) โ | Standard gas-based |
| Aragon OSx | Not supported โ | Supported โ |
| Ecosystem maturity | Very early, small ecosystem โ ๏ธ | Large, established โ |
| Block explorer | Basic (Blockscout-based) | Robust (Basescan) |
| Developer tooling | Minimal, growing | Extensive |
| Native integrations | Status Wallet, Keycard, Waku | Coinbase Wallet |
| Public funding model | Native yield + DEX fees โ builder funding โ | None built-in |
| Target audience | Social apps & games | General purpose |
Cons / Risks
- No Aragon OSx โ must use custom DAO contracts or deploy Aragon framework ourselves
- Early stage โ testnet only info available, mainnet details TBD
- Small ecosystem โ fewer users, fewer composable protocols
- Faucet requires mainnet ETH โ 0.01 ETH on mainnet to use faucet
- WebSocket RPC not publicly available โ need to contact team
- Unknown block finality characteristics โ zkEVM proving times may vary
Deployment Readiness Checklist
- Network details documented
- Hardhat config added (
statusTestnetnetwork in hardhat.config.js) - EVM compatibility confirmed
- Aragon OSx support โ NOT AVAILABLE (blocker for Aragon-based DAO)
- Testnet ETH acquired (faucet requires 0.01 mainnet ETH โ needs manual step)
- Contract compilation tested on Status Network
- Contract deployment tested
- Block explorer verification workflow tested
Recommendation
Status Network is a strong candidate for Phase 2 due to gasless transactions, which aligns perfectly with a community DAO where we don’t want members to worry about gas. However, the lack of Aragon OSx support is a significant consideration.
Recommended approach:
- Complete Phase 1 on Base Sepolia with Aragon OSx
- Deploy our custom B4MAD.sol contracts (non-Aragon) on Status Network testnet as a parallel experiment
- Monitor Status Network ecosystem growth and Aragon support
- If gasless UX proves valuable, consider Status Network for mainnet DAO
Changes Made
- Added
statusTestnetnetwork config tohardhat.config.jsin b4mad-dao-contracts - Created this evaluation document