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

PropertyValue
Network NameStatus Network Testnet
Chain ID1660990954 (0x6300b5ea)
RPC Endpointhttps://public.sepolia.rpc.status.network
Currency SymbolETH
Block Explorerhttps://sepoliascan.status.network
Bridgehttps://bridge.status.network
WebSocket RPCContact Status team on Telegram
StackLinea zkEVM rollup (L2 on Sepolia)

Faucet Info

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.24 in 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)

FactorStatus NetworkBase Sepolia
Gas feesGasless (zero gas for users) โœ…Low but non-zero
User onboardingNo gas needed = frictionless โœ…Need to acquire ETH first
Spam protectionRLN (rate-limiting nullifiers) โœ…Standard gas-based
Aragon OSxNot supported โŒSupported โœ…
Ecosystem maturityVery early, small ecosystem โš ๏ธLarge, established โœ…
Block explorerBasic (Blockscout-based)Robust (Basescan)
Developer toolingMinimal, growingExtensive
Native integrationsStatus Wallet, Keycard, WakuCoinbase Wallet
Public funding modelNative yield + DEX fees โ†’ builder funding โœ…None built-in
Target audienceSocial apps & gamesGeneral purpose

Cons / Risks

  1. No Aragon OSx โ€” must use custom DAO contracts or deploy Aragon framework ourselves
  2. Early stage โ€” testnet only info available, mainnet details TBD
  3. Small ecosystem โ€” fewer users, fewer composable protocols
  4. Faucet requires mainnet ETH โ€” 0.01 ETH on mainnet to use faucet
  5. WebSocket RPC not publicly available โ€” need to contact team
  6. Unknown block finality characteristics โ€” zkEVM proving times may vary

Deployment Readiness Checklist

  • Network details documented
  • Hardhat config added (statusTestnet network 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:

  1. Complete Phase 1 on Base Sepolia with Aragon OSx
  2. Deploy our custom B4MAD.sol contracts (non-Aragon) on Status Network testnet as a parallel experiment
  3. Monitor Status Network ecosystem growth and Aragon support
  4. If gasless UX proves valuable, consider Status Network for mainnet DAO

Changes Made

  • Added statusTestnet network config to hardhat.config.js in b4mad-dao-contracts
  • Created this evaluation document