File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
FOUNDRY_PROFILE =default
2
2
FORGE=FOUNDRY_PROFILE =$(FOUNDRY_PROFILE ) forge
3
3
SOLC_VERSION =0.8.24
4
+ EVM_VERSION =paris
4
5
DOCKER =docker
5
6
ABIGEN ="$(DOCKER ) run -v .:/workspace -w /workspace -it ethereum/client-go:alltools-v1.11.6 abigen"
6
7
SOLHINT =npx solhint
@@ -93,9 +94,9 @@ network-qbft:
93
94
94
95
.PHONY : deploy
95
96
deploy :
96
- TEST_UPGRADEABLE=$(TEST_UPGRADEABLE ) TEST_MNEMONIC=$(TEST_MNEMONIC ) $(FORGE ) script --legacy --batch-size 5 --use solc:${SOLC_VERSION} --fork-url http://127.0.0.1:8645 --broadcast \
97
+ TEST_UPGRADEABLE=$(TEST_UPGRADEABLE ) TEST_MNEMONIC=$(TEST_MNEMONIC ) $(FORGE ) script --legacy --batch-size 5 --use solc:${SOLC_VERSION} --evm-version ${EVM_VERSION} -- fork-url http://127.0.0.1:8645 --broadcast \
97
98
./tests/foundry/src/Deploy.s.sol
98
- TEST_UPGRADEABLE=$(TEST_UPGRADEABLE ) TEST_MNEMONIC=$(TEST_MNEMONIC ) $(FORGE ) script --legacy --batch-size 5 --use solc:${SOLC_VERSION} --fork-url http://127.0.0.1:8745 --broadcast \
99
+ TEST_UPGRADEABLE=$(TEST_UPGRADEABLE ) TEST_MNEMONIC=$(TEST_MNEMONIC ) $(FORGE ) script --legacy --batch-size 5 --use solc:${SOLC_VERSION} --evm-version ${EVM_VERSION} -- fork-url http://127.0.0.1:8745 --broadcast \
99
100
./tests/foundry/src/Deploy.s.sol
100
101
101
102
.PHONY : network-down
You can’t perform that action at this time.
0 commit comments