aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/src/utils/constants.ts
blob: 433897f8a2497c36fbda6acc79accdb6ee3338ca (plain) (blame)
1
2
3
4
5
6
7
8
import * as path from 'path';

export const constants = {
    SOLIDITY_FILE_EXTENSION: '.sol',
    BASE_COMPILER_URL: 'https://ethereum.github.io/solc-bin/bin/',
    LATEST_ARTIFACT_VERSION: '2.0.0',
    SOLC_BIN_DIR: path.join(__dirname, '..', '..', 'solc_bin'),
};