ETH Price: $2,332.28 (-0.42%)

Contract

0xdA251891E21e6EDB0E6828E77621C7b98ea4E8ba
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Meme Moguls (MGLS) (@$0.0001)
Transaction Hash
Method
Block
From
To
Transfer207207442024-09-10 14:15:592 hrs ago1725977759IN
Meme Moguls: MGLS Token
0 ETH0.000431898.37762251
Transfer207205982024-09-10 13:46:232 hrs ago1725975983IN
Meme Moguls: MGLS Token
0 ETH0.0003686512.42192556
Transfer207073222024-09-08 17:15:2347 hrs ago1725815723IN
Meme Moguls: MGLS Token
0 ETH0.000045261.31382535
Transfer206989792024-09-07 13:19:473 days ago1725715187IN
Meme Moguls: MGLS Token
0 ETH0.000075872.20132472
Approve206911872024-09-06 11:14:474 days ago1725621287IN
Meme Moguls: MGLS Token
0 ETH0.000408998.77901445
Approve206852482024-09-05 15:21:355 days ago1725549695IN
Meme Moguls: MGLS Token
0 ETH0.000257615.53687312
Transfer206841702024-09-05 11:45:115 days ago1725536711IN
Meme Moguls: MGLS Token
0 ETH0.000107553.62562794
Transfer206829082024-09-05 7:31:235 days ago1725521483IN
Meme Moguls: MGLS Token
0 ETH0.000109653.18148695
Approve206631942024-09-02 13:31:118 days ago1725283871IN
Meme Moguls: MGLS Token
0 ETH0.000087923.62671279
Transfer206616882024-09-02 8:27:358 days ago1725265655IN
Meme Moguls: MGLS Token
0 ETH0.000188815.47455526
Approve206606962024-09-02 5:08:478 days ago1725253727IN
Meme Moguls: MGLS Token
0 ETH0.000123562.65568209
Approve206589682024-09-01 23:22:118 days ago1725232931IN
Meme Moguls: MGLS Token
0 ETH0.000048261.0432149
Approve206589592024-09-01 23:20:238 days ago1725232823IN
Meme Moguls: MGLS Token
0 ETH0.000029891.13929171
Approve206537582024-09-01 5:54:119 days ago1725170051IN
Meme Moguls: MGLS Token
0 ETH0.000120372.58391977
Approve206466992024-08-31 6:15:3510 days ago1725084935IN
Meme Moguls: MGLS Token
0 ETH0.000123992.66148565
Approve206402952024-08-30 8:47:2311 days ago1725007643IN
Meme Moguls: MGLS Token
0 ETH0.000093342.00365863
Approve206326002024-08-29 6:58:3512 days ago1724914715IN
Meme Moguls: MGLS Token
0 ETH0.000087671.88196229
Approve206267212024-08-28 11:14:5913 days ago1724843699IN
Meme Moguls: MGLS Token
0 ETH0.000060731.31109005
Approve206223022024-08-27 20:26:2313 days ago1724790383IN
Meme Moguls: MGLS Token
0 ETH0.000195664.1999765
Approve206214722024-08-27 17:39:4713 days ago1724780387IN
Meme Moguls: MGLS Token
0 ETH0.000182753.92793294
Transfer206201102024-08-27 13:06:1114 days ago1724763971IN
Meme Moguls: MGLS Token
0 ETH0.000129532.76983166
Transfer206126062024-08-26 11:56:2315 days ago1724673383IN
Meme Moguls: MGLS Token
0 ETH0.000077142.59839714
Transfer206083132024-08-25 21:32:5915 days ago1724621579IN
Meme Moguls: MGLS Token
0 ETH0.000072772.11158944
Approve206053072024-08-25 11:28:1116 days ago1724585291IN
Meme Moguls: MGLS Token
0 ETH0.000127932.74966628
Approve206043752024-08-25 8:20:5916 days ago1724574059IN
Meme Moguls: MGLS Token
0 ETH0.000045290.97861112
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MemeMogulsToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : MemeMogulsToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract MemeMogulsToken is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 3_000_000_000 * (10 ** _decimals);

    constructor(string memory name_, string memory symbol_, address _to) {
        _name = name_;
        _symbol = symbol_;
        _mint(_to, hardCap);
    }

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

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

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

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

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

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

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

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

    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"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        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"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

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

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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);
    }
}

