Skip to content

Commit

Permalink
fix openzeppelin import
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Sep 13, 2024
1 parent 83cdd4b commit 0049386
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polytope-labs/erc6160",
"version": "0.3.0",
"version": "0.3.1",
"description": "Official implementation of the EIP-6160 token standard",
"author": "Polytope Labs <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion remappings.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
openzeppelin/=node_modules/openzeppelin-solidity/contracts
@openzeppelin/=node_modules/openzeppelin-solidity
4 changes: 2 additions & 2 deletions src/tokens/ERC6160Ext1155.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pragma solidity ^0.8.17;

import "openzeppelin/token/ERC1155/ERC1155.sol";
import "openzeppelin/utils/introspection/ERC165Storage.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";

import {IERC6160Ext1155, IERC5679Ext1155, IERC_ACL_CORE} from "../interfaces/IERC6160Ext1155.sol";

Expand Down
4 changes: 2 additions & 2 deletions src/tokens/ERC6160Ext20.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "openzeppelin/token/ERC20/ERC20.sol";
import "openzeppelin/utils/introspection/ERC165Storage.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";

import {IERC6160Ext20, IERC5679Ext20, IERC_ACL_CORE} from "../interfaces/IERC6160Ext20.sol";

Expand Down
4 changes: 2 additions & 2 deletions src/tokens/ERC6160Ext721.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "openzeppelin/token/ERC721/ERC721.sol";
import "openzeppelin/utils/introspection/ERC165Storage.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Storage.sol";

import {IERC6160Ext721, IERC5679Ext721, IERC_ACL_CORE} from "../interfaces/IERC6160Ext721.sol";

Expand Down

0 comments on commit 0049386

Please sign in to comment.