Overview
APE Balance
APE Value
Less Than $0.01 (@ $0.54/APE)More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Initialize | 11423641 | 12 days ago | IN | 0 APE | 0.00179126 |
Loading...
Loading
Contract Name:
PrizePool
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./interfaces/IPrizePool.sol"; import "./interfaces/IDungeonEntry.sol"; import "./interfaces/IDungeonGame.sol"; /// @title PrizePool /// @notice Manages entry fees and prize distribution for successful dungeon runs contract PrizePool is IPrizePool, Ownable, ReentrancyGuard { // ------------------------- Constants ------------------------- uint256 private constant _MIN_ENTRY_FEE = 0.001 ether; uint256 private constant _MAX_ENTRY_FEE = 1 ether; uint256 private constant _WINNER_SHARE = 95; // 95% of entry fees go to winners uint256 private constant _TREASURY_SHARE = 5; // 5% goes to treasury // ------------------------- State variables ------------------------- uint256 private _entryFee; uint256 private _totalEntryFees; uint256 private _totalPrizesPaid; uint256 private _currentPrizePool; uint256 private _treasuryBalance; address private _dungeonEntry; address private _dungeonGame; bool private _initialized; // ------------------------- Events ------------------------- event EntryFeeUpdated(uint256 newFee); event PrizePoolUpdated(uint256 newPool); event PrizeClaimed( address indexed collection, uint256 indexed tokenId, uint256 amount ); event TreasuryWithdrawn(uint256 amount); event PrizePoolInitialized( address indexed dungeonEntry, address indexed dungeonGame ); // ------------------------- Constructor ------------------------- constructor(uint256 entryFee) Ownable(msg.sender) { require( entryFee >= _MIN_ENTRY_FEE && entryFee <= _MAX_ENTRY_FEE, "Invalid entry fee" ); _entryFee = entryFee; } // ------------------------- External functions - Admin ------------------------- /// @notice Initialize the PrizePool with required contract addresses /// @param dungeonEntry_ Address of the DungeonEntry contract /// @param dungeonGame_ Address of the DungeonGame contract function initialize( address dungeonEntry_, address dungeonGame_ ) external onlyOwner { require(!_initialized, "Already initialized"); require(dungeonEntry_ != address(0), "Invalid DungeonEntry address"); require(dungeonGame_ != address(0), "Invalid DungeonGame address"); _dungeonEntry = dungeonEntry_; _dungeonGame = dungeonGame_; _initialized = true; emit PrizePoolInitialized(dungeonEntry_, dungeonGame_); } /// @notice Updates the entry fee for dungeon runs /// @param newFee The new entry fee in wei function updateEntryFee(uint256 newFee) external onlyOwner { require( newFee >= _MIN_ENTRY_FEE && newFee <= _MAX_ENTRY_FEE, "Invalid entry fee" ); _entryFee = newFee; emit EntryFeeUpdated(newFee); } /// @notice Withdraws treasury balance to owner function withdrawTreasury() external onlyOwner nonReentrant { require(_initialized, "Not initialized"); uint256 amount = _treasuryBalance; require(amount > 0, "No treasury balance"); _treasuryBalance = 0; (bool success, ) = msg.sender.call{value: amount}(""); require(success, "Transfer failed"); emit TreasuryWithdrawn(amount); } // ------------------------- External functions - Core mechanics ------------------------- /// @notice Records entry fee payment function depositEntryFee() external payable { require(_initialized, "Not initialized"); require( msg.sender == _dungeonEntry, "Only DungeonEntry can record fees" ); require(msg.value == _entryFee, "Incorrect entry fee"); // Calculate shares uint256 treasuryShare = (msg.value * _TREASURY_SHARE) / 100; uint256 prizeShare = msg.value - treasuryShare; // Update balances _currentPrizePool += prizeShare; _treasuryBalance += treasuryShare; _totalEntryFees += msg.value; emit PrizePoolUpdated(_currentPrizePool); } /// @notice Register a winner and immediately transfer their prize /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function registerWinner(address collection, uint256 tokenId) external { require(_initialized, "Not initialized"); require( msg.sender == _dungeonGame, "Only DungeonGame can register winners" ); require(_currentPrizePool > 0, "No prize pool available"); address winner = IERC721(collection).ownerOf(tokenId); uint256 prize = _currentPrizePool; // Reset prize pool before transfer to prevent reentrancy _currentPrizePool = 0; _totalPrizesPaid += prize; // Transfer prize to winner (bool success, ) = winner.call{value: prize}(""); require(success, "Prize transfer failed"); emit PrizeClaimed(collection, tokenId, prize); emit PrizePoolUpdated(0); } // ------------------------- External view functions ------------------------- /// @notice Gets the current entry fee function getEntryFee() external view returns (uint256) { return _entryFee; } /// @notice Gets the current prize pool amount function getCurrentPrizePool() external view returns (uint256) { return _currentPrizePool; } /// @notice Gets total entry fees collected function getTotalEntryFees() external view returns (uint256) { return _totalEntryFees; } /// @notice Gets total prizes paid out function getTotalPrizesPaid() external view returns (uint256) { return _totalPrizesPaid; } /// @notice Gets current treasury balance function getTreasuryBalance() external view returns (uint256) { return _treasuryBalance; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-721 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 ERC-721 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 ERC-721 * 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 address zero. * * 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 pragma solidity ^0.8.20; /// @title IPrizePool /// @notice Interface for managing dungeon rewards and prize distribution interface IPrizePool { // ------------------------- Events ------------------------- /// @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); // ------------------------- External functions - Core mechanics ------------------------- /// @notice Deposit entry fee for a dungeon run function depositEntryFee() external payable; /// @notice Register a winner and immediately transfer their prize /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function registerWinner(address collection, uint256 tokenId) external; // ------------------------- View functions ------------------------- /// @notice Get current prize pool amount /// @return uint256 Current prize pool amount function getCurrentPrizePool() external view returns (uint256); /// @notice Gets the current entry fee /// @return uint256 Current entry fee function getEntryFee() external view returns (uint256); /// @notice Gets total entry fees collected /// @return uint256 Total entry fees function getTotalEntryFees() external view returns (uint256); /// @notice Gets total prizes paid out /// @return uint256 Total prizes paid function getTotalPrizesPaid() external view returns (uint256); /// @notice Gets current treasury balance /// @return uint256 Current treasury balance function getTreasuryBalance() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /// @title IDungeonEntry /// @notice Interface for managing dungeon entry and run initialization interface IDungeonEntry { // ------------------------- Type definitions ------------------------- /// @notice Structure for active dungeon run state struct DungeonRun { uint256 currentHp; uint256 currentRoom; bool isActive; } // ------------------------- Events ------------------------- /// @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 ); // ------------------------- External functions ------------------------- /// @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; // ------------------------- View functions ------------------------- /// @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.20; /// @title IDungeonGame /// @notice Interface for core dungeon game mechanics and progression interface IDungeonGame { // ------------------------- Type definitions ------------------------- /// @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; string encounterDescription; } /// @notice Structure for character state struct CharacterState { address collection; uint256 tokenId; uint256 currentHp; } // ------------------------- Events ------------------------- /// @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); // ------------------------- External functions - Core game mechanics ------------------------- /// @notice Add a new character to the dungeon queue /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT function enterDungeon(address collection, uint256 tokenId) external; // ------------------------- View functions ------------------------- /// @notice Get the current room number for a character /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return Current room number function getCharacterRoomNumber( address collection, uint256 tokenId ) external view returns (uint8); /// @notice Get the current room state for a character /// @param collection Address of the NFT collection /// @param tokenId Token ID of the NFT /// @return Current room state function getCharacterState( address collection, uint256 tokenId ) external view returns (CharacterState memory); /// @notice Get the state of a specific room /// @param roomNumber Room number to get state for /// @return CharacterState Memory of the room state function getRoomState( uint256 roomNumber ) external view returns (CharacterState memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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/", "@pythnetwork/entropy-sdk-solidity/=../node_modules/@pythnetwork/entropy-sdk-solidity/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "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": "shanghai", "libraries": { "src/libraries/StatValidation.sol": { "StatValidation": "0xa47e09289210880a16cc21675fd20d83458c5036" }, "src/libraries/StatsCalculator.sol": { "StatsCalculator": "0xd6bf084ff15566d2e8b102412e9668a902788bd6" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"entryFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EntryFeeDeposited","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"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PrizeClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dungeonEntry","type":"address"},{"indexed":true,"internalType":"address","name":"dungeonGame","type":"address"}],"name":"PrizePoolInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"entryFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"winnerShare","type":"uint256"}],"name":"PrizePoolParametersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPool","type":"uint256"}],"name":"PrizePoolUpdated","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":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TreasuryWithdrawn","type":"event"},{"inputs":[],"name":"depositEntryFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getCurrentPrizePool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEntryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalEntryFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalPrizesPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTreasuryBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dungeonEntry_","type":"address"},{"internalType":"address","name":"dungeonGame_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"registerWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"withdrawTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051610d37380380610d3783398101604081905261002e91610118565b338061005457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61005d816100c9565b506001805566038d7ea4c6800081108015906100815750670de0b6b3a76400008111155b6100c15760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420656e7472792066656560781b604482015260640161004b565b60025561012f565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610128575f80fd5b5051919050565b610bfb8061013c5f395ff3fe6080604052600436106100bf575f3560e01c80639b5655dc1161007c578063aa18262611610057578063aa18262614610199578063e586a4f0146101b8578063f2fde38b146101cc578063f79edfcd146101eb575f80fd5b80639b5655dc146101695780639bad417d1461017d5780639e70b75f14610191575f80fd5b8063166bab95146100c3578063485cc955146100d957806355e93ede146100f8578063715018a61461011b5780637b3888a71461012f5780638da5cb5b14610143575b5f80fd5b3480156100ce575f80fd5b506100d761020a565b005b3480156100e4575f80fd5b506100d76100f3366004610a71565b61035d565b348015610103575f80fd5b506005545b6040519081526020015b60405180910390f35b348015610126575f80fd5b506100d76104c9565b34801561013a575f80fd5b50600354610108565b34801561014e575f80fd5b505f546040516001600160a01b039091168152602001610112565b348015610174575f80fd5b50600654610108565b348015610188575f80fd5b50600454610108565b6100d76104da565b3480156101a4575f80fd5b506100d76101b3366004610aa8565b610655565b3480156101c3575f80fd5b50600254610108565b3480156101d7575f80fd5b506100d76101e6366004610abf565b6106f7565b3480156101f6575f80fd5b506100d7610205366004610ae1565b610734565b6102126109b8565b61021a6109e4565b600854600160a01b900460ff1661024c5760405162461bcd60e51b815260040161024390610b0b565b60405180910390fd5b600654806102925760405162461bcd60e51b81526020600482015260136024820152724e6f2074726561737572792062616c616e636560681b6044820152606401610243565b5f6006819055604051339083908381818185875af1925050503d805f81146102d5576040519150601f19603f3d011682016040523d82523d5f602084013e6102da565b606091505b505090508061031d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610243565b6040518281527fdcfb70a6f0f5eab41644ac0cde62fe5f51ce0bb0a53b88ea72c4b2b78ad887bc9060200160405180910390a1505061035b60018055565b565b6103656109b8565b600854600160a01b900460ff16156103b55760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610243565b6001600160a01b03821661040b5760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642044756e67656f6e456e7472792061646472657373000000006044820152606401610243565b6001600160a01b0381166104615760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642044756e67656f6e47616d65206164647265737300000000006044820152606401610243565b600780546001600160a01b038085166001600160a01b03199092168217909255600880546001600160a81b031916928416928317600160a01b1790556040517f1f25eabb2412fae4cdd9bfa26f61364ef5482f69d3f5f743f090a4c3f9cfce7a905f90a35050565b6104d16109b8565b61035b5f610a0e565b600854600160a01b900460ff166105035760405162461bcd60e51b815260040161024390610b0b565b6007546001600160a01b031633146105675760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792044756e67656f6e456e7472792063616e207265636f7264206665656044820152607360f81b6064820152608401610243565b60025434146105ae5760405162461bcd60e51b8152602060048201526013602482015272496e636f727265637420656e7472792066656560681b6044820152606401610243565b5f60646105bc600534610b48565b6105c69190610b65565b90505f6105d38234610b84565b90508060055f8282546105e69190610b97565b925050819055508160065f8282546105fe9190610b97565b925050819055503460035f8282546106169190610b97565b90915550506005546040519081527f7bc22304ac771f50d6cc29b56387cb4855f284e7a1f83e6420fe9b8bbdaf45c99060200160405180910390a15050565b61065d6109b8565b66038d7ea4c68000811015801561067c5750670de0b6b3a76400008111155b6106bc5760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420656e7472792066656560781b6044820152606401610243565b60028190556040518181527f24a0b2e591795f2c27be52ff14a57d0a39ac957304305bc05e8b04be49e8fe159060200160405180910390a150565b6106ff6109b8565b6001600160a01b03811661072857604051631e4fbdf760e01b81525f6004820152602401610243565b61073181610a0e565b50565b600854600160a01b900460ff1661075d5760405162461bcd60e51b815260040161024390610b0b565b6008546001600160a01b031633146107c55760405162461bcd60e51b815260206004820152602560248201527f4f6e6c792044756e67656f6e47616d652063616e2072656769737465722077696044820152646e6e65727360d81b6064820152608401610243565b5f600554116108165760405162461bcd60e51b815260206004820152601760248201527f4e6f207072697a6520706f6f6c20617661696c61626c650000000000000000006044820152606401610243565b6040516331a9108f60e11b8152600481018290525f906001600160a01b03841690636352211e90602401602060405180830381865afa15801561085b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087f9190610baa565b90505f60055490505f6005819055508060045f82825461089f9190610b97565b90915550506040515f906001600160a01b0384169083908381818185875af1925050503d805f81146108ec576040519150601f19603f3d011682016040523d82523d5f602084013e6108f1565b606091505b505090508061093a5760405162461bcd60e51b8152602060048201526015602482015274141c9a5e99481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610243565b83856001600160a01b03167f256642a903d86ec186d0ad895b74bdbe7f9e5a72db568f4c4d58c2fa38b39e1c8460405161097691815260200190565b60405180910390a36040515f81527f7bc22304ac771f50d6cc29b56387cb4855f284e7a1f83e6420fe9b8bbdaf45c99060200160405180910390a15050505050565b5f546001600160a01b0316331461035b5760405163118cdaa760e01b8152336004820152602401610243565b600260015403610a0757604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610731575f80fd5b5f8060408385031215610a82575f80fd5b8235610a8d81610a5d565b91506020830135610a9d81610a5d565b809150509250929050565b5f60208284031215610ab8575f80fd5b5035919050565b5f60208284031215610acf575f80fd5b8135610ada81610a5d565b9392505050565b5f8060408385031215610af2575f80fd5b8235610afd81610a5d565b946020939093013593505050565b6020808252600f908201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b5f57610b5f610b34565b92915050565b5f82610b7f57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610b5f57610b5f610b34565b80820180821115610b5f57610b5f610b34565b5f60208284031215610bba575f80fd5b8151610ada81610a5d56fea2646970667358221220a72c17fe07af1aeac6805fc83ecd54ee5a607b591272ab704639cee49ed8488a64736f6c6343000814003300000000000000000000000000000000000000000000000000038d7ea4c68000
Deployed Bytecode
0x6080604052600436106100bf575f3560e01c80639b5655dc1161007c578063aa18262611610057578063aa18262614610199578063e586a4f0146101b8578063f2fde38b146101cc578063f79edfcd146101eb575f80fd5b80639b5655dc146101695780639bad417d1461017d5780639e70b75f14610191575f80fd5b8063166bab95146100c3578063485cc955146100d957806355e93ede146100f8578063715018a61461011b5780637b3888a71461012f5780638da5cb5b14610143575b5f80fd5b3480156100ce575f80fd5b506100d761020a565b005b3480156100e4575f80fd5b506100d76100f3366004610a71565b61035d565b348015610103575f80fd5b506005545b6040519081526020015b60405180910390f35b348015610126575f80fd5b506100d76104c9565b34801561013a575f80fd5b50600354610108565b34801561014e575f80fd5b505f546040516001600160a01b039091168152602001610112565b348015610174575f80fd5b50600654610108565b348015610188575f80fd5b50600454610108565b6100d76104da565b3480156101a4575f80fd5b506100d76101b3366004610aa8565b610655565b3480156101c3575f80fd5b50600254610108565b3480156101d7575f80fd5b506100d76101e6366004610abf565b6106f7565b3480156101f6575f80fd5b506100d7610205366004610ae1565b610734565b6102126109b8565b61021a6109e4565b600854600160a01b900460ff1661024c5760405162461bcd60e51b815260040161024390610b0b565b60405180910390fd5b600654806102925760405162461bcd60e51b81526020600482015260136024820152724e6f2074726561737572792062616c616e636560681b6044820152606401610243565b5f6006819055604051339083908381818185875af1925050503d805f81146102d5576040519150601f19603f3d011682016040523d82523d5f602084013e6102da565b606091505b505090508061031d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610243565b6040518281527fdcfb70a6f0f5eab41644ac0cde62fe5f51ce0bb0a53b88ea72c4b2b78ad887bc9060200160405180910390a1505061035b60018055565b565b6103656109b8565b600854600160a01b900460ff16156103b55760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610243565b6001600160a01b03821661040b5760405162461bcd60e51b815260206004820152601c60248201527f496e76616c69642044756e67656f6e456e7472792061646472657373000000006044820152606401610243565b6001600160a01b0381166104615760405162461bcd60e51b815260206004820152601b60248201527f496e76616c69642044756e67656f6e47616d65206164647265737300000000006044820152606401610243565b600780546001600160a01b038085166001600160a01b03199092168217909255600880546001600160a81b031916928416928317600160a01b1790556040517f1f25eabb2412fae4cdd9bfa26f61364ef5482f69d3f5f743f090a4c3f9cfce7a905f90a35050565b6104d16109b8565b61035b5f610a0e565b600854600160a01b900460ff166105035760405162461bcd60e51b815260040161024390610b0b565b6007546001600160a01b031633146105675760405162461bcd60e51b815260206004820152602160248201527f4f6e6c792044756e67656f6e456e7472792063616e207265636f7264206665656044820152607360f81b6064820152608401610243565b60025434146105ae5760405162461bcd60e51b8152602060048201526013602482015272496e636f727265637420656e7472792066656560681b6044820152606401610243565b5f60646105bc600534610b48565b6105c69190610b65565b90505f6105d38234610b84565b90508060055f8282546105e69190610b97565b925050819055508160065f8282546105fe9190610b97565b925050819055503460035f8282546106169190610b97565b90915550506005546040519081527f7bc22304ac771f50d6cc29b56387cb4855f284e7a1f83e6420fe9b8bbdaf45c99060200160405180910390a15050565b61065d6109b8565b66038d7ea4c68000811015801561067c5750670de0b6b3a76400008111155b6106bc5760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420656e7472792066656560781b6044820152606401610243565b60028190556040518181527f24a0b2e591795f2c27be52ff14a57d0a39ac957304305bc05e8b04be49e8fe159060200160405180910390a150565b6106ff6109b8565b6001600160a01b03811661072857604051631e4fbdf760e01b81525f6004820152602401610243565b61073181610a0e565b50565b600854600160a01b900460ff1661075d5760405162461bcd60e51b815260040161024390610b0b565b6008546001600160a01b031633146107c55760405162461bcd60e51b815260206004820152602560248201527f4f6e6c792044756e67656f6e47616d652063616e2072656769737465722077696044820152646e6e65727360d81b6064820152608401610243565b5f600554116108165760405162461bcd60e51b815260206004820152601760248201527f4e6f207072697a6520706f6f6c20617661696c61626c650000000000000000006044820152606401610243565b6040516331a9108f60e11b8152600481018290525f906001600160a01b03841690636352211e90602401602060405180830381865afa15801561085b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087f9190610baa565b90505f60055490505f6005819055508060045f82825461089f9190610b97565b90915550506040515f906001600160a01b0384169083908381818185875af1925050503d805f81146108ec576040519150601f19603f3d011682016040523d82523d5f602084013e6108f1565b606091505b505090508061093a5760405162461bcd60e51b8152602060048201526015602482015274141c9a5e99481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610243565b83856001600160a01b03167f256642a903d86ec186d0ad895b74bdbe7f9e5a72db568f4c4d58c2fa38b39e1c8460405161097691815260200190565b60405180910390a36040515f81527f7bc22304ac771f50d6cc29b56387cb4855f284e7a1f83e6420fe9b8bbdaf45c99060200160405180910390a15050505050565b5f546001600160a01b0316331461035b5760405163118cdaa760e01b8152336004820152602401610243565b600260015403610a0757604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114610731575f80fd5b5f8060408385031215610a82575f80fd5b8235610a8d81610a5d565b91506020830135610a9d81610a5d565b809150509250929050565b5f60208284031215610ab8575f80fd5b5035919050565b5f60208284031215610acf575f80fd5b8135610ada81610a5d565b9392505050565b5f8060408385031215610af2575f80fd5b8235610afd81610a5d565b946020939093013593505050565b6020808252600f908201526e139bdd081a5b9a5d1a585b1a5e9959608a1b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b5f57610b5f610b34565b92915050565b5f82610b7f57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610b5f57610b5f610b34565b80820180821115610b5f57610b5f610b34565b5f60208284031215610bba575f80fd5b8151610ada81610a5d56fea2646970667358221220a72c17fe07af1aeac6805fc83ecd54ee5a607b591272ab704639cee49ed8488a64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000038d7ea4c68000
-----Decoded View---------------
Arg [0] : entryFee (uint256): 1000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
APE | 100.00% | $0.538339 | 0.004 | $0.002153 |
Loading...
Loading
Loading...
Loading
[ 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.