EVM · VERIFIED CONTRACTS
Verified contracts — Testnet
EVM rail only. Native-side primitives (SRC-20, StakingOps) run at the protocol level — see the Native dashboard.
Check verification status
Canonical contracts
| Contract | Description | Address (testnet) | Status |
|---|---|---|---|
| WSRX | Wrapped SRX — ERC-20 wrapper backed 1:1 by native SRX. Required for DeFi. | 0x85d5E7...fF949AWtSRX (testnet) | Unverified |
| Multicall3 | Standard multicall (mds1/multicall) for batched read + write calls. | 0x790082...55Cd54 | Unverified |
| TokenFactory | Deploys minimal ERC-20 tokens via a single function call. v1.1.0 adds input validation (zero-supply / empty-name / oversize-symbol guards) and rejects ERC-20 transfers to address(0) per spec. v1.0.0 is still on-chain (immutable) but deprecated — frontends should use v1.1.0. | 0xaE2a85...0baEc7 | Unverified |
| SentrixSafe | Minimal multi-sig wallet (Gnosis Safe v1.4.1-derived). Currently 1-of-1 with the Sentrix Labs authority. | 0xc9D7a6...532110SentrixSafe (Testnet) | Unverified |
| SentrixV2 Factory | Native AMM factory (UniswapV2-equivalent). CREATE2 pair deployer with feeToSetter pinned to the Sentrix Labs authority. | 0x856539...7651C7Sentrix DEX Factory (testnet) | Unverified |
| SentrixV2 Router02 | Native AMM router. Adds liquidity, removes liquidity, swaps along the constant-product curve. Includes UniV2 fee-on-transfer + permit-gated removeLiquidity helpers. | 0x2bF734...b55cB0Sentrix DEX Router (testnet) | Unverified |
Verify your own contract
Sentrix runs a self-hosted Sourcify verifier at verify.sentrixchain.com. Both Foundry and Hardhat speak it via the standard \`--verifier sourcify\` flag.
# Foundry forge verify-contract \ --verifier sourcify \ --verifier-url https://verify.sentrixchain.com \ --chain 7120 \ <ADDRESS> contracts/MyToken.sol:MyToken # Hardhat (with hardhat-verify plugin) npx hardhat verify --network sentrixTestnet <ADDRESS>
Once verified, the address page's Contract tab renders source + ABI + Read Contract automatically.