Skip to content
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

Fix EIP2537 fixtures #3388

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/common/src/eips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,19 @@ export const EIPs: EIPsDict = {
gasConfig: {},
gasPrices: {
Bls12381G1AddGas: {
v: 600,
v: 500,
d: 'Gas cost of a single BLS12-381 G1 addition precompile-call',
},
Bls12381G1MulGas: {
v: 12000,
d: 'Gas cost of a single BLS12-381 G1 multiplication precompile-call',
},
Bls12381G2AddGas: {
v: 4500,
v: 800,
d: 'Gas cost of a single BLS12-381 G2 addition precompile-call',
},
Bls12381G2MulGas: {
v: 55000,
v: 45000,
d: 'Gas cost of a single BLS12-381 G2 multiplication precompile-call',
},
Bls12381PairingBaseGas: {
Expand All @@ -102,7 +102,7 @@ export const EIPs: EIPsDict = {
d: 'Gas cost of BLS12-381 map field element to G1',
},
Bls12381MapG2Gas: {
v: 110000,
v: 75000,
d: 'Gas cost of BLS12-381 map field element to G2',
},
},
Expand Down
Loading