forked from OffchainLabs/nitro
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule contracts
updated
23 files
+3 −3 | .github/workflows/contract-tests.yml | |
+2 −2 | foundry.toml | |
+4 −4 | hardhat.config.ts | |
+1 −1 | lib/automata-dcap-attestation | |
+1 −1 | lib/forge-std | |
+1 −1 | package.json | |
+14 −4 | scripts/deployEspressoTEEVerifier.ts | |
+90 −18 | src/bridge/EspressoTEEVerifier.sol | |
+30 −0 | src/bridge/IEspressoTEEVerifier.sol | |
+3 −0 | src/bridge/ISequencerInbox.sol | |
+59 −28 | src/bridge/SequencerInbox.sol | |
+0 −3 | src/libraries/Error.sol | |
+4 −1 | src/mocks/EspressoTEEVerifier.sol | |
+1 −1 | src/mocks/SequencerInboxStub.sol | |
+7 −1 | src/rollup/BridgeCreator.sol | |
+387 −399 | test/e2e/orbitChain.ts | |
+88 −38 | test/foundry/EspressoTEEVerifier.t.sol | |
+8 −43 | test/foundry/SequencerInbox.t.sol | |
+203 −0 | test/foundry/SequencerInboxTEE.t.sol | |
+ − | test/foundry/configs/incorrect_header_in_quote.bin | |
+ − | test/foundry/configs/invalid_quote.bin | |
+ − | test/foundry/configs/sequencer_inbox_attestation.bin | |
+35 −21 | yarn.lock |