@@ -3,13 +3,14 @@ import { ChainId } from '@sovryn/ethers-provider';
33
44import bobLogo from '../assets/chains/bob.svg' ;
55import bscLogo from '../assets/chains/bsc.svg' ;
6+ import ethLogo from '../assets/chains/eth.svg' ;
67import rskLogo from '../assets/chains/rsk.svg' ;
78import unknownLogo from '../assets/chains/unknown.svg' ;
89import { BOB } from '../constants/infrastructure/bob' ;
910import { BSC } from '../constants/infrastructure/bsc' ;
11+ import { ETHEREUM } from '../constants/infrastructure/eth' ;
1012import { FORK } from '../constants/infrastructure/fork' ;
1113import { RSK } from '../constants/infrastructure/rsk' ;
12- import { SEPOLIA } from '../constants/infrastructure/sepolia' ;
1314import { Environments } from '../types/global' ;
1415
1516const IS_MAINNET = process . env . REACT_APP_NETWORK === Environments . Mainnet ;
@@ -57,6 +58,24 @@ export const APP_CHAIN_LIST: ChainWithLogo[] = [
5758 icon : bobLogo ,
5859 indexer : 'https://indexer.sovryn.app/v2/gobob' ,
5960 } ,
61+ {
62+ id : ChainIds . BSC_MAINNET ,
63+ label : 'BSC' ,
64+ token : 'BNB' ,
65+ publicRpcUrl : BSC . publicRpc [ Environments . Mainnet ] ,
66+ rpcUrl : BSC . rpc [ Environments . Mainnet ] ,
67+ blockExplorerUrl : BSC . explorer [ Environments . Mainnet ] ,
68+ icon : bscLogo ,
69+ } ,
70+ {
71+ id : ChainIds . MAINNET ,
72+ label : 'Ethereum' ,
73+ token : 'ETH' ,
74+ publicRpcUrl : ETHEREUM . publicRpc [ Environments . Mainnet ] ,
75+ rpcUrl : ETHEREUM . rpc [ Environments . Mainnet ] ,
76+ blockExplorerUrl : ETHEREUM . explorer [ Environments . Mainnet ] ,
77+ icon : ethLogo ,
78+ } ,
6079 ]
6180 : [
6281 {
@@ -83,10 +102,10 @@ export const APP_CHAIN_LIST: ChainWithLogo[] = [
83102 id : ChainIds . SEPOLIA ,
84103 label : 'Sepolia Testnet' ,
85104 token : 'tETH' ,
86- publicRpcUrl : SEPOLIA . publicRpc [ Environments . Testnet ] ,
87- rpcUrl : SEPOLIA . rpc [ Environments . Testnet ] ,
88- blockExplorerUrl : SEPOLIA . explorer [ Environments . Testnet ] ,
89- icon : unknownLogo ,
105+ publicRpcUrl : ETHEREUM . publicRpc [ Environments . Testnet ] ,
106+ rpcUrl : ETHEREUM . rpc [ Environments . Testnet ] ,
107+ blockExplorerUrl : ETHEREUM . explorer [ Environments . Testnet ] ,
108+ icon : ethLogo ,
90109 } ,
91110 {
92111 id : ChainIds . BSC_TESTNET ,
0 commit comments