-
Notifications
You must be signed in to change notification settings - Fork 3
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: Madara Compatibility #12
Conversation
Mohiiit
commented
Oct 9, 2024
- starknet rs version bump
- for declaring legacy, using the same types created in the madara
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.
Looks good to me. After starknet contract update let's test the test bridge function and then we can merge it.
@@ -108,6 +111,7 @@ pub async fn bootstrap(config: &CliArgs) -> DeployBridgeOutput { | |||
) | |||
.unwrap(); | |||
log::info!("✅ Core setup init for L1 successful."); | |||
sleep(Duration::from_secs(60)).await; |
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.
what is this sleep for?
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.
actually madara needs a l1 core contract while starting, so I run bootstraper first, get the core contract, add it to madara code, run madara, meanwhile bootstraper is sleeping
I know this is not ideal and we have to think about how to improve the devX here