-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Proofs of Possession as per IETF spec #1498
Comments
I think this also removes the need for @protolambda, can I get a sanity check here? |
One thing that I would like to make sure of is the impact of front running the deposit contract: If we only sign the |
Thanks Kirk, yes we are already aware of that and discussed in chat, and then a related issue and repeat of the front-running issue in the eth2 discord. We may consider another solution with 2 sigs to conform to IETF, but the status quo (sign over deposit message) seems to be the most efficient and doesn't have the front-running problem. |
Yea it's a bit of a trade-off between having two signatures and conforming vs being more efficient. |
@kirk-baird and @protolambda Thanks for your input. As was mentioned, the front running issue has been brought up by a few different people and breaks this proposal in its current form. I am really not a fan of the dual signature approach. It is conformance for the sake of conformance. Considering the signature operates as a perfectly functional PoP, it I really don't think the overhead is worth it. I will be closing this issue and sigp#1 |
This is a proposal to switch to the IETF specs' proof-of-possession.
We currently use
sign(hash_tree_root(deposit_data))
whereas the IETF spec suggests usingsign(pubkey)
. I don't see a reason not to use the "official" PoP as the signature is only used to verify possession and not for security reasons.I created a PR against @kirk-baird's BLS branch on the @sigp fork to show cleaner diffs. Have a look at it here: sigp#1
The text was updated successfully, but these errors were encountered: