-
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: Adding some extra config to config.sh
script
#151
Conversation
Guide I used for deploying from this branch: |
"daChallengeWindow": 160, | ||
"daResolveWindow": 160, | ||
"daBondSize": 1000000, | ||
"daResolverRefundPercentage": 0 |
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.
I'm not sure if there's a use case for it, but you could add deployCeloContracts
here as well.
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.
Left one optional remark, looks good otherwise.
Included Fjord hardfork
Adding deployCeloContracts config
"gasPriceOracleScalar": 1000000, | ||
|
||
"enableGovernance": true, | ||
"deployCeloContracts": true, |
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.
Is this to use together with migrated state? Then it should default to 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.
Good to know, I'll add as a .envrc
variable then
Adding some additional exposure to
config.sh
script to expose on.envrc
configurations that may be interesting to consider when deploying a new testnet.Also included a small fix on Makefile caused by a dead npm script: ethereum-optimism#10821