Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(protocol): use solc 0.8.27 #18060

Merged
merged 13 commits into from
Sep 10, 2024
Merged
2 changes: 1 addition & 1 deletion packages/protocol/.solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"rules": {
"avoid-low-level-calls": "off",
"avoid-tx-origin": "off",
"compiler-version": ["error", "0.8.24"],
"compiler-version": ["error", "0.8.27"],
"func-name-mixedcase": "off",
"func-visibility": ["error", { "ignoreConstructors": true }],
"max-line-length": ["error", 120],
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ optimizer = true
optimizer_runs = 200
ffi = true
memory_limit = 2_073_741_824
solc_version = "0.8.24"
solc_version = "0.8.27"
remappings = [
"@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable/",
"openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable/",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/script/download_solc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi

mkdir -p "$(dirname "${solc_bin}")"

VERSION=v0.8.24
VERSION=v0.8.27

if [ "$(uname)" = 'Darwin' ]; then
SOLC_FILE_NAME=solc-macos
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/test/genesis/GenerateGenesis.g.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import "../../contracts/shared/signal/SignalService.sol";
import "../../contracts/layer2/based/TaikoL2.sol";
import "../shared/common/erc20/RegularERC20.sol";

contract TestGenerateGenesis is Test, AddressResolver {
contract GenerateGenesisTest is Test, AddressResolver {
dantaik marked this conversation as resolved.
Show resolved Hide resolved
using stdJson for string;

string private configJSON =
Expand Down
21 changes: 19 additions & 2 deletions pnpm-lock.yaml

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

Loading