APE Price: $0.51 (-1.19%)

Contract

0x99408eE80Efe64814CD0561762b192F506E7c119

Overview

APE Balance

Apechain LogoApechain LogoApechain Logo0 APE

APE Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Whitelist Collec...114255142025-03-11 23:26:2033 hrs ago1741735580IN
0x99408eE8...506E7c119
0 APE0.0032386425.42069

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CollectionRegistry

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 7 : CollectionRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "./interfaces/ICollectionRegistry.sol";
import "./libraries/StatValidation.sol";

/// @title CollectionRegistry
/// @notice Manages whitelisted NFT collections and their base stats
contract CollectionRegistry is ICollectionRegistry, Ownable {
    // ------------------------- State variables -------------------------
    // Mapping from collection address to its stats
    mapping(address => CollectionStats) private collectionStats;

    // Array to keep track of all whitelisted collections
    address[] private whitelistedCollections;

    // ------------------------- Constructor -------------------------
    constructor() Ownable(msg.sender) {}

    // ------------------------- External functions - Admin -------------------------
    /// @notice Whitelist a new NFT collection with base stats
    /// @param collection Address of the NFT collection
    /// @param baseVitality Initial vitality for NFTs from this collection
    /// @param baseStrength Initial strength for NFTs from this collection
    /// @param baseAgility Initial agility for NFTs from this collection
    /// @param baseDefense Initial defense for NFTs from this collection
    /// @param classType Class archetype for this collection
    /// @param complexity Gas complexity tier (1-3)
    function whitelistCollection(
        address collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    ) external onlyOwner {
        require(
            !collectionStats[collection].isWhitelisted,
            "Already whitelisted"
        );
        _validateERC721(collection);

        // Validate stats for class type
        uint64[4] memory stats = [
            baseVitality,
            baseStrength,
            baseAgility,
            baseDefense
        ];
        StatValidation.validateClassStats(uint8(classType), stats);

        // Store collection stats
        collectionStats[collection] = CollectionStats({
            baseVitality: baseVitality,
            baseStrength: baseStrength,
            baseAgility: baseAgility,
            baseDefense: baseDefense,
            classType: uint8(classType),
            complexity: complexity,
            isWhitelisted: true
        });

        whitelistedCollections.push(collection);

        emit CollectionWhitelisted(
            collection,
            baseVitality,
            baseStrength,
            baseAgility,
            baseDefense,
            classType,
            complexity
        );
    }

    /// @notice Update base stats for a whitelisted collection
    /// @param collection Address of the NFT collection
    /// @param baseVitality New base vitality
    /// @param baseStrength New base strength
    /// @param baseAgility New base agility
    /// @param baseDefense New base defense
    /// @param classType New class archetype
    /// @param complexity New complexity tier
    function updateCollectionStats(
        address collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    ) external onlyOwner {
        require(collectionStats[collection].isWhitelisted, "Not whitelisted");

        // Validate stats for class type
        uint64[4] memory stats = [
            baseVitality,
            baseStrength,
            baseAgility,
            baseDefense
        ];
        StatValidation.validateClassStats(uint8(classType), stats);

        // Update collection stats
        collectionStats[collection] = CollectionStats({
            baseVitality: baseVitality,
            baseStrength: baseStrength,
            baseAgility: baseAgility,
            baseDefense: baseDefense,
            classType: uint8(classType),
            complexity: complexity,
            isWhitelisted: true
        });

        emit CollectionStatsUpdated(
            collection,
            baseVitality,
            baseStrength,
            baseAgility,
            baseDefense,
            classType,
            complexity
        );
    }

    /// @notice Remove a collection from the whitelist
    /// @param collection Address of the NFT collection to remove
    function removeCollection(address collection) external onlyOwner {
        require(collectionStats[collection].isWhitelisted, "Not whitelisted");

        delete collectionStats[collection];

        // Remove from whitelisted collections array
        for (uint256 i = 0; i < whitelistedCollections.length; i++) {
            if (whitelistedCollections[i] == collection) {
                whitelistedCollections[i] = whitelistedCollections[
                    whitelistedCollections.length - 1
                ];
                whitelistedCollections.pop();
                break;
            }
        }

        emit CollectionRemoved(collection);
    }

    // ------------------------- External view functions -------------------------
    /// @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) {
        return collectionStats[collection].isWhitelisted;
    }

    /// @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) {
        return collectionStats[collection];
    }

    /// @notice Get all whitelisted collections
    /// @return address[] Array of whitelisted collection addresses
    function getWhitelistedCollections()
        external
        view
        returns (address[] memory)
    {
        return whitelistedCollections;
    }

    // ------------------------- Internal functions -------------------------
    /// @notice Validate that an address is an ERC721 contract
    /// @param collection Address to validate
    function _validateERC721(address collection) internal view {
        require(collection.code.length > 0, "Collection must be a contract");
        try IERC721(collection).supportsInterface(0x80ac58cd) returns (
            bool isERC721
        ) {
            require(isERC721, "Collection must support ERC721 interface");
        } catch {
            revert("Collection must support ERC721 interface");
        }
    }
}

