We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1c864 commit 00e2930Copy full SHA for 00e2930
packages/evm/src/opcodes/codes.ts
@@ -346,13 +346,13 @@ const eipOpcodes: { eip: number; opcodes: OpcodeEntry }[] = [
346
eip: 6690,
347
opcodes: {
348
// control & i/o
349
- 0xc0: asyncAndDynamicGasOp('SETMODX'),
350
- 0xc1: asyncAndDynamicGasOp('LOADX'),
351
- 0xc2: asyncAndDynamicGasOp('STOREX'),
+ 0xc0: dynamicGasOp('SETMODX'),
+ 0xc1: dynamicGasOp('LOADX'),
+ 0xc2: dynamicGasOp('STOREX'),
352
// arithmetic
353
- 0xc3: asyncAndDynamicGasOp('ADDMODX'),
354
- 0xc4: asyncAndDynamicGasOp('SUBMODX'),
355
- 0xc5: asyncAndDynamicGasOp('MULMODX'),
+ 0xc3: dynamicGasOp('ADDMODX'),
+ 0xc4: dynamicGasOp('SUBMODX'),
+ 0xc5: dynamicGasOp('MULMODX'),
356
},
357
358
{
0 commit comments