UNPKG

hardhat-tracer

Version:

Hardhat Tracer plugin

14 lines 496 B
import { MinimalInterpreterStep } from "hardhat/internal/hardhat-network/provider/vm/types"; import { AwaitedItem, Item } from "../types"; export interface EXTCODESIZE { address: string; size: number; } declare function parse(step: MinimalInterpreterStep): AwaitedItem<EXTCODESIZE>; declare function format(item: Item<EXTCODESIZE>): string; declare const _default: { parse: typeof parse; format: typeof format; }; export default _default; //# sourceMappingURL=extcodesize.d.ts.map