aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/src/solc/bin_paths.ts
blob: daa17ae6c2691440aff5e44774d888b2557302df (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface BinaryPaths {
    [key: string]: string;
}

export const binPaths: BinaryPaths = {
    '0.5.1': 'soljson-v0.5.1+commit.d7688b80.js',
    '0.5.0': 'soljson-v0.5.0+commit.366fa976.js',
    '0.4.25': 'soljson-v0.4.25+commit.433aebb7.js',
};