Skip to content

Commit

Permalink
Merge pull request #10 from jcam1/fix-hardhat-config
Browse files Browse the repository at this point in the history
Update Solidity compiler versions
  • Loading branch information
Mameta29 authored Aug 22, 2024
2 parents 7e48a20 + 1225b71 commit f89e7e9
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions packages/v1/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,26 @@ import type { HardhatUserConfig } from 'hardhat/config';

const config: HardhatUserConfig = {
solidity: {
version: '0.8.11',
settings: {
optimizer: {
enabled: true,
runs: 3000,
compilers: [
{
version: '0.8.11',
settings: {
optimizer: {
enabled: true,
runs: 3000,
},
},
},
},
{
version: '0.4.24',
settings: {
optimizer: {
enabled: true,
runs: 3000,
},
},
},
],
},
paths: {
root: './',
Expand Down

0 comments on commit f89e7e9

Please sign in to comment.