All posts
3 July 2026·4 min read·NodeFlare Team

Free Ink RPC Endpoint

Free Ink RPC endpoint (Chain ID 57073) — no API key required. Multi-region RPC for Kraken's OP-Stack L2 with 1-second blocks, 2M compute units/month free.

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/public

Keyed endpoint (free account — higher limits, heavy methods):

https://rpc.nodeflare.app/ink/v1/{YOUR_KEY}

Get your free key → — no credit card.

Quick start

Terminal
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.

JavaScript
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

ParameterValue
Chain ID57073 (0xdef1)
CurrencyETH
TypeOP-Stack rollup (Superchain)
Block time~1 s
Explorerexplorer.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

FieldValue
Network nameInk
RPC URLhttps://rpc.nodeflare.app/ink/public
Chain ID57073
Currency symbolETH
Block explorerhttps://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.