RPC endpoints, chain IDs, block explorers, oracle contract addresses, and testnet faucet links for every network supported by IFÁ Labs — EVM and Sui.
This page is the complete network reference for IFÁ Labs deployments. Use it when configuring wallets, development tools, deploy scripts, monitoring infrastructure, or MCP server connections.
IFÁ Labs oracle deployed as a native Sui Move package. The interface is different from EVM deployments — prices are read through shared objects rather than contract calls. See the Sui Integration Guide for Move-specific usage.
These object IDs were updated following a contract redeployment. If you have older IDs cached anywhere in your code, update them now — the previous deployment is stale.
On Sui, you interact with the Feed Object (IfaPriceFeed) to read prices — not the Package ID directly. The Package ID is only needed when importing the module in your own Move contracts. Pass the Feed Object ID when calling get_asset_info and related functions.
Sui Testnet also has a dedicated multi-token faucet for claiming testnet SUI and WAL tokens for development. See the Testnet Faucet page for claim instructions.
Contract addresses for upcoming deployments will be added to this page on launch day. Follow @ifalabs and join the Telegram for deployment announcements.
Sui Testnet is available by default in the Sui Wallet browser extension. Switch networks using the network selector in the top-right corner of the wallet.For the Sui CLI, set your active environment to testnet:
[profile.default]src = "src"out = "out"libs = ["lib"][rpc_endpoints]base-mainnet = "https://mainnet.base.org"base-sepolia = "https://sepolia.base.org"assetchain-testnet = "https://enugu-rpc.assetchain.org"# Or use environment variables for dedicated providers# base-mainnet = "${BASE_MAINNET_RPC_URL}"# base-sepolia = "${BASE_SEPOLIA_RPC_URL}"
Use in scripts and tests:
# Deploy to Base Mainnetforge script script/Deploy.s.sol \ --rpc-url base-mainnet \ --broadcast# Fork Base Mainnet for local testinganvil --fork-url https://mainnet.base.org
// ethers.js v6import { ethers } from "ethers";const PROVIDERS = { "base-mainnet": new ethers.JsonRpcProvider("https://mainnet.base.org"), "base-sepolia": new ethers.JsonRpcProvider("https://sepolia.base.org"), "assetchain-testnet": new ethers.JsonRpcProvider("https://enugu-rpc.assetchain.org"),};
Claim testnet SUI and WAL tokens for oracle development
IFÁ Labs price reads are view calls on EVM and read-only shared object queries on Sui — neither costs gas. You only need testnet tokens if you are deploying your own contracts that consume IFÁ Labs feeds.
The public RPC endpoints listed above are suitable for development and low-frequency queries. For production monitoring, high-frequency scripts, or WebSocket event listeners, use a dedicated provider: