UNPKG
@eth-optimism/ethereumjs-vm
Version:
latest (4.2.0-alpha.3)
4.2.0-alpha.3
4.2.0-alpha.2
4.2.0-alpha.1
4.2.0-alpha.0
An Ethereum VM implementation
github.com/ethereumjs/ethereumjs-vm
ethereum-optimism/ethereumjs-ovm
@eth-optimism/ethereumjs-vm
/
dist
/
evm
/
opcodes.d.ts
13 lines
(12 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Common
from
'ethereumjs-common'
;
export
interface
Opcode
{
name
:
string
;
fee
:
number
;
isAsync
:
boolean
; }
export
interface
OpcodeList
{ [
code
:
number
]:
Opcode
; }
export
declare
function
getOpcodesForHF
(
common
:
Common
): { [
x
:
number
]:
Opcode
; };