ETH Price: $2,683.22 (-2.51%)

Token

WenMoon (WenMoon)
 

Overview

Max Total Supply

5,000,000 WenMoon

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
*joegrower420🌱️.eth
Balance
111,414.082898469 WenMoon

Value
$0.00
0x17a5ccf17d2a8ed45cc1f8130cc3374582db753a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WenMoon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-08-23
*/

/**

https://medium.com/@WenMoonEth

https://t.me/WenMoonEth

Hey guys, Dev here, 
I am launching WenMoon because everyone who buys any crypto coin has only really one goal in mind and that is to make profit or in another words “WenMoon”. 
Everyone wants to their investment to be successful, however people don’t want to hold and they also don’t want to put in any effort themselves. 
Once you invest into a project it also becomes you responsibility to promote it to an to an extant. 
By promoting it i mean either share it to some private groups or just any groups in general. 

This will be a 0 Tax project, because my intention is not to Tax rug you guys like most Devs do. 
My goal is for us to all work together and pump together. 
I will of course kickstart it and put in the initial effort, however hopefully investors will also do their small share.

Guys since everyone wants to moon, I am naming this project WenMoon. We do not need heavy marketing or heavy money spent on promotions because i feel like they are useless. 
So it’s gonna be a stealth Launch with Burnt Liquidity.

As I am not taking any taxes WenMoon will be yours as much as it is mine.

**/
// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;


 // @dev Interface of the ERC20 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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

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

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

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

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


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


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



    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);
    }

}





pragma solidity ^0.8.0;




contract WenMoon is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

