You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while doing the assignment i ran into the following error:
Undeclared identifier. "requestRandomnessForNFTUris" is not (or not yet) visible at this point.
I cant seem to find out what im doing wrong.
Here is my code:
`// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
Hi Guys,
while doing the assignment i ran into the following error:
Undeclared identifier. "requestRandomnessForNFTUris" is not (or not yet) visible at this point.
I cant seem to find out what im doing wrong.
Here is my code:
`// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
//OpenZeppelin Imports
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
// Chainlink Imports
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import "@chainlink/contracts/src/v0.8/KeeperCompatible.sol";
contract BullAndBear is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable, KeeperCompatibleInterface, VRFConsumerBaseV2 {
}
`
The text was updated successfully, but these errors were encountered: