You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
const defaultNetworksData = [
|
|
{
|
|
labelKey: 'mainnet',
|
|
iconColor: '#29B6AF',
|
|
providerType: 'mainnet',
|
|
rpcUrl: `https://mainnet.infura.io/v3/${process.env.INFURA_PROJECT_ID}`,
|
|
chainId: '1',
|
|
ticker: 'ETH',
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
},
|
|
{
|
|
labelKey: 'ropsten',
|
|
iconColor: '#FF4A8D',
|
|
providerType: 'ropsten',
|
|
rpcUrl: `https://ropsten.infura.io/v3/${process.env.INFURA_PROJECT_ID}`,
|
|
chainId: '3',
|
|
ticker: 'ETH',
|
|
blockExplorerUrl: 'https://ropsten.etherscan.io',
|
|
},
|
|
{
|
|
labelKey: 'rinkeby',
|
|
iconColor: '#F6C343',
|
|
providerType: 'rinkeby',
|
|
rpcUrl: `https://rinkeby.infura.io/v3/${process.env.INFURA_PROJECT_ID}`,
|
|
chainId: '4',
|
|
ticker: 'ETH',
|
|
blockExplorerUrl: 'https://rinkeby.etherscan.io',
|
|
},
|
|
{
|
|
labelKey: 'goerli',
|
|
iconColor: '#3099f2',
|
|
providerType: 'goerli',
|
|
rpcUrl: `https://goerli.infura.io/v3/${process.env.INFURA_PROJECT_ID}`,
|
|
chainId: '5',
|
|
ticker: 'ETH',
|
|
blockExplorerUrl: 'https://goerli.etherscan.io',
|
|
},
|
|
{
|
|
labelKey: 'kovan',
|
|
iconColor: '#9064FF',
|
|
providerType: 'kovan',
|
|
rpcUrl: `https://kovan.infura.io/v3/${process.env.INFURA_PROJECT_ID}`,
|
|
chainId: '42',
|
|
ticker: 'ETH',
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
},
|
|
{
|
|
labelKey: 'localhost',
|
|
iconColor: 'white',
|
|
border: '1px solid #6A737D',
|
|
providerType: 'localhost',
|
|
rpcUrl: 'http://localhost:8545/',
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
},
|
|
]
|
|
|
|
export {
|
|
defaultNetworksData,
|
|
}
|
|
|