ETH Price: $3,059.67 (+2.66%)
Gas: 1 Gwei

Token

Hunger for more (Greed)
 

Overview

Max Total Supply

900,000,000 Greed

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,172,812.674649386 Greed

Value
$0.00
0xAAd71f456F04d2F4Cf869312E1A9169c1Ea51BA0
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:
Greed

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

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

//God come and save us from this Greedy World

/**

https://medium.com/@GreedEth

https://twitter.com/Greed_Eth

https://t.me/GreedEth

I sniped LSVR and was the third buyer and it started mooning, 
Volume was crazy but that got me scared , It could dump with same pace as it pumped. 
I couldn’t decide what to do: To hold or to sell, I was up 20x but wanted more, 
Who doesn’t love money, but at same time i was scared as it could dump and most of my profit would be gone , 
I let my greed win and holded, but there was a voice asking me if what i was doing was right? 
It was the only time when bring greedy ended up benefiting me and made me more money. 
LSVR skyrocketed and i made way more than i expected.

My intention with Greed coin is simple, if everyone holds the floor it’s obvious we will moon some time or another and if everyone penny sells it’s obvious it’ll be an hour play. 
So it is upto you all if you’ll let the greed within win.

No one can satisfy Greed, It’s the essence of having more. 
Sometimes I think to myself, Elon Musk is worth over 100 Billion dollars and he still wants more. 
What is the point of wanting more money when you have 100 billion dollars, you will never be able to spend it even 10 billion is an amount with you, your grandchildren and their children would not be able to spend in one life time. 
But he does not stop, he wants more. That is the essence of human nature, filled with greed and the more you have the more you want. It becomes like an obsession, like a mania.

Yes we all want more and wanting more and earning more gives me motivation, 
however I hope that if i ever have 100 billion dollars that my greed will be quenched and that I will not become delusional and keep obsessing over money, unlike some people.
**/
// 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 Greed 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"}]

