Skip to content

Commit

Permalink
fix: update compiler version to support 0.8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Dec 5, 2023
1 parent 82346d0 commit 7d78545
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const compilers = {
}
},
{
version: '0.8.17',
version: '0.6.6',
settings: {
optimizer: {
enabled: true,
Expand All @@ -47,7 +47,7 @@ const compilers = {
},
},
{
version: '0.8.13',
version: '0.8.17',
settings: {
optimizer: {
enabled: true,
Expand All @@ -60,18 +60,18 @@ const compilers = {
},
},
{
version: '0.6.6',
version: '0.8.20',
settings: {
optimizer: {
enabled: !process.env.CI,
enabled: true,
},
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
}
],
}

Expand Down

0 comments on commit 7d78545

Please sign in to comment.