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: Bump contracts and system-contracts submodules #160

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts
Submodule contracts updated 37 files
+106 −6 .github/workflows/ci.yml
+11 −0 ethereum/contracts/dev-contracts/EventOnFallback.sol
+45 −0 ethereum/contracts/dev-contracts/test/ExecutorProvingTest.sol
+57 −0 ethereum/contracts/dev-contracts/test/ReenterGovernance.sol
+52 −45 ethereum/contracts/dev-contracts/test/VerifierRecursiveTest.sol
+52 −45 ethereum/contracts/dev-contracts/test/VerifierTest.sol
+1 −2 ethereum/contracts/governance/Governance.sol
+2 −2 ethereum/contracts/zksync/Config.sol
+38 −34 ethereum/contracts/zksync/DiamondInit.sol
+1 −1 ethereum/contracts/zksync/ValidatorTimelock.sol
+34 −34 ethereum/contracts/zksync/Verifier.sol
+2 −4 ethereum/contracts/zksync/facets/Executor.sol
+2 −1 ethereum/package.json
+27 −18 ethereum/src.ts/deploy.ts
+96 −0 ethereum/test/foundry/unit/concrete/Governance/Authorization.t.sol
+283 −0 ethereum/test/foundry/unit/concrete/Governance/Executing.t.sol
+17 −0 ethereum/test/foundry/unit/concrete/Governance/Fallback.t.sol
+193 −0 ethereum/test/foundry/unit/concrete/Governance/OperationStatus.t.sol
+149 −0 ethereum/test/foundry/unit/concrete/Governance/Reentrancy.t.sol
+53 −0 ethereum/test/foundry/unit/concrete/Governance/SelfUpgrades.t.sol
+64 −0 ethereum/test/foundry/unit/concrete/Governance/_Governance_Shared.t.sol
+58 −0 ethereum/test/unit_tests/executor_proof.spec.ts
+17 −15 ethereum/test/unit_tests/l1_erc20_bridge_test.spec.ts
+17 −15 ethereum/test/unit_tests/l1_weth_bridge_test.spec.ts
+14 −12 ethereum/test/unit_tests/l2-upgrade.test.spec.ts
+17 −15 ethereum/test/unit_tests/mailbox_test.spec.ts
+14 −12 ethereum/test/unit_tests/proxy_test.spec.ts
+92 −92 ethereum/test/unit_tests/verifier.spec.ts
+2 −0 tools/Cargo.toml
+6 −0 tools/README.md
+129 −129 tools/data/scheduler_key.json
+201 −172 tools/data/verifier_contract_template.txt
+8 −8 tools/src/main.rs
+6 −2 zksync/hardhat.config.ts
+5 −2 zksync/package.json
+118 −0 zksync/test/weth.test.ts
+411 −7 zksync/yarn.lock
2 changes: 1 addition & 1 deletion etc/system-contracts
Submodule system-contracts updated 43 files
+1 −1 contracts/AccountCodeStorage.sol
+3 −1 contracts/EventWriter.yul
+3 −1 contracts/precompiles/EcAdd.yul
+3 −1 contracts/precompiles/EcMul.yul
+3 −1 contracts/precompiles/Ecrecover.yul
+3 −1 contracts/precompiles/Keccak256.yul
+3 −1 contracts/precompiles/SHA256.yul
+19 −0 contracts/test-contracts/Callable.sol
+19 −0 contracts/test-contracts/Deployable.sol
+11 −0 contracts/test-contracts/DummyUpgrade.sol
+31 −0 contracts/test-contracts/EventWriterTest.sol
+16 −0 contracts/test-contracts/MockERC20Approve.sol
+19 −0 contracts/test-contracts/MockKnownCodesStorage.sol
+16 −0 contracts/test-contracts/MockL1Messenger.sol
+30 −0 contracts/test-contracts/NotSystemCaller.sol
+25 −0 contracts/test-contracts/SystemCaller.sol
+0 −11 contracts/tests/Counter.sol
+0 −13 contracts/tests/TransactionHelperTest.sol
+15 −2 hardhat.config.ts
+5 −3 package.json
+3 −3 scripts/compile-yul.ts
+15 −0 scripts/quick-setup.sh
+225 −0 test/AccountCodeStorage.spec.ts
+182 −0 test/BootloaderUtilities.spec.ts
+49 −0 test/ComplexUpgrader.spec.ts
+533 −0 test/Compressor.spec.ts
+548 −0 test/ContractDeployer.spec.ts
+377 −0 test/DefaultAccount.spec.ts
+188 −0 test/EcAdd.spec.ts
+399 −0 test/EcMul.spec.ts
+44 −0 test/EmptyContract.spec.ts
+82 −0 test/EventWriter.spec.ts
+64 −0 test/ImmutableSimulator.spec.ts
+157 −0 test/KnownCodesStorage.spec.ts
+14 −0 test/shared/constants.ts
+146 −0 test/shared/transactions.ts
+133 −0 test/shared/utils.ts
+0 −51 test/system-contract-test.test.ts
+0 −295 test/utils/DiamonCutFacet.json
+0 −446 test/utils/DiamondUpgradeInit.json
+0 −1,841 test/utils/IZkSync.json
+0 −141 test/utils/deployOnAnyAddress.ts
+88 −19 yarn.lock