From 9b4aacaaf0bdab6a69de0324b88b9e6854a1fae6 Mon Sep 17 00:00:00 2001 From: DittoETH <136378658+ditto-eth@users.noreply.github.com> Date: Thu, 14 Sep 2023 08:03:37 -0700 Subject: [PATCH] feat: add cool cheatcode --- src/Vm.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Vm.sol b/src/Vm.sol index 5b3e1f5b..51887a2d 100644 --- a/src/Vm.sol +++ b/src/Vm.sol @@ -73,6 +73,8 @@ interface VmSafe { // Loads a storage slot from an address function load(address target, bytes32 slot) external view returns (bytes32 data); + // Cools off a warm address and it's storage slots + function cool(address target) external; // Signs data function sign(uint256 privateKey, bytes32 digest) external pure returns (uint8 v, bytes32 r, bytes32 s); // Gets the address for a given private key