-
Notifications
You must be signed in to change notification settings - Fork 10
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
On-chain BLS curve cryptography support #7
Comments
ZK-rollup implementations: Workarounds
Optimizations
|
Still waiting for the state of EIP-2537. It's being discussed for inclusion in the next Shanghai hardfork (see ethereum/pm#343, ethereum/pm#652), but there's still a lot of uncertainty.
This is super cool, but it's important to note that all that hard work is to compute a single pairing, while we would need to compute 2 pairings to verify each transcript, so 2*N pairings for a full DKG ritual. Perhaps it could be very useful for an optimistic verification protocol, i.e., all DKG transcripts are assumed correct unless someone posts a fault proof. In such case, the fault proof will be only for an incorrect transcripts, so the zkSNARKs approach could be applicable. Unfortunately, this is for BLS signatures on BN128 curve (which have precompiles on Ethereum), but not for BLS12-381 curve. |
This could present a very interesting design trade-off if we decide to use L1/L2 for verification. On a different note, there is a trend out there where more expressive zk proofs are being used to implement complex algorithms, and then simpler zk constructions are used to "compress" the former. Imagine rolling a STARK into a Groth16 for example. This is firmly in the R&D space thought.
According to the latest Ethereum Core Devs meeting, we need another few weeks for a final decision to be reached @cygnusv Any thoughts on this one? NethermindEth/optimized_ecc_cairo |
We decided to wait for the activation of the EIP-2537, and hence this issue is blocked. |
According to hearsay, EIP 2537 may be activated in the Pectra soft fork in late 2024. See https://www.galaxy.com/insights/research/ethereum-all-core-developers-execution-call-181/ |
Confirmed to be a part of Pectra: https://eips.ethereum.org/EIPS/eip-7600 |
Research support for running BLS curve cryptography methods on-chain, either on the Ethereum EVM (check state of EIP-2537), or other EVM-compatible rollups. The rationale for this is to verify validity of PVSS instances (i.e., DKG rituals metadata) on-chain.
The text was updated successfully, but these errors were encountered: