fix: Code verification fixes

This commit is contained in:
vicnaum
2023-03-03 11:50:28 +01:00
parent b3ec5fd8ab
commit dfacc6f509
2 changed files with 4 additions and 2 deletions

View File

@@ -14,8 +14,8 @@ import {IERC721Metadata} from '@openzeppelin/contracts/token/ERC721/extensions/I
import {Address} from '@openzeppelin/contracts/utils/Address.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';
import {IERC165} from '@openzeppelin/contracts/utils/introspection/IERC165.sol';
import {IERC721} from '@openzeppelin/contracts/token/ERC721/IERC721.sol';
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

View File

@@ -1,3 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import {Types} from 'contracts/libraries/constants/Types.sol';