Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

request: Added "optimismSepolia" network for Testnet #2896

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/gentle-tables-trade.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@reown/appkit': patch
---

Add Optimisim Sepolia to exported networks
11 changes: 11 additions & 0 deletions packages/appkit/src/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,16 @@ export const baseSepolia: CaipNetwork = {
chainNamespace: 'eip155'
}

export const optimismSepolia: CaipNetwork = {
id: 'eip155:11155420',
chainId: 11155420,
name: 'Optimism Sepolia',
currency: 'ETH',
explorerUrl: 'https://sepolia-optimism.etherscan.io',
rpcUrl: getBlockchainApiRpcUrl(11155420, 'eip155'),
chainNamespace: 'eip155'
}

export const solana: CaipNetwork = {
id: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
chainId: '5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
Expand Down Expand Up @@ -189,6 +199,7 @@ export const allChains = [
aurora,
sepolia,
baseSepolia,
optimismSepolia,
solana,
solanaTestnet,
solanaDevnet
Expand Down