-
Notifications
You must be signed in to change notification settings - Fork 285
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
precompiles: Implement EIP-2537's bls12_g2add
#995
Merged
Merged
Conversation
This file contains 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
rodiazet
added
precompiles
Related to EVM precompiles
Prague
Changes for Prague upgrade
labels
Sep 10, 2024
rodiazet
force-pushed
the
bls-g2-add
branch
2 times, most recently
from
September 10, 2024 14:41
ef84a69
to
0ec33e3
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #995 +/- ##
==========================================
+ Coverage 93.89% 93.94% +0.04%
==========================================
Files 147 147
Lines 15507 15553 +46
==========================================
+ Hits 14561 14611 +50
+ Misses 946 942 -4
Flags with carried forward coverage won't be shown. Click here to find out more.
|
chfast
reviewed
Sep 11, 2024
rodiazet
force-pushed
the
bls-g1-mul
branch
from
September 11, 2024 10:13
525eb35
to
acfc76d
Compare
rodiazet
force-pushed
the
bls-g2-add
branch
from
September 11, 2024 10:19
0ec33e3
to
2824aa9
Compare
rodiazet
force-pushed
the
bls-g1-mul
branch
4 times, most recently
from
September 11, 2024 13:08
6c6d499
to
2a99823
Compare
rodiazet
force-pushed
the
bls-g2-add
branch
2 times, most recently
from
September 11, 2024 13:36
4debcc3
to
8653852
Compare
chfast
reviewed
Sep 11, 2024
rodiazet
force-pushed
the
bls-g2-add
branch
from
September 11, 2024 13:48
8653852
to
be363c5
Compare
chfast
reviewed
Sep 11, 2024
rodiazet
force-pushed
the
bls-g2-add
branch
from
September 13, 2024 10:11
be363c5
to
ed377a1
Compare
chfast
reviewed
Sep 13, 2024
rodiazet
force-pushed
the
bls-g2-add
branch
from
September 13, 2024 12:51
ed377a1
to
cc6a4c5
Compare
Change `store` helpers naming
rodiazet
force-pushed
the
bls-g2-add
branch
from
September 13, 2024 12:55
cc6a4c5
to
d871d23
Compare
chfast
approved these changes
Sep 13, 2024
chfast
pushed a commit
that referenced
this pull request
Sep 13, 2024
Implementation of the `bls12_g2mul` precompile: E2 affine point's multiplication from BLS12-381 curve according to the EIP-2537 spec https://eips.ethereum.org/EIPS/eip-2537#abi-for-g2-multiplication. Depends on #995
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.
Implementation of the bls12_g2add precompile: E2 affine points' addition from BLS12-381 curve according to the EIP-2537 spec https://eips.ethereum.org/EIPS/eip-2537#abi-for-g2-addition.
Depends on #994