Polygon Sponsored slots available. Book your slot here!
ERC-20
NFT
Overview
Max Total Supply
4,637,811.3573690713155648 N1
Holders
176 (0.00%)
Market
Price
$0.0032 @ 0.004885 POL
Onchain Market Cap
$14,745.36
Circulating Supply Market Cap
$64,739.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
968 N1Value
$3.08 ( ~4.7327 POL) [0.0209%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
N1Token
Compiler Version
v0.8.0+commit.c7dfd78e
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.0; import "openzeppelin-solidity/contracts/access/Ownable.sol"; import "openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract N1Token is Ownable, ERC20Burnable { mapping(address => bool) adminList; modifier onlyAdmins() { require(adminList[msg.sender], "Only Admins"); _; } constructor(address wallet) ERC20("NFTify","N1") { adminList[wallet] = true; transferOwnership(wallet); } /** * @dev Set `account` as admin of contract */ function setAdmin(address account, bool value) external onlyOwner { adminList[account] = value; } /** * @dev Check `account` is in `adminList` or not */ function isAdmin(address account) public view returns (bool) { return adminList[account]; } /** * @dev Creates amount tokens and assigns them to account, increasing * the total supply. * * Requirements * * - account cannot be the zero address. */ function mint(address account, uint256 amount) external onlyAdmins { _mint(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.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 guidelines: functions revert instead * of 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 { 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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: * * - `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; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ 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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620014c3380380620014c3833981016040819052620000349162000297565b604051806040016040528060068152602001654e465469667960d01b815250604051806040016040528060028152602001614e3160f01b8152506000620000806200011c60201b60201c565b600080546001600160a01b0319166001600160a01b038316908117825560405192935091600080516020620014a3833981519152908290a3508151620000ce906004906020850190620001f1565b508051620000e4906005906020840190620001f1565b5050506001600160a01b0381166000908152600660205260409020805460ff19166001179055620001158162000120565b506200037f565b3390565b6200012a6200011c565b6001600160a01b03166200013d620001e2565b6001600160a01b0316146200016f5760405162461bcd60e51b815260040162000166906200030d565b60405180910390fd5b6001600160a01b038116620001985760405162461bcd60e51b81526004016200016690620002c7565b600080546040516001600160a01b0380851693921691600080516020620014a383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b828054620001ff9062000342565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b600060208284031215620002a9578081fd5b81516001600160a01b0381168114620002c0578182fd5b9392505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200035757607f821691505b602082108114156200037957634e487b7160e01b600052602260045260246000fd5b50919050565b611114806200038f6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80634b0bddd2116100ad57806395d89b411161007157806395d89b4114610245578063a457c2d71461024d578063a9059cbb14610260578063dd62ed3e14610273578063f2fde38b1461028657610121565b80634b0bddd2146101ef57806370a0823114610202578063715018a61461021557806379cc67901461021d5780638da5cb5b1461023057610121565b806324d7806c116100f457806324d7806c1461018c578063313ce5671461019f57806339509351146101b457806340c10f19146101c757806342966c68146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610299565b60405161013b9190610c75565b60405180910390f35b610157610152366004610c15565b61032b565b60405161013b9190610c6a565b61016c610348565b60405161013b9190611047565b610157610187366004610ba0565b61034e565b61015761019a366004610b4d565b6103ee565b6101a7610410565b60405161013b9190611050565b6101576101c2366004610c15565b610415565b6101da6101d5366004610c15565b610464565b005b6101da6101ea366004610c3e565b6104a1565b6101da6101fd366004610bdb565b6104b5565b61016c610210366004610b4d565b61051f565b6101da61053a565b6101da61022b366004610c15565b6105c3565b610238610618565b60405161013b9190610c56565b61012e610627565b61015761025b366004610c15565b610636565b61015761026e366004610c15565b6106b1565b61016c610281366004610b6e565b6106c5565b6101da610294366004610b4d565b6106f0565b6060600480546102a89061108d565b80601f01602080910402602001604051908101604052809291908181526020018280546102d49061108d565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f6103386107b0565b84846107b4565b50600192915050565b60035490565b600061035b848484610868565b6001600160a01b03841660009081526002602052604081208161037c6107b0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c85760405162461bcd60e51b81526004016103bf90610e40565b60405180910390fd5b6103e3856103d46107b0565b6103de8685611076565b6107b4565b506001949350505050565b6001600160a01b03811660009081526006602052604090205460ff165b919050565b601290565b600061033f6104226107b0565b8484600260006104306107b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103de919061105e565b3360009081526006602052604090205460ff166104935760405162461bcd60e51b81526004016103bf90610e1b565b61049d8282610990565b5050565b6104b26104ac6107b0565b82610a50565b50565b6104bd6107b0565b6001600160a01b03166104ce610618565b6001600160a01b0316146104f45760405162461bcd60e51b81526004016103bf90610e88565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6105426107b0565b6001600160a01b0316610553610618565b6001600160a01b0316146105795760405162461bcd60e51b81526004016103bf90610e88565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006105d1836102816107b0565b9050818110156105f35760405162461bcd60e51b81526004016103bf90610ebd565b610609836105ff6107b0565b6103de8585611076565b6106138383610a50565b505050565b6000546001600160a01b031690565b6060600580546102a89061108d565b600080600260006106456107b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106915760405162461bcd60e51b81526004016103bf90610fcb565b6106a761069c6107b0565b856103de8685611076565b5060019392505050565b600061033f6106be6107b0565b8484610868565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106f86107b0565b6001600160a01b0316610709610618565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016103bf90610e88565b6001600160a01b0381166107555760405162461bcd60e51b81526004016103bf90610d4d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107da5760405162461bcd60e51b81526004016103bf90610f87565b6001600160a01b0382166108005760405162461bcd60e51b81526004016103bf90610d93565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085b908590611047565b60405180910390a3505050565b6001600160a01b03831661088e5760405162461bcd60e51b81526004016103bf90610f42565b6001600160a01b0382166108b45760405162461bcd60e51b81526004016103bf90610cc8565b6108bf838383610613565b6001600160a01b038316600090815260016020526040902054818110156108f85760405162461bcd60e51b81526004016103bf90610dd5565b6109028282611076565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061093890849061105e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109829190611047565b60405180910390a350505050565b6001600160a01b0382166109b65760405162461bcd60e51b81526004016103bf90611010565b6109c260008383610613565b80600360008282546109d4919061105e565b90915550506001600160a01b03821660009081526001602052604081208054839290610a0190849061105e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a44908590611047565b60405180910390a35050565b6001600160a01b038216610a765760405162461bcd60e51b81526004016103bf90610f01565b610a8282600083610613565b6001600160a01b03821660009081526001602052604090205481811015610abb5760405162461bcd60e51b81526004016103bf90610d0b565b610ac58282611076565b6001600160a01b03841660009081526001602052604081209190915560038054849290610af3908490611076565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061085b908690611047565b80356001600160a01b038116811461040b57600080fd5b600060208284031215610b5e578081fd5b610b6782610b36565b9392505050565b60008060408385031215610b80578081fd5b610b8983610b36565b9150610b9760208401610b36565b90509250929050565b600080600060608486031215610bb4578081fd5b610bbd84610b36565b9250610bcb60208501610b36565b9150604084013590509250925092565b60008060408385031215610bed578182fd5b610bf683610b36565b915060208301358015158114610c0a578182fd5b809150509250929050565b60008060408385031215610c27578182fd5b610c3083610b36565b946020939093013593505050565b600060208284031215610c4f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ca157858101830151858201604001528201610c85565b81811115610cb25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600b908201526a4f6e6c792041646d696e7360a81b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611071576110716110c8565b500190565b600082821015611088576110886110c8565b500390565b6002810460018216806110a157607f821691505b602082108114156110c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220bb902878bfd8487976590b35b32a3b8edae1b98080ae01e9723fabec69af0b4c64736f6c634300080000338be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000ed2189fbbbbf52b9177acdaea8f17535043118f9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80634b0bddd2116100ad57806395d89b411161007157806395d89b4114610245578063a457c2d71461024d578063a9059cbb14610260578063dd62ed3e14610273578063f2fde38b1461028657610121565b80634b0bddd2146101ef57806370a0823114610202578063715018a61461021557806379cc67901461021d5780638da5cb5b1461023057610121565b806324d7806c116100f457806324d7806c1461018c578063313ce5671461019f57806339509351146101b457806340c10f19146101c757806342966c68146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610299565b60405161013b9190610c75565b60405180910390f35b610157610152366004610c15565b61032b565b60405161013b9190610c6a565b61016c610348565b60405161013b9190611047565b610157610187366004610ba0565b61034e565b61015761019a366004610b4d565b6103ee565b6101a7610410565b60405161013b9190611050565b6101576101c2366004610c15565b610415565b6101da6101d5366004610c15565b610464565b005b6101da6101ea366004610c3e565b6104a1565b6101da6101fd366004610bdb565b6104b5565b61016c610210366004610b4d565b61051f565b6101da61053a565b6101da61022b366004610c15565b6105c3565b610238610618565b60405161013b9190610c56565b61012e610627565b61015761025b366004610c15565b610636565b61015761026e366004610c15565b6106b1565b61016c610281366004610b6e565b6106c5565b6101da610294366004610b4d565b6106f0565b6060600480546102a89061108d565b80601f01602080910402602001604051908101604052809291908181526020018280546102d49061108d565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f6103386107b0565b84846107b4565b50600192915050565b60035490565b600061035b848484610868565b6001600160a01b03841660009081526002602052604081208161037c6107b0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c85760405162461bcd60e51b81526004016103bf90610e40565b60405180910390fd5b6103e3856103d46107b0565b6103de8685611076565b6107b4565b506001949350505050565b6001600160a01b03811660009081526006602052604090205460ff165b919050565b601290565b600061033f6104226107b0565b8484600260006104306107b0565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103de919061105e565b3360009081526006602052604090205460ff166104935760405162461bcd60e51b81526004016103bf90610e1b565b61049d8282610990565b5050565b6104b26104ac6107b0565b82610a50565b50565b6104bd6107b0565b6001600160a01b03166104ce610618565b6001600160a01b0316146104f45760405162461bcd60e51b81526004016103bf90610e88565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6105426107b0565b6001600160a01b0316610553610618565b6001600160a01b0316146105795760405162461bcd60e51b81526004016103bf90610e88565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006105d1836102816107b0565b9050818110156105f35760405162461bcd60e51b81526004016103bf90610ebd565b610609836105ff6107b0565b6103de8585611076565b6106138383610a50565b505050565b6000546001600160a01b031690565b6060600580546102a89061108d565b600080600260006106456107b0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106915760405162461bcd60e51b81526004016103bf90610fcb565b6106a761069c6107b0565b856103de8685611076565b5060019392505050565b600061033f6106be6107b0565b8484610868565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106f86107b0565b6001600160a01b0316610709610618565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016103bf90610e88565b6001600160a01b0381166107555760405162461bcd60e51b81526004016103bf90610d4d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166107da5760405162461bcd60e51b81526004016103bf90610f87565b6001600160a01b0382166108005760405162461bcd60e51b81526004016103bf90610d93565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061085b908590611047565b60405180910390a3505050565b6001600160a01b03831661088e5760405162461bcd60e51b81526004016103bf90610f42565b6001600160a01b0382166108b45760405162461bcd60e51b81526004016103bf90610cc8565b6108bf838383610613565b6001600160a01b038316600090815260016020526040902054818110156108f85760405162461bcd60e51b81526004016103bf90610dd5565b6109028282611076565b6001600160a01b03808616600090815260016020526040808220939093559085168152908120805484929061093890849061105e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109829190611047565b60405180910390a350505050565b6001600160a01b0382166109b65760405162461bcd60e51b81526004016103bf90611010565b6109c260008383610613565b80600360008282546109d4919061105e565b90915550506001600160a01b03821660009081526001602052604081208054839290610a0190849061105e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a44908590611047565b60405180910390a35050565b6001600160a01b038216610a765760405162461bcd60e51b81526004016103bf90610f01565b610a8282600083610613565b6001600160a01b03821660009081526001602052604090205481811015610abb5760405162461bcd60e51b81526004016103bf90610d0b565b610ac58282611076565b6001600160a01b03841660009081526001602052604081209190915560038054849290610af3908490611076565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061085b908690611047565b80356001600160a01b038116811461040b57600080fd5b600060208284031215610b5e578081fd5b610b6782610b36565b9392505050565b60008060408385031215610b80578081fd5b610b8983610b36565b9150610b9760208401610b36565b90509250929050565b600080600060608486031215610bb4578081fd5b610bbd84610b36565b9250610bcb60208501610b36565b9150604084013590509250925092565b60008060408385031215610bed578182fd5b610bf683610b36565b915060208301358015158114610c0a578182fd5b809150509250929050565b60008060408385031215610c27578182fd5b610c3083610b36565b946020939093013593505050565b600060208284031215610c4f578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ca157858101830151858201604001528201610c85565b81811115610cb25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600b908201526a4f6e6c792041646d696e7360a81b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604082015263616e636560e01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611071576110716110c8565b500190565b600082821015611088576110886110c8565b500390565b6002810460018216806110a157607f821691505b602082108114156110c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220bb902878bfd8487976590b35b32a3b8edae1b98080ae01e9723fabec69af0b4c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ed2189fbbbbf52b9177acdaea8f17535043118f9
-----Decoded View---------------
Arg [0] : wallet (address): 0xEd2189fbbbbF52B9177ACDaEa8F17535043118F9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ed2189fbbbbf52b9177acdaea8f17535043118f9
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.