UNPKG

hardhat-deal

Version:

🎩🪄 Easily deal any amount of any ERC20 tokens to any account on the hardhat network

4 lines (3 loc) • 282 B
import { HardhatRuntimeEnvironment } from "hardhat/types/runtime"; import { AddressLike, BigNumberish } from "ethers"; export declare const deal: (erc20: AddressLike, recipient: AddressLike, amount: BigNumberish, maxSlot?: number, hre?: HardhatRuntimeEnvironment) => Promise<void>;