UNPKG

evm

Version:

An ethereum virtual machine (EVM) bytecode decompiler

14 lines (13 loc) 454 B
import EVM from '../classes/evm.class'; import Opcode from '../interfaces/opcode.interface'; export declare class CODECOPY { readonly name: string; readonly type?: string; readonly wrapped: boolean; readonly startLocation: any; readonly copyLength: any; constructor(startLocation: any, copyLength: any); toString(): string; } declare const _default: (opcode: Opcode, state: EVM) => void; export default _default;