UNPKG

hardhat-tracer

Version:

Hardhat Tracer plugin

14 lines 456 B
import { MinimalInterpreterStep } from "hardhat/internal/hardhat-network/provider/vm/types"; import { Item } from "../types"; export interface MSTORE { offset: string; value: string; } declare function parse(step: MinimalInterpreterStep): Item<MSTORE>; declare function format(item: Item<MSTORE>): string; declare const _default: { parse: typeof parse; format: typeof format; }; export default _default; //# sourceMappingURL=mstore.d.ts.map