hardhat-tracer
Version:
Hardhat Tracer plugin
14 lines • 472 B
TypeScript
import { MinimalInterpreterStep } from "hardhat/internal/hardhat-network/provider/vm/types";
import { AwaitedItem, Item } from "../types";
export interface MLOAD {
offset: string;
value: string;
}
declare function parse(step: MinimalInterpreterStep): AwaitedItem<MLOAD>;
declare function format(item: Item<MLOAD>): string;
declare const _default: {
parse: typeof parse;
format: typeof format;
};
export default _default;
//# sourceMappingURL=mload.d.ts.map