608060405260405162000dcb38038062000dcb8339810160408190526200002691620002a1565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a6200045e565b62000073908462000473565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004d2565b828054620001239062000495565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e357600080fd5b81516001600160401b0380821115620002005762000200620001bb565b604051601f8301601f19908116603f011681019082821181831017156200022b576200022b620001bb565b816040528381526020925086838588010111156200024857600080fd5b600091505b838210156200026c57858201830151818301840152908201906200024d565b838211156200027e5760008385830101525b9695505050505050565b6001600160a01b03811681146200029e57600080fd5b50565b60008060008060008060c08789031215620002bb57600080fd5b86516001600160401b0380821115620002d357600080fd5b620002e18a838b01620001d1565b97506020890151915080821115620002f857600080fd5b506200030789828a01620001d1565b95505060408701519350606087015192506080870151620003288162000288565b60a08801519092506200033b8162000288565b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003a057816000190482111562000384576200038462000349565b808516156200039257918102915b93841c939080029062000364565b509250929050565b600082620003b95750600162000458565b81620003c85750600062000458565b8160018114620003e15760028114620003ec576200040c565b600191505062000458565b60ff84111562000400576200040062000349565b50506001821b62000458565b5060208310610133831016604e8410600b841016171562000431575081810a62000458565b6200043d83836200035f565b806000190482111562000454576200045462000349565b0290505b92915050565b60006200046c8383620003a8565b9392505050565b600081600019048311821515161562000490576200049062000349565b500290565b600181811c90821680620004aa57607f821691505b60208210811415620004cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6108e980620004e26000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610884565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089b565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610884565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610884565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b6020821081141561086857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108965761089661086e565b500390565b600082198211156108ae576108ae61086e565b50019056fea2646970667358221220ad5d950cc521eb802b0c904d1590103f1e90cbd09289ba382c60ec1978c8060c64736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000035a4e900000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa000000000000000000000000000000000000000000000000000000000000000f48756e67657220666f72206d6f7265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054772656564000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610884565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089b565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610884565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610884565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b6020821081141561086857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108965761089661086e565b500390565b600082198211156108ae576108ae61086e565b50019056fea2646970667358221220ad5d950cc521eb802b0c904d1590103f1e90cbd09289ba382c60ec1978c8060c64736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000035a4e900000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa000000000000000000000000000000000000000000000000000000000000000f48756e67657220666f72206d6f7265000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054772656564000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Hunger for more
Arg [1] : symbol_ (string): Greed
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 900000000
Arg [4] : tokenOwner_ (address): 0x370918F8b5994DBC5765aF97b655E19a08aBc1Fa
Arg [5] : feeReceiver_ (address): 0x370918F8b5994DBC5765aF97b655E19a08aBc1Fa

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000035a4e900
Arg [4] : 000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa
Arg [5] : 000000000000000000000000370918f8b5994dbc5765af97b655e19a08abc1fa
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 48756e67657220666f72206d6f72650000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4772656564000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12661:374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6944:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9120:169:0;1053:187:1;8073:108:0;8161:12;;8073:108;;;1391:25:1;;;1379:2;1364:18;8073:108:0;1245:177:1;9771:422:0;;;;;;:::i;:::-;;:::i;7906:102::-;7991:9;;7906:102;;10602:215;;;;;;:::i;:::-;;:::i;8244:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8345:18:0;8318:7;8345:18;;;;;;;;;;;;8244:127;7163:104;;;:::i;11320:377::-;;;;;;:::i;:::-;;:::i;8584:175::-;;;;;;:::i;:::-;;:::i;8822:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8938:18:0;;;8911:7;8938:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8822:151;6944:100;6998:13;7031:5;7024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6944:100;:::o;9120:169::-;9203:4;9220:39;5512:10;9243:7;9252:6;9220:8;:39::i;:::-;-1:-1:-1;9277:4:0;9120:169;;;;:::o;9771:422::-;9877:4;9894:36;9904:6;9912:9;9923:6;9894:9;:36::i;:::-;-1:-1:-1;;;;;9970:19:0;;9943:24;9970:19;;;:11;:19;;;;;;;;5512:10;9970:33;;;;;;;;10022:26;;;;10014:79;;;;-1:-1:-1;;;10014:79:0;;2803:2:1;10014:79:0;;;2785:21:1;2842:2;2822:18;;;2815:30;2881:34;2861:18;;;2854:62;-1:-1:-1;;;2932:18:1;;;2925:38;2980:19;;10014:79:0;;;;;;;;;10104:57;10113:6;5512:10;10135:25;10154:6;10135:16;:25;:::i;:::-;10104:8;:57::i;:::-;-1:-1:-1;10181:4:0;;9771:422;-1:-1:-1;;;;9771:422:0:o;10602:215::-;5512:10;10690:4;10739:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10739:34:0;;;;;;;;;;10690:4;;10707:80;;10730:7;;10739:47;;10776:10;;10739:47;:::i;7163:104::-;7219:13;7252:7;7245:14;;;;;:::i;11320:377::-;5512:10;11413:4;11457:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11457:34:0;;;;;;;;;;11510:35;;;;11502:85;;;;-1:-1:-1;;;11502:85:0;;3607:2:1;11502:85:0;;;3589:21:1;3646:2;3626:18;;;3619:30;3685:34;3665:18;;;3658:62;-1:-1:-1;;;3736:18:1;;;3729:35;3781:19;;11502:85:0;3405:401:1;11502:85:0;11598:67;5512:10;11621:7;11630:34;11649:15;11630:16;:34;:::i;11598:67::-;-1:-1:-1;11685:4:0;;11320:377;-1:-1:-1;;;11320:377:0:o;8584:175::-;8670:4;8687:42;5512:10;8711:9;8722:6;8687:9;:42::i;12265:346::-;-1:-1:-1;;;;;12367:19:0;;12359:68;;;;-1:-1:-1;;;12359:68:0;;4013:2:1;12359:68:0;;;3995:21:1;4052:2;4032:18;;;4025:30;4091:34;4071:18;;;4064:62;-1:-1:-1;;;4142:18:1;;;4135:34;4186:19;;12359:68:0;3811:400:1;12359:68:0;-1:-1:-1;;;;;12446:21:0;;12438:68;;;;-1:-1:-1;;;12438:68:0;;4418:2:1;12438:68:0;;;4400:21:1;4457:2;4437:18;;;4430:30;4496:34;4476:18;;;4469:62;-1:-1:-1;;;4547:18:1;;;4540:32;4589:19;;12438:68:0;4216:398:1;12438:68:0;-1:-1:-1;;;;;12519:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12571:32;;1391:25:1;;;12571:32:0;;1364:18:1;12571:32:0;;;;;;;12265:346;;;:::o;11707:546::-;-1:-1:-1;;;;;11813:20:0;;11805:70;;;;-1:-1:-1;;;11805:70:0;;4821:2:1;11805:70:0;;;4803:21:1;4860:2;4840:18;;;4833:30;4899:34;4879:18;;;4872:62;-1:-1:-1;;;4950:18:1;;;4943:35;4995:19;;11805:70:0;4619:401:1;11805:70:0;-1:-1:-1;;;;;11894:23:0;;11886:71;;;;-1:-1:-1;;;11886:71:0;;5227:2:1;11886:71:0;;;5209:21:1;5266:2;5246:18;;;5239:30;5305:34;5285:18;;;5278:62;-1:-1:-1;;;5356:18:1;;;5349:33;5399:19;;11886:71:0;5025:399:1;11886:71:0;-1:-1:-1;;;;;11996:17:0;;11972:21;11996:17;;;;;;;;;;;12032:23;;;;12024:74;;;;-1:-1:-1;;;12024:74:0;;5631:2:1;12024:74:0;;;5613:21:1;5670:2;5650:18;;;5643:30;5709:34;5689:18;;;5682:62;-1:-1:-1;;;5760:18:1;;;5753:36;5806:19;;12024:74:0;5429:402:1;12024:74:0;12129:22;12145:6;12129:13;:22;:::i;:::-;-1:-1:-1;;;;;12109:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12162:20;;;;;;;;:30;;12186:6;;12109:9;12162:30;;12186:6;;12162:30;:::i;:::-;;;;;;;;12227:9;-1:-1:-1;;;;;12210:35:0;12219:6;-1:-1:-1;;;;;12210:35:0;;12238:6;12210:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;12210:35:0;;;;;;;;11794:459;11707:546;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:186::-;1819:6;1872:2;1860:9;1851:7;1847:23;1843:32;1840:52;;;1888:1;1885;1878:12;1840:52;1911:29;1930:9;1911:29;:::i;:::-;1901:39;1760:186;-1:-1:-1;;;1760:186:1:o;1951:260::-;2019:6;2027;2080:2;2068:9;2059:7;2055:23;2051:32;2048:52;;;2096:1;2093;2086:12;2048:52;2119:29;2138:9;2119:29;:::i;:::-;2109:39;;2167:38;2201:2;2190:9;2186:18;2167:38;:::i;:::-;2157:48;;1951:260;;;;;:::o;2216:380::-;2295:1;2291:12;;;;2338;;;2359:61;;2413:4;2405:6;2401:17;2391:27;;2359:61;2466:2;2458:6;2455:14;2435:18;2432:38;2429:161;;;2512:10;2507:3;2503:20;2500:1;2493:31;2547:4;2544:1;2537:15;2575:4;2572:1;2565:15;2429:161;;2216:380;;;:::o;3010:127::-;3071:10;3066:3;3062:20;3059:1;3052:31;3102:4;3099:1;3092:15;3126:4;3123:1;3116:15;3142:125;3182:4;3210:1;3207;3204:8;3201:34;;;3215:18;;:::i;:::-;-1:-1:-1;3252:9:1;;3142:125::o;3272:128::-;3312:3;3343:1;3339:6;3336:1;3333:13;3330:39;;;3349:18;;:::i;:::-;-1:-1:-1;3385:9:1;;3272:128::o

Swarm Source

ipfs://ad5d950cc521eb802b0c904d1590103f1e90cbd09289ba382c60ec1978c8060c
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.