Skip to content

Commit 54f632a

Browse files
committed
Use Solidity 0.8.27 as default and set default EVM to prague
1 parent c39d5f5 commit 54f632a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[profile.default]
2-
solc_version = '0.8.24'
2+
solc_version = '0.8.27'
33
evm_version = 'prague'
44
optimizer = true
55
optimizer-runs = 200

hardhat.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const { argv } = require('yargs/yargs')()
1818
compiler: {
1919
alias: 'compileVersion',
2020
type: 'string',
21-
default: '0.8.24',
21+
default: '0.8.27',
2222
},
2323
src: {
2424
alias: 'source',
@@ -38,7 +38,7 @@ const { argv } = require('yargs/yargs')()
3838
evm: {
3939
alias: 'evmVersion',
4040
type: 'string',
41-
default: 'cancun',
41+
default: 'prague',
4242
},
4343
// Extra modules
4444
coverage: {

0 commit comments

Comments
 (0)