Skip to content

Commit

Permalink
fix dependencies in contract-kit (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaryash90 authored Jan 27, 2023
1 parent 65a5603 commit edcde7c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions contracts/eip/ERC721AVirtualApprove.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ pragma solidity ^0.8.4;
////////// CHANGELOG: turn `approve` to virtual //////////

import "./interface/IERC721A.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./interface/IERC721Receiver.sol";
import "../lib/TWAddress.sol";
import "../openzeppelin-presets/utils/Context.sol";
import "../lib/TWStrings.sol";
import "./ERC165.sol";

/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
Expand All @@ -24,8 +24,8 @@ import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721A {
using Address for address;
using Strings for uint256;
using TWAddress for address;
using TWStrings for uint256;

// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
Expand Down

0 comments on commit edcde7c

Please sign in to comment.