UNPKG
evm
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
An ethereum virtual machine (EVM) bytecode decompiler
github.com/MrLuit/evm
MrLuit/evm
evm
/
typings
/
src
/
index.d.ts
8 lines
(7 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
Transaction
from
'./classes/tx.class'
;
import
EVM
from
'./classes/evm.class'
;
export
declare
const
functions
:
any
;
export
declare
const
events
:
any
;
export
declare
const
functionHashes
:
any
;
export
declare
const
eventHashes
:
any
;
export
{
EVM
,
Transaction
};