2019-05-09 19:27:14 +02:00
|
|
|
const defaultNetworksData = [
|
|
|
|
{
|
|
|
|
labelKey: 'mainnet',
|
|
|
|
iconColor: '#29B6AF',
|
|
|
|
providerType: 'mainnet',
|
|
|
|
rpcUrl: 'https://api.infura.io/v1/jsonrpc/mainnet',
|
|
|
|
chainId: '1',
|
|
|
|
ticker: 'ETH',
|
|
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
labelKey: 'ropsten',
|
|
|
|
iconColor: '#FF4A8D',
|
|
|
|
providerType: 'ropsten',
|
|
|
|
rpcUrl: 'https://api.infura.io/v1/jsonrpc/ropsten',
|
|
|
|
chainId: '3',
|
|
|
|
ticker: 'ETH',
|
|
|
|
blockExplorerUrl: 'https://ropsten.etherscan.io',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
labelKey: 'rinkeby',
|
|
|
|
iconColor: '#F6C343',
|
|
|
|
providerType: 'rinkeby',
|
|
|
|
rpcUrl: 'https://api.infura.io/v1/jsonrpc/rinkeby',
|
2020-01-08 15:56:56 +01:00
|
|
|
chainId: '4',
|
2019-05-09 19:27:14 +02:00
|
|
|
ticker: 'ETH',
|
|
|
|
blockExplorerUrl: 'https://rinkeby.etherscan.io',
|
|
|
|
},
|
2019-06-17 16:05:47 +02:00
|
|
|
{
|
|
|
|
labelKey: 'goerli',
|
|
|
|
iconColor: '#3099f2',
|
|
|
|
providerType: 'goerli',
|
|
|
|
rpcUrl: 'https://api.infura.io/v1/jsonrpc/goerli',
|
|
|
|
chainId: '5',
|
|
|
|
ticker: 'ETH',
|
|
|
|
blockExplorerUrl: 'https://goerli.etherscan.io',
|
|
|
|
},
|
2020-01-08 15:56:56 +01:00
|
|
|
{
|
|
|
|
labelKey: 'kovan',
|
|
|
|
iconColor: '#9064FF',
|
|
|
|
providerType: 'kovan',
|
|
|
|
rpcUrl: 'https://api.infura.io/v1/jsonrpc/kovan',
|
|
|
|
chainId: '42',
|
|
|
|
ticker: 'ETH',
|
|
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
|
|
},
|
2019-05-09 19:27:14 +02:00
|
|
|
{
|
|
|
|
labelKey: 'localhost',
|
|
|
|
iconColor: 'white',
|
|
|
|
border: '1px solid #6A737D',
|
|
|
|
providerType: 'localhost',
|
|
|
|
rpcUrl: 'http://localhost:8545/',
|
|
|
|
blockExplorerUrl: 'https://etherscan.io',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
export {
|
|
|
|
defaultNetworksData,
|
|
|
|
}
|