ERC-20
Overview
Max Total Supply
1,190,000 Eai
Holders
64
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,857.17 EaiValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Eai
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/structs/BitMaps.sol"; contract Eai is ERC20 { using BitMaps for BitMaps.BitMap; uint256 public initTimestamp; address immutable minter; BitMaps.BitMap private minted; uint256 public immutable MAX_SUPPLY=10000000*10**decimals(); uint256 public immutable MINT_PER_DAY=10000*10**decimals(); constructor(address receiver,address _minter) ERC20("Easier Idealize", "Eai") { initTimestamp=block.timestamp; minted.set(0); _mint(receiver, 1000000*10**decimals()); minter=_minter; } function mint() external { require(msg.sender==minter,"Address not allowed mint"); require(totalSupply()<MAX_SUPPLY,"Already max supply"); uint256 day=(block.timestamp-initTimestamp)/1 days; require(!minted.get(day),"Today had minted"); minted.set(day); _mint(msg.sender, MINT_PER_DAY); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default 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_) { _name = name_; _symbol = symbol_; } /** * @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 (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/BitMaps.sol) pragma solidity ^0.8.0; /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get(BitMap storage bitmap, uint256 index) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo( BitMap storage bitmap, uint256 index, bool value ) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] &= ~mask; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); }
// 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); }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"_minter","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052620000126012600a6200040d565b62000021906298968062000425565b60a052620000326012600a6200040d565b620000409061271062000425565b60c0523480156200005057600080fd5b506040516200114838038062001148833981016040819052620000739162000464565b6040518060400160405280600f81526020016e45617369657220496465616c697a6560881b8152506040518060400160405280600381526020016245616960e81b8152508160039080519060200190620000cf92919062000252565b508051620000e590600490602084019062000252565b50504260055550620001066006600062000141602090811b6200059e17901c565b6200012e82620001196012600a6200040d565b6200012890620f424062000425565b6200016a565b6001600160a01b031660805250620004f4565b600881901c600090815260209290925260409091208054600160ff9093169290921b9091179055565b6001600160a01b038216620001c55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001d991906200049c565b90915550506001600160a01b03821660009081526020819052604081208054839290620002089084906200049c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200026090620004b7565b90600052602060002090601f016020900481019282620002845760008555620002cf565b82601f106200029f57805160ff1916838001178555620002cf565b82800160010185558215620002cf579182015b82811115620002cf578251825591602001919060010190620002b2565b50620002dd929150620002e1565b5090565b5b80821115620002dd5760008155600101620002e2565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200034f578160001904821115620003335762000333620002f8565b808516156200034157918102915b93841c939080029062000313565b509250929050565b600082620003685750600162000407565b81620003775750600062000407565b81600181146200039057600281146200039b57620003bb565b600191505062000407565b60ff841115620003af57620003af620002f8565b50506001821b62000407565b5060208310610133831016604e8410600b8410161715620003e0575081810a62000407565b620003ec83836200030e565b8060001904821115620004035762000403620002f8565b0290505b92915050565b60006200041e60ff84168362000357565b9392505050565b6000816000190483118215151615620004425762000442620002f8565b500290565b80516001600160a01b03811681146200045f57600080fd5b919050565b600080604083850312156200047857600080fd5b620004838362000447565b9150620004936020840162000447565b90509250929050565b60008219821115620004b257620004b2620002f8565b500190565b600181811c90821680620004cc57607f821691505b60208210811415620004ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051610c1662000532600039600081816101ea015261046e01526000818161017e0152610376015260006103020152610c166000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b411461020c578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a57600080fd5b806339509351146101a057806370a08231146101b35780637358c57a146101dc5780637c2d8b13146101e557600080fd5b806318160ddd116100d357806318160ddd1461014557806323b872dd14610157578063313ce5671461016a57806332cb6b0c1461017957600080fd5b806306fdde03146100fa578063095ea7b3146101185780631249c58b1461013b575b600080fd5b61010261024d565b60405161010f9190610a12565b60405180910390f35b61012b610126366004610a83565b6102df565b604051901515815260200161010f565b6101436102f7565b005b6002545b60405190815260200161010f565b61012b610165366004610aad565b610495565b6040516012815260200161010f565b6101497f000000000000000000000000000000000000000000000000000000000000000081565b61012b6101ae366004610a83565b6104b9565b6101496101c1366004610ae9565b6001600160a01b031660009081526020819052604090205490565b61014960055481565b6101497f000000000000000000000000000000000000000000000000000000000000000081565b6101026104db565b61012b610222366004610a83565b6104ea565b61012b610235366004610a83565b610565565b610149610248366004610b0b565b610573565b60606003805461025c90610b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610b3e565b80156102d55780601f106102aa576101008083540402835291602001916102d5565b820191906000526020600020905b8154815290600101906020018083116102b857829003601f168201915b5050505050905090565b6000336102ed8185856105c7565b5060019392505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103745760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420616c6c6f776564206d696e74000000000000000060448201526064015b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061039e60025490565b106103e05760405162461bcd60e51b8152602060048201526012602482015271416c7265616479206d617820737570706c7960701b604482015260640161036b565b600062015180600554426103f49190610b8f565b6103fe9190610ba6565b600881901c600090815260066020526040902054909150600160ff83161b161561045d5760405162461bcd60e51b815260206004820152601060248201526f151bd9185e481a1859081b5a5b9d195960821b604482015260640161036b565b61046860068261059e565b610492337f00000000000000000000000000000000000000000000000000000000000000006106eb565b50565b6000336104a38582856107ca565b6104ae858585610844565b506001949350505050565b6000336102ed8185856104cc8383610573565b6104d69190610bc8565b6105c7565b60606004805461025c90610b3e565b600033816104f88286610573565b9050838110156105585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6104ae82868684036105c7565b6000336102ed818585610844565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600881901c600090815260209290925260409091208054600160ff9093169290921b9091179055565b6001600160a01b0383166106295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b03821661068a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166107415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b80600260008282546107539190610bc8565b90915550506001600160a01b03821660009081526020819052604081208054839290610780908490610bc8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006107d68484610573565b9050600019811461083e57818110156108315760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b61083e84848484036105c7565b50505050565b6001600160a01b0383166108a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b03821661090a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b038316600090815260208190526040902054818110156109825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109b9908490610bc8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0591815260200190565b60405180910390a361083e565b600060208083528351808285015260005b81811015610a3f57858101830151858201604001528201610a23565b81811115610a51576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b60008060408385031215610a9657600080fd5b610a9f83610a67565b946020939093013593505050565b600080600060608486031215610ac257600080fd5b610acb84610a67565b9250610ad960208501610a67565b9150604084013590509250925092565b600060208284031215610afb57600080fd5b610b0482610a67565b9392505050565b60008060408385031215610b1e57600080fd5b610b2783610a67565b9150610b3560208401610a67565b90509250929050565b600181811c90821680610b5257607f821691505b60208210811415610b7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610ba157610ba1610b79565b500390565b600082610bc357634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115610bdb57610bdb610b79565b50019056fea26469706673582212201085a24b31e6317297653cf6d3244a32fde7194c72c2ff25e68ec987388817e864736f6c634300080a0033000000000000000000000000103ccfacfe4c9271eb56c4ac4d2a225a1cd01193000000000000000000000000ca48e48aed5836028bca55eedae9d1187a09c295
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b411461020c578063a457c2d714610214578063a9059cbb14610227578063dd62ed3e1461023a57600080fd5b806339509351146101a057806370a08231146101b35780637358c57a146101dc5780637c2d8b13146101e557600080fd5b806318160ddd116100d357806318160ddd1461014557806323b872dd14610157578063313ce5671461016a57806332cb6b0c1461017957600080fd5b806306fdde03146100fa578063095ea7b3146101185780631249c58b1461013b575b600080fd5b61010261024d565b60405161010f9190610a12565b60405180910390f35b61012b610126366004610a83565b6102df565b604051901515815260200161010f565b6101436102f7565b005b6002545b60405190815260200161010f565b61012b610165366004610aad565b610495565b6040516012815260200161010f565b6101497f000000000000000000000000000000000000000000084595161401484a00000081565b61012b6101ae366004610a83565b6104b9565b6101496101c1366004610ae9565b6001600160a01b031660009081526020819052604090205490565b61014960055481565b6101497f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b6101026104db565b61012b610222366004610a83565b6104ea565b61012b610235366004610a83565b610565565b610149610248366004610b0b565b610573565b60606003805461025c90610b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610b3e565b80156102d55780601f106102aa576101008083540402835291602001916102d5565b820191906000526020600020905b8154815290600101906020018083116102b857829003601f168201915b5050505050905090565b6000336102ed8185856105c7565b5060019392505050565b336001600160a01b037f000000000000000000000000ca48e48aed5836028bca55eedae9d1187a09c29516146103745760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420616c6c6f776564206d696e74000000000000000060448201526064015b60405180910390fd5b7f000000000000000000000000000000000000000000084595161401484a00000061039e60025490565b106103e05760405162461bcd60e51b8152602060048201526012602482015271416c7265616479206d617820737570706c7960701b604482015260640161036b565b600062015180600554426103f49190610b8f565b6103fe9190610ba6565b600881901c600090815260066020526040902054909150600160ff83161b161561045d5760405162461bcd60e51b815260206004820152601060248201526f151bd9185e481a1859081b5a5b9d195960821b604482015260640161036b565b61046860068261059e565b610492337f00000000000000000000000000000000000000000000021e19e0c9bab24000006106eb565b50565b6000336104a38582856107ca565b6104ae858585610844565b506001949350505050565b6000336102ed8185856104cc8383610573565b6104d69190610bc8565b6105c7565b60606004805461025c90610b3e565b600033816104f88286610573565b9050838110156105585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036b565b6104ae82868684036105c7565b6000336102ed818585610844565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600881901c600090815260209290925260409091208054600160ff9093169290921b9091179055565b6001600160a01b0383166106295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036b565b6001600160a01b03821661068a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166107415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161036b565b80600260008282546107539190610bc8565b90915550506001600160a01b03821660009081526020819052604081208054839290610780908490610bc8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006107d68484610573565b9050600019811461083e57818110156108315760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036b565b61083e84848484036105c7565b50505050565b6001600160a01b0383166108a85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036b565b6001600160a01b03821661090a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036b565b6001600160a01b038316600090815260208190526040902054818110156109825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036b565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109b9908490610bc8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0591815260200190565b60405180910390a361083e565b600060208083528351808285015260005b81811015610a3f57858101830151858201604001528201610a23565b81811115610a51576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b60008060408385031215610a9657600080fd5b610a9f83610a67565b946020939093013593505050565b600080600060608486031215610ac257600080fd5b610acb84610a67565b9250610ad960208501610a67565b9150604084013590509250925092565b600060208284031215610afb57600080fd5b610b0482610a67565b9392505050565b60008060408385031215610b1e57600080fd5b610b2783610a67565b9150610b3560208401610a67565b90509250929050565b600181811c90821680610b5257607f821691505b60208210811415610b7357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610ba157610ba1610b79565b500390565b600082610bc357634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115610bdb57610bdb610b79565b50019056fea26469706673582212201085a24b31e6317297653cf6d3244a32fde7194c72c2ff25e68ec987388817e864736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000103ccfacfe4c9271eb56c4ac4d2a225a1cd01193000000000000000000000000ca48e48aed5836028bca55eedae9d1187a09c295
-----Decoded View---------------
Arg [0] : receiver (address): 0x103CcfacFE4C9271EB56C4Ac4D2A225A1cd01193
Arg [1] : _minter (address): 0xCa48e48Aed5836028bcA55Eedae9d1187A09C295
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000103ccfacfe4c9271eb56c4ac4d2a225a1cd01193
Arg [1] : 000000000000000000000000ca48e48aed5836028bca55eedae9d1187a09c295
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.