evm
Version:
An ethereum virtual machine (EVM) bytecode decompiler
19 lines (18 loc) • 666 B
TypeScript
import EVM from '../classes/evm.class';
import Opcode from '../interfaces/opcode.interface';
export declare class CALL {
readonly name: string;
readonly type?: string;
readonly wrapped: boolean;
readonly gas: any;
readonly address: any;
readonly value: any;
readonly memoryStart: any;
readonly memoryLength: any;
readonly outputStart: any;
readonly outputLength: any;
constructor(gas: any, address: any, value: any, memoryStart: any, memoryLength: any, outputStart: any, outputLength: any);
toString(): string;
}
declare const _default: (opcode: Opcode, state: EVM) => void;
export default _default;