Skip to content

Commit 3b75c53

Browse files
committed
replace duplicated Bitmaps with an powerful already importd one
1 parent d3db1b1 commit 3b75c53

File tree

7 files changed

+39
-2
lines changed

7 files changed

+39
-2
lines changed

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/IMXcontracts.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/token/erc721/abstract/ERC721Hybrid.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pragma solidity 0.8.19;
44

55
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
6-
import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";
6+
import {BitMaps} from "solidity-bits/contracts/BitMaps.sol";
77
import {ERC721Psi, ERC721PsiBurnable} from "../erc721psi/ERC721PsiBurnable.sol";
88
// Errors
99
import {IImmutableERC721Errors} from "../../../errors/Errors.sol";

contracts/token/erc721/abstract/ImmutableERC721Base.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol";
1010
import {OperatorAllowlistEnforced} from "../../../allowlist/OperatorAllowlistEnforced.sol";
1111

1212
// Utils
13-
import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";
13+
import {BitMaps} from "solidity-bits/contracts/BitMaps.sol";
1414
import {AccessControlEnumerable, MintingAccessControl} from "../../../access/MintingAccessControl.sol";
1515

1616
/*

0 commit comments

Comments
 (0)