-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: Cert timing bug for L2s #32
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.9; | ||
|
||
import "forge-std/Test.sol"; | ||
import "../../src/bridge/EigenDABlobVerifierL1.sol"; | ||
import "../../src/libraries/Error.sol"; | ||
import {EigenDARollupUtils} from "@eigenda/eigenda-utils/libraries/EigenDARollupUtils.sol"; | ||
import {IEigenDAServiceManager} from "@eigenda/eigenda-utils/interfaces/IEigenDAServiceManager.sol"; | ||
import {BN254} from "@eigenda/eigenda-utils/libraries/BN254.sol"; | ||
import {SequencerInboxTest} from "./SequencerInbox.t.sol"; | ||
import { | ||
ExpiredEigenDACert | ||
} from "../../src/libraries/Error.sol"; | ||
|
||
contract EigenDABlobVerifierL1Test is Test { | ||
EigenDABlobVerifierL1 public verifier; | ||
IEigenDAServiceManager dummyEigenDAServiceManager = IEigenDAServiceManager(address(138)); | ||
|
||
SequencerInboxTest inboxTest = new SequencerInboxTest(); | ||
|
||
function setUp() public { | ||
// Deploy the verifier contract with a mock EigenDA Service Manager | ||
verifier = new EigenDABlobVerifierL1(address(dummyEigenDAServiceManager)); | ||
} | ||
|
||
function testCertificateTooOld() public { | ||
( | ||
IEigenDAServiceManager.BlobHeader memory blobHeader, | ||
EigenDARollupUtils.BlobVerificationProof memory blobVerificationProof | ||
) = inboxTest.readAndParseBlobInfo(); | ||
|
||
// Set the confirmation block number to be MAX_CERTIFICATE_DRIFT + 1 | ||
blobVerificationProof.batchMetadata.confirmationBlockNumber = 0; | ||
|
||
vm.roll(101); | ||
vm.expectRevert( | ||
abi.encodeWithSelector( | ||
ExpiredEigenDACert.selector, | ||
block.number, | ||
100 | ||
) | ||
); | ||
|
||
verifier.verifyBlob( | ||
blobHeader, | ||
blobVerificationProof | ||
); | ||
} | ||
|
||
function testCertificateWithinSafetyBound() public { | ||
( | ||
IEigenDAServiceManager.BlobHeader memory blobHeader, | ||
EigenDARollupUtils.BlobVerificationProof memory blobVerificationProof | ||
) = inboxTest.readAndParseBlobInfo(); | ||
|
||
// Set the confirmation block number to be MAX_CERTIFICATE_DRIFT + 1 | ||
blobVerificationProof.batchMetadata.confirmationBlockNumber = 100; | ||
|
||
vm.roll(101); | ||
vm.expectRevert(bytes("")); | ||
|
||
verifier.verifyBlob( | ||
blobHeader, | ||
blobVerificationProof | ||
); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 epoch is about 24mins. In addition, referenceBlockNumber is not right, because it is smaller than confirmationBlockNumber. ReferenceBlockNumber is the number we used to anchor the stake used to distribute chunks to DA nodes. The time diff is the batchingInterval+75(which is some number we introduced to prevent reorg).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we stick with confirmationBlockNumber. I think 20 mins is sufficient.