-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(eigen-client-m1): Add dummy bridge #41
base: eigen-client-m1
Are you sure you want to change the base?
Conversation
import {DummyVectorX} from "./DummyVectorX.sol"; | ||
|
||
contract DummyEigenDABridge is IEigenDABridge { | ||
IVectorx public vectorxContract; |
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.
don't call it vectorx since it will not use it
vectorxContract = new DummyVectorX(); | ||
} | ||
|
||
function vectorx() external view returns (IVectorx) { |
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.
same here
|
||
pragma solidity 0.8.24; | ||
|
||
import {IVectorx} from "./IVectorx.sol"; |
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.
same here
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.
It is wrong to use vectorx since that will not be used.
@juanbono done! |
What ❔
This PR adds EigenDA connection to the to be implemented bridge, with a dummy bridge that accepts all batches
Related to: lambdaclass/zksync-era#381
Why ❔
Checklist