Skip to content

Commit

Permalink
common: fix eip2537 gas schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem-brouwer committed May 1, 2024
1 parent 55a8e66 commit 8106859
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 8106859

Please sign in to comment.