File 2 of 7 : Ownable.sol
// 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);
    }
}

File 3 of 7 : IERC721.sol
// 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);
}

File 4 of 7 : ICollectionRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/// @title ICollectionRegistry
/// @notice Interface for managing whitelisted NFT collections and their base stats
interface ICollectionRegistry {
    // ------------------------- Type definitions -------------------------
    /// @notice Enum for different class archetypes
    enum ClassArchetype {
        WARRIOR, // High strength/defense
        ROGUE, // High agility/critical
        PALADIN, // Balanced with healing
        BERSERKER // High damage/risk
    }

    /// @notice Stats structure for NFT collections
    struct CollectionStats {
        uint64 baseVitality;
        uint64 baseStrength;
        uint64 baseAgility;
        uint64 baseDefense;
        uint8 classType; // ClassArchetype
        uint8 complexity; // For gas limit determination
        bool isWhitelisted;
    }

    // ------------------------- Events -------------------------
    /// @notice Event emitted when a collection is whitelisted
    event CollectionWhitelisted(
        address indexed collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    );

    /// @notice Event emitted when a collection's stats are updated
    event CollectionStatsUpdated(
        address indexed collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    );

    /// @notice Event emitted when a collection is removed from whitelist
    event CollectionRemoved(address indexed collection);

    // ------------------------- Admin functions -------------------------
    /// @notice Whitelist a new NFT collection with base stats
    /// @param collection Address of the NFT collection
    /// @param baseVitality Initial vitality for NFTs from this collection
    /// @param baseStrength Initial strength for NFTs from this collection
    /// @param baseAgility Initial agility for NFTs from this collection
    /// @param baseDefense Initial defense for NFTs from this collection
    /// @param classType Class archetype for this collection
    /// @param complexity Gas complexity tier (1-3)
    function whitelistCollection(
        address collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    ) external;

    /// @notice Update base stats for a whitelisted collection
    /// @param collection Address of the NFT collection
    /// @param baseVitality New base vitality
    /// @param baseStrength New base strength
    /// @param baseAgility New base agility
    /// @param baseDefense New base defense
    /// @param classType New class archetype
    /// @param complexity New complexity tier
    function updateCollectionStats(
        address collection,
        uint64 baseVitality,
        uint64 baseStrength,
        uint64 baseAgility,
        uint64 baseDefense,
        ClassArchetype classType,
        uint8 complexity
    ) external;

    /// @notice Remove a collection from the whitelist
    /// @param collection Address of the NFT collection to remove
    function removeCollection(address collection) external;

    // ------------------------- View functions -------------------------
    /// @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);
}

File 5 of 7 : StatValidation.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "../interfaces/ICollectionRegistry.sol";

