From 391df91e4634623d17f59845d824918abd1f37bc Mon Sep 17 00:00:00 2001 From: Penzlik Date: Sat, 2 May 2026 21:01:42 +0300 Subject: [PATCH] docs: add supported networks section to README --- packages/onchainkit/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages/onchainkit/README.md b/packages/onchainkit/README.md index 4d656111bc..f73fdc89be 100644 --- a/packages/onchainkit/README.md +++ b/packages/onchainkit/README.md @@ -57,6 +57,34 @@ Run `npm create onchain` to bootstrap an example onchain app with all the batter For documentation and guides, visit [onchainkit.xyz](https://onchainkit.xyz/). +## 🌐 Supported Networks + +OnchainKit is optimized for the **Base ecosystem** and officially supports: + +| Network | Chain ID | Type | +|---|---|---| +| Base Mainnet | 8453 | Production | +| Base Sepolia | 84532 | Testnet | + +While OnchainKit components work on any EVM-compatible chain, full feature support — including gasless transactions, Coinbase Smart Wallet, and paymaster integration — is only available on Base and Base Sepolia. + +To configure your app for Base networks: + +```ts +import { base, baseSepolia } from 'viem/chains'; +import { OnchainKitProvider } from '@coinbase/onchainkit'; + +// Production (Base Mainnet) + + {children} + + +// Development (Base Sepolia testnet) + + {children} + +``` + ## 🛠️ Contributing ### Overview