Skip to content

Commit

Permalink
bump contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
kelemeno committed May 20, 2024
1 parent 745f2c3 commit 6135017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts
Submodule contracts updated 56 files
+0 −0 .github/workflows/build-release.yaml
+0 −50 .github/workflows/buld-release.yaml
+9 −8 .github/workflows/l1-contracts-foundry-ci.yaml
+3 −1 .github/workflows/slither.yaml
+51 −0 gas-bound-caller/README.md
+1 −0 gas-bound-caller/canonical-bytecodes/GasBoundCaller
+27 −8 gas-bound-caller/contracts/GasBoundCaller.sol
+61 −0 gas-bound-caller/contracts/ISystemContext.sol
+35 −6 gas-bound-caller/contracts/test-contracts/GasBoundCallerTester.sol
+355 −0 gas-bound-caller/contracts/test-contracts/SystemContractHelper.sol
+268 −0 gas-bound-caller/contracts/test-contracts/SystemContractsCaller.sol
+62 −0 gas-bound-caller/hardhat.config.ts
+60 −0 gas-bound-caller/package.json
+42 −0 gas-bound-caller/scripts/check-canonical-bytecode.ts
+104 −0 gas-bound-caller/scripts/deploy-on-hyperchain.ts
+11 −0 gas-bound-caller/scripts/utils.ts
+22 −14 gas-bound-caller/test/GasBoundCaller.spec.ts
+4 −3 l1-contracts-foundry/foundry.toml
+3 −10 l1-contracts-foundry/script-config-template/config-deploy-l1.toml
+3 −0 l1-contracts-foundry/script-config-template/config-deploy-paymaster.toml
+6 −0 l1-contracts-foundry/script-config-template/config-initialize-shared-bridges.toml
+12 −0 l1-contracts-foundry/script-config-template/register-hyperchain.toml
+57 −0 l1-contracts-foundry/script/AcceptAdmin.s.sol
+25 −8 l1-contracts-foundry/script/DeployL1.s.sol
+60 −0 l1-contracts-foundry/script/DeployPaymaster.s.sol
+1 −1 l1-contracts-foundry/script/InitializeL2WethToken.s.sol
+158 −0 l1-contracts-foundry/script/InitializeSharedBridgeOnL2.sol
+97 −174 l1-contracts-foundry/script/RegisterHyperchain.s.sol
+164 −2 l1-contracts-foundry/script/Utils.sol
+4 −4 l1-contracts/contracts/state-transition/Verifier.sol
+3 −0 l1-contracts/contracts/state-transition/chain-deps/facets/Executor.sol
+15 −8 l1-contracts/scripts/governance-accept-ownership.ts
+4 −2 l1-contracts/scripts/hyperchain-upgrade-1.ts
+2 −1 l1-contracts/scripts/hyperchain-upgrade-2.ts
+3 −2 l1-contracts/scripts/hyperchain-upgrade-3.ts
+2 −2 l1-contracts/scripts/token-migration.ts
+39 −83 l1-contracts/scripts/upgrade-consistency-checker.ts
+135 −18 l1-contracts/scripts/verify.ts
+3 −1 l1-contracts/src.ts/deploy-utils.ts
+32 −8 l1-contracts/src.ts/deploy.ts
+178 −274 l1-contracts/src.ts/hyperchain-upgrade.ts
+16 −16 l1-contracts/test/test_config/constant/hardhat.json
+13 −10 l2-contracts/contracts/bridge/L2SharedBridge.sol
+2 −0 l2-contracts/contracts/bridge/interfaces/IL2SharedBridge.sol
+33 −0 l2-contracts/contracts/dev-contracts/DevL2SharedBridge.sol
+1 −1 l2-contracts/hardhat.config.ts
+53 −20 l2-contracts/src/deploy-shared-bridge-on-l2-through-l1.ts
+2 −2 l2-contracts/src/upgrade-consistency-checker.ts
+2 −1 l2-contracts/src/verify.ts
+4 −2 package.json
+0 −7 system-contracts/SystemContractsHashes.json
+8 −0 system-contracts/hardhat.config.ts
+3 −1 system-contracts/scripts/compile-yul.ts
+1 −1 system-contracts/scripts/deploy-preimages.ts
+16 −16 tools/data/scheduler_key.json
+5 −0 yarn.lock

0 comments on commit 6135017

Please sign in to comment.