File 3 of 5 : 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);
}

File 4 of 5 : 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 5 of 5 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620013763803806200137683398101604081905262000034916200028c565b6200003f336200008f565b60046200004d8482620003a8565b5060056200005c8382620003a8565b506200008681620000706012600a62000589565b620000809063b2d05e00620005a1565b620000df565b505050620005d1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200013a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200014e9190620005bb565b90915550506001600160a01b038216600090815260016020526040812080548392906200017d908490620005bb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ef57600080fd5b81516001600160401b03808211156200020c576200020c620001c7565b604051601f8301601f19908116603f01168101908282118183101715620002375762000237620001c7565b816040528381526020925086838588010111156200025457600080fd5b600091505b8382101562000278578582018301518183018401529082019062000259565b600093810190920192909252949350505050565b600080600060608486031215620002a257600080fd5b83516001600160401b0380821115620002ba57600080fd5b620002c887838801620001dd565b94506020860151915080821115620002df57600080fd5b50620002ee86828701620001dd565b604086015190935090506001600160a01b03811681146200030e57600080fd5b809150509250925092565b600181811c908216806200032e57607f821691505b6020821081036200034f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a357600081815260208120601f850160051c810160208610156200037e5750805b601f850160051c820191505b818110156200039f578281556001016200038a565b5050505b505050565b81516001600160401b03811115620003c457620003c4620001c7565b620003dc81620003d5845462000319565b8462000355565b602080601f831160018114620004145760008415620003fb5750858301515b600019600386901b1c1916600185901b1785556200039f565b600085815260208120601f198616915b82811015620004455788860151825594840194600190910190840162000424565b5085821015620004645787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004cb578160001904821115620004af57620004af62000474565b80851615620004bd57918102915b93841c93908002906200048f565b509250929050565b600082620004e45750600162000583565b81620004f35750600062000583565b81600181146200050c5760028114620005175762000537565b600191505062000583565b60ff8411156200052b576200052b62000474565b50506001821b62000583565b5060208310610133831016604e8410600b84101617156200055c575081810a62000583565b6200056883836200048a565b80600019048211156200057f576200057f62000474565b0290505b92915050565b60006200059a60ff841683620004d3565b9392505050565b808202811582820484141762000583576200058362000474565b8082018082111562000583576200058362000474565b610d9580620005e16000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa1565b60405180910390f35b610136610131366004610b0b565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b35565b610319565b6040516012815260200161011a565b610136610188366004610b0b565b6103c8565b6101a061019b366004610b71565b610404565b005b61014a6101b0366004610b8a565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b0b565b610434565b610136610217366004610b0b565b6104cd565b61014a61022a366004610bac565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b8a565b6104da565b61014a610550565b60606004805461027f90610bdf565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610bdf565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056d565b5060015b92915050565b6000610326848484610692565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c2f565b61056d565b61040e33826108b1565b50565b6104196109f7565b6104236000610a51565b565b60606005805461027f90610bdf565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056d565b5060019392505050565b600061030f338484610692565b6104e26109f7565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a51565b61055c6012600a610d26565b61056a9063b2d05e00610d35565b81565b6001600160a01b0383166105cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e25760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610857908490610c2f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a391815260200190565b60405180910390a350505050565b6001600160a01b0382166109115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b4908490610d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610685565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ace57858101830151858201604001528201610ab2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0657600080fd5b919050565b60008060408385031215610b1e57600080fd5b610b2783610aef565b946020939093013593505050565b600080600060608486031215610b4a57600080fd5b610b5384610aef565b9250610b6160208501610aef565b9150604084013590509250925092565b600060208284031215610b8357600080fd5b5035919050565b600060208284031215610b9c57600080fd5b610ba582610aef565b9392505050565b60008060408385031215610bbf57600080fd5b610bc883610aef565b9150610bd660208401610aef565b90509250929050565b600181811c90821680610bf357607f821691505b602082108103610c1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031357610313610c19565b600181815b80851115610c7d578160001904821115610c6357610c63610c19565b80851615610c7057918102915b93841c9390800290610c47565b509250929050565b600082610c9457506001610313565b81610ca157506000610313565b8160018114610cb75760028114610cc157610cdd565b6001915050610313565b60ff841115610cd257610cd2610c19565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d00575081810a610313565b610d0a8383610c42565b8060001904821115610d1e57610d1e610c19565b029392505050565b6000610ba560ff841683610c85565b808202811582820484141761031357610313610c19565b8181038181111561031357610313610c1956fea2646970667358221220348c17c40915b1e204846349a28331dad0645b0bcb9681c255d55d0346539ce864736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009c82f93f118fa5fc3d74b6acd67262c03284bdad000000000000000000000000000000000000000000000000000000000000000b4d656d65204d6f67756c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d474c5300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa1565b60405180910390f35b610136610131366004610b0b565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b35565b610319565b6040516012815260200161011a565b610136610188366004610b0b565b6103c8565b6101a061019b366004610b71565b610404565b005b61014a6101b0366004610b8a565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b0b565b610434565b610136610217366004610b0b565b6104cd565b61014a61022a366004610bac565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b8a565b6104da565b61014a610550565b60606004805461027f90610bdf565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610bdf565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056d565b5060015b92915050565b6000610326848484610692565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c2f565b61056d565b61040e33826108b1565b50565b6104196109f7565b6104236000610a51565b565b60606005805461027f90610bdf565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056d565b5060019392505050565b600061030f338484610692565b6104e26109f7565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a51565b61055c6012600a610d26565b61056a9063b2d05e00610d35565b81565b6001600160a01b0383166105cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e25760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610857908490610c2f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a391815260200190565b60405180910390a350505050565b6001600160a01b0382166109115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b4908490610d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610685565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ace57858101830151858201604001528201610ab2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0657600080fd5b919050565b60008060408385031215610b1e57600080fd5b610b2783610aef565b946020939093013593505050565b600080600060608486031215610b4a57600080fd5b610b5384610aef565b9250610b6160208501610aef565b9150604084013590509250925092565b600060208284031215610b8357600080fd5b5035919050565b600060208284031215610b9c57600080fd5b610ba582610aef565b9392505050565b60008060408385031215610bbf57600080fd5b610bc883610aef565b9150610bd660208401610aef565b90509250929050565b600181811c90821680610bf357607f821691505b602082108103610c1357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031357610313610c19565b600181815b80851115610c7d578160001904821115610c6357610c63610c19565b80851615610c7057918102915b93841c9390800290610c47565b509250929050565b600082610c9457506001610313565b81610ca157506000610313565b8160018114610cb75760028114610cc157610cdd565b6001915050610313565b60ff841115610cd257610cd2610c19565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d00575081810a610313565b610d0a8383610c42565b8060001904821115610d1e57610d1e610c19565b029392505050565b6000610ba560ff841683610c85565b808202811582820484141761031357610313610c19565b8181038181111561031357610313610c1956fea2646970667358221220348c17c40915b1e204846349a28331dad0645b0bcb9681c255d55d0346539ce864736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009c82f93f118fa5fc3d74b6acd67262c03284bdad000000000000000000000000000000000000000000000000000000000000000b4d656d65204d6f67756c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d474c5300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Meme Moguls
Arg [1] : symbol_ (string): MGLS
Arg [2] : _to (address): 0x9C82f93F118Fa5fc3d74B6ACd67262C03284BdAd

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000009c82f93f118fa5fc3d74b6acd67262c03284bdad
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4d656d65204d6f67756c73000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d474c5300000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

A captivating play-to-earn game that immerses players in the world of fantasy meme market trading.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.