Add slashes to base URLs

This commit is contained in:
Leonid Logvinov 2017-12-20 16:24:56 +01:00
parent 396e3d3ec2
commit 5d4078bcf4
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -1,11 +1,11 @@
export const constants = { export const constants = {
NULL_ADDRESS: '0x0000000000000000000000000000000000000000', NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
RPC_URL: 'http://localhost:8545', RPC_URL: 'http://localhost:8545/',
ROPSTEN_NETWORK_ID: 3, ROPSTEN_NETWORK_ID: 3,
KOVAN_NETWORK_ID: 42, KOVAN_NETWORK_ID: 42,
TESTRPC_NETWORK_ID: 50, TESTRPC_NETWORK_ID: 50,
KOVAN_RPC_URL: 'https://kovan.infura.io', KOVAN_RPC_URL: 'https://kovan.infura.io/',
ROPSTEN_RPC_URL: 'https://ropsten.infura.io', ROPSTEN_RPC_URL: 'https://ropsten.infura.io/',
ZRX_DECIMALS: 18, ZRX_DECIMALS: 18,
GAS_ESTIMATE: 500000, GAS_ESTIMATE: 500000,
}; };