EVM · VERIFIED CONTRACTS
Verified contracts — Mainnet
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 (mainnet) | Status |
|---|---|---|---|
| WSRX | Wrapped SRX — ERC-20 wrapper backed 1:1 by native SRX. Required for DeFi. | 0x4693b1...656553WSRX | Unverified |
| Multicall3 | Standard multicall (mds1/multicall) for batched read + write calls. | 0xFd4b34...f9ceE9 | 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. | 0x53C383...33D366 | Unverified |
| SentrixSafe | Minimal multi-sig wallet (Gnosis Safe v1.4.1-derived). Currently 1-of-1 with the Sentrix Labs authority. | 0x6272dC...2a3b26SentrixSafe (Mainnet) | Unverified |
| SentrixV2 Factory | Native AMM factory (UniswapV2-equivalent). CREATE2 pair deployer with feeToSetter pinned to the Sentrix Labs authority. | 0xC5344f...5aD936Sentrix DEX Factory | 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. | 0xAb67E1...9c9dE8Sentrix DEX Router | 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 7119 \ <ADDRESS> contracts/MyToken.sol:MyToken # Hardhat (with hardhat-verify plugin) npx hardhat verify --network sentrix <ADDRESS>
Once verified, the address page's Contract tab renders source + ABI + Read Contract automatically.