ETH Price: $1,891.65 (-11.77%)
 

Overview

Max Total Supply

120,300,000 ZNX

Holders

8 (0.00%)

Transfers

-
0

Market

Price

$0.37 @ 0.000193 ETH (-4.14%)

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 6 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A new generation digital coin. Recharging the balance of online services. Innovative financial solutions for fiats and crypto. Exclusive integration scenarios.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZENEXCoin

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ZENEXCoin is ERC20, ERC20Burnable, Ownable {
    mapping (address => bool) public isBlackListed;

    event AddedBlackList(address _user);
    event RemovedBlackList(address _user);

    constructor() ERC20("ZENEX Coin", "ZNX") {
        _mint(msg.sender, 120300000 * 10 ** decimals());
    }

    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        emit AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        emit RemovedBlackList(_clearedUser);
    }

    function decimals() public view virtual override returns (uint8) {
        return 6;
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        require(!isBlackListed[owner]);
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        require(!isBlackListed[from]);
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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 (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 (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;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234156200001057600080fd5b6200001a62000177565b6020692d22a722ac1021b7b4b760b11b8183015262000038620001aa565b620b49cb60eb1b8183015282516001600160401b038111156200005f576200005f62000161565b620000778162000071600354620001dd565b6200021a565b82601f821160018114620000ae5760008315620000945750858201515b8360011b6000198560031b1c198216176003555062000129565b6003600052601f1983167fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b60005b82811015620000fd57888501518255938701936001909101908701620000dc565b50848210156200011c5787840151600019600387901b60f8161c191681555b505060018360011b016003555b5050506200013781620002f0565b5050506200014533620003dc565b620001503362000427565b604051610f7780620004f883398082f35b634e487b7160e01b600052604160045260246000fd5b6040805160009181016001600160401b03811182821017156200019e576200019e62000161565b604052600a8152919050565b6040805160009181016001600160401b0381118282101715620001d157620001d162000161565b60405260038152919050565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8111156200028757600360009081527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c81016020851015620002625750805b601f840160051c820191505b8181101562000283578281556001016200026e565b5050505b5050565b601f8111156200028757600460009081527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c81016020851015620002625750601f830160051c8101908181101562000283578281556001016200026e565b80516001600160401b038111156200030c576200030c62000161565b62000324816200031e600454620001dd565b6200028b565b602080601f8311600181146200035d5760008415620003435750848301515b600019600386901b1c1916600185901b1760045562000283565b6004600052601f1984167f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b60005b82811015620003ac578786015182559484019460019091019084016200038b565b5085821015620003cb5786850151600019600388901b60f8161c191681555b5050505050600190811b0160045550565b60055460018060a01b0380831660018060a01b0319831617600555828183167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a3505050565b6001600160a01b038116806200047c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606481fd5b600254656d6986c4380019811115620004a557634e487b7160e01b600052601160045260246000fd5b656d6986c4380090810160025560009182526020828152604080842080548401905551918252909183917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084a3505056fe604060808152600436106103f0576000803560e01c6306fdde0381146100ea5763095ea7b3811461011657630ecb93c08114610149576318160ddd8114610169576323b872dd81146101895763313ce56781146101be57633950935181146101dc576342966c6881146101f9576370a0823181146102145763715018a6811461024f576379cc6790811461026a57638da5cb5b811461028e576395d89b4181146102ba5763a457c2d781146102d55763a9059cbb81146102f25763dd62ed3e811461030f5763e47d606081146103775763e4997dc581146103b75763f2fde38b81146103d2576103ed565b34156100f4578182fd5b6100fd366103f6565b610105610724565b835180610112838361040b565b0381f35b3415610120578182fd5b61012936610460565b6101338183610872565b9150508351806101128383901515815260200190565b3415610153578182fd5b61016461015f36610498565b610c5a565b818351f35b3415610173578182fd5b61017c366103f6565b6002548351818152602081f35b3415610193578182fd5b61019c366104ca565b6101a7818385610ef7565b925050508351806101128383901515815260200190565b34156101c8578182fd5b6101d1366103f6565b825160068152602081f35b34156101e6578182fd5b6101ef36610460565b6101338183610885565b3415610203578182fd5b61016461020f3661051d565b610a7b565b341561021e578182fd5b61024561022a36610498565b6001600160a01b031660009081526020819052604090205490565b8351818152602081f35b3415610259578182fd5b610262366103f6565b610164610585565b3415610274578182fd5b61027d36610460565b6102878183610bb2565b5050818351f35b3415610298578182fd5b6102a1366103f6565b60055483516001600160a01b0390911680825290602081f35b34156102c4578182fd5b6102cd366103f6565b6101056107ee565b34156102df578182fd5b6102e836610460565b61013381836108df565b34156102fc578182fd5b61030536610460565b6101338183610d0d565b3415610319578182fd5b61032236610539565b61036281610344846001600160a01b0316600090815260016020526040902090565b6001600160a01b039190911660009081526020919091526040902090565b54915050835180610112838390815260200190565b3415610381578182fd5b6103ab61038d36610498565b6001600160a01b031660009081526006602052604090205460ff1690565b83518115158152602081f35b34156103c1578182fd5b6101646103cd36610498565b610cb5565b34156103dc578182fd5b6101646103e836610498565b610632565b50505b50600080fd5b60006003198201121561040857600080fd5b50565b600060208083528351808285015260005b818110156104385785810183015185820160400152820161041c565b8181111561044a576000604083870101525b50601f01601f1916929092016040019392505050565b60008060406003198401121561047557600080fd5b6004356001600160a01b038116811461048d57600080fd5b936024359350915050565b60006020600319830112156104ac57600080fd5b6004356001600160a01b03811681146104c457600080fd5b92915050565b600080806060600319850112156104e057600080fd5b6004356001600160a01b0380821682146104f957600080fd5b90935060243590808216821461050e57600080fd5b50929492935050604435919050565b600060206003198301121561053157600080fd5b505060043590565b60008060406003198401121561054e57600080fd5b6004356001600160a01b03808216821461056757600080fd5b90925060243590808216821461057c57600080fd5b50919391925050565b61058d6105da565b6005546bffffffffffffffffffffffff60a01b8116600555600060018060a01b0382167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a350565b6005546001600160a01b03163381146104085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606481fd5b61063a6105da565b6001600160a01b038181168061069e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608481fd5b600554816bffffffffffffffffffffffff60a01b821617600555838382167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a350505050565b601f8201601f1916810167ffffffffffffffff8111828210171561071d57634e487b7160e01b600052604160045260246000fd5b6040525050565b604051600354600090600181811c908083168061074257607f831692505b602080841082141561076257634e487b7160e01b86526022600452602486fd5b8387526020870182801561077d576001811461078e576107d7565b60ff198716825282820197506107d7565b60036000527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b60005b878110156107d1578154848201529086019084016107b8565b83019850505b505050505050506107ea828203836106e9565b5090565b604051600454600090600181811c908083168061080c57607f831692505b602080841082141561082c57634e487b7160e01b86526022600452602486fd5b8387526020870182801561077d5760018114610847576107d7565b60046000527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b6107b5565b61087d828233610967565b506001919050565b3360009081526001602090815260408083206001600160a01b038516845290915281205483198111156108c857634e487b7160e01b600052601160045260246000fd5b6108d58482018433610967565b5060019392505050565b3360009081526001602090815260408083206001600160a01b03851684529091528120548381101561095e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608481fd5b6108d584820384335b6001600160a01b038181166109c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608481fd5b808316610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608481fd5b5082610a4283610344846001600160a01b0316600090815260016020526040902090565b5560405183815282827f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583602081015b0384a350505050565b61040881335b6001600160a01b038116610ade5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608481fd5b6001600160a01b03811660009081526020819052604090205482811015610b4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608481fd5b828103610b70836001600160a01b0316600090815260208190526040902090565b5550610b7f8260025403600255565b6040518281526000827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602084a3505050565b610bbd823383610bcb565b610bc78282610a81565b5050565b6001600160a01b038181166000908152600160209081526040808320938616835292905220546000198114610c545783811015610c475760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606481fd5b610c548482038484610967565b50505050565b610c626105da565b60018060a01b0381168060005260066020526040600020600160ff19825416178155506040518181527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc602082a1505050565b610cbd6105da565b60018060a01b038116806000526006602052604060002060ff198154168155506040518181527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c602082a1505050565b336000526006602052600060ff6040600020541615610d2b57600080fd5b610d36838333610dee565b50600192915050565b806104085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608481fd5b806104085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608481fd5b6001600160a01b03818116610e505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608481fd5b610e5d8184161515610d3f565b506001600160a01b038116600090815260208190526040902054610e8384821015610d95565b838103610ea4836001600160a01b0316600090815260208190526040902090565b55506001600160a01b038216600090815260208190526040902080548401905560405183815282827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360208101610a72565b6001600160a01b03811660009081526006602052604081205460ff1615610f1d57600080fd5b610f28843384610bcb565b6108d5848484610dee56fea3646970667358221220c253459ffc63926e125f5a65abc1058b0788015fe270e505c11635a4512d59216c6578706572696d656e74616cf564736f6c63430008090041

Deployed Bytecode

0x604060808152600436106103f0576000803560e01c6306fdde0381146100ea5763095ea7b3811461011657630ecb93c08114610149576318160ddd8114610169576323b872dd81146101895763313ce56781146101be57633950935181146101dc576342966c6881146101f9576370a0823181146102145763715018a6811461024f576379cc6790811461026a57638da5cb5b811461028e576395d89b4181146102ba5763a457c2d781146102d55763a9059cbb81146102f25763dd62ed3e811461030f5763e47d606081146103775763e4997dc581146103b75763f2fde38b81146103d2576103ed565b34156100f4578182fd5b6100fd366103f6565b610105610724565b835180610112838361040b565b0381f35b3415610120578182fd5b61012936610460565b6101338183610872565b9150508351806101128383901515815260200190565b3415610153578182fd5b61016461015f36610498565b610c5a565b818351f35b3415610173578182fd5b61017c366103f6565b6002548351818152602081f35b3415610193578182fd5b61019c366104ca565b6101a7818385610ef7565b925050508351806101128383901515815260200190565b34156101c8578182fd5b6101d1366103f6565b825160068152602081f35b34156101e6578182fd5b6101ef36610460565b6101338183610885565b3415610203578182fd5b61016461020f3661051d565b610a7b565b341561021e578182fd5b61024561022a36610498565b6001600160a01b031660009081526020819052604090205490565b8351818152602081f35b3415610259578182fd5b610262366103f6565b610164610585565b3415610274578182fd5b61027d36610460565b6102878183610bb2565b5050818351f35b3415610298578182fd5b6102a1366103f6565b60055483516001600160a01b0390911680825290602081f35b34156102c4578182fd5b6102cd366103f6565b6101056107ee565b34156102df578182fd5b6102e836610460565b61013381836108df565b34156102fc578182fd5b61030536610460565b6101338183610d0d565b3415610319578182fd5b61032236610539565b61036281610344846001600160a01b0316600090815260016020526040902090565b6001600160a01b039190911660009081526020919091526040902090565b54915050835180610112838390815260200190565b3415610381578182fd5b6103ab61038d36610498565b6001600160a01b031660009081526006602052604090205460ff1690565b83518115158152602081f35b34156103c1578182fd5b6101646103cd36610498565b610cb5565b34156103dc578182fd5b6101646103e836610498565b610632565b50505b50600080fd5b60006003198201121561040857600080fd5b50565b600060208083528351808285015260005b818110156104385785810183015185820160400152820161041c565b8181111561044a576000604083870101525b50601f01601f1916929092016040019392505050565b60008060406003198401121561047557600080fd5b6004356001600160a01b038116811461048d57600080fd5b936024359350915050565b60006020600319830112156104ac57600080fd5b6004356001600160a01b03811681146104c457600080fd5b92915050565b600080806060600319850112156104e057600080fd5b6004356001600160a01b0380821682146104f957600080fd5b90935060243590808216821461050e57600080fd5b50929492935050604435919050565b600060206003198301121561053157600080fd5b505060043590565b60008060406003198401121561054e57600080fd5b6004356001600160a01b03808216821461056757600080fd5b90925060243590808216821461057c57600080fd5b50919391925050565b61058d6105da565b6005546bffffffffffffffffffffffff60a01b8116600555600060018060a01b0382167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a350565b6005546001600160a01b03163381146104085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606481fd5b61063a6105da565b6001600160a01b038181168061069e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608481fd5b600554816bffffffffffffffffffffffff60a01b821617600555838382167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06000604051a350505050565b601f8201601f1916810167ffffffffffffffff8111828210171561071d57634e487b7160e01b600052604160045260246000fd5b6040525050565b604051600354600090600181811c908083168061074257607f831692505b602080841082141561076257634e487b7160e01b86526022600452602486fd5b8387526020870182801561077d576001811461078e576107d7565b60ff198716825282820197506107d7565b60036000527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b60005b878110156107d1578154848201529086019084016107b8565b83019850505b505050505050506107ea828203836106e9565b5090565b604051600454600090600181811c908083168061080c57607f831692505b602080841082141561082c57634e487b7160e01b86526022600452602486fd5b8387526020870182801561077d5760018114610847576107d7565b60046000527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b6107b5565b61087d828233610967565b506001919050565b3360009081526001602090815260408083206001600160a01b038516845290915281205483198111156108c857634e487b7160e01b600052601160045260246000fd5b6108d58482018433610967565b5060019392505050565b3360009081526001602090815260408083206001600160a01b03851684529091528120548381101561095e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608481fd5b6108d584820384335b6001600160a01b038181166109c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608481fd5b808316610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608481fd5b5082610a4283610344846001600160a01b0316600090815260016020526040902090565b5560405183815282827f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583602081015b0384a350505050565b61040881335b6001600160a01b038116610ade5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608481fd5b6001600160a01b03811660009081526020819052604090205482811015610b4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608481fd5b828103610b70836001600160a01b0316600090815260208190526040902090565b5550610b7f8260025403600255565b6040518281526000827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602084a3505050565b610bbd823383610bcb565b610bc78282610a81565b5050565b6001600160a01b038181166000908152600160209081526040808320938616835292905220546000198114610c545783811015610c475760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606481fd5b610c548482038484610967565b50505050565b610c626105da565b60018060a01b0381168060005260066020526040600020600160ff19825416178155506040518181527f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc602082a1505050565b610cbd6105da565b60018060a01b038116806000526006602052604060002060ff198154168155506040518181527fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c602082a1505050565b336000526006602052600060ff6040600020541615610d2b57600080fd5b610d36838333610dee565b50600192915050565b806104085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608481fd5b806104085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608481fd5b6001600160a01b03818116610e505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608481fd5b610e5d8184161515610d3f565b506001600160a01b038116600090815260208190526040902054610e8384821015610d95565b838103610ea4836001600160a01b0316600090815260208190526040902090565b55506001600160a01b038216600090815260208190526040902080548401905560405183815282827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360208101610a72565b6001600160a01b03811660009081526006602052604081205460ff1615610f1d57600080fd5b610f28843384610bcb565b6108d5848484610dee56fea3646970667358221220c253459ffc63926e125f5a65abc1058b0788015fe270e505c11635a4512d59216c6578706572696d656e74616cf564736f6c63430008090041

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.