Katana RPC Endpoint

Fast, flat-rate Katana RPC node provider — free tier, no KYC, HTTP & WebSocket.

Katana is a DeFi-focused Ethereum Layer 2 that concentrates liquidity and routes protocol revenue back into yield for its users. It launched its public mainnet in 2025 with backing from Polygon Labs and GSR. SwiftNodes provides RPC access to Katana.

Network: Katana
Type: EVM
Chain ID: 747474
Slug: katana
Native token: ETH (Ether)
Block time: Fast block times typical of OP-style L2s.
Finality: Soft confirmation on the L2 within seconds; hard finality follows settlement to Ethereum L1
Mainnet: 2025 (public mainnet)
Category: Layer 2 (DeFi-focused)

About Katana

Katana (chain ID 747474) is an EVM Layer 2 that uses ETH as its gas token. Its public mainnet went live in 2025 with a design centered on deep, productive liquidity and crosschain asset support.

Katana has a separate network token, KAT, earned through liquidity programs rather than used for gas. As a DeFi-native chain it is targeted at lending, AMMs, and yield strategies. Standard EVM tooling such as Foundry, Hardhat, viem, and ethers.js applies.

Common Use Cases on Katana

  • AMM and DEX trading
  • Lending and borrowing
  • Yield strategies
  • Stablecoin liquidity
  • Crosschain asset deployment

Katana Ecosystem

Katana launched with backing from Polygon Labs and GSR, anchored around native DeFi protocols for lending, AMMs, and yield.

HTTP Endpoint

https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY

WebSocket Endpoint

wss://rpc.swiftnodes.io/ws/katana?key=YOUR_API_KEY

Quick Start: Connect to Katana

cURL

curl -X POST https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

ethers.js

import { JsonRpcProvider } from "ethers";

const provider = new JsonRpcProvider(
  "https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY"
);

const blockNumber = await provider.getBlockNumber();
console.log("Katana block:", blockNumber);

viem

import { createPublicClient, http } from "viem";

const client = createPublicClient({
  transport: http("https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY"),
});

const blockNumber = await client.getBlockNumber();

web3.py

from web3 import Web3

w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY"))
print("Katana block:", w3.eth.block_number)

Add Katana to MetaMask

Network Name: Katana (SwiftNodes)
RPC URL: https://rpc.swiftnodes.io/rpc/katana?key=YOUR_API_KEY
Chain ID: 747474
Currency Symbol: ETH
WebSocket: wss://rpc.swiftnodes.io/ws/katana?key=YOUR_API_KEY

Bridging to Katana

Assets move between Ethereum, other chains, and Katana via canonical bridging plus third-party crosschain routes; confirm supported bridges on Katana's official bridge page.

Features of SwiftNodes for Katana

  • Multiple load-balanced upstream nodes for high availability
  • Health-checked every 60 seconds with automatic failover
  • Free tier available — no credit card or KYC required
  • Flat-rate monthly pricing with no per-request fees
  • HTTP and WebSocket support
  • One API key works across all 75+ supported chains, including Katana

Rate Limits

PlanPriceHTTP req/sWS msg/s
Free$0/mo21
Starter$49/mo5025
Growth$89/mo15075
Scale$149/mo300150
Pro$249/mo500250

Frequently Asked Questions: Katana

What's Katana's chain ID?

Katana mainnet is chain ID 747474.

What token does Katana use for gas?

Katana uses ETH as its native gas token. Its KAT token is a separate network token earned through liquidity programs, not used to pay gas.

Is Katana EVM-compatible?

Yes. Katana is an EVM Layer 2, so standard Ethereum tooling and JSON-RPC methods work against it.

Ready to start building on Katana? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.