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

Commit 5c1c54a

Browse files
committed
removed non-supported chains for now
1 parent 7d533c7 commit 5c1c54a

File tree

4 files changed

+152
-152
lines changed

4 files changed

+152
-152
lines changed

src/constants/chain.ts

Lines changed: 121 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ const chain = {
1919
},
2020
],
2121
},
22-
ropsten: {
23-
id: 3,
24-
name: "Ropsten",
25-
nativeCurrency: {
26-
name: "Ropsten Ether",
27-
symbol: "ropETH",
28-
decimals: 18,
29-
},
30-
rpcUrls: ["https://ropsten.infura.io/v3"],
31-
blockExplorers: [
32-
{
33-
name: "Etherscan",
34-
url: "https://ropsten.etherscan.io",
35-
},
36-
],
37-
testnet: true,
38-
},
22+
// ropsten: {
23+
// id: 3,
24+
// name: "Ropsten",
25+
// nativeCurrency: {
26+
// name: "Ropsten Ether",
27+
// symbol: "ropETH",
28+
// decimals: 18,
29+
// },
30+
// rpcUrls: ["https://ropsten.infura.io/v3"],
31+
// blockExplorers: [
32+
// {
33+
// name: "Etherscan",
34+
// url: "https://ropsten.etherscan.io",
35+
// },
36+
// ],
37+
// testnet: true,
38+
// },
3939
rinkeby: {
4040
id: 4,
4141
name: "Rinkeby",
@@ -70,56 +70,56 @@ const chain = {
7070
],
7171
testnet: true,
7272
},
73-
kovan: {
74-
id: 42,
75-
name: "Kovan",
76-
nativeCurrency: {
77-
name: "Kovan Ether",
78-
symbol: "kETH",
79-
decimals: 18,
80-
},
81-
rpcUrls: ["https://kovan.infura.io/v3"],
82-
blockExplorers: [
83-
{
84-
name: "Etherscan",
85-
url: "https://kovan.etherscan.io",
86-
},
87-
],
88-
testnet: true,
89-
},
90-
optimisticEthereum: {
91-
id: 10,
92-
name: "Optimistic Ethereum",
93-
nativeCurrency: {
94-
name: "Optimistic Ether",
95-
symbol: "OETH",
96-
decimals: 18,
97-
},
98-
rpcUrls: ["https://mainnet.optimism.io"],
99-
blockExplorers: [
100-
{
101-
name: "Etherscan",
102-
url: "https://optimistic.etherscan.io",
103-
},
104-
],
105-
},
106-
optimisticKovan: {
107-
id: 69,
108-
name: "Optimistic Kovan",
109-
nativeCurrency: {
110-
name: "Kovan Ether",
111-
symbol: "KOR",
112-
decimals: 18,
113-
},
114-
rpcUrls: ["https://kovan.optimism.io"],
115-
blockExplorers: [
116-
{
117-
name: "Etherscan",
118-
url: "https://optimistic.etherscan.io",
119-
},
120-
],
121-
testnet: true,
122-
},
73+
// kovan: {
74+
// id: 42,
75+
// name: "Kovan",
76+
// nativeCurrency: {
77+
// name: "Kovan Ether",
78+
// symbol: "kETH",
79+
// decimals: 18,
80+
// },
81+
// rpcUrls: ["https://kovan.infura.io/v3"],
82+
// blockExplorers: [
83+
// {
84+
// name: "Etherscan",
85+
// url: "https://kovan.etherscan.io",
86+
// },
87+
// ],
88+
// testnet: true,
89+
// },
90+
// optimisticEthereum: {
91+
// id: 10,
92+
// name: "Optimistic Ethereum",
93+
// nativeCurrency: {
94+
// name: "Optimistic Ether",
95+
// symbol: "OETH",
96+
// decimals: 18,
97+
// },
98+
// rpcUrls: ["https://mainnet.optimism.io"],
99+
// blockExplorers: [
100+
// {
101+
// name: "Etherscan",
102+
// url: "https://optimistic.etherscan.io",
103+
// },
104+
// ],
105+
// },
106+
// optimisticKovan: {
107+
// id: 69,
108+
// name: "Optimistic Kovan",
109+
// nativeCurrency: {
110+
// name: "Kovan Ether",
111+
// symbol: "KOR",
112+
// decimals: 18,
113+
// },
114+
// rpcUrls: ["https://kovan.optimism.io"],
115+
// blockExplorers: [
116+
// {
117+
// name: "Etherscan",
118+
// url: "https://optimistic.etherscan.io",
119+
// },
120+
// ],
121+
// testnet: true,
122+
// },
123123
polygonMainnet: {
124124
id: 137,
125125
name: "Polygon Mainnet",
@@ -164,43 +164,43 @@ const chain = {
164164
],
165165
testnet: true,
166166
},
167-
arbitrumOne: {
168-
id: 42161,
169-
name: "Arbitrum One",
170-
nativeCurrency: {
171-
name: "Ether",
172-
symbol: "AETH",
173-
decimals: 18,
174-
},
175-
rpcUrls: ["https://arb1.arbitrum.io/rpc"],
176-
blockExplorers: [
177-
{
178-
name: "Arbiscan",
179-
url: "https://arbiscan.io",
180-
},
181-
{
182-
name: "Arbitrum Explorer",
183-
url: "https://explorer.arbitrum.io",
184-
},
185-
],
186-
},
187-
arbitrumRinkeby: {
188-
id: 421611,
189-
name: "Rinkeby Arbitrum",
190-
nativeCurrency: {
191-
name: "Rinkeby ArbEther",
192-
symbol: "rinkArbETH",
193-
decimals: 18,
194-
},
195-
rpcUrls: ["https://rinkeby.arbitrum.io/rpc"],
196-
blockExplorers: [
197-
{
198-
name: "Arbitrum Explorer",
199-
url: "https://rinkeby-explorer.arbitrum.io",
200-
},
201-
],
202-
testnet: true,
203-
},
167+
// arbitrumOne: {
168+
// id: 42161,
169+
// name: "Arbitrum One",
170+
// nativeCurrency: {
171+
// name: "Ether",
172+
// symbol: "AETH",
173+
// decimals: 18,
174+
// },
175+
// rpcUrls: ["https://arb1.arbitrum.io/rpc"],
176+
// blockExplorers: [
177+
// {
178+
// name: "Arbiscan",
179+
// url: "https://arbiscan.io",
180+
// },
181+
// {
182+
// name: "Arbitrum Explorer",
183+
// url: "https://explorer.arbitrum.io",
184+
// },
185+
// ],
186+
// },
187+
// arbitrumRinkeby: {
188+
// id: 421611,
189+
// name: "Rinkeby Arbitrum",
190+
// nativeCurrency: {
191+
// name: "Rinkeby ArbEther",
192+
// symbol: "rinkArbETH",
193+
// decimals: 18,
194+
// },
195+
// rpcUrls: ["https://rinkeby.arbitrum.io/rpc"],
196+
// blockExplorers: [
197+
// {
198+
// name: "Arbitrum Explorer",
199+
// url: "https://rinkeby-explorer.arbitrum.io",
200+
// },
201+
// ],
202+
// testnet: true,
203+
// },
204204
avalanche: {
205205
id: 43114,
206206
name: "Avalanche",
@@ -218,23 +218,23 @@ const chain = {
218218
],
219219
testnet: false,
220220
},
221-
avalancheFuji: {
222-
id: 43113,
223-
name: "Avalanche FUJI",
224-
nativeCurrency: {
225-
name: "AVAX",
226-
symbol: "AVAX",
227-
decimals: 18,
228-
},
229-
rpcUrls: ["https://api.avax-test.network/ext/bc/C/rpc"],
230-
blockExplorers: [
231-
{
232-
name: "SnowTrace",
233-
url: "https://testnet.snowtrace.io/",
234-
},
235-
],
236-
testnet: true,
237-
},
221+
// avalancheFuji: {
222+
// id: 43113,
223+
// name: "Avalanche FUJI",
224+
// nativeCurrency: {
225+
// name: "AVAX",
226+
// symbol: "AVAX",
227+
// decimals: 18,
228+
// },
229+
// rpcUrls: ["https://api.avax-test.network/ext/bc/C/rpc"],
230+
// blockExplorers: [
231+
// {
232+
// name: "SnowTrace",
233+
// url: "https://testnet.snowtrace.io/",
234+
// },
235+
// ],
236+
// testnet: true,
237+
// },
238238
// custom added (non wagmi standard)
239239
fantom: {
240240
id: 250,

wiki/DAppMetaData.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#### Defined in
2020

21-
[src/Provider.tsx:48](https://github.com/thirdweb-dev/react/blob/69e667e/src/Provider.tsx#L48)
21+
[src/Provider.tsx:48](https://github.com/thirdweb-dev/react/blob/7d533c7/src/Provider.tsx#L48)
2222

2323
___
2424

@@ -28,7 +28,7 @@ ___
2828

2929
#### Defined in
3030

31-
[src/Provider.tsx:51](https://github.com/thirdweb-dev/react/blob/69e667e/src/Provider.tsx#L51)
31+
[src/Provider.tsx:51](https://github.com/thirdweb-dev/react/blob/7d533c7/src/Provider.tsx#L51)
3232

3333
___
3434

@@ -38,7 +38,7 @@ ___
3838

3939
#### Defined in
4040

41-
[src/Provider.tsx:49](https://github.com/thirdweb-dev/react/blob/69e667e/src/Provider.tsx#L49)
41+
[src/Provider.tsx:49](https://github.com/thirdweb-dev/react/blob/7d533c7/src/Provider.tsx#L49)
4242

4343
___
4444

@@ -48,7 +48,7 @@ ___
4848

4949
#### Defined in
5050

51-
[src/Provider.tsx:47](https://github.com/thirdweb-dev/react/blob/69e667e/src/Provider.tsx#L47)
51+
[src/Provider.tsx:47](https://github.com/thirdweb-dev/react/blob/7d533c7/src/Provider.tsx#L47)
5252

5353
___
5454

@@ -58,4 +58,4 @@ ___
5858

5959
#### Defined in
6060

61-
[src/Provider.tsx:50](https://github.com/thirdweb-dev/react/blob/69e667e/src/Provider.tsx#L50)
61+
[src/Provider.tsx:50](https://github.com/thirdweb-dev/react/blob/7d533c7/src/Provider.tsx#L50)

0 commit comments

Comments
 (0)