ERC-20
Overview
Max Total Supply
1,515,151,515 🐥 Or 🥚
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.15 🐥 Or 🥚Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChickenOrEgg
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-10 */ /** https://medium.com/@ChickenOrEgg/hey-guys-kevin-here-i-am-26-years-old-i-am-currently-doing-my-masters-degree-in-evolutionary-80f915d1682f **/ // 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 ChickenOrEgg 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
608060405260405162000dcb38038062000dcb8339810160408190526200002691620002a1565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a6200045e565b62000073908462000473565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004d2565b828054620001239062000495565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e357600080fd5b81516001600160401b0380821115620002005762000200620001bb565b604051601f8301601f19908116603f011681019082821181831017156200022b576200022b620001bb565b816040528381526020925086838588010111156200024857600080fd5b600091505b838210156200026c57858201830151818301840152908201906200024d565b838211156200027e5760008385830101525b9695505050505050565b6001600160a01b03811681146200029e57600080fd5b50565b60008060008060008060c08789031215620002bb57600080fd5b86516001600160401b0380821115620002d357600080fd5b620002e18a838b01620001d1565b97506020890151915080821115620002f857600080fd5b506200030789828a01620001d1565b95505060408701519350606087015192506080870151620003288162000288565b60a08801519092506200033b8162000288565b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003a057816000190482111562000384576200038462000349565b808516156200039257918102915b93841c939080029062000364565b509250929050565b600082620003b95750600162000458565b81620003c85750600062000458565b8160018114620003e15760028114620003ec576200040c565b600191505062000458565b60ff84111562000400576200040062000349565b50506001821b62000458565b5060208310610133831016604e8410600b841016171562000431575081810a62000458565b6200043d83836200035f565b806000190482111562000454576200045462000349565b0290505b92915050565b60006200046c8383620003a8565b9392505050565b600081600019048311821515161562000490576200049062000349565b500290565b600181811c90821680620004aa57607f821691505b60208210811415620004cc57634e487b7160e01b600052602260045260246000fd5b50919050565b6108e980620004e26000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610884565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089b565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610884565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610884565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b6020821081141561086857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108965761089661086e565b500390565b600082198211156108ae576108ae61086e565b50019056fea26469706673582212203abd90f77bd848693073cd68bfbdbaa43be57ae4bfa3706082775109518ed2b664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000005a4f609b0000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba190000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba19000000000000000000000000000000000000000000000000000000000000000f576861742063616d652066697273740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cf09f90a5204f7220f09fa59a0000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610884565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089b565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610884565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610884565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b6020821081141561086857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108965761089661086e565b500390565b600082198211156108ae576108ae61086e565b50019056fea26469706673582212203abd90f77bd848693073cd68bfbdbaa43be57ae4bfa3706082775109518ed2b664736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000005a4f609b0000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba190000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba19000000000000000000000000000000000000000000000000000000000000000f576861742063616d652066697273740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cf09f90a5204f7220f09fa59a0000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): What came first
Arg [1] : symbol_ (string): 🐥 Or 🥚
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 1515151515
Arg [4] : tokenOwner_ (address): 0x7bf0C073427A0ECDD6602ea3F62Bbe9a5093BA19
Arg [5] : feeReceiver_ (address): 0x7bf0C073427A0ECDD6602ea3F62Bbe9a5093BA19
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000005a4f609b
Arg [4] : 0000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba19
Arg [5] : 0000000000000000000000007bf0c073427a0ecdd6602ea3f62bbe9a5093ba19
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 576861742063616d652066697273740000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [9] : f09f90a5204f7220f09fa59a0000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
10992:381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5279:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7455:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;7455:169:0;1053:187:1;6408:108:0;6496:12;;6408:108;;;1391:25:1;;;1379:2;1364:18;6408:108:0;1245:177:1;8106:422:0;;;;;;:::i;:::-;;:::i;6241:102::-;6326:9;;6241:102;;8937:215;;;;;;:::i;:::-;;:::i;6579:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6680:18:0;6653:7;6680:18;;;;;;;;;;;;6579:127;5498:104;;;:::i;9655:377::-;;;;;;:::i;:::-;;:::i;6919:175::-;;;;;;:::i;:::-;;:::i;7157:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7273:18:0;;;7246:7;7273:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7157:151;5279:100;5333:13;5366:5;5359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5279:100;:::o;7455:169::-;7538:4;7555:39;3847:10;7578:7;7587:6;7555:8;:39::i;:::-;-1:-1:-1;7612:4:0;7455:169;;;;:::o;8106:422::-;8212:4;8229:36;8239:6;8247:9;8258:6;8229:9;:36::i;:::-;-1:-1:-1;;;;;8305:19:0;;8278:24;8305:19;;;:11;:19;;;;;;;;3847:10;8305:33;;;;;;;;8357:26;;;;8349:79;;;;-1:-1:-1;;;8349:79:0;;2803:2:1;8349: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;;8349:79:0;;;;;;;;;8439:57;8448:6;3847:10;8470:25;8489:6;8470:16;:25;:::i;:::-;8439:8;:57::i;:::-;-1:-1:-1;8516:4:0;;8106:422;-1:-1:-1;;;;8106:422:0:o;8937:215::-;3847:10;9025:4;9074:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9074:34:0;;;;;;;;;;9025:4;;9042:80;;9065:7;;9074:47;;9111:10;;9074:47;:::i;5498:104::-;5554:13;5587:7;5580:14;;;;;:::i;9655:377::-;3847:10;9748:4;9792:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9792:34:0;;;;;;;;;;9845:35;;;;9837:85;;;;-1:-1:-1;;;9837:85:0;;3607:2:1;9837: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;;9837:85:0;3405:401:1;9837:85:0;9933:67;3847:10;9956:7;9965:34;9984:15;9965:16;:34;:::i;9933:67::-;-1:-1:-1;10020:4:0;;9655:377;-1:-1:-1;;;9655:377:0:o;6919:175::-;7005:4;7022:42;3847:10;7046:9;7057:6;7022:9;:42::i;10600:346::-;-1:-1:-1;;;;;10702:19:0;;10694:68;;;;-1:-1:-1;;;10694:68:0;;4013:2:1;10694: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;;10694:68:0;3811:400:1;10694:68:0;-1:-1:-1;;;;;10781:21:0;;10773:68;;;;-1:-1:-1;;;10773:68:0;;4418:2:1;10773: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;;10773:68:0;4216:398:1;10773:68:0;-1:-1:-1;;;;;10854:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10906:32;;1391:25:1;;;10906:32:0;;1364:18:1;10906:32:0;;;;;;;10600:346;;;:::o;10042:546::-;-1:-1:-1;;;;;10148:20:0;;10140:70;;;;-1:-1:-1;;;10140:70:0;;4821:2:1;10140: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;;10140:70:0;4619:401:1;10140:70:0;-1:-1:-1;;;;;10229:23:0;;10221:71;;;;-1:-1:-1;;;10221:71:0;;5227:2:1;10221: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;;10221:71:0;5025:399:1;10221:71:0;-1:-1:-1;;;;;10331:17:0;;10307:21;10331:17;;;;;;;;;;;10367:23;;;;10359:74;;;;-1:-1:-1;;;10359:74:0;;5631:2:1;10359: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;;10359:74:0;5429:402:1;10359:74:0;10464:22;10480:6;10464:13;:22;:::i;:::-;-1:-1:-1;;;;;10444:17:0;;;:9;:17;;;;;;;;;;;:42;;;;10497:20;;;;;;;;:30;;10521:6;;10444:9;10497:30;;10521:6;;10497:30;:::i;:::-;;;;;;;;10562:9;-1:-1:-1;;;;;10545:35:0;10554:6;-1:-1:-1;;;;;10545:35:0;;10573:6;10545:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;10545:35:0;;;;;;;;10129:459;10042: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://3abd90f77bd848693073cd68bfbdbaa43be57ae4bfa3706082775109518ed2b6
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.