608060405260405162000dcb38038062000dcb833981016040819052620000269162000272565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a62000363565b6200007390846200042e565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004d2565b828054620001239062000450565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600082601f830112620001cd57600080fd5b81516001600160401b0380821115620001ea57620001ea620004a3565b604051601f8301601f19908116603f01168101908282118183101715620002155762000215620004a3565b816040528381526020925086838588010111156200023257600080fd5b600091505b8382101562000256578582018301518183018401529082019062000237565b83821115620002685760008385830101525b9695505050505050565b60008060008060008060c087890312156200028c57600080fd5b86516001600160401b0380821115620002a457600080fd5b620002b28a838b01620001bb565b97506020890151915080821115620002c957600080fd5b50620002d889828a01620001bb565b95505060408701519350606087015192506080870151620002f981620004b9565b60a08801519092506200030c81620004b9565b809150509295509295509295565b600181815b808511156200035b5781600019048211156200033f576200033f6200048d565b808516156200034d57918102915b93841c93908002906200031f565b509250929050565b600062000371838362000378565b9392505050565b600082620003895750600162000428565b81620003985750600062000428565b8160018114620003b15760028114620003bc57620003dc565b600191505062000428565b60ff841115620003d057620003d06200048d565b50506001821b62000428565b5060208310610133831016604e8410600b841016171562000401575081810a62000428565b6200040d83836200031a565b80600019048211156200042457620004246200048d565b0290505b92915050565b60008160001904831182151516156200044b576200044b6200048d565b500290565b600181811c908216806200046557607f821691505b602082108114156200048757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004cf57600080fd5b50565b6108e980620004e26000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107de565b60405180910390f35b6100df6100da3660046107b4565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610778565b610267565b6003546100f3565b6100df61012a3660046107b4565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b4565b610363565b6100df6101813660046107b4565b6103fe565b6100f3610194366004610745565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610862565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610862565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d868561084b565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d908690610833565b6060600580546101ce90610862565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d868561084b565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b610677828261084b565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad908490610833565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b60006020828403121561073557600080fd5b61073e82610707565b9392505050565b6000806040838503121561075857600080fd5b61076183610707565b915061076f60208401610707565b90509250929050565b60008060006060848603121561078d57600080fd5b61079684610707565b92506107a460208501610707565b9150604084013590509250925092565b600080604083850312156107c757600080fd5b6107d083610707565b946020939093013593505050565b600060208083528351808285015260005b8181101561080b578581018301518582016040015282016107ef565b8181111561081d576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108465761084661089d565b500190565b60008282101561085d5761085d61089d565b500390565b600181811c9082168061087657607f821691505b6020821081141561089757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d2bad1ad9ed5544b10cfa3309ebb4fdec9690c7a55c67ddb12586c8e7db8b64864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a20000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a2000000000000000000000000000000000000000000000000000000000000000757656e4d6f6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000757656e4d6f6f6e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107de565b60405180910390f35b6100df6100da3660046107b4565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610778565b610267565b6003546100f3565b6100df61012a3660046107b4565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b4565b610363565b6100df6101813660046107b4565b6103fe565b6100f3610194366004610745565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610862565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610862565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d868561084b565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d908690610833565b6060600580546101ce90610862565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d868561084b565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b610677828261084b565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad908490610833565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b60006020828403121561073557600080fd5b61073e82610707565b9392505050565b6000806040838503121561075857600080fd5b61076183610707565b915061076f60208401610707565b90509250929050565b60008060006060848603121561078d57600080fd5b61079684610707565b92506107a460208501610707565b9150604084013590509250925092565b600080604083850312156107c757600080fd5b6107d083610707565b946020939093013593505050565b600060208083528351808285015260005b8181101561080b578581018301518582016040015282016107ef565b8181111561081d576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108465761084661089d565b500190565b60008282101561085d5761085d61089d565b500390565b600181811c9082168061087657607f821691505b6020821081141561089757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d2bad1ad9ed5544b10cfa3309ebb4fdec9690c7a55c67ddb12586c8e7db8b64864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000004c4b400000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a20000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a2000000000000000000000000000000000000000000000000000000000000000757656e4d6f6f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000757656e4d6f6f6e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): WenMoon
Arg [1] : symbol_ (string): WenMoon
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 5000000
Arg [4] : tokenOwner_ (address): 0x6a0E8Ed04810f038b104c5cCF5af611396FB73A2
Arg [5] : feeReceiver_ (address): 0x6a0E8Ed04810f038b104c5cCF5af611396FB73A2

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000000004c4b40
Arg [4] : 0000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a2
Arg [5] : 0000000000000000000000006a0e8ed04810f038b104c5ccf5af611396fb73a2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 57656e4d6f6f6e00000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 57656e4d6f6f6e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12043:376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6326:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8502:169;;;;;;:::i;:::-;;:::i;:::-;;;1405:14:1;;1398:22;1380:41;;1368:2;1353:18;8502:169:0;1240:187:1;7455:108:0;7543:12;;7455:108;;;5020:25:1;;;5008:2;4993:18;7455:108:0;4874:177:1;9153:422:0;;;;;;:::i;:::-;;:::i;7288:102::-;7373:9;;7288:102;;9984:215;;;;;;:::i;:::-;;:::i;7626:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7727:18:0;7700:7;7727:18;;;;;;;;;;;;7626:127;6545:104;;;:::i;10702:377::-;;;;;;:::i;:::-;;:::i;7966:175::-;;;;;;:::i;:::-;;:::i;8204:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8320:18:0;;;8293:7;8320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8204:151;6326:100;6380:13;6413:5;6406:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6326:100;:::o;8502:169::-;8585:4;8602:39;4894:10;8625:7;8634:6;8602:8;:39::i;:::-;-1:-1:-1;8659:4:0;8502:169;;;;:::o;9153:422::-;9259:4;9276:36;9286:6;9294:9;9305:6;9276:9;:36::i;:::-;-1:-1:-1;;;;;9352:19:0;;9325:24;9352:19;;;:11;:19;;;;;;;;4894:10;9352:33;;;;;;;;9404:26;;;;9396:79;;;;-1:-1:-1;;;9396:79:0;;3450:2:1;9396:79:0;;;3432:21:1;3489:2;3469:18;;;3462:30;3528:34;3508:18;;;3501:62;-1:-1:-1;;;3579:18:1;;;3572:38;3627:19;;9396:79:0;;;;;;;;;9486:57;9495:6;4894:10;9517:25;9536:6;9517:16;:25;:::i;:::-;9486:8;:57::i;:::-;-1:-1:-1;9563:4:0;;9153:422;-1:-1:-1;;;;9153:422:0:o;9984:215::-;4894:10;10072:4;10121:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10121:34:0;;;;;;;;;;10072:4;;10089:80;;10112:7;;10121:47;;10158:10;;10121:47;:::i;6545:104::-;6601:13;6634:7;6627:14;;;;;:::i;10702:377::-;4894:10;10795:4;10839:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10839:34:0;;;;;;;;;;10892:35;;;;10884:85;;;;-1:-1:-1;;;10884:85:0;;4670:2:1;10884:85:0;;;4652:21:1;4709:2;4689:18;;;4682:30;4748:34;4728:18;;;4721:62;-1:-1:-1;;;4799:18:1;;;4792:35;4844:19;;10884:85:0;4468:401:1;10884:85:0;10980:67;4894:10;11003:7;11012:34;11031:15;11012:16;:34;:::i;10980:67::-;-1:-1:-1;11067:4:0;;10702:377;-1:-1:-1;;;10702:377:0:o;7966:175::-;8052:4;8069:42;4894:10;8093:9;8104:6;8069:9;:42::i;11647:346::-;-1:-1:-1;;;;;11749:19:0;;11741:68;;;;-1:-1:-1;;;11741:68:0;;4265:2:1;11741:68:0;;;4247:21:1;4304:2;4284:18;;;4277:30;4343:34;4323:18;;;4316:62;-1:-1:-1;;;4394:18:1;;;4387:34;4438:19;;11741:68:0;4063:400:1;11741:68:0;-1:-1:-1;;;;;11828:21:0;;11820:68;;;;-1:-1:-1;;;11820:68:0;;2640:2:1;11820:68:0;;;2622:21:1;2679:2;2659:18;;;2652:30;2718:34;2698:18;;;2691:62;-1:-1:-1;;;2769:18:1;;;2762:32;2811:19;;11820:68:0;2438:398:1;11820:68:0;-1:-1:-1;;;;;11901:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11953:32;;5020:25:1;;;11953:32:0;;4993:18:1;11953:32:0;;;;;;;11647:346;;;:::o;11089:546::-;-1:-1:-1;;;;;11195:20:0;;11187:70;;;;-1:-1:-1;;;11187:70:0;;3859:2:1;11187:70:0;;;3841:21:1;3898:2;3878:18;;;3871:30;3937:34;3917:18;;;3910:62;-1:-1:-1;;;3988:18:1;;;3981:35;4033:19;;11187:70:0;3657:401:1;11187:70:0;-1:-1:-1;;;;;11276:23:0;;11268:71;;;;-1:-1:-1;;;11268:71:0;;2236:2:1;11268:71:0;;;2218:21:1;2275:2;2255:18;;;2248:30;2314:34;2294:18;;;2287:62;-1:-1:-1;;;2365:18:1;;;2358:33;2408:19;;11268:71:0;2034:399:1;11268:71:0;-1:-1:-1;;;;;11378:17:0;;11354:21;11378:17;;;;;;;;;;;11414:23;;;;11406:74;;;;-1:-1:-1;;;11406:74:0;;3043:2:1;11406:74:0;;;3025:21:1;3082:2;3062:18;;;3055:30;3121:34;3101:18;;;3094:62;-1:-1:-1;;;3172:18:1;;;3165:36;3218:19;;11406:74:0;2841:402:1;11406:74:0;11511:22;11527:6;11511:13;:22;:::i;:::-;-1:-1:-1;;;;;11491:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11544:20;;;;;;;;:30;;11568:6;;11491:9;11544:30;;11568:6;;11544:30;:::i;:::-;;;;;;;;11609:9;-1:-1:-1;;;;;11592:35:0;11601:6;-1:-1:-1;;;;;11592:35:0;;11620:6;11592:35;;;;5020:25:1;;5008:2;4993:18;;4874:177;11592:35:0;;;;;;;;11176:459;11089:546;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1432:597::-;1544:4;1573:2;1602;1591:9;1584:21;1634:6;1628:13;1677:6;1672:2;1661:9;1657:18;1650:34;1702:1;1712:140;1726:6;1723:1;1720:13;1712:140;;;1821:14;;;1817:23;;1811:30;1787:17;;;1806:2;1783:26;1776:66;1741:10;;1712:140;;;1870:6;1867:1;1864:13;1861:91;;;1940:1;1935:2;1926:6;1915:9;1911:22;1907:31;1900:42;1861:91;-1:-1:-1;2013:2:1;1992:15;-1:-1:-1;;1988:29:1;1973:45;;;;2020:2;1969:54;;1432:597;-1:-1:-1;;;1432:597:1:o;5056:128::-;5096:3;5127:1;5123:6;5120:1;5117:13;5114:39;;;5133:18;;:::i;:::-;-1:-1:-1;5169:9:1;;5056:128::o;5189:125::-;5229:4;5257:1;5254;5251:8;5248:34;;;5262:18;;:::i;:::-;-1:-1:-1;5299:9:1;;5189:125::o;5319:380::-;5398:1;5394:12;;;;5441;;;5462:61;;5516:4;5508:6;5504:17;5494:27;;5462:61;5569:2;5561:6;5558:14;5538:18;5535:38;5532:161;;;5615:10;5610:3;5606:20;5603:1;5596:31;5650:4;5647:1;5640:15;5678:4;5675:1;5668:15;5532:161;;5319:380;;;:::o;5704:127::-;5765:10;5760:3;5756:20;5753:1;5746:31;5796:4;5793:1;5786:15;5820:4;5817:1;5810:15

Swarm Source

ipfs://d2bad1ad9ed5544b10cfa3309ebb4fdec9690c7a55c67ddb12586c8e7db8b648
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.