From 828d43c732efa4deb70aae8dfe641785cc619571 Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Wed, 21 May 2025 17:20:34 +0300 Subject: [PATCH] Update StdUtils.sol --- src/StdUtils.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StdUtils.sol b/src/StdUtils.sol index 7106960bb..51c32d443 100644 --- a/src/StdUtils.sol +++ b/src/StdUtils.sol @@ -95,7 +95,7 @@ abstract contract StdUtils { } /// @dev Compute the address a contract will be deployed at for a given deployer address and nonce - /// @notice adapted from Solmate implementation (https://github.com/Rari-Capital/solmate/blob/main/src/utils/LibRLP.sol) + /// @notice adapted from Solmate implementation (https://github.com/Vectorized/solady/blob/main/src/utils/LibRLP.sol) function computeCreateAddress(address deployer, uint256 nonce) internal pure virtual returns (address) { console2_log_StdUtils("computeCreateAddress is deprecated. Please use vm.computeCreateAddress instead."); return vm.computeCreateAddress(deployer, nonce);