UNPKG

ethereumjs-vm

Version:
13 lines (12 loc) 309 B
/// <reference types="node" /> import BN = require('bn.js'); import Common from 'ethereumjs-common'; import { ExecResult } from '../evm'; export interface PrecompileFunc { (opts: PrecompileInput): ExecResult; } export interface PrecompileInput { data: Buffer; gasLimit: BN; _common: Common; }