Network Information
Use the following configuration to connect to Mersennet testnet.
Testnet Configurationβ
| Parameter | Value |
|---|---|
| Chain ID | 7919 |
| Network Name | Mersennet Testnet |
| RPC URL | http://46.225.30.187:8545 |
| WebSocket URL | ws://46.225.30.187:8546 |
| Block Explorer | http://46.225.30.187 |
| Faucet | http://46.225.30.187:4003 |
| Currency Symbol | PRIM |
| Block Time | ~1 second |
tip
The WebSocket endpoint may not be enabled on all nodes. If subscriptions fail, use HTTP RPC for polling.
Add Mersennet to MetaMaskβ
Or run this code in your browser console (with MetaMask installed):
await window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [{
chainId: '0x1EEF', // 7919 in hex
chainName: 'Mersennet Testnet',
nativeCurrency: {
name: 'PRIM',
symbol: 'PRIM',
decimals: 18
},
rpcUrls: ['http://46.225.30.187:8545'],
blockExplorerUrls: ['http://46.225.30.187']
}]
});
note
Chain ID 7919 in decimal equals 0x1EEF in hexadecimal.
Deployed Contract Addressesβ
The following contracts are deployed on Mersennet testnet and ready for integration:
| Contract | Address |
|---|---|
| Multicall3 | 0x973ee1bf0907287d1eb8a144d88b34f515c83f29 |
| WPRIM | 0x079bf1207b51acda83e2e8178344f62a883f8479 |
| MockUSDC | 0xb22f77d89122e9e3784bfd3eee9616273f38238d |
| MockUSDT | 0x877feca38919acd7aaf7cb81f100e0454aa95c17 |
| MockDAI | 0xb88d63a65691effbf4b6808325b1588912c15cf4 |
| PrimeSwapFactory | 0x63f7a64db6d2b965189b8b48b7435668021f6b17 |
| PrimeSwapRouter | 0x9f337f433e71ce969b991511f1dcd3d0622116bb |
Usage Notesβ
- Multicall3 β Use for batched RPC reads (wagmi, viem, and ethers.js support it).
- WPRIM β ERC-20 wrapped PRIM for DEX pairs and DeFi protocols.
- MockUSDC, MockUSDT, MockDAI β Test stablecoins for DeFi development.
- PrimeSwapFactory & Router β Uniswap V2βstyle AMM for token swaps.
Ecosystem Applicationsβ
The following applications are live on Mersennet testnet:
| Application | URL | Description |
|---|---|---|
| PrimeScan Explorer | http://46.225.30.187 | Block explorer, transaction search, contract info |
| PrimeSwap DEX | http://46.225.30.187:4000 | Swap tokens, add/remove liquidity |
| PrimeNodes Dashboard | http://46.225.30.187:4001 | Validator monitoring, stake distribution |
| PrimeTrade | http://46.225.30.187:4004 | Order book trading terminal (native CLOB) |
| Testnet Faucet | http://46.225.30.187:4003 | Get testnet PRIM tokens |
| Documentation | http://46.225.30.187:3001 | Developer and user documentation |
| Grafana Monitoring | http://46.225.30.187:3000 | Network metrics and dashboards |
| Prometheus | http://46.225.30.187:9090 | Metrics collection and alerting queries |
| Alertmanager | http://46.225.30.187:9093 | Alert routing and notifications |
| Uptime Kuma | http://46.225.30.187:3002 | Public status page and uptime monitoring |