ETH Price: $3,095.66 (-1.10%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer239695362025-12-08 17:20:471 hr ago1765214447IN
Undeads Games: UDS Token
0 ETH0.000020760.40352526
Transfer239693502025-12-08 16:43:232 hrs ago1765212203IN
Undeads Games: UDS Token
0 ETH0.000024280.82119287
Transfer239693462025-12-08 16:42:352 hrs ago1765212155IN
Undeads Games: UDS Token
0 ETH0.000106672.28666889
Transfer239693022025-12-08 16:33:352 hrs ago1765211615IN
Undeads Games: UDS Token
0 ETH0.000062461.33834548
Transfer239691082025-12-08 15:54:473 hrs ago1765209287IN
Undeads Games: UDS Token
0 ETH0.000015970.34242063
Approve239690672025-12-08 15:46:353 hrs ago1765208795IN
Undeads Games: UDS Token
0 ETH0.000020550.85460631
Transfer239689042025-12-08 15:13:473 hrs ago1765206827IN
Undeads Games: UDS Token
0 ETH0.000188616.37711718
Transfer239689042025-12-08 15:13:473 hrs ago1765206827IN
Undeads Games: UDS Token
0 ETH0.000188616.37711718
Approve239688882025-12-08 15:10:353 hrs ago1765206635IN
Undeads Games: UDS Token
0 ETH0.000109522.37881342
Approve239686322025-12-08 14:18:594 hrs ago1765203539IN
Undeads Games: UDS Token
0 ETH0.000108852.36483399
Approve239684572025-12-08 13:43:235 hrs ago1765201403IN
Undeads Games: UDS Token
0 ETH0.000067062.31810927
Transfer239683232025-12-08 13:16:355 hrs ago1765199795IN
Undeads Games: UDS Token
0 ETH0.000107142.29667025
Transfer239681972025-12-08 12:51:116 hrs ago1765198271IN
Undeads Games: UDS Token
0 ETH0.000059971.74529479
Approve239679972025-12-08 12:10:596 hrs ago1765195859IN
Undeads Games: UDS Token
0 ETH0.000106332.31067691
Approve239679782025-12-08 12:07:116 hrs ago1765195631IN
Undeads Games: UDS Token
0 ETH0.000067132.32162685
Approve239677172025-12-08 11:14:237 hrs ago1765192463IN
Undeads Games: UDS Token
0 ETH0.000021550.46822477
Approve239676202025-12-08 10:54:358 hrs ago1765191275IN
Undeads Games: UDS Token
0 ETH0.000016840.36348086
Transfer239674372025-12-08 10:16:598 hrs ago1765189019IN
Undeads Games: UDS Token
0 ETH0.000012010.35
Transfer239666332025-12-08 7:34:4711 hrs ago1765179287IN
Undeads Games: UDS Token
0 ETH0.000022170.47521454
Transfer239657892025-12-08 4:44:4714 hrs ago1765169087IN
Undeads Games: UDS Token
0 ETH0.000010750.31309586
Transfer239657122025-12-08 4:29:1114 hrs ago1765168151IN
Undeads Games: UDS Token
0 ETH0.000013390.39
Approve239650502025-12-08 2:14:5916 hrs ago1765160099IN
Undeads Games: UDS Token
0 ETH0.000022030.47858262
Transfer239633532025-12-07 20:30:4722 hrs ago1765139447IN
Undeads Games: UDS Token
0 ETH0.000011340.38399828
Transfer239631642025-12-07 19:52:3523 hrs ago1765137155IN
Undeads Games: UDS Token
0 ETH0.000064831.25977818
Approve239631132025-12-07 19:42:2323 hrs ago1765136543IN
Undeads Games: UDS Token
0 ETH0.000043390.93775807
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UDSToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
// SPDX-License-Identifier: PROPRIERTARY

// Author: Ilya A. Shlyakhovoy
// Email: [email protected]

pragma solidity 0.8.17;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "../utils/GuardExtension.sol";

contract UDSToken is ERC20, ERC20Burnable, GuardExtension {
    constructor(uint256 initialSupply, address rights_)
        ERC20("UndeadServiceToken", "UDS")
        GuardExtension(rights_)
    {
        _mint(address(this), initialSupply);
    }

    /**
    @notice transfer the funds from the minter to target
    @param target_ The address of the receiver
    @param amount_ The funds amount
    @return bool true
    */
    function transferTo(address target_, uint256 amount_)
        external
        haveRights
        returns (bool)
    {
        _transfer(address(this), target_, amount_);
        return true;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 `sender` to `recipient`.
     *
     * 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// 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: PROPRIERTARY

// Author: Ilya A. Shlyakhovoy
// Email: [email protected]

pragma solidity 0.8.17;

interface IRights {
    event AdminAdded(address indexed admin);
    event AdminDefined(address indexed admin, address indexed contractHash);
    event AdminRemoved(address indexed admin);
    event AdminCleared(address indexed admin, address indexed contractHash);

    /**
@notice Add a new admin for the Rigths contract
@param admin_ New admin address
*/

    function addAdmin(address admin_) external;

    /**
@notice Add a new admin for the any other contract
@param contract_ Contract address packed into address
@param admin_ New admin address
*/

    function addAdmin(address contract_, address admin_) external;

    /**
@notice Remove the existing admin from the Rigths contract
@param admin_ Admin address
*/

    function removeAdmin(address admin_) external;

    /**
@notice Add a new admin for the any other contract
@param contract_ Contract address packed into address
@param admin_ New admin address
*/

    function removeAdmin(address contract_, address admin_) external;

    /**
@notice Get the rights for the contract for the caller
@param contract_ Contract address packed into address
@return have rights or not
*/
    function haveRights(address contract_) external view returns (bool);

    /**
@notice Get the rights for the contract
@param contract_ Contract address packed into address
@param admin_ Admin address
@return have rights or not
*/
    function haveRights(address contract_, address admin_)
        external
        view
        returns (bool);
}

// SPDX-License-Identifier: PROPRIERTARY

// Author: Ilya A. Shlyakhovoy
// Email: [email protected]

pragma solidity 0.8.17;
import "../interfaces/IRights.sol";

abstract contract Guard {
    string constant NO_RIGHTS = "Guard: No rights";

    /// @notice only if person with rights calls the contract
    modifier haveRights() {
        require(_rights().haveRights(address(this), msg.sender), NO_RIGHTS);
        _;
    }

    /// @notice only if someone with rights calls the contract
    modifier haveRightsPerson(address who_) {
        require(_rights().haveRights(address(this), who_), NO_RIGHTS);
        _;
    }

    /// @notice only if person with rights calls the function
    modifier haveRightsExt(address target_, address who_) {
        require(_rights().haveRights(target_, who_), NO_RIGHTS);
        _;
    }

    function _rights() internal view virtual returns (IRights);

    function setRights(address rights_) external virtual;
}

// SPDX-License-Identifier: PROPRIERTARY

// Author: Ilya A. Shlyakhovoy
// Email: [email protected]

pragma solidity 0.8.17;
import "../interfaces/IRights.sol";
import "../utils/Guard.sol";

contract GuardExtension is Guard {
    IRights private _rightsContract;

    string private constant SAME_VALUE = "Guard: same value";
    string private constant ZERO_ADDRESS = "Guard: zero address";

    constructor(address rights_) {
        require(rights_ != address(0), ZERO_ADDRESS);
        _rightsContract = IRights(rights_);
    }

    function _rights() internal view virtual override returns (IRights) {
        return _rightsContract;
    }

    function setRights(address rights_) external virtual override haveRights {
        require(address(_rightsContract) != rights_, SAME_VALUE);
        _rightsContract = IRights(rights_);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "evmVersion": "london",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"rights_","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":[{"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rights_","type":"address"}],"name":"setRights","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":"target_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"transferTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080346200049257620011cb90601f19906001600160401b03601f388590038181018516840190838211858310176200039457808591604098899485528339810103126200049257825160209384015190946001600160a01b0382169182900362000492576200006e62000497565b60128152712ab73232b0b229b2b93b34b1b2aa37b5b2b760711b868201526200009662000497565b9460038087526255445360e81b888801528251828111620003945781546001948582811c9216801562000487575b8b831014620004715781898493116200041b575b508a90898311600114620003b657600092620003aa575b505060001982841b1c191690841b1781555b8651918211620003945760049687548481811c9116801562000389575b8a821014620003745787811162000329575b508890878411600114620002c057938394918492600095620002b4575b50501b92600019911b1c19161784555b6200016762000497565b601381527f47756172643a207a65726f20616464726573730000000000000000000000000086820152821562000258575050600580546001600160a01b0319169190911790553015620002195750507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600091620001e884600254620004b7565b60025530835282815284832062000201858254620004b7565b905584519384523093a351610cef9081620004dc8239f35b60649285519262461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b84869285848b5195869462461bcd60e51b86528501528451908160248601526000955b8287106200029a57505060449450600085828601015201168101030190fd5b86810182015188880160440152958101958795506200027b565b0151935038806200014d565b91908584169289600052848b6000209460005b8d89838310620003115750505010620002f6575b50505050811b0184556200015d565b01519060f884600019921b161c1916905538808080620002e7565b868601518955909701969485019488935001620002d3565b88600052896000208880860160051c8201928c87106200036a575b0160051c019085905b8281106200035d57505062000130565b600081550185906200034d565b9250819262000344565b602289634e487b7160e01b6000525260246000fd5b90607f16906200011e565b634e487b7160e01b600052604160045260246000fd5b015190503880620000ef565b908787941691856000528c600020928d6000905b828210620004035750508411620003ea575b505050811b01815562000101565b015160001983861b60f8161c19169055388080620003dc565b8385015186558a979095019493840193018e620003ca565b909150836000528a6000208980850160051c8201928d861062000467575b918891869594930160051c01915b82811062000457575050620000d8565b6000815585945088910162000447565b9250819262000439565b634e487b7160e01b600052602260045260246000fd5b91607f1691620000c4565b600080fd5b60408051919082016001600160401b038111838210176200039457604052565b91908201809211620004c557565b634e487b7160e01b600052601160045260246000fdfe608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461066357508163095ea7b31461063957816318160ddd1461061a57816323b872dd146105dd5781632ccb1b3014610507578163313ce567146104eb57816337d2aae9146103c8578163395093511461037857816342966c681461035a57816370a082311461032357816379cc6790146102f057816395d89b41146101ed578163a457c2d71461014557508063a9059cbb146101155763dd62ed3e146100ca57600080fd5b34610111578060031936011261011157806020926100e661079d565b6100ee6107b8565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b503461011157806003193601126101115760209061013e61013461079d565b6024359033610845565b5160018152f35b905082346101ea57826003193601126101ea5761016061079d565b918360243592338152600160205281812060018060a01b03861682526020522054908282106101995760208561013e85850387336109ba565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b838334610111578160031936011261011157805191809380549160019083821c928285169485156102e6575b60209586861081146102d3578589529081156102af5750600114610257575b6102538787610249828c0383610800565b5191829182610754565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061029c57505050826102539461024992820101948680610238565b805486850188015292860192810161027e565b60ff19168887015250505050151560051b8301019250610249826102538680610238565b634e487b7160e01b845260228352602484fd5b93607f1693610219565b505034610111573660031901126101ea5761032061030c61079d565b6024359061031b823383610abc565b610b54565b80f35b5050346101115760203660031901126101115760209181906001600160a01b0361034b61079d565b16815280845220549051908152f35b83903461011157602036600319011261011157610320903533610b54565b50503461011157806003193601126101115761013e6020926103c161039b61079d565b338352600186528483206001600160a01b03821684528652918490205460243590610822565b90336109ba565b9050346104e7576020806003193601126104e3576103e461079d565b6005548451630f6266a760e01b81523094810194855233602086015290936001600160a01b0380861693909290918590829081906040010381875afa9081156104d9579161047e7047756172643a2073616d652076616c756560781b98949261049b9796948b916104ac575b5085519061045d826107ce565b601082526f47756172643a204e6f2072696768747360801b88830152610c91565b16958692519361048d856107ce565b601185528401521415610c91565b6001600160a01b0319161760055580f35b6104cc9150873d89116104d2575b6104c48183610800565b810190610c79565b38610450565b503d6104ba565b87513d8a823e3d90fd5b8380fd5b8280fd5b5050346101115781600319360112610111576020905160128152f35b9050346104e757816003193601126104e75761055e602061052661079d565b6005548551630f6266a760e01b8152309581019586523360208701529194919384926001600160a01b03909216918391829160400190565b03915afa9081156105d05761013e92916105a991602096916105b3575b50845190610588826107ce565b601082526f47756172643a204e6f2072696768747360801b87830152610c91565b6024359030610845565b6105ca9150863d81116104d2576104c48183610800565b3861057b565b50505051903d90823e3d90fd5b5050346101115760603660031901126101115760209061013e6105fe61079d565b6106066107b8565b60443591610615833383610abc565b610845565b5050346101115781600319360112610111576020906002549051908152f35b50503461011157806003193601126101115760209061013e61065961079d565b60243590336109ba565b929150346104e357836003193601126104e357600354600181811c918690828116801561074a575b6020958686108214610737575084885290811561071557506001146106bc575b6102538686610249828b0383610800565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106107025750505082610253946102499282010194386106ab565b80548685018801529286019281016106e5565b60ff191687860152505050151560051b830101925061024982610253386106ab565b634e487b7160e01b845260229052602483fd5b93607f169361068b565b6020808252825181830181905290939260005b82811061078957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610767565b600435906001600160a01b03821682036107b357565b600080fd5b602435906001600160a01b03821682036107b357565b6040810190811067ffffffffffffffff8211176107ea57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176107ea57604052565b9190820180921161082f57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b039081169182156109675716918215610916576000828152806020526040812054918083106108c257604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9587602096528286520382822055868152206108b7828254610822565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b03908116918215610a6b5716918215610a1b5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b0380831660005260016020526040600020908216600052602052604060002054926000198403610af4575b50505050565b808410610b0f57610b069303916109ba565b38808080610aee565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6001600160a01b03168015610c2a57600091818352826020526040832054818110610bda57819083855284602052036040842055600254818103908111610bc6577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091600255604051908152a3565b634e487b7160e01b84526011600452602484fd5b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b908160209103126107b3575180151581036107b35790565b15610c995750565b60405162461bcd60e51b8152908190610cb59060048301610754565b0390fdfea26469706673582212204b9843878a6f8b78ffb28ae2f0d925fa88a892bca4cee74ef4612f8956fb8ef364736f6c634300081100330000000000000000000000000000001d6329f1c35ca4bfabb9f5610000000000000000000000000000000000dcf111a56573ea8fd1bfee790b45bb433017966c

Deployed Bytecode

0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461066357508163095ea7b31461063957816318160ddd1461061a57816323b872dd146105dd5781632ccb1b3014610507578163313ce567146104eb57816337d2aae9146103c8578163395093511461037857816342966c681461035a57816370a082311461032357816379cc6790146102f057816395d89b41146101ed578163a457c2d71461014557508063a9059cbb146101155763dd62ed3e146100ca57600080fd5b34610111578060031936011261011157806020926100e661079d565b6100ee6107b8565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5080fd5b503461011157806003193601126101115760209061013e61013461079d565b6024359033610845565b5160018152f35b905082346101ea57826003193601126101ea5761016061079d565b918360243592338152600160205281812060018060a01b03861682526020522054908282106101995760208561013e85850387336109ba565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b838334610111578160031936011261011157805191809380549160019083821c928285169485156102e6575b60209586861081146102d3578589529081156102af5750600114610257575b6102538787610249828c0383610800565b5191829182610754565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061029c57505050826102539461024992820101948680610238565b805486850188015292860192810161027e565b60ff19168887015250505050151560051b8301019250610249826102538680610238565b634e487b7160e01b845260228352602484fd5b93607f1693610219565b505034610111573660031901126101ea5761032061030c61079d565b6024359061031b823383610abc565b610b54565b80f35b5050346101115760203660031901126101115760209181906001600160a01b0361034b61079d565b16815280845220549051908152f35b83903461011157602036600319011261011157610320903533610b54565b50503461011157806003193601126101115761013e6020926103c161039b61079d565b338352600186528483206001600160a01b03821684528652918490205460243590610822565b90336109ba565b9050346104e7576020806003193601126104e3576103e461079d565b6005548451630f6266a760e01b81523094810194855233602086015290936001600160a01b0380861693909290918590829081906040010381875afa9081156104d9579161047e7047756172643a2073616d652076616c756560781b98949261049b9796948b916104ac575b5085519061045d826107ce565b601082526f47756172643a204e6f2072696768747360801b88830152610c91565b16958692519361048d856107ce565b601185528401521415610c91565b6001600160a01b0319161760055580f35b6104cc9150873d89116104d2575b6104c48183610800565b810190610c79565b38610450565b503d6104ba565b87513d8a823e3d90fd5b8380fd5b8280fd5b5050346101115781600319360112610111576020905160128152f35b9050346104e757816003193601126104e75761055e602061052661079d565b6005548551630f6266a760e01b8152309581019586523360208701529194919384926001600160a01b03909216918391829160400190565b03915afa9081156105d05761013e92916105a991602096916105b3575b50845190610588826107ce565b601082526f47756172643a204e6f2072696768747360801b87830152610c91565b6024359030610845565b6105ca9150863d81116104d2576104c48183610800565b3861057b565b50505051903d90823e3d90fd5b5050346101115760603660031901126101115760209061013e6105fe61079d565b6106066107b8565b60443591610615833383610abc565b610845565b5050346101115781600319360112610111576020906002549051908152f35b50503461011157806003193601126101115760209061013e61065961079d565b60243590336109ba565b929150346104e357836003193601126104e357600354600181811c918690828116801561074a575b6020958686108214610737575084885290811561071557506001146106bc575b6102538686610249828b0383610800565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106107025750505082610253946102499282010194386106ab565b80548685018801529286019281016106e5565b60ff191687860152505050151560051b830101925061024982610253386106ab565b634e487b7160e01b845260229052602483fd5b93607f169361068b565b6020808252825181830181905290939260005b82811061078957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610767565b600435906001600160a01b03821682036107b357565b600080fd5b602435906001600160a01b03821682036107b357565b6040810190811067ffffffffffffffff8211176107ea57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176107ea57604052565b9190820180921161082f57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b039081169182156109675716918215610916576000828152806020526040812054918083106108c257604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9587602096528286520382822055868152206108b7828254610822565b9055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b6001600160a01b03908116918215610a6b5716918215610a1b5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b0380831660005260016020526040600020908216600052602052604060002054926000198403610af4575b50505050565b808410610b0f57610b069303916109ba565b38808080610aee565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6001600160a01b03168015610c2a57600091818352826020526040832054818110610bda57819083855284602052036040842055600254818103908111610bc6577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091600255604051908152a3565b634e487b7160e01b84526011600452602484fd5b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b908160209103126107b3575180151581036107b35790565b15610c995750565b60405162461bcd60e51b8152908190610cb59060048301610754565b0390fdfea26469706673582212204b9843878a6f8b78ffb28ae2f0d925fa88a892bca4cee74ef4612f8956fb8ef364736f6c63430008110033

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

0000000000000000000000000000001d6329f1c35ca4bfabb9f5610000000000000000000000000000000000dcf111a56573ea8fd1bfee790b45bb433017966c

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000000000000000000000000000000
Arg [1] : rights_ (address): 0xDcF111A56573eA8fd1bfEE790B45bb433017966C

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000001d6329f1c35ca4bfabb9f5610000000000
Arg [1] : 000000000000000000000000dcf111a56573ea8fd1bfee790b45bb433017966c


Deployed Bytecode Sourcemap

295:629:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3883:6:0;295:629:6;;:::i;:::-;;;719:10:4;;3883:6:0;:::i;:::-;295:629:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;719:10:4;;295:629:6;;;;;;;;;;;;;;;;;;;;;6811:35:0;;;;295:629:6;;;;6947:34:0;295:629:6;;;;719:10:4;6947:34:0;:::i;295:629:6:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;295:629:6;;;;;-1:-1:-1;;;;295:629:6;;;;;;;;-1:-1:-1;295:629:6;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;295:629:6;;;;1120:6:2;295:629:6;;:::i;:::-;;;719:10:4;1088:6:2;719:10:4;;1088:6:2;;:::i;:::-;1120;:::i;:::-;295:629:6;;;;;;;;;;-1:-1:-1;;295:629:6;;;;;;;;-1:-1:-1;;;;;295:629:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;295:629:6;;;;653:6:2;295:629:6;;719:10:4;653:6:2;:::i;295:629:6:-;;;;;;;;;;;;;;6040:38:0;295:629:6;;6040:38:0;295:629:6;;:::i;:::-;719:10:4;295:629:6;;;;;;;;-1:-1:-1;;;;;295:629:6;;;;;;;;;;;;;;6040:38:0;:::i;:::-;719:10:4;;6040:38:0;:::i;295:629:6:-;;;;;;;;;;;;;;;;;:::i;:::-;621:15:8;295:629:6;;;-1:-1:-1;;;346:47:7;;375:4;346:47;;;295:629:6;;;382:10:7;295:629:6;;;;;;-1:-1:-1;;;;;295:629:6;;;;;;;;;;;;;;;;346:47:7;;;;;;;;;;;338:67;-1:-1:-1;;;346:47:7;;;732:56:8;346:47:7;;;;;;;295:629:6;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;295:629:6;;;;338:67:7;:::i;:::-;295:629:6;;;;;;;;;:::i;:::-;;;;;;;740:35:8;;732:56;:::i;:::-;-1:-1:-1;;;;;;304:19:8;;621:15;304:19;295:629:6;;346:47:7;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3175:2:0;295:629:6;;;;;;;;;;;;;;;;;346:47:7;295:629:6;;;:::i;:::-;621:15:8;295:629:6;;;-1:-1:-1;;;346:47:7;;375:4;346:47;;;295:629:6;;;382:10:7;295:629:6;;;;;;;;;;-1:-1:-1;;;;;295:629:6;;;;;;;;;;;;346:47:7;;;;;;;;;;886:7:6;346:47:7;;338:67;346:47;295:629:6;346:47:7;;;;295:629:6;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;295:629:6;;;;338:67:7;:::i;:::-;295:629:6;;375:4:7;;886:7:6;:::i;346:47:7:-;;;;;;;;;;;;;;:::i;:::-;;;;;295:629:6;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;295:629:6;;;;;;5443:6:0;295:629:6;;:::i;:::-;;;:::i;:::-;;;719:10:4;5406:6:0;719:10:4;;5406:6:0;;:::i;:::-;5443;:::i;295:629:6:-;;;;;;;;;;;;;;;;3331:12:0;295:629:6;;;;;;;;;;;;;;;;;;;;;;;4595:6:0;295:629:6;;:::i;:::-;;;719:10:4;;4595:6:0;:::i;295:629:6:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;295:629:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;295:629:6;;;;;-1:-1:-1;;;295:629:6;;;;;;;;-1:-1:-1;295:629:6;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;295:629:6;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;295:629:6;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;7484:651:0;-1:-1:-1;;;;;295:629:6;;;;7610:18:0;;295:629:6;;;7688:16:0;;;295:629:6;;7626:1:0;295:629:6;;;;;;;;;;7859:21:0;;;;295:629:6;;;;;8054:26:0;295:629:6;;;;;;;;;;;;;;;;;8015:23:0;295:629:6;;;8015:23:0;:::i;:::-;295:629:6;;;;;;;8054:26:0;7484:651::o;295:629:6:-;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;10119:370:0;-1:-1:-1;;;;;295:629:6;;;;10250:19:0;;295:629:6;;;10328:21:0;;;295:629:6;;;10450:32:0;295:629:6;;10267:1:0;295:629:6;;;;;10267:1:0;295:629:6;;10267:1:0;295:629:6;;;;;10267:1:0;295:629:6;;;;;;;10450:32:0;10119:370::o;295:629:6:-;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;10770:441:0;;295:629:6;;;;;;;;-1:-1:-1;295:629:6;;;;;-1:-1:-1;295:629:6;;;;-1:-1:-1;295:629:6;;;;-1:-1:-1;295:629:6;;10986:17:0;;;10966:37;;10962:243;;10770:441;;;;;:::o;10962:243::-;11027:26;;;295:629:6;;11154:25:0;295:629:6;;11154:25:0;;:::i;:::-;10962:243;;;;;;295:629:6;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;;;;9120:576:0;-1:-1:-1;;;;;295:629:6;9203:21:0;;295:629:6;;9222:1:0;295:629:6;;;;;;;;;;;9394:24:0;;;295:629:6;;;;;;;;;;;;;;;9555:22:0;295:629:6;;;;;;;;;9593:37:0;295:629:6;;;9555:22:0;295:629:6;;;;;;9593:37:0;9120:576::o;295:629:6:-;-1:-1:-1;;;295:629:6;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;-1:-1:-1;;;295:629:6;;;;;;;;;;;;;;;;;;;;;;;;;:::o;219:18:7:-;;;;;:::o;:::-;295:629:6;;-1:-1:-1;;;219:18:7;;295:629:6;;;219:18:7;;;;;;:::i;:::-;;;

Swarm Source

ipfs://4b9843878a6f8b78ffb28ae2f0d925fa88a892bca4cee74ef4612f8956fb8ef3

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

OVERVIEW

Undeads Games is focused on building multi-genre Web3 games for various groups of players and includes Undeads Rush, Undeads Viral, Undeads Lottery and Undeads RPG game in current portfolio.

Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.