Supported Networks
Base Mainnet
The primary production deployment. All protocol integrations should target Base Mainnet.Base Sepolia
The recommended testnet for all EVM development and testing. Mirror of Base Mainnet with identical oracle interface and asset IDs.AssetChain Testnet
Early integration deployment for the AssetChain RWA-focused ecosystem. Oracle interface and asset IDs are identical to Base deployments.Sui Testnet
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.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.
Upcoming Networks
Adding Networks to Your Wallet
EVM Networks — MetaMask
Automatic — ChainList
The fastest method. Visit chainlist.org, search for “Base” or “AssetChain”, and click Add to MetaMask. The network parameters are added automatically.Manual Configuration
- Base Mainnet
- Base Sepolia
- AssetChain Testnet
In MetaMask → Settings → Networks → Add Network → Add a network manually:
Sui Network — Sui Wallet
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:RPC Configuration for Development Tools
Foundry (foundry.toml)
Hardhat (hardhat.config.js)
ethers.js / viem (EVM)
Sui TypeScript SDK
Oracle Addresses by Network
Quick reference — all oracle addresses and object IDs in one place:Faucets
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.
Recommended RPC Providers
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:
Configure your chosen provider in the MCP server:
Network Quick Reference Card
Next Steps
Contract Addresses
Verified EVM contract addresses with block explorer links and deployment verification steps.
Sui Integration Guide
Read prices from the IFÁ Labs oracle on Sui using Move or the Sui TypeScript SDK.

