The SGA network
SGA Testnet is live. Connect your wallet, explore blocks, and start building against a sovereign Layer 1.
Network status
Network status — live
Connect
Add SGA Testnet to your wallet
Connect
Add SGA Testnet to MetaMask
One click adds the network. tMoSE is the testnet gas token and has no monetary value.
- Network name
- SGA Testnet
- RPC URL
- https://rpc-testnet.genesisfin.ai
- Chain ID
- 20262 (0x4f26)
- Currency symbol
- tMoSE
- Block explorer
- https://scan-testnet.genesisfin.ai
Chain specs
Chain specifications
Protocol
- Consensus
- Parlia (PoSA)
- Block time
- 3 seconds
- Epoch
- 200 blocks
- Validators
- 5 — fixed at genesis
- EVM version
- Shanghai
Native asset
- Asset
- MITOSE
- Ticker
- MoSE (testnet: tMoSE)
- Total supply
- 10,000,000,000 · fixed, no inflation, no block rewards
Networks
- SGA Testnet
- Chain ID 20262
- RPC
- https://rpc-testnet.genesisfin.ai
- Explorer
- https://scan-testnet.genesisfin.ai
- Faucet
- https://faucet.genesisfin.ai (5 tMoSE / 24h)
- SGA Mainnet
- Chain ID 20260 · in preparation
Public RPC
- Namespaces
- eth · net · web3
- Transport
- TLS, rate-limited (admin/debug not exposed)
Building on SGA? Set evmVersion: shanghai
SGA runs the Shanghai EVM. Solidity 0.8.25+ targets Cancun by default, which produces opcodes SGA does not execute (invalid opcode). Always set the EVM version explicitly — see Developers below.
Mainnet roadmap
Testnet today. Mainnet next.
- Done
Public testnet live
5 validators, 3-second blocks, explorer & faucet open.
- In progress
Testnet hardening & continuous operation
Uptime history, monitoring, and operational evidence accumulate here, in the open.
- Planned
Production validator key ceremony
Hardened key generation, offline backups, HSM custody.
- Planned
External security audit
Independent professional review before any mainnet genesis.
- Planned
Mainnet genesis & launch
Chain ID 20260, MoSE, generated by our deterministic, fail-closed genesis pipeline.
We ship gates, not deadlines. Each step opens only when the previous one is proven — no launch dates are promised.
Developers
Developer quickstart
Connect
Network: SGA Testnet
RPC: https://rpc-testnet.genesisfin.ai
Chain ID: 20262
Symbol: tMoSE
Explorer: https://scan-testnet.genesisfin.aiGet test funds → faucet.genesisfin.ai (5 tMoSE / 24h — no monetary value).
Hardhat
// hardhat.config.js
module.exports = {
solidity: { version: "0.8.28", settings: { evmVersion: "shanghai" } },
networks: {
sgaTestnet: { url: "https://rpc-testnet.genesisfin.ai", chainId: 20262 },
},
};Foundry
# foundry.toml
[profile.default]
evm_version = "shanghai"
[rpc_endpoints]
sga_testnet = "https://rpc-testnet.genesisfin.ai"Full docs, SDK references, and Genesis Studio guides publish here as they ship.
