-
Notifications
You must be signed in to change notification settings - Fork 84
V3 support #117
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
base: master
Are you sure you want to change the base?
V3 support #117
Conversation
This reverts commit 6e03e48.
scripts/config.ts
Outdated
@@ -292,7 +298,7 @@ function writeConfigs(argv: any) { | |||
if (argv.simple) { | |||
let simpleConfig = JSON.parse(baseConfJSON) | |||
simpleConfig.node.staker.enable = true | |||
simpleConfig.node.staker["use-smart-contract-wallet"] = true | |||
simpleConfig.node.staker["use-smart-contract-wallet"] = false |
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.
TODO: use-smart-contract-wallet is not working because nitro send gas estimate from address(0), so 1) it required address(0) to have eth AND 2) address(0) calling the validator wallet will revert with NotExecutorOrOwner
* chore: remove bold upgrader * feat: deploy stylue deployer using create2 * fix: log * chore: use v3.1.0 bytecode * chore: import nitro-contract 3.1.0
I think we can merge this and resolve the outstanding TODOs 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.
LGTM.
Summarizing the open issues (we can potentially tackle these in a different PR):
- Issues with use-smart-contract-wallet : pointed out in this comment
- Issues with gas estimations sent from address 0x0. A workaround is in place here.
- This PR pins geth version to v1.14.13
release
but notmaster