diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-09 22:31:19 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-12 10:37:28 +0800 |
commit | ad4f60764361881f1406c16baed1f8b0d2e14c9b (patch) | |
tree | 768e2f6606a4a8d65cde2318b080460305e6239d /packages/deployer/src/utils | |
parent | c7d340e82222e090b275085cea3fffd30c7fe954 (diff) | |
download | dexon-0x-contracts-ad4f60764361881f1406c16baed1f8b0d2e14c9b.tar.gz dexon-0x-contracts-ad4f60764361881f1406c16baed1f8b0d2e14c9b.tar.zst dexon-0x-contracts-ad4f60764361881f1406c16baed1f8b0d2e14c9b.zip |
Move compiler URL to constants
Diffstat (limited to 'packages/deployer/src/utils')
-rw-r--r-- | packages/deployer/src/utils/constants.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/deployer/src/utils/constants.ts b/packages/deployer/src/utils/constants.ts index 85923448f..6f9dfb994 100644 --- a/packages/deployer/src/utils/constants.ts +++ b/packages/deployer/src/utils/constants.ts @@ -1,3 +1,4 @@ export const constants = { SOLIDITY_FILE_EXTENSION: '.sol', + BASE_COMPILER_URL: 'https://ethereum.github.io/solc-bin/bin/', }; |