aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/settings/networks-tab/networks-tab.constants.js
blob: 6bcf5c802b1622f49aa40fedaa036580d9bfad52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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: 'kovan',
  //   iconColor: '#9064FF',
  //   providerType: 'kovan',
  //   rpcUrl: 'https://api.infura.io/v1/jsonrpc/kovan',
  //   chainId: '4',
  //   ticker: 'ETH',
  //   blockExplorerUrl: 'https://etherscan.io',
  // },
  // {
  //   labelKey: 'rinkeby',
  //   iconColor: '#F6C343',
  //   providerType: 'rinkeby',
  //   rpcUrl: 'https://api.infura.io/v1/jsonrpc/rinkeby',
  //   chainId: '42',
  //   ticker: 'ETH',
  //   blockExplorerUrl: 'https://rinkeby.etherscan.io',
  // },
  // {
  //   labelKey: 'goerli',
  //   iconColor: '#3099f2',
  //   providerType: 'goerli',
  //   rpcUrl: 'https://api.infura.io/v1/jsonrpc/goerli',
  //   chainId: '5',
  //   ticker: 'ETH',
  //   blockExplorerUrl: 'https://goerli.etherscan.io',
  // },
  {
    labelKey: 'tangerine_testnet',
    iconColor: '#FF4A8D',
    providerType: 'tangerine_testnet',
    rpcUrl: 'https://testnet-rpc.tangerine-network.io',
    chainId: '374',
    ticker: 'TAN',
    blockExplorerUrl: 'https://testnet.tangerine.garden',
  },
  {
    labelKey: 'localhost',
    iconColor: 'white',
    border: '1px solid #6A737D',
    providerType: 'localhost',
    rpcUrl: 'http://localhost:8545/',
    blockExplorerUrl: 'https://etherscan.io',
  },
]

export {
  defaultNetworksData,
}