Skip to content

Commit

Permalink
Merge pull request #851 from liquity/fix_Solady_import
Browse files Browse the repository at this point in the history
fix: Change import path for Solady dependency
  • Loading branch information
bingen authored Feb 26, 2025
2 parents 6489bc5 + ee88dfc commit 9137d18
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/src/NFTMetadata/MetadataNFT.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import "lib/Solady/src/utils/SSTORE2.sol";
import "Solady/utils/SSTORE2.sol";
import "./utils/JSON.sol";

import "./utils/baseSVG.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/NFTMetadata/utils/FixedAssets.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import "lib/Solady/src/utils/SSTORE2.sol";
import "Solady/utils/SSTORE2.sol";

contract FixedAssetReader {
struct Asset {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/NFTMetadata/utils/Utils.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import "lib/Solady/src/utils/LibString.sol";
import "Solady/utils/LibString.sol";

library numUtils {
function toLocale(string memory _wholeNumber) internal pure returns (string memory) {
Expand Down

0 comments on commit 9137d18

Please sign in to comment.