Skip to content

Commit db771cf

Browse files
authored
Merge pull request #92 from jcam1/91-fix-incorrect-chain-configuration-basesepolia-used-instead-of-sepolia-for-ethereum-testnet
fix(chains): replace baseSepolia with sepolia for Ethereum testnet
2 parents 8a4eb26 + f6d95ef commit db771cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/utils/chains.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Chain, defineChain } from 'viem';
22
import {
33
mainnet,
44
goerli,
5-
baseSepolia,
5+
sepolia,
66
polygon,
77
polygonAmoy,
88
gnosis,
@@ -37,7 +37,7 @@ export const SUPPORTED_CHAINS: Record<string, Record<string, Chain>> = {
3737
ethereum: {
3838
mainnet: mainnet,
3939
goerli: goerli,
40-
sepolia: baseSepolia,
40+
sepolia: sepolia,
4141
},
4242
polygon: {
4343
mainnet: polygon,

0 commit comments

Comments
 (0)