Pontus-X Network Guide
This guide provides an overview of the Pontus-X networks. Pontus-X Networks leverage the Oasis architecture for privacy, scalability, and operational efficiency.
Networks Overview
Pontus-X Testnet
The Pontus-X Testnet is designed for running finished use cases that have been fully developed and vetted on the Devnet. This network hosts completed projects, ensuring stability and reliability for final validation before potential real-world applications.
Testnet Portal Configuration and Key Components:- Chain ID: 32457
- RPC URL: https://rpc.test.pontus-x.eu/
- Block Explorer URL: Pontus-X Explorer Testnet
- Provider URL:
https://provider.test.pontus-x.eu
- Aquarius URL:
https://aquarius.pontus-x.eu
- Subgraph URL:
https://subgraph.test.pontus-x.eu
Pontus-X Devnet
The Devnet serves as a dynamic development environment where new features, algorithms, and datasets are first introduced and tested.
Devnet Portal Configuration and Key Components:- Chain ID: 32456
- RPC URL: https://rpc.dev.pontus-x.eu/
- Block Explorer URL: Pontus-X Explorer Devnet
- Provider URL:
https://provider.dev.pontus-x.eu
- Aquarius URL:
https://aquarius.pontus-x.eu
- Subgraph URL:
https://subgraph.dev.pontus-x.eu
Ocean Protocol Contracts
Testnet Contracts
- Ocean Token Address:
0x5B190F9E2E721f8c811E4d584383E3d57b865C69
- OPF Community Fee Collector:
0xACC8d1B2a0007951fb4ed622ACB1C4fcCAbe778D
- Router:
0x8947Ff0B317F7b1B6B81F7678CBA8D745B06866C
- Fixed Price Exchange:
0xcE0F39abB6DA2aE4d072DA78FA0A711cBB62764E
- ERC20 Templates:
0x6BFd85ABC2E824D4b64d524c89e353D6a3598Db0
,0x50dDFD6F2dD02e94d42F6058E2fa28Be9e43D2BF
- ERC721 Templates:
0xC457Ae9f27E6a1DBdbA3A007895994c2542eC929
- Dispenser:
0xaB5B68F88Bc881CAA427007559E9bbF8818026dE
- ERC721 Factory:
0x2C4d542ff791890D9290Eec89C9348A4891A6Fd2
Devnet Contracts
- Ocean Token Address:
0xdF171F74a8d3f4e2A789A566Dce9Fa4945196112
- OPF Community Fee Collector:
0x1f84fB438292269219f9396D57431eA9257C23d4
- Router:
0x4Ede1776D6B75de6c907172Abc0453a3C8AB372a
- Fixed Price Exchange:
0x8372715D834d286c9aECE1AcD51Da5755B32D505
- ERC20 Templates:
0x02eCd3850B53b1BA8dbCdD146C963cC27f27Dd3C
,0x23Efb300c8778d6842bB0cCBD07D356eCeB97070
- ERC721 Templates:
0x5B0cc649134791c2357c93868d6e8D325A31aE29
- Dispenser:
0x5461b629E01f72E0A468931A36e039Eea394f9eA
- ERC721 Factory:
0xFdC4a5DEaCDfc6D82F66e894539461a269900E13
Network Operations
Get the Latest Block
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["latest", false],"id":1}' https://rpc.<network>.pontus-x.eu/
Get Syncing Status
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}' https://rpc.<network>.pontus-x.eu/
Replace <network>
with either test
or dev
based on the network you are querying.