Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

Commit 77e3070

Browse files
Fix optimism rpc and chain names (#88)
* v2.3.13 * Merge branch 'main' of https://github.com/thirdweb-dev/react * Fix Optimism public RPC * Fix chain names
1 parent 87c1114 commit 77e3070

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/constants/chain.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type Chain = WagmiChain;
66
const chain: Record<string, Chain> = {
77
mainnet: {
88
id: ChainId.Mainnet,
9-
name: "Mainnet",
9+
name: "Ethereum Mainnet",
1010
nativeCurrency: NATIVE_TOKENS[ChainId.Mainnet],
1111
rpcUrls: ["https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161"],
1212
blockExplorers: [
@@ -63,7 +63,7 @@ const chain: Record<string, Chain> = {
6363
},
6464
polygonTestnetMumbai: {
6565
id: ChainId.Mumbai,
66-
name: "Polygon Testnet Mumbai",
66+
name: "Mumbai",
6767
nativeCurrency: NATIVE_TOKENS[ChainId.Mumbai],
6868
rpcUrls: [
6969
"https://matic-mumbai.chainstacklabs.com",
@@ -96,7 +96,7 @@ const chain: Record<string, Chain> = {
9696
},
9797
avalancheFujiTestnet: {
9898
id: ChainId.AvalancheFujiTestnet,
99-
name: "Avalanche Fuji",
99+
name: "Avalanche Fuji Testnet",
100100
nativeCurrency: NATIVE_TOKENS[ChainId.AvalancheFujiTestnet],
101101
rpcUrls: ["https://api.avax-test.network/ext/bc/C/rpc"],
102102
blockExplorers: [
@@ -137,7 +137,7 @@ const chain: Record<string, Chain> = {
137137
id: ChainId.Optimism,
138138
name: "Optimism",
139139
nativeCurrency: NATIVE_TOKENS[ChainId.Optimism],
140-
rpcUrls: ["https://kovan.optimism.io"],
140+
rpcUrls: ["https://mainnet.optimism.io"],
141141
blockExplorers: [
142142
{
143143
name: "Etherscan",
@@ -161,7 +161,7 @@ const chain: Record<string, Chain> = {
161161
},
162162
arbitrum: {
163163
id: ChainId.Arbitrum,
164-
name: "Arbitrum",
164+
name: "Arbitrum One",
165165
nativeCurrency: NATIVE_TOKENS[ChainId.Arbitrum],
166166
rpcUrls: ["https://arb1.arbitrum.io/rpc"],
167167
blockExplorers: [

0 commit comments

Comments
 (0)