Skip to content

Commit ac8bd4b

Browse files
authored
bump soljson version to 0.8.17 (#174)
1 parent 7689d12 commit ac8bd4b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/solcWorker.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { compilerVersion } from 'util/compiler'
22

33
importScripts(`https://binaries.soliditylang.org/bin/${compilerVersion}.js`)
4+
var assert = require('assert')
45

56
// Code extracted from https://github.com/ethereum/solc-js/blob/{compilerVersion}/wrapper.js
67
const alloc = cwrap('solidity_alloc', 'number', ['number'])

util/compiler.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { BN } from 'ethereumjs-util'
22
import { IInstruction, IReferenceItem } from 'types'
33

44
// Version here: https://github.com/ethereum/solc-bin/blob/gh-pages/bin/list.txt
5-
export const compilerSemVer = 'v0.8.15'
6-
export const compilerVersion = `soljson-${compilerSemVer}+commit.e14f2714`
5+
export const compilerSemVer = 'v0.8.17'
6+
export const compilerVersion = `soljson-${compilerSemVer}+commit.8df45f5f`
77

88
/**
99
* Gets target EVM version from a hardfork name

0 commit comments

Comments
 (0)