Merge pull request #771 from matiu/config/bch-insight

update config URLs
This commit is contained in:
Matias Alejo Garcia 2018-03-13 10:20:29 -04:00 committed by GitHub
commit 0f0d605a3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -54,9 +54,15 @@ var config = {
livenet: { livenet: {
provider: 'insight', provider: 'insight',
//url: 'https://cashexplorer.bitcoin.com', //url: 'https://cashexplorer.bitcoin.com',
url: 'http://localhost:2001', url: 'https://bch-insight.bitpay.com:443',
translateAddresses: false, translateAddresses: true,
}, },
testnet: {
provider: 'insight',
url: 'https://test-bch-insight.bitpay.com:443',
translateAddresses: true,
},
}, },
}, },
pushNotificationsOpts: { pushNotificationsOpts: {

View File

@ -18,7 +18,8 @@ var PROVIDERS = {
'testnet': 'https://test-insight.bitpay.com:443', 'testnet': 'https://test-insight.bitpay.com:443',
}, },
'bch': { 'bch': {
'livenet': 'https://insight.bitpay.com:443', 'livenet': 'https://bch-insight.bitpay.com:443',
'testnet': 'https://test-bch-insight.bitpay.com:443',
}, },
}, },
}; };