UNPKG

hardhat-tracer

Version:

Hardhat Tracer plugin

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