The Network

The SGA network

SGA Testnet is live. Connect your wallet, explore blocks, and start building against a sovereign Layer 1.

SGA Testnet · Live · Chain ID 20262

Network status

Network status — live

Unreachable
Latest block
Block time
3s
Validators
5
Chain ID
20262
Gas price

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.

  1. Done

    Public testnet live

    5 validators, 3-second blocks, explorer & faucet open.

  2. In progress

    Testnet hardening & continuous operation

    Uptime history, monitoring, and operational evidence accumulate here, in the open.

  3. Planned

    Production validator key ceremony

    Hardened key generation, offline backups, HSM custody.

  4. Planned

    External security audit

    Independent professional review before any mainnet genesis.

  5. 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.ai

Get 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.