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