Ink is Kraken's OP-Stack L2 — 1-second blocks, DeFi-first, part of the Superchain. Independent RPC options are scarce; NodeFlare runs a dedicated Ink node so you don't depend on a single endpoint.
Ink RPC URLs
Public endpoint — no API key:
https://rpc.nodeflare.app/ink/publicKeyed endpoint (free account — higher limits, heavy methods):
https://rpc.nodeflare.app/ink/v1/{YOUR_KEY}Get your free key → — no credit card.
Quick start
curl https://rpc.nodeflare.app/ink/public \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'Expected: {"jsonrpc":"2.0","id":1,"result":"0xdef1"} — Ink's memorable chain ID, 57073.
import { ethers } from 'ethers';
const provider = new ethers.JsonRpcProvider(
'https://rpc.nodeflare.app/ink/public'
);
console.log('Ink block:', await provider.getBlockNumber());Ink at a glance
| Parameter | Value |
|---|---|
| Chain ID | 57073 (0xdef1) |
| Currency | ETH |
| Type | OP-Stack rollup (Superchain) |
| Block time | ~1 s |
| Explorer | explorer.inkonchain.com |
Ink doubles the standard OP-Stack cadence to 1-second blocks — 86,400 blocks a day, so adjust block-range arithmetic accordingly. Full per-method notes live in the Ink method reference.
Free tier
- 2,000,000 compute units/month — no credit card
eth_getLogs(75 CU),trace_*/debug_*(100 CU) included on free- Every supported chain under one key
- Multi-region routing with automatic failover
Add Ink to MetaMask
| Field | Value |
|---|---|
| Network name | Ink |
| RPC URL | https://rpc.nodeflare.app/ink/public |
| Chain ID | 57073 |
| Currency symbol | ETH |
| Block explorer | https://explorer.inkonchain.com |
FAQ
What is the Ink RPC URL?
https://rpc.nodeflare.app/ink/public — free, no API key, rate-limited per IP.
What is Ink's chain ID? 57073 — hex 0xdef1, a nod to DeFi.
Can I index Ink from genesis?
Yes — the chain launched December 2024, so full-history eth_getLogs scans are still feasible with a free key (75 CU per call).
Building on Ink? Get your free NodeFlare key → — one key for every chain we serve.