evm
Version:
An ethereum virtual machine (EVM) bytecode decompiler
14 lines (13 loc) • 417 B
TypeScript
import EVM from '../classes/evm.class';
import Opcode from '../interfaces/opcode.interface';
export declare class ADD {
readonly name: string;
readonly wrapped: boolean;
readonly left: any;
readonly right: any;
constructor(left: any, right: any);
toString(): string;
readonly type: any;
}
declare const _default: (opcode: Opcode, state: EVM) => void;
export default _default;