UNPKG

evm

Version:

An ethereum virtual machine (EVM) bytecode decompiler

23 lines (18 loc) 492 B
import EVM from '../classes/evm.class'; import Opcode from '../interfaces/opcode.interface'; export class CALLER { readonly name: string; readonly type?: string; readonly wrapped: boolean; constructor() { this.name = 'CALLER'; this.name = 'address'; this.wrapped = false; } toString() { return 'msg.sender'; } } export default (opcode: Opcode, state: EVM): void => { state.stack.push(new CALLER()); };