Hi all, I try to create simple contract which manages NFTs using ERC721 from openzeppelin
My code looks like that:
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./Owned.sol";
contract StakingContract is Owned {
IERC20 public rewardsToken;
ERC721 public stakingNFToken;
I got this error for ERC721 variable: "DeclarationError: Identifier not found or not unique."
Any ideas how properly import ERC721 from openzeppelin? I am building on remix online IDE