app: generate proposer config file for validator clients - #4700
Open
KaloyanTanev wants to merge 2 commits into
Open
KaloyanTanev wants to merge 2 commits into
KaloyanTanev wants to merge 2 commits into
Conversation
7 tasks
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4700 +/- ##
==========================================
+ Coverage 65.52% 65.53% +0.01%
==========================================
Files 246 247 +1
Lines 30062 30158 +96
==========================================
+ Hits 19698 19765 +67
- Misses 10363 10392 +29
Partials 1 1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
KaloyanTanev
force-pushed
the
kalo/proposer-config-file
branch
2 times, most recently
from
September 16, 2026 08:32
83ba861 to
1de4d2d
Compare
KaloyanTanev
force-pushed
the
kalo/proposer-config-file
branch
5 times, most recently
from
September 16, 2026 13:23
14c4e61 to
24ac4dc
Compare
KaloyanTanev
force-pushed
the
kalo/proposer-config-file
branch
from
September 16, 2026 14:09
24ac4dc to
7113345
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Generates a
proposer-config.jsonfile in avc-configdirectory next to the cluster lock on startup: created if missing, never modified afterwards. The file uses a charon-defined canonical schema (version: 1, modelled on the proposer settings format minus its pre-gloas legacy fields):default_configcarries the per-field majorityfee_recipientandgas_limitacross this node's validator shares (from charon's effective builder registrations, including operator overrides, falling back to the lock), andproposer_configonly lists validators diverging from it, carrying only the diverging fields. Per validator client adapters (the CDVN wrapper scripts) render each client's native format from it.From the gloas fork, validator clients sign the fee recipient and gas limit into
SignedProposerPreferences, so VCs must be configured with the cluster values instead of relying on charon overriding them (see #4692 for the full design). Generation is best-effort: failures are logged and never prevent duties. Also adds aGasLimitaccessor toBuilderRegistrationServiceand rejects builder registration overrides with a zero gas limit.category: feature
ticket: #4692