mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
fix: Fixed invalid imports.
This commit is contained in:
@@ -4,7 +4,8 @@ pragma solidity ^0.8.0;
|
||||
|
||||
import {Errors} from '../../libraries/Errors.sol';
|
||||
import {ERC721Time} from './ERC721Time.sol';
|
||||
import {IERC721Enumerable, IERC165} from '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
|
||||
import {IERC721Enumerable} from '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
|
||||
import {IERC165} from '@openzeppelin/contracts/interfaces/IERC165.sol';
|
||||
|
||||
/**
|
||||
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
|
||||
|
||||
@@ -3,13 +3,15 @@
|
||||
pragma solidity ^0.8.0;
|
||||
|
||||
import {Errors} from '../../libraries/Errors.sol';
|
||||
import {IERC721Time, IERC721, IERC165} from './IERC721Time.sol';
|
||||
import {IERC721Time} from './IERC721Time.sol';
|
||||
import {IERC721Receiver} from '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
|
||||
import {IERC721Metadata} from '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
|
||||
import {Address} from '@openzeppelin/contracts/utils/Address.sol';
|
||||
import {Context} from '@openzeppelin/contracts/utils/Context.sol';
|
||||
import {Strings} from '@openzeppelin/contracts/utils/Strings.sol';
|
||||
import {ERC165} from '@openzeppelin/contracts/utils/introspection/ERC165.sol';
|
||||
import {IERC165} from '@openzeppelin/contracts/interfaces/IERC165.sol';
|
||||
import {IERC721} from '@openzeppelin/contracts/interfaces/IERC721.sol';
|
||||
|
||||
/**
|
||||
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
|
||||
|
||||
@@ -100,4 +100,4 @@ bytes32 constant FOLLOW_WITH_SIG_TYPEHASH = keccak256(
|
||||
);
|
||||
bytes32 constant COLLECT_WITH_SIG_TYPEHASH = keccak256(
|
||||
'CollectWithSig(uint256 profileId,uint256 pubId,bytes data,uint256 nonce,uint256 deadline)'
|
||||
);
|
||||
);
|
||||
Reference in New Issue
Block a user