ERC-20
Yield Farming
Overview
Max Total Supply
65,683,667.306450784137127682 YEL
Holders
503 ( -0.199%)
Market
Price
$0.006 @ 0.011604 S (+1.23%)
Onchain Market Cap
$394,289.20
Circulating Supply Market Cap
$1,684,282.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
YELToken
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 0 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223// SPDX-License-Identifier: MITpragma solidity ^0.8.20;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import "@openzeppelin/contracts/access/AccessControl.sol";contract YELToken is ERC20, ERC20Burnable, AccessControl {bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");constructor(address defaultAdmin, address minter) ERC20("YELToken", "YEL") {_grantRole(DEFAULT_ADMIN_ROLE, defaultAdmin);_grantRole(MINTER_ROLE, minter);}function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) {_mint(to, amount);}function burn(address from, uint256 amount) external onlyRole(MINTER_ROLE) {_burn(from, amount);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by* using `public constant` hash digests:** ```solidity* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)pragma solidity ^0.8.0;/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {/*** @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`** `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite* {RoleAdminChanged} not being emitted signaling this.** _Available since v3.1._*/event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);/*** @dev Emitted when `account` is granted `role`.** `sender` is the account that originated the contract call, an admin role* bearer except when using {AccessControl-_setupRole}.*/event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
1234567891011121314151617181920212223242526// 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
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.4) (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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))
12345678910111213141516171819202122232425{"optimizer": {"enabled": true,"runs": 0,"details": {"yul": true,"yulDetails": {"optimizerSteps": "dhfoDgvulfnTUtnIf [xa[r]scLM cCTUtTOntnfDIul Lcul Vcul [j] Tpeul xa[rul] xa[r]cL gvif CTUca[r]LsTOtfDnca[r]Iulc] jmul[jul]VcTOcul jmul"}}},"evmVersion": "paris","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"defaultAdmin","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"from","type":"address"},{"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"to","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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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
60806040523480156200001157600080fd5b50604051620014c1380380620014c1833981016040819052620000349162000199565b604051806040016040528060088152602001672ca2a62a37b5b2b760c11b8152506040518060400160405280600381526020016216515360ea1b815250816003908162000082919062000278565b50600462000091828262000278565b50620000a391506000905083620000d7565b620000cf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682620000d7565b505062000344565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620001785760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001373390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b80516001600160a01b03811681146200019457600080fd5b919050565b60008060408385031215620001ad57600080fd5b620001b8836200017c565b9150620001c8602084016200017c565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fc57607f821691505b6020821081036200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000273576000816000526020600020601f850160051c810160208610156200024e5750805b601f850160051c820191505b818110156200026f578281556001016200025a565b5050505b505050565b81516001600160401b03811115620002945762000294620001d1565b620002ac81620002a58454620001e7565b8462000223565b602080601f831160018114620002e45760008415620002cb5750858301515b600019600386901b1c1916600185901b1785556200026f565b600085815260208120601f198616915b828110156200031557888601518255948401946001909101908401620002f4565b5085821015620003345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61116d80620003546000396000f3fe608060405234801561001057600080fd5b506004361061011d5760003560e01c806301ffc9a71461012257806306fdde031461014a578063095ea7b31461015f57806318160ddd1461017257806323b872dd14610184578063248a9ca3146101975780632f2ff15d146101aa578063313ce567146101bf57806336568abe146101ce57806339509351146101e157806340c10f19146101f457806342966c681461020757806370a082311461021a57806379cc67901461024357806391d148541461025657806395d89b41146102695780639dc29fac14610271578063a217fddf14610284578063a457c2d71461028c578063a9059cbb1461029f578063d5391393146102b2578063d547741f146102c7578063dd62ed3e146102da575b600080fd5b610135610130366004610e3e565b6102ed565b60405190151581526020015b60405180910390f35b610152610324565b6040516101419190610e8c565b61013561016d366004610edb565b6103b6565b6002545b604051908152602001610141565b610135610192366004610f05565b6103ce565b6101766101a5366004610f41565b6103f2565b6101bd6101b8366004610f5a565b610407565b005b60405160128152602001610141565b6101bd6101dc366004610f5a565b610428565b6101356101ef366004610edb565b6104ab565b6101bd610202366004610edb565b6104cd565b6101bd610215366004610f41565b6104ef565b610176610228366004610f86565b6001600160a01b031660009081526020819052604090205490565b6101bd610251366004610edb565b6104fc565b610135610264366004610f5a565b610511565b61015261053c565b6101bd61027f366004610edb565b61054b565b610176600081565b61013561029a366004610edb565b61056d565b6101356102ad366004610edb565b6105e8565b6101766000805160206110f883398151915281565b6101bd6102d5366004610f5a565b6105f6565b6101766102e8366004610fa1565b610612565b60006001600160e01b03198216637965db0b60e01b148061031e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461033390610fcb565b80601f016020809104026020016040519081016040528092919081815260200182805461035f90610fcb565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c481858561063d565b5060019392505050565b6000336103dc858285610761565b6103e78585856107db565b506001949350505050565b60009081526005602052604090206001015490565b610410826103f2565b6104198161096d565b6104238383610977565b505050565b6001600160a01b038116331461049d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104a782826109fd565b5050565b6000336103c48185856104be8383610612565b6104c8919061101b565b61063d565b6000805160206110f88339815191526104e58161096d565b6104238383610a64565b6104f93382610b11565b50565b610507823383610761565b6104a78282610b11565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461033390610fcb565b6000805160206110f88339815191526105638161096d565b6104238383610b11565b6000338161057b8286610612565b9050838110156105db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610494565b6103e7828686840361063d565b6000336103c48185856107db565b6105ff826103f2565b6106088161096d565b61042383836109fd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661069f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610494565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610494565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076d8484610612565b905060001981146107d557818110156107c85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b6107d5848484840361063d565b50505050565b6001600160a01b03831661083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610494565b6001600160a01b0382166108a15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610494565b6001600160a01b038316600090815260208190526040902054818110156109195760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610494565b6001600160a01b0384811660008181526020818152604080832087870390559387168083529184902080548701905592518581529092600080516020611118833981519152910160405180910390a36107d5565b6104f98133610c31565b6109818282610511565b6104a75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556109b93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a078282610511565b156104a75760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610494565b8060026000828254610acc919061101b565b90915550506001600160a01b03821660008181526020818152604080832080548601905551848152600080516020611118833981519152910160405180910390a35050565b6001600160a01b038216610b715760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610494565b6001600160a01b03821660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610494565b6001600160a01b038316600081815260208181526040808320868603905560028054879003905551858152919291600080516020611118833981519152910160405180910390a3505050565b610c3b8282610511565b6104a757610c4881610c8a565b610c53836020610c9c565b604051602001610c6492919061102e565b60408051601f198184030181529082905262461bcd60e51b825261049491600401610e8c565b606061031e6001600160a01b03831660145b60606000610cab83600261109d565b610cb690600261101b565b6001600160401b03811115610ccd57610ccd6110b4565b6040519080825280601f01601f191660200182016040528015610cf7576020820181803683370190505b509050600360fc1b81600081518110610d1257610d126110ca565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610d4157610d416110ca565b60200101906001600160f81b031916908160001a9053506000610d6584600261109d565b610d7090600161101b565b90505b6001811115610de8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610da457610da46110ca565b1a60f81b828281518110610dba57610dba6110ca565b60200101906001600160f81b031916908160001a90535060049490941c93610de1816110e0565b9050610d73565b508315610e375760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610494565b9392505050565b600060208284031215610e5057600080fd5b81356001600160e01b031981168114610e3757600080fd5b60005b83811015610e83578181015183820152602001610e6b565b50506000910152565b6020815260008251806020840152610eab816040850160208701610e68565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610ed657600080fd5b919050565b60008060408385031215610eee57600080fd5b610ef783610ebf565b946020939093013593505050565b600080600060608486031215610f1a57600080fd5b610f2384610ebf565b9250610f3160208501610ebf565b9150604084013590509250925092565b600060208284031215610f5357600080fd5b5035919050565b60008060408385031215610f6d57600080fd5b82359150610f7d60208401610ebf565b90509250929050565b600060208284031215610f9857600080fd5b610e3782610ebf565b60008060408385031215610fb457600080fd5b610fbd83610ebf565b9150610f7d60208401610ebf565b600181811c90821680610fdf57607f821691505b602082108103610fff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031e5761031e611005565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611060816017850160208801610e68565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611091816028840160208801610e68565b01602801949350505050565b808202811582820484141761031e5761031e611005565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816110ef576110ef611005565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fc578078d218ead7b7f51182793718aa29973745fadd0b5d00a65841312f27dc64736f6c634300081800330000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a760000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a76
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011d5760003560e01c806301ffc9a71461012257806306fdde031461014a578063095ea7b31461015f57806318160ddd1461017257806323b872dd14610184578063248a9ca3146101975780632f2ff15d146101aa578063313ce567146101bf57806336568abe146101ce57806339509351146101e157806340c10f19146101f457806342966c681461020757806370a082311461021a57806379cc67901461024357806391d148541461025657806395d89b41146102695780639dc29fac14610271578063a217fddf14610284578063a457c2d71461028c578063a9059cbb1461029f578063d5391393146102b2578063d547741f146102c7578063dd62ed3e146102da575b600080fd5b610135610130366004610e3e565b6102ed565b60405190151581526020015b60405180910390f35b610152610324565b6040516101419190610e8c565b61013561016d366004610edb565b6103b6565b6002545b604051908152602001610141565b610135610192366004610f05565b6103ce565b6101766101a5366004610f41565b6103f2565b6101bd6101b8366004610f5a565b610407565b005b60405160128152602001610141565b6101bd6101dc366004610f5a565b610428565b6101356101ef366004610edb565b6104ab565b6101bd610202366004610edb565b6104cd565b6101bd610215366004610f41565b6104ef565b610176610228366004610f86565b6001600160a01b031660009081526020819052604090205490565b6101bd610251366004610edb565b6104fc565b610135610264366004610f5a565b610511565b61015261053c565b6101bd61027f366004610edb565b61054b565b610176600081565b61013561029a366004610edb565b61056d565b6101356102ad366004610edb565b6105e8565b6101766000805160206110f883398151915281565b6101bd6102d5366004610f5a565b6105f6565b6101766102e8366004610fa1565b610612565b60006001600160e01b03198216637965db0b60e01b148061031e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461033390610fcb565b80601f016020809104026020016040519081016040528092919081815260200182805461035f90610fcb565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b6000336103c481858561063d565b5060019392505050565b6000336103dc858285610761565b6103e78585856107db565b506001949350505050565b60009081526005602052604090206001015490565b610410826103f2565b6104198161096d565b6104238383610977565b505050565b6001600160a01b038116331461049d5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6104a782826109fd565b5050565b6000336103c48185856104be8383610612565b6104c8919061101b565b61063d565b6000805160206110f88339815191526104e58161096d565b6104238383610a64565b6104f93382610b11565b50565b610507823383610761565b6104a78282610b11565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461033390610fcb565b6000805160206110f88339815191526105638161096d565b6104238383610b11565b6000338161057b8286610612565b9050838110156105db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610494565b6103e7828686840361063d565b6000336103c48185856107db565b6105ff826103f2565b6106088161096d565b61042383836109fd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661069f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610494565b6001600160a01b0382166107005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610494565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076d8484610612565b905060001981146107d557818110156107c85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b6107d5848484840361063d565b50505050565b6001600160a01b03831661083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610494565b6001600160a01b0382166108a15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610494565b6001600160a01b038316600090815260208190526040902054818110156109195760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610494565b6001600160a01b0384811660008181526020818152604080832087870390559387168083529184902080548701905592518581529092600080516020611118833981519152910160405180910390a36107d5565b6104f98133610c31565b6109818282610511565b6104a75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556109b93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610a078282610511565b156104a75760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610494565b8060026000828254610acc919061101b565b90915550506001600160a01b03821660008181526020818152604080832080548601905551848152600080516020611118833981519152910160405180910390a35050565b6001600160a01b038216610b715760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610494565b6001600160a01b03821660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610494565b6001600160a01b038316600081815260208181526040808320868603905560028054879003905551858152919291600080516020611118833981519152910160405180910390a3505050565b610c3b8282610511565b6104a757610c4881610c8a565b610c53836020610c9c565b604051602001610c6492919061102e565b60408051601f198184030181529082905262461bcd60e51b825261049491600401610e8c565b606061031e6001600160a01b03831660145b60606000610cab83600261109d565b610cb690600261101b565b6001600160401b03811115610ccd57610ccd6110b4565b6040519080825280601f01601f191660200182016040528015610cf7576020820181803683370190505b509050600360fc1b81600081518110610d1257610d126110ca565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610d4157610d416110ca565b60200101906001600160f81b031916908160001a9053506000610d6584600261109d565b610d7090600161101b565b90505b6001811115610de8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610da457610da46110ca565b1a60f81b828281518110610dba57610dba6110ca565b60200101906001600160f81b031916908160001a90535060049490941c93610de1816110e0565b9050610d73565b508315610e375760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610494565b9392505050565b600060208284031215610e5057600080fd5b81356001600160e01b031981168114610e3757600080fd5b60005b83811015610e83578181015183820152602001610e6b565b50506000910152565b6020815260008251806020840152610eab816040850160208701610e68565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610ed657600080fd5b919050565b60008060408385031215610eee57600080fd5b610ef783610ebf565b946020939093013593505050565b600080600060608486031215610f1a57600080fd5b610f2384610ebf565b9250610f3160208501610ebf565b9150604084013590509250925092565b600060208284031215610f5357600080fd5b5035919050565b60008060408385031215610f6d57600080fd5b82359150610f7d60208401610ebf565b90509250929050565b600060208284031215610f9857600080fd5b610e3782610ebf565b60008060408385031215610fb457600080fd5b610fbd83610ebf565b9150610f7d60208401610ebf565b600181811c90821680610fdf57607f821691505b602082108103610fff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031e5761031e611005565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351611060816017850160208801610e68565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611091816028840160208801610e68565b01602801949350505050565b808202811582820484141761031e5761031e611005565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816110ef576110ef611005565b50600019019056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220fc578078d218ead7b7f51182793718aa29973745fadd0b5d00a65841312f27dc64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a760000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a76
-----Decoded View---------------
Arg [0] : defaultAdmin (address): 0x7eD6FD046ef71e2A71092D1597Bcebe578A57a76
Arg [1] : minter (address): 0x7eD6FD046ef71e2A71092D1597Bcebe578A57a76
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a76
Arg [1] : 0000000000000000000000007ed6fd046ef71e2a71092d1597bcebe578a57a76
[ 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.