Skip to content

Commit

Permalink
Added support for solc v0.8.24 (#35)
Browse files Browse the repository at this point in the history
* added support for solc v0.8.24

* added default evm version

* added cancun evm version

---------

Co-authored-by: lmittmann <[email protected]>
  • Loading branch information
lmittmann and lmittmann authored Jan 29, 2024
1 parent a91f7dd commit 7c36bb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions options.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ var (
"0.8.21": EVMVersionShanghai,
"0.8.22": EVMVersionShanghai,
"0.8.23": EVMVersionShanghai,
"0.8.24": EVMVersionShanghai,
}
)

Expand Down
1 change: 1 addition & 0 deletions params_darwin_amd64.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions params_linux_amd64.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const (
type EVMVersion string

const (
EVMVersionCancun EVMVersion = "cancun"
EVMVersionShanghai EVMVersion = "shanghai"
EVMVersionParis EVMVersion = "paris"
EVMVersionLondon EVMVersion = "london"
Expand Down

0 comments on commit 7c36bb5

Please sign in to comment.