Skip to content

Instantly share code, notes, and snippets.

@jjohnson5253
jjohnson5253 / AdventureERC721.sol
Created September 27, 2022 18:21
AdventureERC721 protocol used on the DigiDaigaku Hero NFT
// 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;