From 75007b8a51b46b4db85252c52a7f5c6e1f7d5aab Mon Sep 17 00:00:00 2001 From: Algo Bot <81755195+algobotishere@users.noreply.github.com> Date: Thu, 6 Jun 2024 10:33:44 +0300 Subject: [PATCH] Added DEAL cheatcode --- src/helpers/HelperCheats.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/helpers/HelperCheats.sol b/src/helpers/HelperCheats.sol index 8553b81..409395a 100644 --- a/src/helpers/HelperCheats.sol +++ b/src/helpers/HelperCheats.sol @@ -20,4 +20,8 @@ abstract contract HelperCheats { function prank(address sender) public { vm.prank(sender); } + + function deal(address sender, uint amount) public { + vm.deal(sender, amount); + } }