Overview
APE Balance
APE Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DungeonEntry
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IDungeonEntry.sol"; import "./interfaces/IDungeonGame.sol"; import "./interfaces/INFTStats.sol"; import "./interfaces/IPrizePool.sol"; import "./interfaces/ICollectionRegistry.sol"; /// @title DungeonEntry /// @notice Manages dungeon entry and active run state for NFTs contract DungeonEntry is IDungeonEntry, Ownable, ReentrancyGuard { // Core contract references ICollectionRegistry public immutable collectionRegistry; INFTStats public immutable nftStats; IPrizePool public prizePool; IDungeonGame public dungeonGame; bool private initialized; // Entry fee in wei uint256 private entryFee; // Maximum time allowed for a dungeon run (24 hours) uint256 private constant MAX_RUN_DURATION = 24 hours; // Mapping to track NFTs in the dungeon mapping(address => mapping(uint256 => bool)) private inDungeon; // Events event EntryFeeUpdated(uint256 newFee); event RunExpired(address indexed collection, uint256 indexed tokenId); event DungeonEntryInitialized(address indexed prizePool, address indexed dungeonGame); constructor( address _collectionRegistry, address _nftStats, uint256 _initialEntryFee ) Ownable() { require(_collectionRegistry != address(0), "Invalid registry address"); require(_nftStats != address(0), "Invalid stats address"); collectionRegistry = ICollectionRegistry(_collectionRegistry); nftStats = INFTStats(_nftStats); entryFee = _initialEntryFee; } /// @notice Initialize the DungeonEntry with required contract addresses /// @param _prizePool Address of the PrizePool contract /// @param _dungeonGame Address of the DungeonGame contract function initialize( address _prizePool, address _dungeonGame ) external onlyOwner { require(!initialized, "Already initialized"); require(_prizePool != address(0), "Invalid prize pool address"); require(_dungeonGame != address(0), "Invalid dungeon game address"); prizePool = IPrizePool(_prizePool); dungeonGame = IDungeonGame(_dungeonGame); initialized = true; emit DungeonEntryInitialized(_prizePool, _dungeonGame); } /// @notice Start a new dungeon run for an NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function startDungeonRun( address collection, uint256 tokenId ) external payable nonReentrant { require(initialized, "Not initialized"); // Check entry fee require(msg.value >= entryFee, "Insufficient entry fee"); // Verify collection is whitelisted require(collectionRegistry.isWhitelisted(collection), "Collection not whitelisted"); // Verify NFT ownership require(IERC721(collection).ownerOf(tokenId) == msg.sender, "Not NFT owner"); // Check if NFT is already in dungeon require(!inDungeon[collection][tokenId], "Already in dungeon"); // Initialize stats if needed if (!nftStats.isInitialized(collection, tokenId)) { nftStats.initializeStats(collection, tokenId); } // Add character to dungeon queue dungeonGame.addCharacterToDungeon(collection, tokenId); // Mark NFT as in dungeon inDungeon[collection][tokenId] = true; // Forward entry fee to prize pool prizePool.depositEntryFee{value: entryFee}(collection, tokenId); // Refund excess payment if any uint256 excess = msg.value - entryFee; if (excess > 0) { (bool success, ) = msg.sender.call{value: excess}(""); require(success, "Refund failed"); } emit DungeonRunStarted(collection, tokenId, msg.sender, entryFee); } /// @notice End an active dungeon run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @param success Whether the run was successful function endDungeonRun( address collection, uint256 tokenId, bool success ) external { require(initialized, "Not initialized"); // Only DungeonGame contract can end runs require(msg.sender == address(dungeonGame), "Not authorized"); require(inDungeon[collection][tokenId], "Not in dungeon"); // Mark NFT as no longer in dungeon inDungeon[collection][tokenId] = false; emit DungeonRunEnded(collection, tokenId, success); } /// @notice Update the entry fee /// @param newFee New entry fee in wei function updateEntryFee(uint256 newFee) external onlyOwner { entryFee = newFee; emit EntryFeeUpdated(newFee); } /// @notice Get the current dungeon run state for an NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return DungeonRun struct containing current run state function getCurrentRun( address collection, uint256 tokenId ) external view returns (DungeonRun memory) { if (!inDungeon[collection][tokenId]) { return DungeonRun(0, 0, 0, 0, 0, false); } uint256 roomNumber = dungeonGame.getCharacterRoom(collection, tokenId); if (roomNumber == 0) { return DungeonRun(0, 0, 0, 0, 0, false); } IDungeonGame.RoomState memory state = dungeonGame.getRoomState(roomNumber); return DungeonRun({ currentHp: state.currentHp, currentAttack: state.currentAttack, currentSpeed: state.currentSpeed, currentRoom: roomNumber, startTime: state.entryIndex, isActive: true }); } /// @notice Check if an NFT has an active dungeon run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return bool True if NFT has an active run function hasActiveRun( address collection, uint256 tokenId ) public view returns (bool) { if (!inDungeon[collection][tokenId]) return false; uint256 roomNumber = dungeonGame.getCharacterRoom(collection, tokenId); if (roomNumber == 0) return false; IDungeonGame.RoomState memory state = dungeonGame.getRoomState(roomNumber); if (block.timestamp > state.entryIndex + MAX_RUN_DURATION) { return false; } return true; } /// @notice Get the current entry fee for dungeon runs /// @return uint256 Current entry fee in wei function getEntryFee() external view returns (uint256) { return entryFee; } /// @notice Get time remaining for an active run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return uint256 Time remaining in seconds, 0 if no active run function getTimeRemaining( address collection, uint256 tokenId ) external view returns (uint256) { if (!inDungeon[collection][tokenId]) return 0; uint256 roomNumber = dungeonGame.getCharacterRoom(collection, tokenId); if (roomNumber == 0) return 0; IDungeonGame.RoomState memory state = dungeonGame.getRoomState(roomNumber); uint256 endTime = state.entryIndex + MAX_RUN_DURATION; if (block.timestamp >= endTime) return 0; return endTime - block.timestamp; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title IDungeonEntry /// @notice Interface for managing dungeon entry and run initialization interface IDungeonEntry { /// @notice Structure for active dungeon run state struct DungeonRun { uint256 currentHp; uint256 currentAttack; uint256 currentSpeed; uint256 currentRoom; uint256 startTime; bool isActive; } /// @notice Event emitted when a dungeon run is started event DungeonRunStarted( address indexed collection, uint256 indexed tokenId, address indexed player, uint256 entryFee ); /// @notice Event emitted when a dungeon run is ended event DungeonRunEnded( address indexed collection, uint256 indexed tokenId, bool success ); /// @notice Start a new dungeon run for an NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function startDungeonRun(address collection, uint256 tokenId) external payable; /// @notice End an active dungeon run (called by DungeonGame) /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @param success Whether the run was successful function endDungeonRun(address collection, uint256 tokenId, bool success) external; /// @notice Get the current dungeon run state for an NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return DungeonRun struct containing current run state function getCurrentRun(address collection, uint256 tokenId) external view returns (DungeonRun memory); /// @notice Check if an NFT has an active dungeon run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return bool True if NFT has an active run function hasActiveRun(address collection, uint256 tokenId) external view returns (bool); /// @notice Get the current entry fee for dungeon runs /// @return uint256 Current entry fee in wei function getEntryFee() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title IDungeonGame /// @notice Interface for core dungeon game mechanics and progression interface IDungeonGame { /// @notice Structure for dungeon room state struct RoomState { address collection; uint256 tokenId; uint256 entryIndex; // Used for ordering characters uint256 currentHp; uint256 currentAttack; uint256 currentSpeed; bool isOccupied; } /// @notice Structure for encounter results struct EncounterResult { int256 hpChange; int256 attackChange; int256 speedChange; uint256 xpGained; bool survived; string encounterDescription; uint256 roomNumber; } /// @notice Event emitted when an encounter is completed event EncounterCompleted( address indexed collection, uint256 indexed tokenId, uint256 roomNumber, uint256 xpGained, bool survived, string encounterDescription ); /// @notice Event emitted when a dungeon run is completed event DungeonCompleted( address indexed collection, uint256 indexed tokenId, bool success, uint256 roomsCleared, uint256 totalXpGained, uint256 reward ); /// @notice Progress all characters in the dungeon by one room /// @return EncounterResult[] Array of encounter results for each character that moved function progressAllCharacters() external returns (EncounterResult[] memory); /// @notice Add a new character to the dungeon queue /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function addCharacterToDungeon(address collection, uint256 tokenId) external; /// @notice Claim rewards for a successful dungeon run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function claimRewards(address collection, uint256 tokenId) external; /// @notice Get the state of a specific room /// @param roomNumber Room number to query /// @return RoomState Current state of the room function getRoomState(uint256 roomNumber) external view returns (RoomState memory); /// @notice Get all active room states /// @return RoomState[] Array of all room states function getAllRoomStates() external view returns (RoomState[] memory); /// @notice Get the room number where a character is located /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return uint256 Room number, 0 if not in dungeon function getCharacterRoom(address collection, uint256 tokenId) external view returns (uint256); /// @notice Get the total number of rooms in the dungeon /// @return uint256 Number of rooms (16) function getTotalRooms() external pure returns (uint256); /// @notice Check if a character has completed the dungeon /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return bool True if character has completed all rooms function isDungeonCompleted(address collection, uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title INFTStats /// @notice Interface for managing individual NFT stats and progression interface INFTStats { /// @notice Structure for NFT permanent stats struct NFTStatsData { uint256 hp; uint256 attack; uint256 speed; uint256 level; uint256 currentXP; uint256 xpToNextLevel; uint256 dungeonRuns; uint256 successfulRuns; uint256 roomsCleared; bool initialized; } /// @notice Event emitted when an NFT's stats are initialized event StatsInitialized(address indexed collection, uint256 indexed tokenId, uint256 hp, uint256 attack, uint256 speed); /// @notice Event emitted when an NFT's stats are boosted event StatsBoosted(address indexed collection, uint256 indexed tokenId, uint256 newHp, uint256 newAttack, uint256 newSpeed); /// @notice Event emitted when XP is gained event XPGained(address indexed collection, uint256 indexed tokenId, uint256 xpGained, uint256 newTotalXP); /// @notice Event emitted when a level up occurs event LevelUp(address indexed collection, uint256 indexed tokenId, uint256 newLevel, uint256 newHp, uint256 newAttack, uint256 newSpeed); /// @notice Event emitted when a run is recorded event RunRecorded(address indexed collection, uint256 indexed tokenId, bool success, uint256 roomsCleared, uint256 xpGained); /// @notice Initialize stats for an NFT based on its collection's base stats /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function initializeStats(address collection, uint256 tokenId) external; /// @notice Award XP for dungeon progress /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @param xpAmount Amount of XP to award /// @param roomsCleared Number of rooms cleared in this run function awardXP( address collection, uint256 tokenId, uint256 xpAmount, uint256 roomsCleared ) external; /// @notice Calculate XP required for next level /// @param currentLevel Current level of the NFT /// @return uint256 XP required for next level function getXPForNextLevel(uint256 currentLevel) external pure returns (uint256); /// @notice Get the stat increases for a level up /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return hpIncrease Amount HP increases /// @return attackIncrease Amount Attack increases /// @return speedIncrease Amount Speed increases function getLevelUpStats( address collection, uint256 tokenId ) external view returns ( uint256 hpIncrease, uint256 attackIncrease, uint256 speedIncrease ); /// @notice Record a dungeon run attempt /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @param success Whether the run was successful function recordRun(address collection, uint256 tokenId, bool success) external; /// @notice Get current stats for an NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return NFTStatsData struct containing current stats function getStats(address collection, uint256 tokenId) external view returns (NFTStatsData memory); /// @notice Check if an NFT has been initialized /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return bool True if NFT has been initialized function isInitialized(address collection, uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title IPrizePool /// @notice Interface for managing dungeon rewards and prize distribution interface IPrizePool { /// @notice Event emitted when entry fee is deposited event EntryFeeDeposited(address indexed collection, uint256 indexed tokenId, uint256 amount); /// @notice Event emitted when reward is claimed event RewardClaimed(address indexed collection, uint256 indexed tokenId, address indexed recipient, uint256 amount); /// @notice Event emitted when prize pool parameters are updated event PrizePoolParametersUpdated(uint256 entryFee, uint256 winnerShare); /// @notice Deposit entry fee for a dungeon run /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function depositEntryFee(address collection, uint256 tokenId) external payable; /// @notice Register a winner for prize claiming /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @param amount Amount to be claimed function registerWinner(address collection, uint256 tokenId, uint256 amount) external; /// @notice Claim prize for a winning NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function claimPrize(address collection, uint256 tokenId) external; /// @notice Get claimable prize amount for a winning NFT /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return uint256 Claimable amount function getClaimablePrize(address collection, uint256 tokenId) external view returns (uint256); /// @notice Get current prize pool balance /// @return uint256 Current balance function getCurrentPrizePool() external view returns (uint256); /// @notice Check if an NFT has an unclaimed prize /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return bool True if NFT has unclaimed prize function hasUnclaimedPrize(address collection, uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title ICollectionRegistry /// @notice Interface for managing whitelisted NFT collections and their base stats interface ICollectionRegistry { /// @notice Stats structure for NFT collections struct CollectionStats { uint256 baseHp; uint256 baseAttack; uint256 baseSpeed; bool isWhitelisted; } /// @notice Event emitted when a collection is whitelisted event CollectionWhitelisted(address indexed collection, uint256 baseHp, uint256 baseAttack, uint256 baseSpeed); /// @notice Event emitted when a collection's stats are updated event CollectionStatsUpdated(address indexed collection, uint256 baseHp, uint256 baseAttack, uint256 baseSpeed); /// @notice Event emitted when a collection is removed from whitelist event CollectionRemoved(address indexed collection); /// @notice Whitelist a new NFT collection with base stats /// @param collection Address of the NFT collection /// @param baseHp Initial HP for NFTs from this collection /// @param baseAttack Initial Attack for NFTs from this collection /// @param baseSpeed Initial Speed for NFTs from this collection function whitelistCollection( address collection, uint256 baseHp, uint256 baseAttack, uint256 baseSpeed ) external; /// @notice Update base stats for a whitelisted collection /// @param collection Address of the NFT collection /// @param baseHp New base HP /// @param baseAttack New base Attack /// @param baseSpeed New base Speed function updateCollectionStats( address collection, uint256 baseHp, uint256 baseAttack, uint256 baseSpeed ) external; /// @notice Remove a collection from the whitelist /// @param collection Address of the NFT collection to remove function removeCollection(address collection) external; /// @notice Check if a collection is whitelisted /// @param collection Address of the NFT collection to check /// @return bool True if collection is whitelisted function isWhitelisted(address collection) external view returns (bool); /// @notice Get base stats for a collection /// @param collection Address of the NFT collection /// @return CollectionStats struct containing base stats function getCollectionStats(address collection) external view returns (CollectionStats memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "forge-std/=lib/forge-std/src/", "@pythnetwork/=lib/@pythnetwork/", "pyth-sdk-solidity/=lib/pyth-sdk-solidity/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_collectionRegistry","type":"address"},{"internalType":"address","name":"_nftStats","type":"address"},{"internalType":"uint256","name":"_initialEntryFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prizePool","type":"address"},{"indexed":true,"internalType":"address","name":"dungeonGame","type":"address"}],"name":"DungeonEntryInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"DungeonRunEnded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"player","type":"address"},{"indexed":false,"internalType":"uint256","name":"entryFee","type":"uint256"}],"name":"DungeonRunStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"EntryFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RunExpired","type":"event"},{"inputs":[],"name":"collectionRegistry","outputs":[{"internalType":"contract ICollectionRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dungeonGame","outputs":[{"internalType":"contract IDungeonGame","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"success","type":"bool"}],"name":"endDungeonRun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCurrentRun","outputs":[{"components":[{"internalType":"uint256","name":"currentHp","type":"uint256"},{"internalType":"uint256","name":"currentAttack","type":"uint256"},{"internalType":"uint256","name":"currentSpeed","type":"uint256"},{"internalType":"uint256","name":"currentRoom","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"bool","name":"isActive","type":"bool"}],"internalType":"struct IDungeonEntry.DungeonRun","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEntryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"hasActiveRun","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_prizePool","type":"address"},{"internalType":"address","name":"_dungeonGame","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nftStats","outputs":[{"internalType":"contract INFTStats","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizePool","outputs":[{"internalType":"contract IPrizePool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"startDungeonRun","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateEntryFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b50604051620016fa380380620016fa833981016040819052620000349162000180565b6200003f3362000113565b600180556001600160a01b0383166200009f5760405162461bcd60e51b815260206004820152601860248201527f496e76616c69642072656769737472792061646472657373000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216620000f75760405162461bcd60e51b815260206004820152601560248201527f496e76616c696420737461747320616464726573730000000000000000000000604482015260640162000096565b6001600160a01b03928316608052911660a052600455620001c1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200017b57600080fd5b919050565b6000806000606084860312156200019657600080fd5b620001a18462000163565b9250620001b16020850162000163565b9150604084015190509250925092565b60805160a0516114fe620001fc600039600081816102f5015281816108dc01526109710152600081816101d601526106e501526114fe6000f3fe6080604052600436106100e85760003560e01c80638da5cb5b1161008a578063e586a4f011610059578063e586a4f0146102c4578063e602ef36146102e3578063f2fde38b14610317578063f514b9391461033757600080fd5b80638da5cb5b146101f8578063aa18262614610216578063b66181ed14610236578063ceef46bd146102a457600080fd5b8063620973fd116100c6578063620973fd1461017c578063715018a61461018f578063719ce73e146101a45780638c7cc5e3146101c457600080fd5b80632702abdf146100ed5780634592ad0914610122578063485cc9551461015a575b600080fd5b3480156100f957600080fd5b5061010d610108366004611291565b610357565b60405190151581526020015b60405180910390f35b34801561012e57600080fd5b50600354610142906001600160a01b031681565b6040516001600160a01b039091168152602001610119565b34801561016657600080fd5b5061017a6101753660046112bd565b6104b6565b005b61017a61018a366004611291565b610628565b34801561019b57600080fd5b5061017a610bc5565b3480156101b057600080fd5b50600254610142906001600160a01b031681565b3480156101d057600080fd5b506101427f000000000000000000000000000000000000000000000000000000000000000081565b34801561020457600080fd5b506000546001600160a01b0316610142565b34801561022257600080fd5b5061017a6102313660046112f6565b610bd9565b34801561024257600080fd5b50610256610251366004611291565b610c1c565b6040516101199190600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a0830151151560a083015292915050565b3480156102b057600080fd5b5061017a6102bf36600461131d565b610e35565b3480156102d057600080fd5b506004545b604051908152602001610119565b3480156102ef57600080fd5b506101427f000000000000000000000000000000000000000000000000000000000000000081565b34801561032357600080fd5b5061017a61033236600461135f565b610f95565b34801561034357600080fd5b506102d5610352366004611291565b61100e565b6001600160a01b038216600090815260056020908152604080832084845290915281205460ff1661038a575060006104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa1580156103dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104009190611383565b9050806000036104145760009150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa15801561045e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048291906113b7565b90506201518081604001516104979190611468565b4211156104a9576000925050506104b0565b6001925050505b92915050565b6104be611179565b600354600160a01b900460ff16156105135760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064015b60405180910390fd5b6001600160a01b0382166105695760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964207072697a6520706f6f6c2061646472657373000000000000604482015260640161050a565b6001600160a01b0381166105bf5760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642064756e67656f6e2067616d65206164647265737300000000604482015260640161050a565b600280546001600160a01b038085166001600160a01b03199092168217909255600380546001600160a81b031916928416928317600160a01b1790556040517fd3d631c04a19be365c7a93f9ac2327474a453b62a6f88ba5de9d90a0519ba9f990600090a35050565b6106306111d3565b600354600160a01b900460ff1661067b5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604482015260640161050a565b6004543410156106c65760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e7420656e7472792066656560501b604482015260640161050a565b604051633af32abf60e01b81526001600160a01b0383811660048301527f00000000000000000000000000000000000000000000000000000000000000001690633af32abf90602401602060405180830381865afa15801561072c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610750919061147b565b61079c5760405162461bcd60e51b815260206004820152601a60248201527f436f6c6c656374696f6e206e6f742077686974656c6973746564000000000000604482015260640161050a565b6040516331a9108f60e11b81526004810182905233906001600160a01b03841690636352211e90602401602060405180830381865afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108079190611498565b6001600160a01b03161461084d5760405162461bcd60e51b815260206004820152600d60248201526c2737ba1027232a1037bbb732b960991b604482015260640161050a565b6001600160a01b038216600090815260056020908152604080832084845290915290205460ff16156108b65760405162461bcd60e51b815260206004820152601260248201527120b63932b0b23c9034b710323ab733b2b7b760711b604482015260640161050a565b60405163994e4a1960e01b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063994e4a1990604401602060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610947919061147b565b6109ce576040516301d4d05b60e71b81526001600160a01b038381166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063ea682d8090604401600060405180830381600087803b1580156109b557600080fd5b505af11580156109c9573d6000803e3d6000fd5b505050505b6003546040516353a7543560e01b81526001600160a01b03848116600483015260248201849052909116906353a7543590604401600060405180830381600087803b158015610a1c57600080fd5b505af1158015610a30573d6000803e3d6000fd5b505050506001600160a01b03828116600081815260056020908152604080832086845290915290819020805460ff19166001179055600254600480549251634f0eb9f560e11b8152908101939093526024830185905290921691639e1d73ea916044016000604051808303818588803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b5050505050600060045434610ad591906114b5565b90508015610b6757604051600090339083908381818185875af1925050503d8060008114610b1f576040519150601f19603f3d011682016040523d82523d6000602084013e610b24565b606091505b5050905080610b655760405162461bcd60e51b815260206004820152600d60248201526c1499599d5b990819985a5b1959609a1b604482015260640161050a565b505b336001600160a01b031682846001600160a01b03167f9136aa41ac12d9cb2394fa7b07f6ec0f9ba99460a55f53bf992fa2d48f2502ae600454604051610baf91815260200190565b60405180910390a450610bc160018055565b5050565b610bcd611179565b610bd7600061122c565b565b610be1611179565b60048190556040518181527f24a0b2e591795f2c27be52ff14a57d0a39ac957304305bc05e8b04be49e8fe159060200160405180910390a150565b610c576040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b6001600160a01b038316600090815260056020908152604080832085845290915290205460ff16610cbe576040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581525090506104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa158015610d10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d349190611383565b905080600003610d7b576040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600015158152509150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906113b7565b90506040518060c0016040528082606001518152602001826080015181526020018260a00151815260200183815260200182604001518152602001600115158152509250505092915050565b600354600160a01b900460ff16610e805760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604482015260640161050a565b6003546001600160a01b03163314610ecb5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b604482015260640161050a565b6001600160a01b038316600090815260056020908152604080832085845290915290205460ff16610f2f5760405162461bcd60e51b815260206004820152600e60248201526d2737ba1034b710323ab733b2b7b760911b604482015260640161050a565b6001600160a01b0383166000818152600560209081526040808320868452825291829020805460ff19169055905183151581528492917f9837bdef6316112d748f048a69f3dfe78e01cad7afc9ed2c69b63a94ec006a3d910160405180910390a3505050565b610f9d611179565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b61100b8161122c565b50565b6001600160a01b038216600090815260056020908152604080832084845290915281205460ff16611041575060006104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611383565b9050806000036110cb5760009150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113991906113b7565b905060006201518082604001516111509190611468565b905080421061116557600093505050506104b0565b61116f42826114b5565b9695505050505050565b6000546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050a565b6002600154036112255760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811461100b57600080fd5b600080604083850312156112a457600080fd5b82356112af8161127c565b946020939093013593505050565b600080604083850312156112d057600080fd5b82356112db8161127c565b915060208301356112eb8161127c565b809150509250929050565b60006020828403121561130857600080fd5b5035919050565b801515811461100b57600080fd5b60008060006060848603121561133257600080fd5b833561133d8161127c565b92506020840135915060408401356113548161130f565b809150509250925092565b60006020828403121561137157600080fd5b813561137c8161127c565b9392505050565b60006020828403121561139557600080fd5b5051919050565b80516113a78161127c565b919050565b80516113a78161130f565b600060e082840312156113c957600080fd5b60405160e0810181811067ffffffffffffffff821117156113fa57634e487b7160e01b600052604160045260246000fd5b6040526114068361139c565b81526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a082015261144660c084016113ac565b60c08201529392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b0576104b0611452565b60006020828403121561148d57600080fd5b815161137c8161130f565b6000602082840312156114aa57600080fd5b815161137c8161127c565b818103818111156104b0576104b061145256fea2646970667358221220cc1292c49ab35c5150574a2f435ea521b71085c75e418c5b4ba22a9e0a1c946264736f6c634300081700330000000000000000000000006e2c8cc4200b681cdcf9053c19296847dff4a105000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e000000000000000000000000000000000000000000000000002386f26fc10000
Deployed Bytecode
0x6080604052600436106100e85760003560e01c80638da5cb5b1161008a578063e586a4f011610059578063e586a4f0146102c4578063e602ef36146102e3578063f2fde38b14610317578063f514b9391461033757600080fd5b80638da5cb5b146101f8578063aa18262614610216578063b66181ed14610236578063ceef46bd146102a457600080fd5b8063620973fd116100c6578063620973fd1461017c578063715018a61461018f578063719ce73e146101a45780638c7cc5e3146101c457600080fd5b80632702abdf146100ed5780634592ad0914610122578063485cc9551461015a575b600080fd5b3480156100f957600080fd5b5061010d610108366004611291565b610357565b60405190151581526020015b60405180910390f35b34801561012e57600080fd5b50600354610142906001600160a01b031681565b6040516001600160a01b039091168152602001610119565b34801561016657600080fd5b5061017a6101753660046112bd565b6104b6565b005b61017a61018a366004611291565b610628565b34801561019b57600080fd5b5061017a610bc5565b3480156101b057600080fd5b50600254610142906001600160a01b031681565b3480156101d057600080fd5b506101427f0000000000000000000000006e2c8cc4200b681cdcf9053c19296847dff4a10581565b34801561020457600080fd5b506000546001600160a01b0316610142565b34801561022257600080fd5b5061017a6102313660046112f6565b610bd9565b34801561024257600080fd5b50610256610251366004611291565b610c1c565b6040516101199190600060c082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a0830151151560a083015292915050565b3480156102b057600080fd5b5061017a6102bf36600461131d565b610e35565b3480156102d057600080fd5b506004545b604051908152602001610119565b3480156102ef57600080fd5b506101427f000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e81565b34801561032357600080fd5b5061017a61033236600461135f565b610f95565b34801561034357600080fd5b506102d5610352366004611291565b61100e565b6001600160a01b038216600090815260056020908152604080832084845290915281205460ff1661038a575060006104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa1580156103dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104009190611383565b9050806000036104145760009150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa15801561045e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048291906113b7565b90506201518081604001516104979190611468565b4211156104a9576000925050506104b0565b6001925050505b92915050565b6104be611179565b600354600160a01b900460ff16156105135760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064015b60405180910390fd5b6001600160a01b0382166105695760405162461bcd60e51b815260206004820152601a60248201527f496e76616c6964207072697a6520706f6f6c2061646472657373000000000000604482015260640161050a565b6001600160a01b0381166105bf5760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642064756e67656f6e2067616d65206164647265737300000000604482015260640161050a565b600280546001600160a01b038085166001600160a01b03199092168217909255600380546001600160a81b031916928416928317600160a01b1790556040517fd3d631c04a19be365c7a93f9ac2327474a453b62a6f88ba5de9d90a0519ba9f990600090a35050565b6106306111d3565b600354600160a01b900460ff1661067b5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604482015260640161050a565b6004543410156106c65760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e7420656e7472792066656560501b604482015260640161050a565b604051633af32abf60e01b81526001600160a01b0383811660048301527f0000000000000000000000006e2c8cc4200b681cdcf9053c19296847dff4a1051690633af32abf90602401602060405180830381865afa15801561072c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610750919061147b565b61079c5760405162461bcd60e51b815260206004820152601a60248201527f436f6c6c656374696f6e206e6f742077686974656c6973746564000000000000604482015260640161050a565b6040516331a9108f60e11b81526004810182905233906001600160a01b03841690636352211e90602401602060405180830381865afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108079190611498565b6001600160a01b03161461084d5760405162461bcd60e51b815260206004820152600d60248201526c2737ba1027232a1037bbb732b960991b604482015260640161050a565b6001600160a01b038216600090815260056020908152604080832084845290915290205460ff16156108b65760405162461bcd60e51b815260206004820152601260248201527120b63932b0b23c9034b710323ab733b2b7b760711b604482015260640161050a565b60405163994e4a1960e01b81526001600160a01b038381166004830152602482018390527f000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e169063994e4a1990604401602060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610947919061147b565b6109ce576040516301d4d05b60e71b81526001600160a01b038381166004830152602482018390527f000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e169063ea682d8090604401600060405180830381600087803b1580156109b557600080fd5b505af11580156109c9573d6000803e3d6000fd5b505050505b6003546040516353a7543560e01b81526001600160a01b03848116600483015260248201849052909116906353a7543590604401600060405180830381600087803b158015610a1c57600080fd5b505af1158015610a30573d6000803e3d6000fd5b505050506001600160a01b03828116600081815260056020908152604080832086845290915290819020805460ff19166001179055600254600480549251634f0eb9f560e11b8152908101939093526024830185905290921691639e1d73ea916044016000604051808303818588803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b5050505050600060045434610ad591906114b5565b90508015610b6757604051600090339083908381818185875af1925050503d8060008114610b1f576040519150601f19603f3d011682016040523d82523d6000602084013e610b24565b606091505b5050905080610b655760405162461bcd60e51b815260206004820152600d60248201526c1499599d5b990819985a5b1959609a1b604482015260640161050a565b505b336001600160a01b031682846001600160a01b03167f9136aa41ac12d9cb2394fa7b07f6ec0f9ba99460a55f53bf992fa2d48f2502ae600454604051610baf91815260200190565b60405180910390a450610bc160018055565b5050565b610bcd611179565b610bd7600061122c565b565b610be1611179565b60048190556040518181527f24a0b2e591795f2c27be52ff14a57d0a39ac957304305bc05e8b04be49e8fe159060200160405180910390a150565b610c576040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581525090565b6001600160a01b038316600090815260056020908152604080832085845290915290205460ff16610cbe576040518060c0016040528060008152602001600081526020016000815260200160008152602001600081526020016000151581525090506104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa158015610d10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d349190611383565b905080600003610d7b576040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600015158152509150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906113b7565b90506040518060c0016040528082606001518152602001826080015181526020018260a00151815260200183815260200182604001518152602001600115158152509250505092915050565b600354600160a01b900460ff16610e805760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604482015260640161050a565b6003546001600160a01b03163314610ecb5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b604482015260640161050a565b6001600160a01b038316600090815260056020908152604080832085845290915290205460ff16610f2f5760405162461bcd60e51b815260206004820152600e60248201526d2737ba1034b710323ab733b2b7b760911b604482015260640161050a565b6001600160a01b0383166000818152600560209081526040808320868452825291829020805460ff19169055905183151581528492917f9837bdef6316112d748f048a69f3dfe78e01cad7afc9ed2c69b63a94ec006a3d910160405180910390a3505050565b610f9d611179565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b61100b8161122c565b50565b6001600160a01b038216600090815260056020908152604080832084845290915281205460ff16611041575060006104b0565b60035460405163313fb55560e11b81526001600160a01b03858116600483015260248201859052600092169063627f6aaa90604401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611383565b9050806000036110cb5760009150506104b0565b600354604051633dd5911160e01b8152600481018390526000916001600160a01b031690633dd591119060240160e060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113991906113b7565b905060006201518082604001516111509190611468565b905080421061116557600093505050506104b0565b61116f42826114b5565b9695505050505050565b6000546001600160a01b03163314610bd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161050a565b6002600154036112255760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811461100b57600080fd5b600080604083850312156112a457600080fd5b82356112af8161127c565b946020939093013593505050565b600080604083850312156112d057600080fd5b82356112db8161127c565b915060208301356112eb8161127c565b809150509250929050565b60006020828403121561130857600080fd5b5035919050565b801515811461100b57600080fd5b60008060006060848603121561133257600080fd5b833561133d8161127c565b92506020840135915060408401356113548161130f565b809150509250925092565b60006020828403121561137157600080fd5b813561137c8161127c565b9392505050565b60006020828403121561139557600080fd5b5051919050565b80516113a78161127c565b919050565b80516113a78161130f565b600060e082840312156113c957600080fd5b60405160e0810181811067ffffffffffffffff821117156113fa57634e487b7160e01b600052604160045260246000fd5b6040526114068361139c565b81526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a082015261144660c084016113ac565b60c08201529392505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b0576104b0611452565b60006020828403121561148d57600080fd5b815161137c8161130f565b6000602082840312156114aa57600080fd5b815161137c8161127c565b818103818111156104b0576104b061145256fea2646970667358221220cc1292c49ab35c5150574a2f435ea521b71085c75e418c5b4ba22a9e0a1c946264736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006e2c8cc4200b681cdcf9053c19296847dff4a105000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e000000000000000000000000000000000000000000000000002386f26fc10000
-----Decoded View---------------
Arg [0] : _collectionRegistry (address): 0x6E2c8cc4200b681cDcf9053C19296847dff4a105
Arg [1] : _nftStats (address): 0xc42fACfc9a6277904c8F23558d07b2F9EEC6417E
Arg [2] : _initialEntryFee (uint256): 10000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000006e2c8cc4200b681cdcf9053c19296847dff4a105
Arg [1] : 000000000000000000000000c42facfc9a6277904c8f23558d07b2f9eec6417e
Arg [2] : 000000000000000000000000000000000000000000000000002386f26fc10000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.