ETH Price: $3,330.37 (-3.96%)

Token

SpaceAddictsMPCredit (MPCREDIT)
 

Overview

Max Total Supply

115,420 MPCREDIT

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
valvaliant.eth
Balance
1,650 MPCREDIT

Value
$0.00
0xd077636822ce6CCaeCeb91644cDbE9410d7FdEC8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceAddictsMissionBase

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion
File 1 of 7 : SpaceAddictsMissionBase.sol
// SPDX-License-Identifier: MIT

//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel

pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface NFTToken {
    function changeNftMissionStatus(uint256 tokenid, bool status) external;
    function nftMissionStatus(uint256 tokenid) external view returns (bool);
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract SpaceAddictsMissionBase is ERC20, IERC721Receiver, Ownable {
    struct Missions {
        uint256 duration;
        uint256 rewardAmount;
    }

    struct Stake {
        uint256 endTime;
        uint256 rewardAmount;
        uint256 startTime;
        uint256 missionID;
        bool active;
    }

    NFTToken public SpaceAddictsNFT;
    Missions[] private MissionInfos;
    bool public BaseOpen = true;
    mapping(address => mapping(uint256 => Stake)) public userStakes;
    mapping(address => uint256[]) private userTokenIds;
    event Staked(address indexed user, uint256 indexed nftTokenId);
    event Unstaked(
        address indexed user,
        uint256 indexed nftTokenId,
        uint256 rewardAmount
    );

    constructor(address _nftTokenAddress) ERC20("SpaceAddictsMPCredit", "MPCREDIT") {
        SpaceAddictsNFT = NFTToken(_nftTokenAddress);

    }

    function startMission(uint256 _nftTokenId, uint256 _missionid) external {
        require(BaseOpen, "Mission Base is closed for new missions");
        require(_missionid < MissionInfos.length, "Invalid Mission");
        require(
            !SpaceAddictsNFT.nftMissionStatus(_nftTokenId),
            "Already on Mission Space Waste!"
        );
        require(
            SpaceAddictsNFT.ownerOf(_nftTokenId) == msg.sender,
            "You Dont own this NFT"
        );
        Missions storage selecteMission = MissionInfos[_missionid];
        SpaceAddictsNFT.changeNftMissionStatus(_nftTokenId, true);
        userStakes[msg.sender][_nftTokenId] = Stake({
            endTime: selecteMission.duration + block.timestamp,
            rewardAmount: selecteMission.rewardAmount,
            startTime: block.timestamp,
            missionID: _missionid,
            active: true
        });
        userTokenIds[msg.sender].push(_nftTokenId);
        emit Staked(msg.sender, _nftTokenId);
    }

    function returnToBase(uint256 _nftTokenId) external {
        Stake storage stake = userStakes[msg.sender][_nftTokenId];
        require(stake.active, "No active Mission for the given NFT token ID");
        require(
            block.timestamp >= stake.endTime,
            "Mission duration not yet completed"
        );
        uint256 rewardAmount = stake.rewardAmount;
        delete userStakes[msg.sender][_nftTokenId];
        SpaceAddictsNFT.changeNftMissionStatus(_nftTokenId, false);
        uint256[] storage tokens = userTokenIds[msg.sender];
        for (uint256 i = 0; i < tokens.length; i++) {
            if (tokens[i] == _nftTokenId) {
                tokens[i] = tokens[tokens.length - 1];
                tokens.pop();
                break;
            }
        }
        _mint(msg.sender, rewardAmount);
        emit Unstaked(msg.sender, _nftTokenId, rewardAmount);
    }

    
    function abortMission(uint256 _nftTokenId) external {
        Stake storage stake = userStakes[msg.sender][_nftTokenId];
        require(stake.active, "No active Mission for the given NFT token ID");
        delete userStakes[msg.sender][_nftTokenId];
        SpaceAddictsNFT.changeNftMissionStatus(_nftTokenId, false);
        uint256[] storage tokens = userTokenIds[msg.sender];
        for (uint256 i = 0; i < tokens.length; i++) {
            if (tokens[i] == _nftTokenId) {
                tokens[i] = tokens[tokens.length - 1];
                tokens.pop();
                break;
            }
        }
    }

    function getUserStakes(address _user)
        external
        view
        returns (uint256[] memory)
    {
        return userTokenIds[_user];
    }

    function addSingleMission(uint256 _duration, uint256 _rewardAmount)
        external
        onlyOwner
    {
        require(_duration > 0, "Duration must be greater than zero");
        require(_rewardAmount > 0, "Reward amount must be greater than zero");

        Missions memory newMissions = Missions({
            duration: _duration,
            rewardAmount: _rewardAmount
        });

        MissionInfos.push(newMissions);
    }

    function addBatchMissions(
        uint256[] calldata _durations,
        uint256[] calldata _rewardAmounts
    ) external onlyOwner {
        require(
            _durations.length == _rewardAmounts.length,
            "Arrays length mismatch"
        );

        for (uint256 i = 0; i < _durations.length; i++) {
            require(_durations[i] > 0, "Duration must be greater than zero");
            require(
                _rewardAmounts[i] > 0,
                "Reward amount must be greater than zero"
            );

            Missions memory newMission = Missions({
                duration: _durations[i] * 86400,
                rewardAmount: _rewardAmounts[i] * 1e18
            });

            MissionInfos.push(newMission);
        }
    }

    function getMissions(uint256 _idx) public view returns (Missions memory) {
        return MissionInfos[_idx];
    }

    function setBaseStatus(bool _status) public onlyOwner {
        BaseOpen = _status;
    }

        function mintCredit(address _to, uint256 amount) public onlyOwner {
        _mint(_to, amount);
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external pure override returns (bytes4) {
        return IERC721Receiver.onERC721Received.selector;
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 7 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_nftTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"nftTokenId","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"nftTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"BaseOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SpaceAddictsNFT","outputs":[{"internalType":"contract NFTToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftTokenId","type":"uint256"}],"name":"abortMission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_durations","type":"uint256[]"},{"internalType":"uint256[]","name":"_rewardAmounts","type":"uint256[]"}],"name":"addBatchMissions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"uint256","name":"_rewardAmount","type":"uint256"}],"name":"addSingleMission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_idx","type":"uint256"}],"name":"getMissions","outputs":[{"components":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"internalType":"struct SpaceAddictsMissionBase.Missions","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserStakes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftTokenId","type":"uint256"}],"name":"returnToBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBaseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftTokenId","type":"uint256"},{"internalType":"uint256","name":"_missionid","type":"uint256"}],"name":"startMission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userStakes","outputs":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"missionID","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526008805460ff191660011790553480156200001e57600080fd5b5060405162001fea38038062001fea833981016040819052620000419162000151565b6040518060400160405280601481526020017f5370616365416464696374734d5043726564697400000000000000000000000081525060405180604001604052806008815260200167135410d49151125560c21b8152508160039081620000a9919062000228565b506004620000b8828262000228565b505050620000d5620000cf620000fb60201b60201c565b620000ff565b600680546001600160a01b0319166001600160a01b0392909216919091179055620002f4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000602082840312156200016457600080fd5b81516001600160a01b03811681146200017c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ae57607f821691505b602082108103620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022357600081815260208120601f850160051c81016020861015620001fe5750805b601f850160051c820191505b818110156200021f578281556001016200020a565b5050505b505050565b81516001600160401b0381111562000244576200024462000183565b6200025c8162000255845462000199565b84620001d5565b602080601f8311600181146200029457600084156200027b5750858301515b600019600386901b1c1916600185901b1785556200021f565b600085815260208120601f198616915b82811015620002c557888601518255948401946001909101908401620002a4565b5085821015620002e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611ce680620003046000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d0a7e04211610071578063d0a7e04214610447578063dd62ed3e14610475578063f0f0831e146104ae578063f2fde38b146104c157600080fd5b8063a9059cbb146103ac578063b5d5b5fa146103bf578063bacf26b01461043457600080fd5b806395d89b41116100d357806395d89b41146103715780639e3c83ae146103795780639eb49e3e1461038c578063a457c2d71461039957600080fd5b8063715018a614610338578063842e2981146103405780638da5cb5b1461036057600080fd5b806323b872dd1161016657806354d8f6321161014057806354d8f632146102be5780635f5faa7f146102d157806364ebe494146102fc57806370a082311461030f57600080fd5b806323b872dd14610289578063313ce5671461029c57806339509351146102ab57600080fd5b8063140380e511610197578063140380e514610214578063150b7a021461022757806318160ddd1461027757600080fd5b806306fdde03146101be578063095ea7b3146101dc5780631114f253146101ff575b600080fd5b6101c66104d4565b6040516101d39190611876565b60405180910390f35b6101ef6101ea3660046118d9565b610566565b60405190151581526020016101d3565b61021261020d3660046118d9565b610580565b005b610212610222366004611905565b610596565b61024661023536600461191e565b630a85bd0160e11b95945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101d3565b6002545b6040519081526020016101d3565b6101ef6102973660046119bd565b610833565b604051601281526020016101d3565b6101ef6102b93660046118d9565b610857565b6102126102cc3660046119fe565b610896565b6006546102e4906001600160a01b031681565b6040516001600160a01b0390911681526020016101d3565b61021261030a366004611905565b610c2b565b61027b61031d366004611a20565b6001600160a01b031660009081526020819052604090205490565b610212610e1c565b61035361034e366004611a20565b610e30565b6040516101d39190611a44565b6005546001600160a01b03166102e4565b6101c6610e9c565b6102126103873660046119fe565b610eab565b6008546101ef9060ff1681565b6101ef6103a73660046118d9565b610fe6565b6101ef6103ba3660046118d9565b611078565b61040a6103cd3660046118d9565b6009602090815260009283526040808420909152908252902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016101d3565b610212610442366004611a96565b611086565b61045a610455366004611905565b6110a1565b604080518251815260209283015192810192909252016101d3565b61027b610483366004611ab3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102126104bc366004611b38565b6110fc565b6102126104cf366004611a20565b611331565b6060600380546104e390611ba4565b80601f016020809104026020016040519081016040528092919081815260200182805461050f90611ba4565b801561055c5780601f106105315761010080835404028352916020019161055c565b820191906000526020600020905b81548152906001019060200180831161053f57829003601f168201915b5050505050905090565b6000336105748185856113aa565b60019150505b92915050565b6105886114ce565b6105928282611528565b5050565b3360009081526009602090815260408083208484529091529020600481015460ff1661061e5760405162461bcd60e51b815260206004820152602c60248201527f4e6f20616374697665204d697373696f6e20666f722074686520676976656e2060448201526b139195081d1bdad95b88125160a21b60648201526084015b60405180910390fd5b805442101561067a5760405162461bcd60e51b815260206004820152602260248201527f4d697373696f6e206475726174696f6e206e6f742079657420636f6d706c6574604482015261195960f21b6064820152608401610615565b60018181015433600090815260096020908152604080832087845290915280822082815593840182905560028401829055600384018290556004938401805460ff191690556006549051630b79524360e31b8152938401869052602484019190915290916001600160a01b0390911690635bca921890604401600060405180830381600087803b15801561070d57600080fd5b505af1158015610721573d6000803e3d6000fd5b5050336000908152600a60205260408120925090505b81548110156107eb578482828154811061075357610753611bde565b9060005260206000200154036107d9578154829061077390600190611c0a565b8154811061078357610783611bde565b90600052602060002001548282815481106107a0576107a0611bde565b9060005260206000200181905550818054806107be576107be611c1d565b600190038181906000526020600020016000905590556107eb565b806107e381611c33565b915050610737565b506107f63383611528565b604051828152849033907f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e9060200160405180910390a350505050565b6000336108418582856115e7565b61084c858585611673565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105749082908690610891908790611c4c565b6113aa565b60085460ff166108f85760405162461bcd60e51b815260206004820152602760248201527f4d697373696f6e204261736520697320636c6f73656420666f72206e6577206d604482015266697373696f6e7360c81b6064820152608401610615565b60075481106109495760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204d697373696f6e00000000000000000000000000000000006044820152606401610615565b60065460405163fa2b74d160e01b8152600481018490526001600160a01b039091169063fa2b74d190602401602060405180830381865afa158015610992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b69190611c5f565b15610a035760405162461bcd60e51b815260206004820152601f60248201527f416c7265616479206f6e204d697373696f6e20537061636520576173746521006044820152606401610615565b6006546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610a4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a709190611c7c565b6001600160a01b031614610ac65760405162461bcd60e51b815260206004820152601560248201527f596f7520446f6e74206f776e2074686973204e465400000000000000000000006044820152606401610615565b600060078281548110610adb57610adb611bde565b60009182526020909120600654604051630b79524360e31b81526004810187905260016024820152600290930290910192506001600160a01b031690635bca921890604401600060405180830381600087803b158015610b3a57600080fd5b505af1158015610b4e573d6000803e3d6000fd5b505050506040518060a00160405280428360000154610b6d9190611c4c565b81526001838101546020808401919091524260408085019190915260608085018890526080948501849052336000818152600985528381208b8252855283812088518155888601518188015588850151600282015592880151600384015596909501516004909101805460ff1916911515919091179055838552600a82528085208054938401815585529084209091018690555185927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d91a3505050565b3360009081526009602090815260408083208484529091529020600481015460ff16610cae5760405162461bcd60e51b815260206004820152602c60248201527f4e6f20616374697665204d697373696f6e20666f722074686520676976656e2060448201526b139195081d1bdad95b88125160a21b6064820152608401610615565b3360009081526009602090815260408083208584529091528082208281556001810183905560028101839055600381018390556004908101805460ff191690556006549151630b79524360e31b815290810185905260248101929092526001600160a01b031690635bca921890604401600060405180830381600087803b158015610d3857600080fd5b505af1158015610d4c573d6000803e3d6000fd5b5050336000908152600a60205260408120925090505b8154811015610e165783828281548110610d7e57610d7e611bde565b906000526020600020015403610e045781548290610d9e90600190611c0a565b81548110610dae57610dae611bde565b9060005260206000200154828281548110610dcb57610dcb611bde565b906000526020600020018190555081805480610de957610de9611c1d565b60019003818190600052602060002001600090559055610e16565b80610e0e81611c33565b915050610d62565b50505050565b610e246114ce565b610e2e6000611817565b565b6001600160a01b0381166000908152600a6020908152604091829020805483518184028101840190945280845260609392830182828015610e9057602002820191906000526020600020905b815481526020019060010190808311610e7c575b50505050509050919050565b6060600480546104e390611ba4565b610eb36114ce565b60008211610f0e5760405162461bcd60e51b815260206004820152602260248201527f4475726174696f6e206d7573742062652067726561746572207468616e207a65604482015261726f60f01b6064820152608401610615565b60008111610f6e5760405162461bcd60e51b815260206004820152602760248201527f52657761726420616d6f756e74206d7573742062652067726561746572207468604482015266616e207a65726f60c81b6064820152608401610615565b60408051808201909152918252602082019081526007805460018101825560009190915291517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600290930292830155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68990910155565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561106b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610615565b61084c82868684036113aa565b600033610574818585611673565b61108e6114ce565b6008805460ff1916911515919091179055565b6040805180820190915260008082526020820152600782815481106110c8576110c8611bde565b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050919050565b6111046114ce565b8281146111535760405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606401610615565b60005b8381101561132a57600085858381811061117257611172611bde565b90506020020135116111d15760405162461bcd60e51b815260206004820152602260248201527f4475726174696f6e206d7573742062652067726561746572207468616e207a65604482015261726f60f01b6064820152608401610615565b60008383838181106111e5576111e5611bde565b90506020020135116112495760405162461bcd60e51b815260206004820152602760248201527f52657761726420616d6f756e74206d7573742062652067726561746572207468604482015266616e207a65726f60c81b6064820152608401610615565b6000604051806040016040528087878581811061126857611268611bde565b905060200201356201518061127d9190611c99565b815260200185858581811061129457611294611bde565b90506020020135670de0b6b3a76400006112ae9190611c99565b90526007805460018101825560009190915281517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6886002909202918201556020909101517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68990910155508061132281611c33565b915050611156565b5050505050565b6113396114ce565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610615565b6113a781611817565b50565b6001600160a01b03831661140c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610615565b6001600160a01b03821661146d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610615565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610615565b6001600160a01b03821661157e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610615565b80600260008282546115909190611c4c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610e1657818110156116665760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610615565b610e1684848484036113aa565b6001600160a01b0383166116d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610615565b6001600160a01b0382166117395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610615565b6001600160a01b038316600090815260208190526040902054818110156117b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610615565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e16565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156118a357858101830151858201604001528201611887565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113a757600080fd5b600080604083850312156118ec57600080fd5b82356118f7816118c4565b946020939093013593505050565b60006020828403121561191757600080fd5b5035919050565b60008060008060006080868803121561193657600080fd5b8535611941816118c4565b94506020860135611951816118c4565b935060408601359250606086013567ffffffffffffffff8082111561197557600080fd5b818801915088601f83011261198957600080fd5b81358181111561199857600080fd5b8960208285010111156119aa57600080fd5b9699959850939650602001949392505050565b6000806000606084860312156119d257600080fd5b83356119dd816118c4565b925060208401356119ed816118c4565b929592945050506040919091013590565b60008060408385031215611a1157600080fd5b50508035926020909101359150565b600060208284031215611a3257600080fd5b8135611a3d816118c4565b9392505050565b6020808252825182820181905260009190848201906040850190845b81811015611a7c57835183529284019291840191600101611a60565b50909695505050505050565b80151581146113a757600080fd5b600060208284031215611aa857600080fd5b8135611a3d81611a88565b60008060408385031215611ac657600080fd5b8235611ad1816118c4565b91506020830135611ae1816118c4565b809150509250929050565b60008083601f840112611afe57600080fd5b50813567ffffffffffffffff811115611b1657600080fd5b6020830191508360208260051b8501011115611b3157600080fd5b9250929050565b60008060008060408587031215611b4e57600080fd5b843567ffffffffffffffff80821115611b6657600080fd5b611b7288838901611aec565b90965094506020870135915080821115611b8b57600080fd5b50611b9887828801611aec565b95989497509550505050565b600181811c90821680611bb857607f821691505b602082108103611bd857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561057a5761057a611bf4565b634e487b7160e01b600052603160045260246000fd5b600060018201611c4557611c45611bf4565b5060010190565b8082018082111561057a5761057a611bf4565b600060208284031215611c7157600080fd5b8151611a3d81611a88565b600060208284031215611c8e57600080fd5b8151611a3d816118c4565b808202811582820484141761057a5761057a611bf456fea2646970667358221220cd2f86688312d69b5f3cf3202a9f5a287525601157a86fbe283f1632b875be9564736f6c6343000812003300000000000000000000000036efe1164070649ff3d199c5d5c5e72bded1a7ac

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101b95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063d0a7e04211610071578063d0a7e04214610447578063dd62ed3e14610475578063f0f0831e146104ae578063f2fde38b146104c157600080fd5b8063a9059cbb146103ac578063b5d5b5fa146103bf578063bacf26b01461043457600080fd5b806395d89b41116100d357806395d89b41146103715780639e3c83ae146103795780639eb49e3e1461038c578063a457c2d71461039957600080fd5b8063715018a614610338578063842e2981146103405780638da5cb5b1461036057600080fd5b806323b872dd1161016657806354d8f6321161014057806354d8f632146102be5780635f5faa7f146102d157806364ebe494146102fc57806370a082311461030f57600080fd5b806323b872dd14610289578063313ce5671461029c57806339509351146102ab57600080fd5b8063140380e511610197578063140380e514610214578063150b7a021461022757806318160ddd1461027757600080fd5b806306fdde03146101be578063095ea7b3146101dc5780631114f253146101ff575b600080fd5b6101c66104d4565b6040516101d39190611876565b60405180910390f35b6101ef6101ea3660046118d9565b610566565b60405190151581526020016101d3565b61021261020d3660046118d9565b610580565b005b610212610222366004611905565b610596565b61024661023536600461191e565b630a85bd0160e11b95945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101d3565b6002545b6040519081526020016101d3565b6101ef6102973660046119bd565b610833565b604051601281526020016101d3565b6101ef6102b93660046118d9565b610857565b6102126102cc3660046119fe565b610896565b6006546102e4906001600160a01b031681565b6040516001600160a01b0390911681526020016101d3565b61021261030a366004611905565b610c2b565b61027b61031d366004611a20565b6001600160a01b031660009081526020819052604090205490565b610212610e1c565b61035361034e366004611a20565b610e30565b6040516101d39190611a44565b6005546001600160a01b03166102e4565b6101c6610e9c565b6102126103873660046119fe565b610eab565b6008546101ef9060ff1681565b6101ef6103a73660046118d9565b610fe6565b6101ef6103ba3660046118d9565b611078565b61040a6103cd3660046118d9565b6009602090815260009283526040808420909152908252902080546001820154600283015460038401546004909401549293919290919060ff1685565b6040805195865260208601949094529284019190915260608301521515608082015260a0016101d3565b610212610442366004611a96565b611086565b61045a610455366004611905565b6110a1565b604080518251815260209283015192810192909252016101d3565b61027b610483366004611ab3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102126104bc366004611b38565b6110fc565b6102126104cf366004611a20565b611331565b6060600380546104e390611ba4565b80601f016020809104026020016040519081016040528092919081815260200182805461050f90611ba4565b801561055c5780601f106105315761010080835404028352916020019161055c565b820191906000526020600020905b81548152906001019060200180831161053f57829003601f168201915b5050505050905090565b6000336105748185856113aa565b60019150505b92915050565b6105886114ce565b6105928282611528565b5050565b3360009081526009602090815260408083208484529091529020600481015460ff1661061e5760405162461bcd60e51b815260206004820152602c60248201527f4e6f20616374697665204d697373696f6e20666f722074686520676976656e2060448201526b139195081d1bdad95b88125160a21b60648201526084015b60405180910390fd5b805442101561067a5760405162461bcd60e51b815260206004820152602260248201527f4d697373696f6e206475726174696f6e206e6f742079657420636f6d706c6574604482015261195960f21b6064820152608401610615565b60018181015433600090815260096020908152604080832087845290915280822082815593840182905560028401829055600384018290556004938401805460ff191690556006549051630b79524360e31b8152938401869052602484019190915290916001600160a01b0390911690635bca921890604401600060405180830381600087803b15801561070d57600080fd5b505af1158015610721573d6000803e3d6000fd5b5050336000908152600a60205260408120925090505b81548110156107eb578482828154811061075357610753611bde565b9060005260206000200154036107d9578154829061077390600190611c0a565b8154811061078357610783611bde565b90600052602060002001548282815481106107a0576107a0611bde565b9060005260206000200181905550818054806107be576107be611c1d565b600190038181906000526020600020016000905590556107eb565b806107e381611c33565b915050610737565b506107f63383611528565b604051828152849033907f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e9060200160405180910390a350505050565b6000336108418582856115e7565b61084c858585611673565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105749082908690610891908790611c4c565b6113aa565b60085460ff166108f85760405162461bcd60e51b815260206004820152602760248201527f4d697373696f6e204261736520697320636c6f73656420666f72206e6577206d604482015266697373696f6e7360c81b6064820152608401610615565b60075481106109495760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964204d697373696f6e00000000000000000000000000000000006044820152606401610615565b60065460405163fa2b74d160e01b8152600481018490526001600160a01b039091169063fa2b74d190602401602060405180830381865afa158015610992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b69190611c5f565b15610a035760405162461bcd60e51b815260206004820152601f60248201527f416c7265616479206f6e204d697373696f6e20537061636520576173746521006044820152606401610615565b6006546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610a4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a709190611c7c565b6001600160a01b031614610ac65760405162461bcd60e51b815260206004820152601560248201527f596f7520446f6e74206f776e2074686973204e465400000000000000000000006044820152606401610615565b600060078281548110610adb57610adb611bde565b60009182526020909120600654604051630b79524360e31b81526004810187905260016024820152600290930290910192506001600160a01b031690635bca921890604401600060405180830381600087803b158015610b3a57600080fd5b505af1158015610b4e573d6000803e3d6000fd5b505050506040518060a00160405280428360000154610b6d9190611c4c565b81526001838101546020808401919091524260408085019190915260608085018890526080948501849052336000818152600985528381208b8252855283812088518155888601518188015588850151600282015592880151600384015596909501516004909101805460ff1916911515919091179055838552600a82528085208054938401815585529084209091018690555185927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d91a3505050565b3360009081526009602090815260408083208484529091529020600481015460ff16610cae5760405162461bcd60e51b815260206004820152602c60248201527f4e6f20616374697665204d697373696f6e20666f722074686520676976656e2060448201526b139195081d1bdad95b88125160a21b6064820152608401610615565b3360009081526009602090815260408083208584529091528082208281556001810183905560028101839055600381018390556004908101805460ff191690556006549151630b79524360e31b815290810185905260248101929092526001600160a01b031690635bca921890604401600060405180830381600087803b158015610d3857600080fd5b505af1158015610d4c573d6000803e3d6000fd5b5050336000908152600a60205260408120925090505b8154811015610e165783828281548110610d7e57610d7e611bde565b906000526020600020015403610e045781548290610d9e90600190611c0a565b81548110610dae57610dae611bde565b9060005260206000200154828281548110610dcb57610dcb611bde565b906000526020600020018190555081805480610de957610de9611c1d565b60019003818190600052602060002001600090559055610e16565b80610e0e81611c33565b915050610d62565b50505050565b610e246114ce565b610e2e6000611817565b565b6001600160a01b0381166000908152600a6020908152604091829020805483518184028101840190945280845260609392830182828015610e9057602002820191906000526020600020905b815481526020019060010190808311610e7c575b50505050509050919050565b6060600480546104e390611ba4565b610eb36114ce565b60008211610f0e5760405162461bcd60e51b815260206004820152602260248201527f4475726174696f6e206d7573742062652067726561746572207468616e207a65604482015261726f60f01b6064820152608401610615565b60008111610f6e5760405162461bcd60e51b815260206004820152602760248201527f52657761726420616d6f756e74206d7573742062652067726561746572207468604482015266616e207a65726f60c81b6064820152608401610615565b60408051808201909152918252602082019081526007805460018101825560009190915291517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600290930292830155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68990910155565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561106b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610615565b61084c82868684036113aa565b600033610574818585611673565b61108e6114ce565b6008805460ff1916911515919091179055565b6040805180820190915260008082526020820152600782815481106110c8576110c8611bde565b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050919050565b6111046114ce565b8281146111535760405162461bcd60e51b815260206004820152601660248201527f417272617973206c656e677468206d69736d61746368000000000000000000006044820152606401610615565b60005b8381101561132a57600085858381811061117257611172611bde565b90506020020135116111d15760405162461bcd60e51b815260206004820152602260248201527f4475726174696f6e206d7573742062652067726561746572207468616e207a65604482015261726f60f01b6064820152608401610615565b60008383838181106111e5576111e5611bde565b90506020020135116112495760405162461bcd60e51b815260206004820152602760248201527f52657761726420616d6f756e74206d7573742062652067726561746572207468604482015266616e207a65726f60c81b6064820152608401610615565b6000604051806040016040528087878581811061126857611268611bde565b905060200201356201518061127d9190611c99565b815260200185858581811061129457611294611bde565b90506020020135670de0b6b3a76400006112ae9190611c99565b90526007805460018101825560009190915281517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6886002909202918201556020909101517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68990910155508061132281611c33565b915050611156565b5050505050565b6113396114ce565b6001600160a01b03811661139e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610615565b6113a781611817565b50565b6001600160a01b03831661140c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610615565b6001600160a01b03821661146d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610615565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610e2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610615565b6001600160a01b03821661157e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610615565b80600260008282546115909190611c4c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610e1657818110156116665760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610615565b610e1684848484036113aa565b6001600160a01b0383166116d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610615565b6001600160a01b0382166117395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610615565b6001600160a01b038316600090815260208190526040902054818110156117b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610615565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e16565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156118a357858101830151858201604001528201611887565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113a757600080fd5b600080604083850312156118ec57600080fd5b82356118f7816118c4565b946020939093013593505050565b60006020828403121561191757600080fd5b5035919050565b60008060008060006080868803121561193657600080fd5b8535611941816118c4565b94506020860135611951816118c4565b935060408601359250606086013567ffffffffffffffff8082111561197557600080fd5b818801915088601f83011261198957600080fd5b81358181111561199857600080fd5b8960208285010111156119aa57600080fd5b9699959850939650602001949392505050565b6000806000606084860312156119d257600080fd5b83356119dd816118c4565b925060208401356119ed816118c4565b929592945050506040919091013590565b60008060408385031215611a1157600080fd5b50508035926020909101359150565b600060208284031215611a3257600080fd5b8135611a3d816118c4565b9392505050565b6020808252825182820181905260009190848201906040850190845b81811015611a7c57835183529284019291840191600101611a60565b50909695505050505050565b80151581146113a757600080fd5b600060208284031215611aa857600080fd5b8135611a3d81611a88565b60008060408385031215611ac657600080fd5b8235611ad1816118c4565b91506020830135611ae1816118c4565b809150509250929050565b60008083601f840112611afe57600080fd5b50813567ffffffffffffffff811115611b1657600080fd5b6020830191508360208260051b8501011115611b3157600080fd5b9250929050565b60008060008060408587031215611b4e57600080fd5b843567ffffffffffffffff80821115611b6657600080fd5b611b7288838901611aec565b90965094506020870135915080821115611b8b57600080fd5b50611b9887828801611aec565b95989497509550505050565b600181811c90821680611bb857607f821691505b602082108103611bd857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561057a5761057a611bf4565b634e487b7160e01b600052603160045260246000fd5b600060018201611c4557611c45611bf4565b5060010190565b8082018082111561057a5761057a611bf4565b600060208284031215611c7157600080fd5b8151611a3d81611a88565b600060208284031215611c8e57600080fd5b8151611a3d816118c4565b808202811582820484141761057a5761057a611bf456fea2646970667358221220cd2f86688312d69b5f3cf3202a9f5a287525601157a86fbe283f1632b875be9564736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000036efe1164070649ff3d199c5d5c5e72bded1a7ac

-----Decoded View---------------
Arg [0] : _nftTokenAddress (address): 0x36EFE1164070649Ff3d199C5D5c5e72bdEd1A7AC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000036efe1164070649ff3d199c5d5c5e72bded1a7ac


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.