Skip to content

Commit

Permalink
feat: update contracts to euclid version
Browse files Browse the repository at this point in the history
  • Loading branch information
omerfirmak committed Feb 16, 2025
1 parent ee9a604 commit a2860b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scroll-contracts
Submodule scroll-contracts updated 49 files
+1 −1 .github/workflows/contracts.yml
+65 −0 .github/workflows/docker-release.yml
+3 −3 foundry.toml
+3 −3 hardhat-test/ZkEvmVerifierV1.spec.ts
+155 −0 hardhat-test/ZkEvmVerifierV2.spec.ts
+ hardhat-test/testdata/plonk-verifier/v0.12.0-rc.2_pi.data
+ hardhat-test/testdata/plonk-verifier/v0.12.0-rc.2_proof.data
+ hardhat-test/testdata/plonk-verifier/v0.12.0-rc.3_pi.data
+ hardhat-test/testdata/plonk-verifier/v0.12.0-rc.3_proof.data
+ hardhat-test/testdata/plonk-verifier/v0.9.8_pi.data
+ hardhat-test/testdata/plonk-verifier/v0.9.8_proof.data
+7 −0 src/L1/L1ScrollMessenger.sol
+6 −2 src/L1/gateways/L1CustomERC20Gateway.sol
+82 −0 src/L1/gateways/L1ReverseCustomERC20Gateway.sol
+3 −3 src/L1/rollup/IL1MessageQueue.sol
+4 −49 src/L1/rollup/IScrollChain.sol
+5 −5 src/L1/rollup/L1MessageQueue.sol
+1 −1 src/L1/rollup/L1MessageQueueWithGasPriceOracle.sol
+3 −3 src/L1/rollup/MultipleVersionRollupVerifier.sol
+228 −461 src/L1/rollup/ScrollChain.sol
+8 −7 src/L2/gateways/L2CustomERC20Gateway.sol
+120 −0 src/L2/gateways/L2ReverseCustomERC20Gateway.sol
+10 −2 src/libraries/codec/BatchHeaderV3Codec.sol
+5 −5 src/libraries/verifier/IRollupVerifier.sol
+3 −3 src/libraries/verifier/IZkEvmVerifier.sol
+100 −0 src/libraries/verifier/ZkEvmVerifierPostEuclid.sol
+57 −46 src/libraries/verifier/ZkEvmVerifierV2.sol
+ src/libraries/verifier/plonk-verifier/plonk_verifier_v0.12.0-rc.2.bin
+ src/libraries/verifier/plonk-verifier/plonk_verifier_v0.12.0-rc.3.bin
+ src/libraries/verifier/plonk-verifier/plonk_verifier_v0.9.8.bin
+42 −0 src/mocks/ScrollChainMockBlob.sol
+10 −69 src/mocks/ScrollChainMockFinalize.sol
+35 −23 src/test/L1CustomERC20Gateway.t.sol
+2 −2 src/test/L1ERC1155Gateway.t.sol
+2 −2 src/test/L1ERC721Gateway.t.sol
+1 −1 src/test/L1ETHGateway.t.sol
+20 −17 src/test/L1GatewayTestBase.t.sol
+13 −13 src/test/L1MessageQueue.t.sol
+413 −0 src/test/L1ReverseCustomERC20Gateway.t.sol
+3 −3 src/test/L1ScrollMessengerTest.t.sol
+1 −1 src/test/L1StandardERC20Gateway.t.sol
+1 −1 src/test/L1WETHGateway.t.sol
+27 −11 src/test/L2CustomERC20Gateway.t.sol
+450 −0 src/test/L2ReverseCustomERC20Gateway.t.sol
+620 −1,562 src/test/ScrollChain.t.sol
+1 −0 src/test/WithdrawTrieVerifier.t.sol
+9 −9 src/test/batch-bridge/L1BatchBridgeGateway.t.sol
+1 −1 src/test/lido/L1LidoGateway.t.sol
+1 −1 src/test/mocks/MockRollupVerifier.sol

0 comments on commit a2860b7

Please sign in to comment.