hardhat-deal
Version:
🎩🪄 Easily deal any amount of any ERC20 tokens to any account on the hardhat network
9 lines (8 loc) • 313 B
TypeScript
import { DealSlot } from "./types";
export declare const getCachePath: (cacheRoot: string) => string;
export declare const loadCache: (cachePath: string) => {
[address: string]: DealSlot;
};
export declare const saveCache: (cachePath: string, slots: {
[address: string]: DealSlot | undefined;
}) => void;