ERC-20
Overview
Max Total Supply
1,000,000,000 KHOOD
Holders
143
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
54,067.571428571428571428 KHOODValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KreatorhoodToken
Compiler Version
v0.8.19+commit.7dd6d404
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.19; import { ERC20Burnable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { IKreatorhoodToken } from "./interfaces/IKreatorhoodToken.sol"; contract KreatorhoodToken is IKreatorhoodToken, ERC20Burnable, Ownable { uint256 public immutable _TOTAL_SUPPLY_CAP; uint256 public totalSupplyMinted; /** * @notice Constructor * @param _totalSupplyCap supply cap (to set a maximum number of tokens) */ constructor(uint256 _totalSupplyCap) ERC20("Kreatorhood", "KHOOD") { _TOTAL_SUPPLY_CAP = _totalSupplyCap; } /** * @notice Mint KHOOD tokens * @param account address to receive tokens * @param amount amount to mint * @return status true if mint is successful, false if not */ function mint(address account, uint256 amount) external override onlyOwner returns (bool status) { if (totalSupplyMinted + amount <= _TOTAL_SUPPLY_CAP) { _mint(account, amount); totalSupplyMinted += amount; return true; } return false; } /** * @notice View total supply cap */ function TOTAL_SUPPLY_CAP() external view override returns (uint256) { return _TOTAL_SUPPLY_CAP; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) 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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// 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 (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// 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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; interface IKreatorhoodToken { function TOTAL_SUPPLY_CAP() external view returns (uint256); function mint(address account, uint256 amount) external returns (bool); }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 200, "details": { "yulDetails": { "optimizerSteps": "u" } } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupplyCap","type":"uint256"}],"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":[],"name":"TOTAL_SUPPLY_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTAL_SUPPLY_CAP","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":[{"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"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyMinted","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523462000040576200001e62000018620000b0565b6200015f565b6040516110646200049a82396080518181816103650152610f46015261106490f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b90601f01601f191681019081106001600160401b038211176200007d57604052565b62000045565b906200009a6200009260405190565b92836200005b565b565b906020828203126200004057505190565b90565b620000ad620014fe80380380620000c78162000083565b9283398101906200009c565b6001600160401b0381116200007d57602090601f01601f19160190565b90620001066200010083620000d3565b62000083565b918252565b62000117600b620000f0565b6a12dc99585d1bdc9a1bdbd960aa1b602082015290565b620000ad6200010b565b620001446005620000f0565b6412d213d3d160da1b602082015290565b620000ad62000138565b6200017e6200016d6200012e565b6200017762000155565b9062000183565b608052565b906200018f916200019a565b6200009a3362000437565b906200009a91620003a7565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015620001df575b6020831014620001d957565b620001a6565b91607f1691620001cd565b9160001960089290920291821b911b5b9181191691161790565b620000ad620000ad620000ad9290565b919062000229620000ad620002329362000204565b908354620001ea565b9055565b6200009a9160009162000214565b81811062000250575050565b8062000260600060019362000236565b0162000244565b9190601f81116200027757505050565b6200028b6200009a93600052602060002090565b906020601f840181900483019310620002af575b6020601f90910104019062000244565b90915081906200029f565b90620002c4815190565b906001600160401b0382116200007d57620002ec82620002e58554620001bc565b8562000267565b602090601f83116001146200032b57620002329291600091836200031f575b5050600019600883021c1916906002021790565b0151905038806200030b565b601f198316916200034185600052602060002090565b9260005b818110620003825750916002939185600196941062000368575b50505002019055565b01516000196008601f8516021c191690553880806200035f565b9193602060018192878701518155019501920162000345565b906200009a91620002ba565b90620003b96200009a9260036200039b565b60046200039b565b620000ad905b6001600160a01b031690565b620000ad9054620003c1565b906001600160a01b0390620001fa565b620000ad90620003c7906001600160a01b031682565b620000ad90620003ef565b620000ad9062000405565b906200042f620000ad620002329262000410565b8254620003df565b620004436005620003d3565b90620004518160056200041b565b62000488620004817f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09362000410565b9162000410565b916200049360405190565b600090a356fe6080604052600436101561001257600080fd5b60003560e01c806306fdde031461014d578063095ea7b31461014857806318160ddd1461014357806323b872dd1461013e578063313ce5671461013957806339509351146101345780633c538ecd1461012557806340c10f191461012f57806342966c681461012a578063489313521461012557806370a0823114610120578063715018a61461011b57806379cc6790146101165780638da5cb5b14610111578063933e95b21461010c57806395d89b4114610107578063a457c2d714610102578063a9059cbb146100fd578063dd62ed3e146100f85763f2fde38b0361015d5761054c565b610530565b6104f1565b6104d5565b6104ba565b61049f565b61043e565b61041d565b610405565b6103ea565b610350565b6103b9565b610389565b610334565b610305565b6102e9565b61028d565b61025f565b6101d1565b600091031261015d57565b600080fd5b60005b8381106101755750506000910152565b8181015183820152602001610165565b6101a66101af6020936101b99361019a815190565b80835293849260200190565b95869101610162565b601f01601f191690565b0190565b60208082526101ce92910190610185565b90565b3461015d576101e1366004610152565b6101f86101ec6108ae565b604051918291826101bd565b0390f35b6001600160a01b031690565b6001600160a01b0381165b0361015d57565b9050359061022782610208565b565b80610213565b9050359061022782610229565b919060408382031261015d576101ce90610256818561021a565b9360200161022f565b3461015d576101f861027b61027536600461023c565b90610963565b60405191829182901515815260200190565b3461015d5761029d366004610152565b6101f86102a86108f0565b6040515b9182918290815260200190565b909160608284031261015d576101ce6102d2848461021a565b936102e0816020860161021a565b9360400161022f565b3461015d576101f861027b6102ff3660046102b9565b9161096e565b3461015d57610315366004610152565b6101f86103206108d5565b6040519182918260ff909116815260200190565b3461015d576101f861027b61034a36600461023c565b906109a8565b3461015d57610360366004610152565b6101f87f00000000000000000000000000000000000000000000000000000000000000006102a8565b3461015d576101f861027b61039f36600461023c565b90610f94565b9060208282031261015d576101ce9161022f565b3461015d576103d16103cc3660046103a5565b610dfe565b604051005b9060208282031261015d576101ce9161021a565b3461015d576101f86102a86104003660046103d6565b610912565b3461015d57610415366004610152565b6103d161059c565b3461015d576103d161043036600461023c565b61022791610e08823361097a565b3461015d5761044e366004610152565b6101f86104636005546001600160a01b031690565b604051918291826001600160a01b03909116815260200190565b6101ce916008021c81565b906101ce915461047d565b6101ce60006006610488565b3461015d576104af366004610152565b6101f86102a8610493565b3461015d576104ca366004610152565b6101f86101ec6108b8565b3461015d576101f861027b6104eb36600461023c565b90610a21565b3461015d576101f861027b61050736600461023c565b9061092e565b919060408382031261015d576101ce90610527818561021a565b9360200161021a565b3461015d576101f86102a861054636600461050d565b90610943565b3461015d576103d161055f3660046103d6565b6106bd565b61056c6105f8565b61022761058a565b6101fc6101ce6101ce9290565b6101ce90610574565b6102276105976000610581565b61071c565b610227610564565b156105ab57565b60405162461bcd60e51b8152806105f4600482016020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b0390fd5b61022761060d6005546001600160a01b031690565b610626610619336101fc565b916001600160a01b031690565b146105a4565b610227906106386105f8565b610698565b1561064457565b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b610227906105976106ac6101fc6000610581565b6001600160a01b038316141561063d565b6102279061062c565b906001600160a01b03905b9181191691161790565b6101ce906101fc906001600160a01b031682565b6101ce906106db565b6101ce906106ef565b906107116101ce610718926106f8565b82546106c6565b9055565b6005546001600160a01b031690610734816005610701565b6107676107617f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0936106f8565b916106f8565b9161077160405190565b80805b0390a3565b634e487b7160e01b600052602260045260246000fd5b90600160028304921680156107af575b60208310146107aa57565b610779565b91607f169161079f565b805460009392916107d66107cc8361078f565b8085529360200190565b916001811690811561082857506001146107ef57505050565b6108029192939450600052602060002090565b916000925b8184106108145750500190565b805484840152602090930192600101610807565b92949550505060ff1916825215156020020190565b906101ce916107b9565b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff82111761087f57604052565b610847565b9061022761089e9261089560405190565b9384809261083d565b038361085d565b6101ce90610884565b6101ce60036108a5565b6101ce60046108a5565b6108cf6101ce6101ce9290565b60ff1690565b6101ce60126108c2565b6101ce9081565b6101ce90546108df565b6101ce60026108e6565b90610904906106f8565b600052602052604060002090565b6109296101ce91610921600090565b5060006108fa565b6108e6565b61093e919033610b80565b610b80565b600190565b6101ce9161095e61092992610956600090565b5060016108fa565b6108fa565b61093e919033610cf8565b61093e92919061093983335b83610dc6565b634e487b7160e01b600052601160045260246000fd5b919082018092116109a357565b610980565b61093e91906109c133926109bc8385610943565b610996565b91610cf8565b156109ce57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b61093e91906109c13392610a358385610943565b610a41828210156109c7565b0390565b15610a4c57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b15610aa657565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b15610afe57565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b90600019906106d1565b6101ce6101ce6101ce9290565b90610b796101ce61071892610b5c565b8254610b52565b610c09610bf6836000610bc7610bb6610b9883610581565b6101fc6001600160a01b0382166001600160a01b038a161415610a45565b6001600160a01b0384161415610a9f565b61095e610be788610bdb61092989866108fa565b610a4182821015610af7565b610bf187846108fa565b610b69565b610c03856101b9836108e6565b90610b69565b610774610c3f610c397fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef936106f8565b936106f8565b936102ac60405190565b15610c5057565b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b15610ca857565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b610d37610d26610d086000610581565b6101fc6001600160a01b0382166001600160a01b0386161415610c49565b6001600160a01b0384161415610ca1565b610d4a83610bf18461095e8560016108fa565b610774610c3f610c397f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925936106f8565b15610d8157565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b90610dd18183610943565b6000198103610de1575b50505050565b610df5936109c191610a4182821015610d7a565b38808080610ddb565b6102279033610eba565b610eba565b15610e1457565b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b15610e6a57565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b600090610f0f610ec983610581565b92610ee86001600160a01b0385166001600160a01b0385161415610e0d565b610bf183610f0987610efd61092984876108fa565b610a4182821015610e63565b926108fa565b610c09610f2084610a4160026108e6565b6002610b69565b906101ce9291610f356105f8565b50610f44826109bc60066108e6565b7f00000000000000000000000000000000000000000000000000000000000000001015610f72575050600090565b81610f8361093e93610f8d93610fec565b6109bc60066108e6565b6006610b69565b6101ce91906000610f27565b15610fa757565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b6000610c09610bf683610ffe84610581565b9361101d6001600160a01b0386166001600160a01b0384161415610fa0565b61095e610f20886109bc60026108e656fea26469706673582212201e9ba6244c976d1d74e4603c4463d159d9f745a877a47eae21fc45356532a1c464736f6c634300081300330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x6080604052600436101561001257600080fd5b60003560e01c806306fdde031461014d578063095ea7b31461014857806318160ddd1461014357806323b872dd1461013e578063313ce5671461013957806339509351146101345780633c538ecd1461012557806340c10f191461012f57806342966c681461012a578063489313521461012557806370a0823114610120578063715018a61461011b57806379cc6790146101165780638da5cb5b14610111578063933e95b21461010c57806395d89b4114610107578063a457c2d714610102578063a9059cbb146100fd578063dd62ed3e146100f85763f2fde38b0361015d5761054c565b610530565b6104f1565b6104d5565b6104ba565b61049f565b61043e565b61041d565b610405565b6103ea565b610350565b6103b9565b610389565b610334565b610305565b6102e9565b61028d565b61025f565b6101d1565b600091031261015d57565b600080fd5b60005b8381106101755750506000910152565b8181015183820152602001610165565b6101a66101af6020936101b99361019a815190565b80835293849260200190565b95869101610162565b601f01601f191690565b0190565b60208082526101ce92910190610185565b90565b3461015d576101e1366004610152565b6101f86101ec6108ae565b604051918291826101bd565b0390f35b6001600160a01b031690565b6001600160a01b0381165b0361015d57565b9050359061022782610208565b565b80610213565b9050359061022782610229565b919060408382031261015d576101ce90610256818561021a565b9360200161022f565b3461015d576101f861027b61027536600461023c565b90610963565b60405191829182901515815260200190565b3461015d5761029d366004610152565b6101f86102a86108f0565b6040515b9182918290815260200190565b909160608284031261015d576101ce6102d2848461021a565b936102e0816020860161021a565b9360400161022f565b3461015d576101f861027b6102ff3660046102b9565b9161096e565b3461015d57610315366004610152565b6101f86103206108d5565b6040519182918260ff909116815260200190565b3461015d576101f861027b61034a36600461023c565b906109a8565b3461015d57610360366004610152565b6101f87f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000006102a8565b3461015d576101f861027b61039f36600461023c565b90610f94565b9060208282031261015d576101ce9161022f565b3461015d576103d16103cc3660046103a5565b610dfe565b604051005b9060208282031261015d576101ce9161021a565b3461015d576101f86102a86104003660046103d6565b610912565b3461015d57610415366004610152565b6103d161059c565b3461015d576103d161043036600461023c565b61022791610e08823361097a565b3461015d5761044e366004610152565b6101f86104636005546001600160a01b031690565b604051918291826001600160a01b03909116815260200190565b6101ce916008021c81565b906101ce915461047d565b6101ce60006006610488565b3461015d576104af366004610152565b6101f86102a8610493565b3461015d576104ca366004610152565b6101f86101ec6108b8565b3461015d576101f861027b6104eb36600461023c565b90610a21565b3461015d576101f861027b61050736600461023c565b9061092e565b919060408382031261015d576101ce90610527818561021a565b9360200161021a565b3461015d576101f86102a861054636600461050d565b90610943565b3461015d576103d161055f3660046103d6565b6106bd565b61056c6105f8565b61022761058a565b6101fc6101ce6101ce9290565b6101ce90610574565b6102276105976000610581565b61071c565b610227610564565b156105ab57565b60405162461bcd60e51b8152806105f4600482016020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b0390fd5b61022761060d6005546001600160a01b031690565b610626610619336101fc565b916001600160a01b031690565b146105a4565b610227906106386105f8565b610698565b1561064457565b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b610227906105976106ac6101fc6000610581565b6001600160a01b038316141561063d565b6102279061062c565b906001600160a01b03905b9181191691161790565b6101ce906101fc906001600160a01b031682565b6101ce906106db565b6101ce906106ef565b906107116101ce610718926106f8565b82546106c6565b9055565b6005546001600160a01b031690610734816005610701565b6107676107617f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0936106f8565b916106f8565b9161077160405190565b80805b0390a3565b634e487b7160e01b600052602260045260246000fd5b90600160028304921680156107af575b60208310146107aa57565b610779565b91607f169161079f565b805460009392916107d66107cc8361078f565b8085529360200190565b916001811690811561082857506001146107ef57505050565b6108029192939450600052602060002090565b916000925b8184106108145750500190565b805484840152602090930192600101610807565b92949550505060ff1916825215156020020190565b906101ce916107b9565b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff82111761087f57604052565b610847565b9061022761089e9261089560405190565b9384809261083d565b038361085d565b6101ce90610884565b6101ce60036108a5565b6101ce60046108a5565b6108cf6101ce6101ce9290565b60ff1690565b6101ce60126108c2565b6101ce9081565b6101ce90546108df565b6101ce60026108e6565b90610904906106f8565b600052602052604060002090565b6109296101ce91610921600090565b5060006108fa565b6108e6565b61093e919033610b80565b610b80565b600190565b6101ce9161095e61092992610956600090565b5060016108fa565b6108fa565b61093e919033610cf8565b61093e92919061093983335b83610dc6565b634e487b7160e01b600052601160045260246000fd5b919082018092116109a357565b610980565b61093e91906109c133926109bc8385610943565b610996565b91610cf8565b156109ce57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608490fd5b61093e91906109c13392610a358385610943565b610a41828210156109c7565b0390565b15610a4c57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b15610aa657565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b15610afe57565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b90600019906106d1565b6101ce6101ce6101ce9290565b90610b796101ce61071892610b5c565b8254610b52565b610c09610bf6836000610bc7610bb6610b9883610581565b6101fc6001600160a01b0382166001600160a01b038a161415610a45565b6001600160a01b0384161415610a9f565b61095e610be788610bdb61092989866108fa565b610a4182821015610af7565b610bf187846108fa565b610b69565b610c03856101b9836108e6565b90610b69565b610774610c3f610c397fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef936106f8565b936106f8565b936102ac60405190565b15610c5057565b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b15610ca857565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b610d37610d26610d086000610581565b6101fc6001600160a01b0382166001600160a01b0386161415610c49565b6001600160a01b0384161415610ca1565b610d4a83610bf18461095e8560016108fa565b610774610c3f610c397f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925936106f8565b15610d8157565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b90610dd18183610943565b6000198103610de1575b50505050565b610df5936109c191610a4182821015610d7a565b38808080610ddb565b6102279033610eba565b610eba565b15610e1457565b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b15610e6a57565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b600090610f0f610ec983610581565b92610ee86001600160a01b0385166001600160a01b0385161415610e0d565b610bf183610f0987610efd61092984876108fa565b610a4182821015610e63565b926108fa565b610c09610f2084610a4160026108e6565b6002610b69565b906101ce9291610f356105f8565b50610f44826109bc60066108e6565b7f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000001015610f72575050600090565b81610f8361093e93610f8d93610fec565b6109bc60066108e6565b6006610b69565b6101ce91906000610f27565b15610fa757565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b6000610c09610bf683610ffe84610581565b9361101d6001600160a01b0386166001600160a01b0384161415610fa0565b61095e610f20886109bc60026108e656fea26469706673582212201e9ba6244c976d1d74e4603c4463d159d9f745a877a47eae21fc45356532a1c464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _totalSupplyCap (uint256): 1000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
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.