diff --git a/src/utils/LibString.sol b/src/utils/LibString.sol index bcd8b57a..4d9e4d93 100644 --- a/src/utils/LibString.sol +++ b/src/utils/LibString.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Efficient library for creating string representations of integers. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/LibString.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol) library LibString { function toString(uint256 value) internal pure returns (string memory str) { assembly { diff --git a/src/utils/MerkleProofLib.sol b/src/utils/MerkleProofLib.sol index 5909020a..befd36ce 100644 --- a/src/utils/MerkleProofLib.sol +++ b/src/utils/MerkleProofLib.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Gas optimized merkle proof verification library. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/MerkleProofLib.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/MerkleProofLib.sol) library MerkleProofLib { function verify( bytes32[] calldata proof, diff --git a/src/utils/SignedWadMath.sol b/src/utils/SignedWadMath.sol index b77e1db4..6078106f 100644 --- a/src/utils/SignedWadMath.sol +++ b/src/utils/SignedWadMath.sol @@ -2,7 +2,7 @@ pragma solidity >=0.8.0; /// @notice Signed 18 decimal fixed point (wad) arithmetic library. -/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/SignedWadMath.sol) +/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SignedWadMath.sol) /// @dev Will not revert on overflow, only use where overflow is not possible. function toWadUnsafe(uint256 x) pure returns (int256 r) {