Skip to content

Commit ba6c201

Browse files
committed
set latest solidity to 0.8.24
1 parent fc22bd7 commit ba6c201

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/remix-ide/ci/makeMockCompiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var fs = require('fs')
44
var compiler = require('solc')
55
var compilerInput = require('@remix-project/remix-solidity').CompilerInput
6-
var defaultVersion = 'soljson-v0.8.22+commit.4fc1097e.js'
6+
var defaultVersion = 'soljson-v0.8.24+commit.e11b9ed9.js'
77
const path = require('path')
88

99
compiler.loadRemoteVersion(defaultVersion, (error, solcSnapshot) => {

apps/solidity-compiler/src/app/compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { CompileTabLogic } from '@remix-ui/solidity-compiler'
99
const defaultCompilerParameters = {
1010
runs: '200',
1111
optimize: false,
12-
version: 'soljson-v0.8.22+commit.4fc1097e',
12+
version: 'soljson-v0.8.24+commit.e11b9ed9',
1313
evmVersion: null, // compiler default
1414
language: 'Solidity',
1515
useFileConfiguration: false,

libs/remix-ui/solidity-compiler/src/lib/compiler-container.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const CompilerContainer = (props: CompilerContainerProps) => {
6161
downloaded: [],
6262
compilerLicense: null,
6363
selectedVersion: null,
64-
defaultVersion: 'soljson-v0.8.22+commit.4fc1097e.js', // this default version is defined: in makeMockCompiler (for browser test)
64+
defaultVersion: 'soljson-v0.8.24+commit.e11b9ed9.js', // this default version is defined: in makeMockCompiler (for browser test)
6565
runs: '',
6666
compiledFileName: '',
6767
includeNightlies: false,

libs/remix-ui/solidity-compiler/src/lib/solidity-compiler.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const SolidityCompiler = (props: SolidityCompilerProps) => {
3939
handleHide: null
4040
},
4141
solJsonBinData: null,
42-
defaultVersion: 'soljson-v0.8.22+commit.4fc1097e.js', // this default version is defined: in makeMockCompiler (for browser test)
42+
defaultVersion: 'soljson-v0.8.24+commit.e11b9ed9.js', // this default version is defined: in makeMockCompiler (for browser test)
4343
})
4444
const [currentVersion, setCurrentVersion] = useState('')
4545
const [hideWarnings, setHideWarnings] = useState<boolean>(false)

0 commit comments

Comments
 (0)