This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.9; | |
import "./IQuestStaking.sol"; | |
import "./AdventurePermissions.sol"; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
abstract contract AdventureERC721 is ERC721, AdventurePermissions, IQuestStaking { | |
uint256 public constant MAX_UINT32 = type(uint32).max; |