From 2a9f9a50c4c5b918207e0fcd84dddb18bf2a8ec6 Mon Sep 17 00:00:00 2001 From: Michael Bumann Date: Wed, 8 Feb 2017 19:22:16 +0800 Subject: [PATCH] use public infura ETH node in production -still on ropsten --- config/environment.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/environment.js b/config/environment.js index 98d2bbe..77dd642 100644 --- a/config/environment.js +++ b/config/environment.js @@ -46,6 +46,8 @@ module.exports = function(environment) { } if (environment === 'production') { + ENV.ethereumChain = 'testnet'; + ENV.web3ProviderUrl = 'https://ropsten.infura.io'; } return ENV;