Skip to content

Commit

Permalink
./hardhat.config.ts set runs to 200 for new Avatar size limit workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
abarbatei committed Oct 6, 2023
1 parent 9208f44 commit d9756ef
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions packages/deploy/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,22 +278,31 @@ const networks = {
const compilers = [
'0.8.21',
'0.8.19',
'0.8.18',
// '0.8.18',
'0.8.15',
'0.8.2',
'0.7.5',
'0.7.6',
'0.6.5',
'0.5.9',
].map((version) => ({
version,
settings: {
optimizer: {
enabled: true,
runs: 2000,
version,
settings: {
optimizer: {
enabled: true,
runs: 2000,
},
},
},
}));
}))
.push({
version: '0.8.18',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
});

const config = skipDeploymentsOnLiveNetworks(
addForkingSupport({
Expand Down

0 comments on commit d9756ef

Please sign in to comment.