Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,734,752.206886574074071272 Omen
Holders
676
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,254.664410795938332109 OmenValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Omen
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import {IERC20, Context, IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IMonsuta} from "./interfaces/IMonsuta.sol"; /** * * Omen Contract (The native token of Monsuta) * @dev Extends standard ERC20 contract */ contract Omen is Context, IERC20, IERC20Metadata { address public immutable monsutaAddress; // Constants uint256 public SECONDS_IN_A_DAY = 86400; uint256 public constant INITIAL_ALLOTMENT = 500 * (10**18); // Public variables uint256 public emissionStart; uint256 public emissionEnd; uint256 public emissionPerDay = 25 * (10**18); mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(uint256 => uint256) private _lastClaim; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; constructor(address _monsuta) { _name = "Omen"; _symbol = "Omen"; _decimals = 18; monsutaAddress = _monsuta; emissionStart = 1676037600; emissionEnd = emissionStart + (86400 * 365 * 10); } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function lastClaim(uint256 tokenIndex) public view returns (uint256) { require( IMonsuta(monsutaAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address" ); require( tokenIndex < IMonsuta(monsutaAddress).totalSupply(), "NFT at index has not been minted yet" ); uint256 lastClaimed = uint256(_lastClaim[tokenIndex]) != 0 ? uint256(_lastClaim[tokenIndex]) : emissionStart; return lastClaimed; } /** * @dev Accumulated Omen tokens for a Monsuta token index. */ function accumulated(uint256 tokenIndex) public view returns (uint256) { require( block.timestamp > emissionStart, "Emission has not started yet" ); require( IMonsuta(monsutaAddress).ownerOf(tokenIndex) != address(0), "Owner cannot be 0 address" ); require( tokenIndex < IMonsuta(monsutaAddress).totalSupply(), "NFT at index has not been minted yet" ); uint256 lastClaimed = lastClaim(tokenIndex); // Sanity check if last claim was on or after emission end if (lastClaimed >= emissionEnd) return 0; uint256 accumulationPeriod = block.timestamp < emissionEnd ? block.timestamp : emissionEnd; // Getting the min value of both uint256 totalAccumulated = ((accumulationPeriod - lastClaimed) * IMonsuta(monsutaAddress).multiplierFromState(tokenIndex) * emissionPerDay) / (SECONDS_IN_A_DAY); // If claim hasn't been done before for the index, add initial allotment (plus prereveal multiplier if applicable) if (lastClaimed == emissionStart) { totalAccumulated = totalAccumulated + INITIAL_ALLOTMENT; } return totalAccumulated; } function claim(uint256[] memory tokenIndices) public returns (uint256) { require( block.timestamp > emissionStart, "Emission has not started yet" ); uint256 totalClaimQty = 0; for (uint256 i = 0; i < tokenIndices.length; i++) { // Sanity check for non-minted index require( tokenIndices[i] < IMonsuta(monsutaAddress).totalSupply(), "NFT at index has not been minted yet" ); // Duplicate token index check for (uint256 j = i + 1; j < tokenIndices.length; j++) { require( tokenIndices[i] != tokenIndices[j], "Duplicate token index" ); } uint256 tokenIndex = tokenIndices[i]; require( IMonsuta(monsutaAddress).ownerOf(tokenIndex) == msg.sender, "Sender is not the owner" ); uint256 claimQty = accumulated(tokenIndex); if (claimQty != 0) { totalClaimQty = totalClaimQty + claimQty; _lastClaim[tokenIndex] = block.timestamp; } } require(totalClaimQty != 0, "No accumulated Omen"); _mint(msg.sender, totalClaimQty); return totalClaimQty; } function mint(address account, uint256 amount) public virtual {} /** * @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 Burns a quantity of tokens held by the caller. * * Emits an {Transfer} event to 0 address * */ function burn(uint256 burnQuantity) public virtual returns (bool) { _burn(msg.sender, burnQuantity); 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; } _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; _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; } _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IMonsuta { /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); function startingIndex() external view returns (uint256); function startingIndexBlock() external view returns (uint256); function MAX_NFT_SUPPLY() external view returns (uint256); function getTokenState(uint256 tokenId) external view returns (uint256); function multiplierFromState(uint256 tokenId) external view returns (uint256); function changeName(uint256 tokenId, string memory newName) external; function ascent(uint256 tokenId, address owner) external; function descent(uint256 tokenId, address owner) external; function evolve( uint256 tokenId, uint256 potionId, address owner ) external; function retract(uint256 tokenId, address owner) external; function resurrection( uint256 evolvedTokenId, uint256 soulTokenId, address owner ) external; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 100 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_monsuta","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_ALLOTMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDS_IN_A_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"accumulated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"burnQuantity","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIndices","type":"uint256[]"}],"name":"claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"emissionEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emissionStart","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":"uint256","name":"tokenIndex","type":"uint256"}],"name":"lastClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"monsutaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
60a06040526201518060005568015af1d78b58c400006003553480156200002557600080fd5b50604051620018a8380380620018a88339810160408190526200004891620000dc565b60408051808201909152600481526327b6b2b760e11b6020820152600890620000729082620001b3565b5060408051808201909152600481526327b6b2b760e11b60208201526009906200009d9082620001b3565b50600a805460ff191660121790556001600160a01b0381166080526363e64de06001819055620000d2906312cc03006200027f565b60025550620002a7565b600060208284031215620000ef57600080fd5b81516001600160a01b03811681146200010757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013957607f821691505b6020821081036200015a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ae57600081815260208120601f850160051c81016020861015620001895750805b601f850160051c820191505b81811015620001aa5782815560010162000195565b5050505b505050565b81516001600160401b03811115620001cf57620001cf6200010e565b620001e781620001e0845462000124565b8462000160565b602080601f8311600181146200021f5760008415620002065750858301515b600019600386901b1c1916600185901b178555620001aa565b600085815260208120601f198616915b8281101562000250578886015182559484019460019091019084016200022f565b50858210156200026f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620002a157634e487b7160e01b600052601160045260246000fd5b92915050565b6080516115b4620002f4600039600081816102bc01528181610427015281816104c3015281816105db01528181610761015281816109b101528181610a440152610b2101526115b46000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636ba4c138116100b8578063a9059cbb1161007c578063a9059cbb14610288578063b551b82f1461029b578063c607cde7146102a4578063c7fc02e2146102b7578063dd62ed3e146102f6578063f9cfa06f1461030957600080fd5b80636ba4c1381461022857806370a082311461023b5780638368909c1461026457806395d89b411461026d578063a457c2d71461027557600080fd5b8063367df1651161010a578063367df165146101c257806339509351146101d25780633d3728b5146101e557806340c10f19146101f857806342966c681461020c578063513da9481461021f57600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f610312565b60405161015c9190611186565b60405180910390f35b6101786101733660046111ec565b6103a4565b604051901515815260200161015c565b6007545b60405190815260200161015c565b6101786101a8366004611218565b6103be565b600a5460405160ff909116815260200161015c565b61018c681b1ae4d6e2ef50000081565b6101786101e03660046111ec565b6103e2565b61018c6101f3366004611259565b610404565b61020a6102063660046111ec565b5050565b005b61017861021a366004611259565b610595565b61018c60015481565b61018c610236366004611288565b6105a9565b61018c610249366004611346565b6001600160a01b031660009081526004602052604090205490565b61018c60025481565b61014f6108d5565b6101786102833660046111ec565b6108e4565b6101786102963660046111ec565b61095f565b61018c60035481565b61018c6102b2366004611259565b61096d565b6102de7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161015c565b61018c610304366004611363565b610bff565b61018c60005481565b6060600880546103219061139c565b80601f016020809104026020016040519081016040528092919081815260200182805461034d9061139c565b801561039a5780601f1061036f5761010080835404028352916020019161039a565b820191906000526020600020905b81548152906001019060200180831161037d57829003601f168201915b5050505050905090565b6000336103b2818585610c2a565b60019150505b92915050565b6000336103cc858285610d4f565b6103d7858585610dc9565b506001949350505050565b6000336103b28185856103f58383610bff565b6103ff91906113ec565b610c2a565b6040516331a9108f60e11b81526004810182905260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa15801561046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049291906113ff565b6001600160a01b0316036104c15760405162461bcd60e51b81526004016104b89061141c565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610543919061144f565b82106105615760405162461bcd60e51b81526004016104b890611468565b600082815260066020526040812054810361057e5760015461058e565b6000838152600660205260409020545b9392505050565b60006105a13383610f85565b506001919050565b600060015442116105cc5760405162461bcd60e51b81526004016104b8906114ac565b6000805b8351811015610884577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065b919061144f565b84828151811061066d5761066d6114e3565b6020026020010151106106925760405162461bcd60e51b81526004016104b890611468565b600061069f8260016113ec565b90505b8451811015610736578481815181106106bd576106bd6114e3565b60200260200101518583815181106106d7576106d76114e3565b6020026020010151036107245760405162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b60448201526064016104b8565b8061072e816114f9565b9150506106a2565b50600084828151811061074b5761074b6114e3565b60200260200101519050336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636352211e836040518263ffffffff1660e01b81526004016107ad91815260200190565b602060405180830381865afa1580156107ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ee91906113ff565b6001600160a01b03161461083e5760405162461bcd60e51b815260206004820152601760248201527629b2b73232b91034b9903737ba103a34329037bbb732b960491b60448201526064016104b8565b60006108498261096d565b9050801561086f5761085b81856113ec565b600083815260066020526040902042905593505b5050808061087c906114f9565b9150506105d0565b50806000036108cb5760405162461bcd60e51b815260206004820152601360248201527227379030b1b1bab6bab630ba32b21027b6b2b760691b60448201526064016104b8565b6103b833826110b9565b6060600980546103219061139c565b600033816108f28286610bff565b9050838110156109525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b8565b6103d78286868403610c2a565b6000336103b2818585610dc9565b600060015442116109905760405162461bcd60e51b81526004016104b8906114ac565b6040516331a9108f60e11b8152600481018390526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c91906113ff565b6001600160a01b031603610a425760405162461bcd60e51b81526004016104b89061141c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac4919061144f565b8210610ae25760405162461bcd60e51b81526004016104b890611468565b6000610aed83610404565b90506002548110610b015750600092915050565b60006002544210610b1457600254610b16565b425b9050600080546003547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d5b20f2d886040518263ffffffff1660e01b8152600401610b6d91815260200190565b602060405180830381865afa158015610b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bae919061144f565b610bb88686611512565b610bc29190611525565b610bcc9190611525565b610bd6919061153c565b90506001548303610bf757610bf4681b1ae4d6e2ef500000826113ec565b90505b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b038316610c8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b8565b6001600160a01b038216610ced5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b8565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d5b8484610bff565b90506000198114610dc35781811015610db65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b8565b610dc38484848403610c2a565b50505050565b6001600160a01b038316610e2d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b6001600160a01b038216610e8f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b8565b6001600160a01b03831660009081526004602052604090205481811015610f075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b8565b6001600160a01b03808516600090815260046020526040808220858503905591851681529081208054849290610f3e9084906113ec565b92505081905550826001600160a01b0316846001600160a01b031660008051602061155f83398151915284604051610f7891815260200190565b60405180910390a3610dc3565b6001600160a01b038216610fe55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b8565b6001600160a01b038216600090815260046020526040902054818110156110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b8565b6001600160a01b0383166000908152600460205260408120838303905560078054849290611088908490611512565b90915550506040518281526000906001600160a01b0385169060008051602061155f83398151915290602001610d42565b6001600160a01b03821661110f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104b8565b806007600082825461112191906113ec565b90915550506001600160a01b0382166000908152600460205260408120805483929061114e9084906113ec565b90915550506040518181526001600160a01b0383169060009060008051602061155f8339815191529060200160405180910390a35050565b600060208083528351808285015260005b818110156111b357858101830151858201604001528201611197565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111e957600080fd5b50565b600080604083850312156111ff57600080fd5b823561120a816111d4565b946020939093013593505050565b60008060006060848603121561122d57600080fd5b8335611238816111d4565b92506020840135611248816111d4565b929592945050506040919091013590565b60006020828403121561126b57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561129b57600080fd5b823567ffffffffffffffff808211156112b357600080fd5b818501915085601f8301126112c757600080fd5b8135818111156112d9576112d9611272565b8060051b604051601f19603f830116810181811085821117156112fe576112fe611272565b60405291825284820192508381018501918883111561131c57600080fd5b938501935b8285101561133a57843584529385019392850192611321565b98975050505050505050565b60006020828403121561135857600080fd5b813561058e816111d4565b6000806040838503121561137657600080fd5b8235611381816111d4565b91506020830135611391816111d4565b809150509250929050565b600181811c908216806113b057607f821691505b6020821081036113d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b8576103b86113d6565b60006020828403121561141157600080fd5b815161058e816111d4565b6020808252601990820152784f776e65722063616e6e6f742062652030206164647265737360381b604082015260600190565b60006020828403121561146157600080fd5b5051919050565b60208082526024908201527f4e465420617420696e64657820686173206e6f74206265656e206d696e746564604082015263081e595d60e21b606082015260800190565b6020808252601c908201527f456d697373696f6e20686173206e6f7420737461727465642079657400000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161150b5761150b6113d6565b5060010190565b818103818111156103b8576103b86113d6565b80820281158282048414176103b8576103b86113d6565b60008261155957634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220abf05b88d6f466e7f3b917bebfc61b7f3e3d031ead9497ff10c7fc4749ee7d0464736f6c634300081100330000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636ba4c138116100b8578063a9059cbb1161007c578063a9059cbb14610288578063b551b82f1461029b578063c607cde7146102a4578063c7fc02e2146102b7578063dd62ed3e146102f6578063f9cfa06f1461030957600080fd5b80636ba4c1381461022857806370a082311461023b5780638368909c1461026457806395d89b411461026d578063a457c2d71461027557600080fd5b8063367df1651161010a578063367df165146101c257806339509351146101d25780633d3728b5146101e557806340c10f19146101f857806342966c681461020c578063513da9481461021f57600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f610312565b60405161015c9190611186565b60405180910390f35b6101786101733660046111ec565b6103a4565b604051901515815260200161015c565b6007545b60405190815260200161015c565b6101786101a8366004611218565b6103be565b600a5460405160ff909116815260200161015c565b61018c681b1ae4d6e2ef50000081565b6101786101e03660046111ec565b6103e2565b61018c6101f3366004611259565b610404565b61020a6102063660046111ec565b5050565b005b61017861021a366004611259565b610595565b61018c60015481565b61018c610236366004611288565b6105a9565b61018c610249366004611346565b6001600160a01b031660009081526004602052604090205490565b61018c60025481565b61014f6108d5565b6101786102833660046111ec565b6108e4565b6101786102963660046111ec565b61095f565b61018c60035481565b61018c6102b2366004611259565b61096d565b6102de7f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca81565b6040516001600160a01b03909116815260200161015c565b61018c610304366004611363565b610bff565b61018c60005481565b6060600880546103219061139c565b80601f016020809104026020016040519081016040528092919081815260200182805461034d9061139c565b801561039a5780601f1061036f5761010080835404028352916020019161039a565b820191906000526020600020905b81548152906001019060200180831161037d57829003601f168201915b5050505050905090565b6000336103b2818585610c2a565b60019150505b92915050565b6000336103cc858285610d4f565b6103d7858585610dc9565b506001949350505050565b6000336103b28185856103f58383610bff565b6103ff91906113ec565b610c2a565b6040516331a9108f60e11b81526004810182905260009081906001600160a01b037f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca1690636352211e90602401602060405180830381865afa15801561046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049291906113ff565b6001600160a01b0316036104c15760405162461bcd60e51b81526004016104b89061141c565b60405180910390fd5b7f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610543919061144f565b82106105615760405162461bcd60e51b81526004016104b890611468565b600082815260066020526040812054810361057e5760015461058e565b6000838152600660205260409020545b9392505050565b60006105a13383610f85565b506001919050565b600060015442116105cc5760405162461bcd60e51b81526004016104b8906114ac565b6000805b8351811015610884577f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065b919061144f565b84828151811061066d5761066d6114e3565b6020026020010151106106925760405162461bcd60e51b81526004016104b890611468565b600061069f8260016113ec565b90505b8451811015610736578481815181106106bd576106bd6114e3565b60200260200101518583815181106106d7576106d76114e3565b6020026020010151036107245760405162461bcd60e51b8152602060048201526015602482015274088eae0d8d2c6c2e8ca40e8ded6cadc40d2dcc8caf605b1b60448201526064016104b8565b8061072e816114f9565b9150506106a2565b50600084828151811061074b5761074b6114e3565b60200260200101519050336001600160a01b03167f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca6001600160a01b0316636352211e836040518263ffffffff1660e01b81526004016107ad91815260200190565b602060405180830381865afa1580156107ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ee91906113ff565b6001600160a01b03161461083e5760405162461bcd60e51b815260206004820152601760248201527629b2b73232b91034b9903737ba103a34329037bbb732b960491b60448201526064016104b8565b60006108498261096d565b9050801561086f5761085b81856113ec565b600083815260066020526040902042905593505b5050808061087c906114f9565b9150506105d0565b50806000036108cb5760405162461bcd60e51b815260206004820152601360248201527227379030b1b1bab6bab630ba32b21027b6b2b760691b60448201526064016104b8565b6103b833826110b9565b6060600980546103219061139c565b600033816108f28286610bff565b9050838110156109525760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b8565b6103d78286868403610c2a565b6000336103b2818585610dc9565b600060015442116109905760405162461bcd60e51b81526004016104b8906114ac565b6040516331a9108f60e11b8152600481018390526000906001600160a01b037f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca1690636352211e90602401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c91906113ff565b6001600160a01b031603610a425760405162461bcd60e51b81526004016104b89061141c565b7f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac4919061144f565b8210610ae25760405162461bcd60e51b81526004016104b890611468565b6000610aed83610404565b90506002548110610b015750600092915050565b60006002544210610b1457600254610b16565b425b9050600080546003547f0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca6001600160a01b031663d5b20f2d886040518263ffffffff1660e01b8152600401610b6d91815260200190565b602060405180830381865afa158015610b8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bae919061144f565b610bb88686611512565b610bc29190611525565b610bcc9190611525565b610bd6919061153c565b90506001548303610bf757610bf4681b1ae4d6e2ef500000826113ec565b90505b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b038316610c8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b8565b6001600160a01b038216610ced5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b8565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d5b8484610bff565b90506000198114610dc35781811015610db65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b8565b610dc38484848403610c2a565b50505050565b6001600160a01b038316610e2d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b6001600160a01b038216610e8f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b8565b6001600160a01b03831660009081526004602052604090205481811015610f075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b8565b6001600160a01b03808516600090815260046020526040808220858503905591851681529081208054849290610f3e9084906113ec565b92505081905550826001600160a01b0316846001600160a01b031660008051602061155f83398151915284604051610f7891815260200190565b60405180910390a3610dc3565b6001600160a01b038216610fe55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b8565b6001600160a01b038216600090815260046020526040902054818110156110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b8565b6001600160a01b0383166000908152600460205260408120838303905560078054849290611088908490611512565b90915550506040518281526000906001600160a01b0385169060008051602061155f83398151915290602001610d42565b6001600160a01b03821661110f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104b8565b806007600082825461112191906113ec565b90915550506001600160a01b0382166000908152600460205260408120805483929061114e9084906113ec565b90915550506040518181526001600160a01b0383169060009060008051602061155f8339815191529060200160405180910390a35050565b600060208083528351808285015260005b818110156111b357858101830151858201604001528201611197565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111e957600080fd5b50565b600080604083850312156111ff57600080fd5b823561120a816111d4565b946020939093013593505050565b60008060006060848603121561122d57600080fd5b8335611238816111d4565b92506020840135611248816111d4565b929592945050506040919091013590565b60006020828403121561126b57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561129b57600080fd5b823567ffffffffffffffff808211156112b357600080fd5b818501915085601f8301126112c757600080fd5b8135818111156112d9576112d9611272565b8060051b604051601f19603f830116810181811085821117156112fe576112fe611272565b60405291825284820192508381018501918883111561131c57600080fd5b938501935b8285101561133a57843584529385019392850192611321565b98975050505050505050565b60006020828403121561135857600080fd5b813561058e816111d4565b6000806040838503121561137657600080fd5b8235611381816111d4565b91506020830135611391816111d4565b809150509250929050565b600181811c908216806113b057607f821691505b6020821081036113d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103b8576103b86113d6565b60006020828403121561141157600080fd5b815161058e816111d4565b6020808252601990820152784f776e65722063616e6e6f742062652030206164647265737360381b604082015260600190565b60006020828403121561146157600080fd5b5051919050565b60208082526024908201527f4e465420617420696e64657820686173206e6f74206265656e206d696e746564604082015263081e595d60e21b606082015260800190565b6020808252601c908201527f456d697373696f6e20686173206e6f7420737461727465642079657400000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161150b5761150b6113d6565b5060010190565b818103818111156103b8576103b86113d6565b80820281158282048414176103b8576103b86113d6565b60008261155957634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220abf05b88d6f466e7f3b917bebfc61b7f3e3d031ead9497ff10c7fc4749ee7d0464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca
-----Decoded View---------------
Arg [0] : _monsuta (address): 0x0C45C9DA96313b95d5ffd8Dfec1f8B4C2E47AbCA
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000c45c9da96313b95d5ffd8dfec1f8b4c2e47abca
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.