aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/config.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-29 01:53:51 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-29 01:53:51 +0800
commit9b43ec2278a5647c427c426ed798ab90bbf093cc (patch)
tree52223352efe509619e86e3a92aa4e5df3ff13eeb /app/scripts/config.js
parentdaaac17be20faf3f53f3a4b04d70504ebf894568 (diff)
downloadtangerine-wallet-browser-9b43ec2278a5647c427c426ed798ab90bbf093cc.tar.gz
tangerine-wallet-browser-9b43ec2278a5647c427c426ed798ab90bbf093cc.tar.zst
tangerine-wallet-browser-9b43ec2278a5647c427c426ed798ab90bbf093cc.zip
Add eth classic to provider menu
Diffstat (limited to 'app/scripts/config.js')
-rw-r--r--app/scripts/config.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/scripts/config.js b/app/scripts/config.js
index f26e6778d..5f6ffd936 100644
--- a/app/scripts/config.js
+++ b/app/scripts/config.js
@@ -1,12 +1,14 @@
const MAINET_RPC_URL = 'https://mainnet.infura.io/'
const TESTNET_RPC_URL = 'https://morden.infura.io/'
const DEFAULT_RPC_URL = TESTNET_RPC_URL
+const CLASSIC_RPC_URL = 'https://mainnet-nf.infura.io/'
module.exports = {
network: {
default: DEFAULT_RPC_URL,
mainnet: MAINET_RPC_URL,
testnet: TESTNET_RPC_URL,
+ classic: CLASSIC_RPC_URL,
},
}