UNPKG

evm

Version:

An ethereum virtual machine (EVM) bytecode decompiler

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