@ethereumjs/evm
Version:
JavaScript Ethereum Virtual Machine (EVM) implementation
13 lines • 400 B
TypeScript
import type { Common } from '@ethereumjs/common';
import type { EVMInterface, ExecResult } from '../types.ts';
export interface PrecompileFunc {
(input: PrecompileInput): Promise<ExecResult> | ExecResult;
}
export interface PrecompileInput {
data: Uint8Array;
gasLimit: bigint;
common: Common;
_EVM: EVMInterface;
_debug?: debug.Debugger;
}
//# sourceMappingURL=types.d.ts.map