Add to Wallet
Live Chain Status
Offline
Block Height
Sync Status
Validator Node
adamboudj.integralayer.com
RPC Health Check
Checking...
EVM JSON-RPC
Chain ID
eth_chainIdBlock Number
eth_blockNumberGas Price
eth_gasPriceNet Version
net_versionClient Version
web3_clientVersionSyncing
eth_syncingPeer Count
net_peerCountFee History
eth_feeHistoryCometBFT
Node Status
/statusNetwork Configuration
| Network | Integra Mainnet |
| Chain ID (Cosmos) | integra-1 |
| Chain ID (EVM) | 26217 (0x6669) |
| Currency | IRL (airl) |
| Decimals | 18 |
| EVM RPC | https://adamboudj.integralayer.com/rpc |
| WebSocket | wss://adamboudj.integralayer.com/ws |
| CometBFT RPC | https://adamboudj.integralayer.com/cometbft |
| REST API | https://adamboudj.integralayer.com/rest |
| Bech32 Prefix | integra |
| Validator | integra124gllptlcu2ew5guxnyvcc483jwkwj8mlv58sk |
Developer Quickstart
1
Add the network
Click one of the wallet buttons above to auto-configure MetaMask, Keplr, or OKX.
2
Query via JSON-RPC
curl -X POST https://adamboudj.integralayer.com/rpc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'3
Connect with ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider("https://adamboudj.integralayer.com/rpc", 26217);
const block = await provider.getBlockNumber();
console.log("Latest block:", block);4
Deploy with Hardhat
Add Integra to your hardhat.config.ts networks:
integra: {
url: "https://adamboudj.integralayer.com/rpc",
chainId: 26217,
accounts: [process.env.PRIVATE_KEY],
}