From 3f962585e9924a88082e91153cf3347922046941 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 23 Jun 2017 12:03:40 +0200 Subject: Refactor KOVAN_URL to constants and fetch mnemonic from package.json --- test/utils/constants.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'test/utils/constants.ts') diff --git a/test/utils/constants.ts b/test/utils/constants.ts index aa1967f88..8211eea00 100644 --- a/test/utils/constants.ts +++ b/test/utils/constants.ts @@ -2,4 +2,5 @@ export const constants = { NULL_ADDRESS: '0x0000000000000000000000000000000000000000', RPC_HOST: 'localhost', RPC_PORT: 8545, + KOVAN_URL: 'https://kovan.0xproject.com', }; -- cgit v1.2.3 From 75ae305a6e95a775497c971b4d40c1757abba25f Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 23 Jun 2017 17:10:43 +0200 Subject: Rename KOVAN_URL to KOVAN_RPC_URL --- test/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/utils/constants.ts') diff --git a/test/utils/constants.ts b/test/utils/constants.ts index 8211eea00..9b150b5c1 100644 --- a/test/utils/constants.ts +++ b/test/utils/constants.ts @@ -2,5 +2,5 @@ export const constants = { NULL_ADDRESS: '0x0000000000000000000000000000000000000000', RPC_HOST: 'localhost', RPC_PORT: 8545, - KOVAN_URL: 'https://kovan.0xproject.com', + KOVAN_RPC_URL: 'https://kovan.0xproject.com', }; -- cgit v1.2.3