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 EXTCODEHASH { address: string; hash: string; } declare function parse(step: MinimalInterpreterStep): AwaitedItem<EXTCODEHASH>; declare function format(item: Item<EXTCODEHASH>): string; declare const _default: { parse: typeof parse; format: typeof format; }; export default _default; //# sourceMappingURL=extcodehash.d.ts.map