Skip to content

Commit

Permalink
update contract
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Oct 25, 2023
1 parent 9067c64 commit 35b4bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts
Submodule contracts updated 88 files
+7 −0 .env.sample.goerli
+26 −1 .github/workflows/contract-tests.yml
+3 −0 .gitignore
+3 −0 .gitmodules
+2 −0 .prettierignore
+1 −1 deploy/SequencerInbox.js
+1 −1 deploy/SequencerInboxStubCreator.js
+14 −0 foundry.toml
+19 −0 hardhat.config.ts
+1 −0 lib/forge-std
+18 −8 package.json
+5 −0 remappings.txt
+4 −0 scripts/config.ts.example
+41 −0 scripts/createERC20Rollup.ts
+13 −0 scripts/createEthRollup.ts
+65 −36 scripts/deployment.ts
+17 −0 scripts/genNetwork.ts
+45 −13 scripts/rollupCreation.ts
+132 −0 scripts/testSetup.ts
+308 −0 src/bridge/AbsBridge.sol
+356 −0 src/bridge/AbsInbox.sol
+326 −0 src/bridge/AbsOutbox.sol
+14 −243 src/bridge/Bridge.sol
+91 −0 src/bridge/ERC20Bridge.sol
+144 −0 src/bridge/ERC20Inbox.sol
+30 −0 src/bridge/ERC20Outbox.sol
+3 −14 src/bridge/IBridge.sol
+37 −0 src/bridge/IERC20Bridge.sol
+75 −0 src/bridge/IERC20Inbox.sol
+26 −0 src/bridge/IEthBridge.sol
+3 −63 src/bridge/IInbox.sol
+86 −0 src/bridge/IInboxBase.sol
+10 −0 src/bridge/IOutbox.sol
+4 −0 src/bridge/ISequencerInbox.sol
+38 −246 src/bridge/Inbox.sol
+11 −264 src/bridge/Outbox.sol
+20 −6 src/bridge/SequencerInbox.sol
+0 −3 src/libraries/Constants.sol
+18 −1 src/libraries/Error.sol
+6 −1 src/mocks/BridgeStub.sol
+36 −4 src/mocks/InboxStub.sol
+5 −3 src/mocks/SequencerInboxStub.sol
+2 −1 src/mocks/Simple.sol
+82 −0 src/mocks/UpgradeExecutorMock.sol
+5 −25 src/osp/OneStepProverHostIo.sol
+71 −0 src/rollup/AbsRollupEventInbox.sol
+71 −80 src/rollup/BridgeCreator.sol
+2 −2 src/rollup/Config.sol
+149 −0 src/rollup/DeployHelper.sol
+26 −0 src/rollup/ERC20RollupEventInbox.sol
+1 −1 src/rollup/IRollupCore.sol
+2 −0 src/rollup/IRollupEventInbox.sol
+1 −1 src/rollup/RollupAdminLogic.sol
+1 −1 src/rollup/RollupCore.sol
+163 −53 src/rollup/RollupCreator.sol
+11 −46 src/rollup/RollupEventInbox.sol
+1 −1 src/rollup/RollupLib.sol
+26 −4 src/rollup/RollupUserLogic.sol
+6 −1 src/test-helpers/BridgeTester.sol
+20 −0 src/test-helpers/EthVault.sol
+1 −1 src/test-helpers/InterfaceCompatibilityTester.sol
+6 −0 src/test-helpers/OutboxWithoutOptTester.sol
+16 −0 src/test-helpers/TestToken.sol
+265 −62 test/contract/arbRollup.spec.ts
+2 −2 test/contract/sequencerInboxForceInclude.spec.ts
+405 −0 test/e2e/erc20rollup.ts
+522 −0 test/foundry/AbsBridge.t.sol
+391 −0 test/foundry/AbsInbox.t.sol
+28 −0 test/foundry/AbsOutbox.t.sol
+317 −0 test/foundry/Bridge.t.sol
+254 −0 test/foundry/BridgeCreator.t.sol
+389 −0 test/foundry/ERC20Bridge.t.sol
+660 −0 test/foundry/ERC20Inbox.t.sol
+180 −0 test/foundry/ERC20Outbox.t.sol
+637 −0 test/foundry/Inbox.t.sol
+117 −0 test/foundry/Outbox.t.sol
+478 −0 test/foundry/RollupCreator.t.sol
+12 −0 test/foundry/util/TestUtil.sol
+10 −7 test/storage/Bridge.dot
+27 −0 test/storage/ERC20Bridge.dot
+15 −0 test/storage/ERC20Inbox.dot
+12 −0 test/storage/ERC20Outbox.dot
+6 −3 test/storage/Inbox.dot
+6 −3 test/storage/Outbox.dot
+1 −1 test/storage/RollupAdminLogic.dot
+1 −1 test/storage/RollupCore.dot
+1 −1 test/storage/RollupUserLogic.dot
+862 −824 yarn.lock

0 comments on commit 35b4bcf

Please sign in to comment.