-
Notifications
You must be signed in to change notification settings - Fork 299
Added minBaseFee and DA Footprint config sections #1830
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
Conversation
geoknee
left a comment
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.
Some tweaks needed.
Generally it would be better to put something under "features", because as-is we are only really helping out fresh chains which can set values at genesis. We are missing instructions for existing chains to modify / configure the feature at "runtime".
Best thing would be to put most material in "features" and then link to there from rollup deploy config.
| #### minBaseFee | ||
|
|
||
| Allows chain operators to specify a minimum base fee to help shorten the length of priority fee auctions. | ||
| The `minBaseFee` is an absolute minimum expressed in wei. | ||
| 0 disables the `minBaseFee` entirely (disabled by default). | ||
|
|
||
| * **Type:** Number | ||
| * **Default value:** 0 | ||
| * **Recommended value:** 100000 wei | ||
| * **Notes:** Setting the minimum too high may make transactions harder to get included for users. [See the specs for more detail](https://specs.optimism.io/protocol/jovian/exec-engine.html#minimum-base-fee). | ||
| * **Standard Config Requirement:** none | ||
| *** | ||
|
|
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.
This seems good!
- We should add something about how to actually configure this via the
SystemConfig. - there are some standard config requirements, pending governance jovian: add bounds for minimum base fee in standard config superchain-registry#1127
|
@geoknee I updated the stand config value requirement for minBaseFee. As for creating the more detailed feature docs for these I agree but I think it would be best to do those as seperate PR's. Wdyt? |
Description
#1710
#1742