/// @title StatValidation
/// @notice Library for validating stat ranges and class-specific requirements
library StatValidation {
    // ------------------------- Constants -------------------------
    uint64 private constant MIN_STAT_VALUE = 50;
    uint64 private constant MAX_STAT_VALUE = 200;
    uint64 private constant MAX_STAT_INCREASE = 50;
    uint8 private constant MAX_COMPLEXITY = 3;

    // Gas limits by complexity tier
    uint256 private constant TIER1_GAS_LIMIT = 30000;
    uint256 private constant TIER2_GAS_LIMIT = 50000;
    uint256 private constant TIER3_GAS_LIMIT = 80000;

    // ------------------------- Errors -------------------------
    error InvalidStatRange(uint64 value, uint64 min, uint64 max);
    error InvalidStatIncrease(
        uint64 oldValue,
        uint64 newValue,
        uint64 maxIncrease
    );
    error InvalidClassStats(uint8 classType, string reason);
    error InvalidComplexity(uint8 complexity, uint256 gasUsed);

    // ------------------------- Core validation -------------------------
    /// @notice Validate a stat value is within acceptable range
    /// @param value Stat value to check
    /// @param min Minimum allowed value
    /// @param max Maximum allowed value
    function validateStatRange(
        uint64 value,
        uint64 min,
        uint64 max
    ) public pure {
        if (value < min || value > max) {
            revert InvalidStatRange(value, min, max);
        }
    }

    /// @notice Validate a stat increase is within acceptable range
    /// @param oldValue Previous stat value
    /// @param newValue New stat value
    /// @param maxIncrease Maximum allowed increase
    function validateStatIncrease(
        uint64 oldValue,
        uint64 newValue,
        uint64 maxIncrease
    ) public pure {
        if (newValue < oldValue || newValue > oldValue + maxIncrease) {
            revert InvalidStatIncrease(oldValue, newValue, maxIncrease);
        }
    }

    // ------------------------- Class validation -------------------------
    /// @notice Validate stats are appropriate for class type
    /// @param classType The class archetype
    /// @param stats Array of stats [vitality, strength, agility, defense]
    function validateClassStats(
        uint8 classType,
        uint64[4] memory stats
    ) public pure {
        ICollectionRegistry.ClassArchetype archetype = ICollectionRegistry
            .ClassArchetype(classType);

        // Validate base requirements for each class
        if (archetype == ICollectionRegistry.ClassArchetype.WARRIOR) {
            if (stats[1] < 80 || stats[3] < 80) {
                // strength and defense
                revert InvalidClassStats(
                    classType,
                    "Warrior requires high strength and defense"
                );
            }
        } else if (archetype == ICollectionRegistry.ClassArchetype.ROGUE) {
            if (stats[2] < 80) {
                // agility
                revert InvalidClassStats(
                    classType,
                    "Rogue requires high agility"
                );
            }
        } else if (archetype == ICollectionRegistry.ClassArchetype.PALADIN) {
            if (stats[0] < 80 || stats[3] < 70) {
                // vitality and defense
                revert InvalidClassStats(
                    classType,
                    "Paladin requires high vitality and defense"
                );
            }
        } else if (archetype == ICollectionRegistry.ClassArchetype.BERSERKER) {
            if (stats[1] < 90) {
                // strength
                revert InvalidClassStats(
                    classType,
                    "Berserker requires very high strength"
                );
            }
        }

        // Validate all stats are within global range
        for (uint256 i = 0; i < 4; i++) {
            validateStatRange(stats[i], MIN_STAT_VALUE, MAX_STAT_VALUE);
        }
    }

    // ------------------------- Complexity validation -------------------------
    /// @notice Validate gas usage against complexity tier
    /// @param complexity Complexity tier (1-3)
    /// @param gasUsed Amount of gas used
    function validateComplexityRequirements(
        uint8 complexity,
        uint256 gasUsed
    ) public pure {
        if (complexity == 0 || complexity > MAX_COMPLEXITY) {
            revert InvalidComplexity(complexity, gasUsed);
        }

        uint256 gasLimit = complexity == 1
            ? TIER1_GAS_LIMIT
            : complexity == 2
                ? TIER2_GAS_LIMIT
                : TIER3_GAS_LIMIT;

        if (gasUsed > gasLimit) {
            revert InvalidComplexity(complexity, gasUsed);
        }
    }

    // ------------------------- Utility functions -------------------------
    /// @notice Get the gas limit for a complexity tier
    /// @param complexity Complexity tier (1-3)
    /// @return uint256 Gas limit for the tier
    function getGasLimitForComplexity(
        uint8 complexity
    ) public pure returns (uint256) {
        return
            complexity == 1
                ? TIER1_GAS_LIMIT
                : complexity == 2
                    ? TIER2_GAS_LIMIT
                    : complexity == 3
                        ? TIER3_GAS_LIMIT
                        : 0;
    }
}

File 6 of 7 : Context.sol
// 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;
    }
}

File 7 of 7 : IERC165.sol
// 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);
}

