-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Remote Signer: Electra #14477
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
Merged
Merged
Remote Signer: Electra #14477
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
e70122c
updating blockv2 to handle electra blocks
james-prysm 3d809bb
adding aggregate attesation and proof electra
james-prysm 6ca4fa6
gaz
james-prysm 759f0e7
Merge branch 'develop' into remote-signer-electra
james-prysm bed422a
changelogs
james-prysm 3eb62c9
Merge branch 'develop' into remote-signer-electra
james-prysm 767259f
Merge branch 'develop' into remote-signer-electra
james-prysm d61a796
Merge branch 'develop' into remote-signer-electra
james-prysm dd71aae
updating web3signer dependency
james-prysm 1ba4420
Merge branch 'develop' into remote-signer-electra
james-prysm 4c1e7f0
test mock was flipped
james-prysm 182749d
fixing hex value
james-prysm 0cd6050
accidently checked in dependency changes
james-prysm e14a335
Merge branch 'develop' into remote-signer-electra
james-prysm 1a4dcb1
Merge branch 'develop' into remote-signer-electra
james-prysm 5ad06d1
preston feedback
james-prysm 0cb9cf8
readding old metrics to not break linting
james-prysm a2ba49f
Merge branch 'develop' into remote-signer-electra
james-prysm 5239021
Merge branch 'develop' into remote-signer-electra
james-prysm a8b19b7
review feedback and changelog
james-prysm c4dfb00
Merge branch 'develop' into remote-signer-electra
james-prysm 08e5119
gaz
james-prysm a8d449f
Merge branch 'develop' into remote-signer-electra
james-prysm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### Added | ||
|
||
- Remote signer electra fork support. |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,7 @@ var ( | |
Name: "remote_web3signer_errored_responses_total", | ||
Help: "Total number of errored responses when calling web3signer", | ||
}) | ||
blockSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Name: "remote_web3signer_block_sign_requests_total", | ||
Help: "Total number of block sign requests", | ||
}) | ||
|
||
aggregationSlotSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Name: "remote_web3signer_aggregation_slot_requests_total", | ||
Help: "Total number of aggregation slot requests", | ||
|
@@ -30,6 +27,11 @@ var ( | |
Name: "remote_web3signer_attestation_sign_requests_total", | ||
Help: "Total number of attestation sign requests", | ||
}) | ||
//TODO: deprecate these fork specific counters in prysm v6... | ||
blockSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Name: "remote_web3signer_block_sign_requests_total", | ||
Help: "Total number of block sign requests", | ||
}) | ||
blockAltairSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Name: "remote_web3signer_block_altair_sign_requests_total", | ||
Help: "Total number of block altair sign requests", | ||
|
@@ -58,6 +60,13 @@ var ( | |
Name: "remote_web3signer_blinded_block_deneb_sign_requests_total", | ||
Help: "Total number of blinded block deneb sign requests", | ||
}) | ||
///// | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meant to be here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah just to show that it's deprecated to there |
||
|
||
remoteBlockSignRequestsTotal = promauto.NewCounterVec(prometheus.CounterOpts{ | ||
Name: "remote_block_sign_requests_total", | ||
Help: "Total number of block sign requests with fork and blinded block check", | ||
}, []string{"fork", "isBlinded"}) | ||
|
||
randaoRevealSignRequestsTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Name: "remote_web3signer_randao_reveal_sign_requests_total", | ||
Help: "Total number of randao reveal sign requests", | ||
|
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Should this one be included in the comment?
blockSignRequestsTotal
is not fork specific right?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.
it's phase 0 sign requests