0xweb
Version:
Contract package manager and other web3 tools
43 lines (38 loc) • 1.24 kB
text/typescript
import { EvmBytecode } from '../EvmBytecode';
import Opcode from '../interfaces/IOpcode';
import stringify from '../utils/stringify';
export class EXTCODECOPY {
readonly name: string;
readonly type?: string;
readonly wrapped: boolean;
readonly address: any;
readonly startLocation: any;
readonly copyLength: any;
constructor(address: any, startLocation: any, copyLength: any) {
this.name = 'EXTCODECOPY';
this.wrapped = true;
this.address = address;
this.startLocation = startLocation;
this.copyLength = copyLength;
}
toString() {
return (
'address(' +
stringify(this.address) +
').code[' +
stringify(this.startLocation) +
':(' +
stringify(this.startLocation) +
'+' +
stringify(this.copyLength) +
')]'
);
}
}
export default (opcode: Opcode, state: EvmBytecode): void => {
const address = state.stack.pop();
const memoryLocation = state.stack.pop();
const startLocation = state.stack.pop();
const copyLength = state.stack.pop();
state.memory[memoryLocation] = new EXTCODECOPY(address, startLocation, copyLength);
};