Settings
{
  "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": "0xbf98e89c279e7b7e74c6b13179dd0bfe4e54ae5d"
    },
    "src/libraries/StatsCalculator.sol": {
      "StatsCalculator": "0x78758a734b9e2045728d179f1f5b180c7e948095"
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"}],"name":"CollectionRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":false,"internalType":"uint64","name":"baseVitality","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseStrength","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseAgility","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseDefense","type":"uint64"},{"indexed":false,"internalType":"enum ICollectionRegistry.ClassArchetype","name":"classType","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"complexity","type":"uint8"}],"name":"CollectionStatsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collection","type":"address"},{"indexed":false,"internalType":"uint64","name":"baseVitality","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseStrength","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseAgility","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"baseDefense","type":"uint64"},{"indexed":false,"internalType":"enum ICollectionRegistry.ClassArchetype","name":"classType","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"complexity","type":"uint8"}],"name":"CollectionWhitelisted","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"},{"inputs":[{"internalType":"address","name":"collection","type":"address"}],"name":"getCollectionStats","outputs":[{"components":[{"internalType":"uint64","name":"baseVitality","type":"uint64"},{"internalType":"uint64","name":"baseStrength","type":"uint64"},{"internalType":"uint64","name":"baseAgility","type":"uint64"},{"internalType":"uint64","name":"baseDefense","type":"uint64"},{"internalType":"uint8","name":"classType","type":"uint8"},{"internalType":"uint8","name":"complexity","type":"uint8"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"internalType":"struct ICollectionRegistry.CollectionStats","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedCollections","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"}],"name":"removeCollection","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":"address","name":"collection","type":"address"},{"internalType":"uint64","name":"baseVitality","type":"uint64"},{"internalType":"uint64","name":"baseStrength","type":"uint64"},{"internalType":"uint64","name":"baseAgility","type":"uint64"},{"internalType":"uint64","name":"baseDefense","type":"uint64"},{"internalType":"enum ICollectionRegistry.ClassArchetype","name":"classType","type":"uint8"},{"internalType":"uint8","name":"complexity","type":"uint8"}],"name":"updateCollectionStats","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint64","name":"baseVitality","type":"uint64"},{"internalType":"uint64","name":"baseStrength","type":"uint64"},{"internalType":"uint64","name":"baseAgility","type":"uint64"},{"internalType":"uint64","name":"baseDefense","type":"uint64"},{"internalType":"enum ICollectionRegistry.ClassArchetype","name":"classType","type":"uint8"},{"internalType":"uint8","name":"complexity","type":"uint8"}],"name":"whitelistCollection","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50338061003557604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b61003e81610044565b50610093565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ee1806100a05f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638da5cb5b116100635780638da5cb5b14610110578063a255ae681461012a578063ae7b96001461013d578063e637941814610150578063f2fde38b14610290575f80fd5b80633af32abf146100945780635028d05a146100de578063715018a6146100f35780638b0279d2146100fb575b5f80fd5b6100c96100a2366004610c11565b6001600160a01b03165f908152600160208190526040909120015462010000900460ff1690565b60405190151581526020015b60405180910390f35b6100f16100ec366004610c11565b6102a3565b005b6100f1610470565b610103610483565b6040516100d59190610c31565b5f546040516001600160a01b0390911681526020016100d5565b6100f1610138366004610c93565b6104e3565b6100f161014b366004610c93565b6107c2565b61022261015e366004610c11565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810191909152506001600160a01b03165f90815260016020818152604092839020835160e08101855281546001600160401b038082168352600160401b8204811694830194909452600160801b8104841695820195909552600160c01b9094049091166060840152015460ff80821660808401526101008204811660a08401526201000090910416151560c082015290565b6040516100d591905f60e0820190506001600160401b038084511683528060208501511660208401528060408501511660408401528060608501511660608401525060ff608084015116608083015260ff60a08401511660a083015260c0830151151560c083015292915050565b6100f161029e366004610c11565b610a41565b6102ab610a7e565b6001600160a01b0381165f908152600160208190526040909120015462010000900460ff166103135760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064015b60405180910390fd5b6001600160a01b0381165f908152600160208190526040822082815501805462ffffff191690555b60025481101561043957816001600160a01b03166002828154811061036257610362610d22565b5f918252602090912001546001600160a01b031603610427576002805461038b90600190610d4a565b8154811061039b5761039b610d22565b5f91825260209091200154600280546001600160a01b0390921691839081106103c6576103c6610d22565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600280548061040257610402610d63565b5f8281526020902081015f1990810180546001600160a01b0319169055019055610439565b8061043181610d77565b91505061033b565b506040516001600160a01b038216907fa0691bd707b2f65c33c8343d61c274df72c6b5007937dcfbc31aa5a0d0f6fe3c905f90a250565b610478610a7e565b6104815f610aaa565b565b606060028054806020026020016040519081016040528092919081815260200182805480156104d957602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116104bb575b5050505050905090565b6104eb610a7e565b6001600160a01b0387165f908152600160208190526040909120015462010000900460ff16156105535760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b604482015260640161030a565b61055c87610af9565b604080516080810182526001600160401b038089168252878116602083015286811692820192909252908416606082015273bf98e89c279e7b7e74c6b13179dd0bfe4e54ae5d63baae97e58460038111156105b9576105b9610d8f565b836040518363ffffffff1660e01b81526004016105d7929190610da3565b5f6040518083038186803b1580156105ed575f80fd5b505af41580156105ff573d5f803e3d5ffd5b505050506040518060e00160405280886001600160401b03168152602001876001600160401b03168152602001866001600160401b03168152602001856001600160401b0316815260200184600381111561065c5761065c610d8f565b60ff9081168252848116602080840191909152600160409384018190526001600160a01b038d165f81815282845285812087518154958901518989015160608b01516001600160401b03908116600160c01b026001600160c01b03928216600160801b02929092166001600160801b03938216600160401b026001600160801b0319909a1691909416179790971716179490941784556080870151938301805460a089015160c0909901511515620100000262ff0000199988166101000261ffff1990921696909716959095179490941796909616939093179091556002805491820181559093527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90920180546001600160a01b03191683179055517fe90fa6e37dbdc92fb609710b146ac3fe753dd77c73dfc2dda320d25c15b3ed87906107b0908a908a908a908a908a908a90610de6565b60405180910390a25050505050505050565b6107ca610a7e565b6001600160a01b0387165f908152600160208190526040909120015462010000900460ff1661082d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161030a565b604080516080810182526001600160401b038089168252878116602083015286811692820192909252908416606082015273bf98e89c279e7b7e74c6b13179dd0bfe4e54ae5d63baae97e584600381111561088a5761088a610d8f565b836040518363ffffffff1660e01b81526004016108a8929190610da3565b5f6040518083038186803b1580156108be575f80fd5b505af41580156108d0573d5f803e3d5ffd5b505050506040518060e00160405280886001600160401b03168152602001876001600160401b03168152602001866001600160401b03168152602001856001600160401b0316815260200184600381111561092d5761092d610d8f565b60ff9081168252848116602080840191909152600160409384018190526001600160a01b038d165f81815282845285902086518154948801518888015160608a01516001600160401b03908116600160c01b026001600160c01b03928216600160801b02929092166001600160801b03938216600160401b026001600160801b03199099169190941617969096171617939093178355608086015192909101805460a087015160c0909701511515620100000262ff0000199786166101000261ffff1990921694909516939093179290921794909416919091179055517f69d9c54e5e90ad5896a995c1102dd520a64c5ae2adc410f8eb26c2a5bdf6d05d906107b0908a908a908a908a908a908a90610de6565b610a49610a7e565b6001600160a01b038116610a7257604051631e4fbdf760e01b81525f600482015260240161030a565b610a7b81610aaa565b50565b5f546001600160a01b031633146104815760405163118cdaa760e01b815233600482015260240161030a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f816001600160a01b03163b11610b525760405162461bcd60e51b815260206004820152601d60248201527f436f6c6c656374696f6e206d757374206265206120636f6e7472616374000000604482015260640161030a565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa925050508015610bb9575060408051601f3d908101601f19168201909252610bb691810190610e44565b60015b610bd55760405162461bcd60e51b815260040161030a90610e63565b80610bf25760405162461bcd60e51b815260040161030a90610e63565b5050565b80356001600160a01b0381168114610c0c575f80fd5b919050565b5f60208284031215610c21575f80fd5b610c2a82610bf6565b9392505050565b602080825282518282018190525f9190848201906040850190845b81811015610c715783516001600160a01b031683529284019291840191600101610c4c565b50909695505050505050565b80356001600160401b0381168114610c0c575f80fd5b5f805f805f805f60e0888a031215610ca9575f80fd5b610cb288610bf6565b9650610cc060208901610c7d565b9550610cce60408901610c7d565b9450610cdc60608901610c7d565b9350610cea60808901610c7d565b925060a088013560048110610cfd575f80fd5b915060c088013560ff81168114610d12575f80fd5b8091505092959891949750929550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610d5d57610d5d610d36565b92915050565b634e487b7160e01b5f52603160045260245ffd5b5f60018201610d8857610d88610d36565b5060010190565b634e487b7160e01b5f52602160045260245ffd5b60ff8316815260a081016020808301845f5b6004811015610ddb5781516001600160401b031683529183019190830190600101610db5565b505050509392505050565b6001600160401b038781168252868116602083015285811660408301528416606082015260c0810160048410610e2a57634e487b7160e01b5f52602160045260245ffd5b83608083015260ff831660a0830152979650505050505050565b5f60208284031215610e54575f80fd5b81518015158114610c2a575f80fd5b60208082526028908201527f436f6c6c656374696f6e206d75737420737570706f72742045524337323120696040820152676e7465726661636560c01b60608201526080019056fea2646970667358221220c85f8a9ace28610c8060d456dde14ddc9df5ae10f4e0150a0a68ec153dc9771264736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638da5cb5b116100635780638da5cb5b14610110578063a255ae681461012a578063ae7b96001461013d578063e637941814610150578063f2fde38b14610290575f80fd5b80633af32abf146100945780635028d05a146100de578063715018a6146100f35780638b0279d2146100fb575b5f80fd5b6100c96100a2366004610c11565b6001600160a01b03165f908152600160208190526040909120015462010000900460ff1690565b60405190151581526020015b60405180910390f35b6100f16100ec366004610c11565b6102a3565b005b6100f1610470565b610103610483565b6040516100d59190610c31565b5f546040516001600160a01b0390911681526020016100d5565b6100f1610138366004610c93565b6104e3565b6100f161014b366004610c93565b6107c2565b61022261015e366004610c11565b6040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810191909152506001600160a01b03165f90815260016020818152604092839020835160e08101855281546001600160401b038082168352600160401b8204811694830194909452600160801b8104841695820195909552600160c01b9094049091166060840152015460ff80821660808401526101008204811660a08401526201000090910416151560c082015290565b6040516100d591905f60e0820190506001600160401b038084511683528060208501511660208401528060408501511660408401528060608501511660608401525060ff608084015116608083015260ff60a08401511660a083015260c0830151151560c083015292915050565b6100f161029e366004610c11565b610a41565b6102ab610a7e565b6001600160a01b0381165f908152600160208190526040909120015462010000900460ff166103135760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064015b60405180910390fd5b6001600160a01b0381165f908152600160208190526040822082815501805462ffffff191690555b60025481101561043957816001600160a01b03166002828154811061036257610362610d22565b5f918252602090912001546001600160a01b031603610427576002805461038b90600190610d4a565b8154811061039b5761039b610d22565b5f91825260209091200154600280546001600160a01b0390921691839081106103c6576103c6610d22565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600280548061040257610402610d63565b5f8281526020902081015f1990810180546001600160a01b0319169055019055610439565b8061043181610d77565b91505061033b565b506040516001600160a01b038216907fa0691bd707b2f65c33c8343d61c274df72c6b5007937dcfbc31aa5a0d0f6fe3c905f90a250565b610478610a7e565b6104815f610aaa565b565b606060028054806020026020016040519081016040528092919081815260200182805480156104d957602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116104bb575b5050505050905090565b6104eb610a7e565b6001600160a01b0387165f908152600160208190526040909120015462010000900460ff16156105535760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b604482015260640161030a565b61055c87610af9565b604080516080810182526001600160401b038089168252878116602083015286811692820192909252908416606082015273bf98e89c279e7b7e74c6b13179dd0bfe4e54ae5d63baae97e58460038111156105b9576105b9610d8f565b836040518363ffffffff1660e01b81526004016105d7929190610da3565b5f6040518083038186803b1580156105ed575f80fd5b505af41580156105ff573d5f803e3d5ffd5b505050506040518060e00160405280886001600160401b03168152602001876001600160401b03168152602001866001600160401b03168152602001856001600160401b0316815260200184600381111561065c5761065c610d8f565b60ff9081168252848116602080840191909152600160409384018190526001600160a01b038d165f81815282845285812087518154958901518989015160608b01516001600160401b03908116600160c01b026001600160c01b03928216600160801b02929092166001600160801b03938216600160401b026001600160801b0319909a1691909416179790971716179490941784556080870151938301805460a089015160c0909901511515620100000262ff0000199988166101000261ffff1990921696909716959095179490941796909616939093179091556002805491820181559093527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90920180546001600160a01b03191683179055517fe90fa6e37dbdc92fb609710b146ac3fe753dd77c73dfc2dda320d25c15b3ed87906107b0908a908a908a908a908a908a90610de6565b60405180910390a25050505050505050565b6107ca610a7e565b6001600160a01b0387165f908152600160208190526040909120015462010000900460ff1661082d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161030a565b604080516080810182526001600160401b038089168252878116602083015286811692820192909252908416606082015273bf98e89c279e7b7e74c6b13179dd0bfe4e54ae5d63baae97e584600381111561088a5761088a610d8f565b836040518363ffffffff1660e01b81526004016108a8929190610da3565b5f6040518083038186803b1580156108be575f80fd5b505af41580156108d0573d5f803e3d5ffd5b505050506040518060e00160405280886001600160401b03168152602001876001600160401b03168152602001866001600160401b03168152602001856001600160401b0316815260200184600381111561092d5761092d610d8f565b60ff9081168252848116602080840191909152600160409384018190526001600160a01b038d165f81815282845285902086518154948801518888015160608a01516001600160401b03908116600160c01b026001600160c01b03928216600160801b02929092166001600160801b03938216600160401b026001600160801b03199099169190941617969096171617939093178355608086015192909101805460a087015160c0909701511515620100000262ff0000199786166101000261ffff1990921694909516939093179290921794909416919091179055517f69d9c54e5e90ad5896a995c1102dd520a64c5ae2adc410f8eb26c2a5bdf6d05d906107b0908a908a908a908a908a908a90610de6565b610a49610a7e565b6001600160a01b038116610a7257604051631e4fbdf760e01b81525f600482015260240161030a565b610a7b81610aaa565b50565b5f546001600160a01b031633146104815760405163118cdaa760e01b815233600482015260240161030a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f816001600160a01b03163b11610b525760405162461bcd60e51b815260206004820152601d60248201527f436f6c6c656374696f6e206d757374206265206120636f6e7472616374000000604482015260640161030a565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa925050508015610bb9575060408051601f3d908101601f19168201909252610bb691810190610e44565b60015b610bd55760405162461bcd60e51b815260040161030a90610e63565b80610bf25760405162461bcd60e51b815260040161030a90610e63565b5050565b80356001600160a01b0381168114610c0c575f80fd5b919050565b5f60208284031215610c21575f80fd5b610c2a82610bf6565b9392505050565b602080825282518282018190525f9190848201906040850190845b81811015610c715783516001600160a01b031683529284019291840191600101610c4c565b50909695505050505050565b80356001600160401b0381168114610c0c575f80fd5b5f805f805f805f60e0888a031215610ca9575f80fd5b610cb288610bf6565b9650610cc060208901610c7d565b9550610cce60408901610c7d565b9450610cdc60608901610c7d565b9350610cea60808901610c7d565b925060a088013560048110610cfd575f80fd5b915060c088013560ff81168114610d12575f80fd5b8091505092959891949750929550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610d5d57610d5d610d36565b92915050565b634e487b7160e01b5f52603160045260245ffd5b5f60018201610d8857610d88610d36565b5060010190565b634e487b7160e01b5f52602160045260245ffd5b60ff8316815260a081016020808301845f5b6004811015610ddb5781516001600160401b031683529183019190830190600101610db5565b505050509392505050565b6001600160401b038781168252868116602083015285811660408301528416606082015260c0810160048410610e2a57634e487b7160e01b5f52602160045260245ffd5b83608083015260ff831660a0830152979650505050505050565b5f60208284031215610e54575f80fd5b81518015158114610c2a575f80fd5b60208082526028908201527f436f6c6c656374696f6e206d75737420737570706f72742045524337323120696040820152676e7465726661636560c01b60608201526080019056fea2646970667358221220c85f8a9ace28610c8060d456dde14ddc9df5ae10f4e0150a0a68ec153dc9771264736f6c63430008140033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.