Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
79 GIZMO
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GIZMOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GizmosDayOut
Compiler Version
v0.8.7+commit.e28d00a7
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.7; /// @title GizmosDayOut /// @author jpegmint.xyz import "./GremlinsEdition.sol"; /**_____________________________________________________________________________ | _________________________________________________________________________ | | | | | | | +-+m | | | | ho/---:.-o-`:---:oh | | | | mh. .oddyNMNyddo. `yd | | | | s.`./oyhdNMMMMMMMNdhyo/.`.o | | | | h+:--/ohNMMMMy- -sMMMMMMMMMMMMMMMMMMMs- .yNMMMNho/--:+yN | | | | m-.+yhys/../hd:`:hNMMMMMMMMMMMMMMMMMMMMMNd/`-dh/../oyhy+.-d | | | | - `..-+ymmh/`` `yMMms--:+ymMMMMMNy+:--omMMh` ``:ymmy+-..` . | | | | hhs` ./..-smmo/yMMo.`-/+:`.sMMMy.`-++:`.+MMh/+dms:..:- shy | | | | o .NNh/``:-mMMM..dNdms` yMh `/mmNd.`NMMN-:.`/hmN- + | | | | N: +MMs. -mMMN +Md`.` /Mo .`hMo dMMN: .sMMo -N | | | | N: /mm/` hMMM/`hm. `hMd` .dh.:MMMm `:mN+ :m | | | | No`.sh/` hMMMNs::-``./yNMNh+.``-::sNMMMd :hs.`+N | | | | d/`.s/ +MMMMMMmdddNMssMssMNmddmNMMMMMo :s-`:d | | | | d. + `mMMMMMMMMNyys///syyNMMMMMMMMN. / `h | | | | d.` -NMMMMMMNNhyshdhsyhNNMMMMMMN: `.h | | | | Nyo/ -mMMMMMd/y/hNMMh/y/dMMMMMm: :oyN | | | | y.`sNMMMMd:`.:o:.`-hMMMMNy.`s | | | | /`.os/mMMdmo-omdMMN/os-`/m | | | | o.` .+hmNNNNNmh+.` .+d | | | | Nhhy/.`.....`.:shhN | | | | mdhhhdm | | | | _______ | | | | / ____(_)___ ____ ___ ____ _____ | | | | / / __/ /_ / / __ `__ \/ __ \/ ___/ | | | | / /_/ / / / /_/ / / / / / /_/ (__ ) | | | | \____/_/ /___/_/ /_/ /_/\____/____/ | | | | ____ ____ __ | | | | / __ \____ ___ __ / __ \__ __/ /_ | | | | / / / / __ `/ / / / / / / / / / / __/ | | | | / /_/ / /_/ / /_/ / / /_/ / /_/ / /_ | | | | /_____/\__,_/\__, / \____/\__,_/\__/ | | | | /____/ | | | | ________________________________________________________________________| | |______________________________________________________________________________*/ contract GizmosDayOut is GremlinsEdition { constructor(address logic) GremlinsEdition(logic, "GizmosDayOut", "GIZMO") {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /// @author jpegmint.xyz import "@jpegmint/contracts/gremlins/GremlinsERC721Proxy.sol"; import "@openzeppelin/contracts/utils/StorageSlot.sol"; import "@openzeppelin/contracts/access/IAccessControl.sol"; /* ██████╗ ██████╗ ███████╗███╗ ███╗██╗ ██╗███╗ ██╗███████╗ ██╔════╝ ██╔══██╗██╔════╝████╗ ████║██║ ██║████╗ ██║██╔════╝ ██║ ███╗██████╔╝█████╗ ██╔████╔██║██║ ██║██╔██╗ ██║███████╗ ██║ ██║██╔══██╗██╔══╝ ██║╚██╔╝██║██║ ██║██║╚██╗██║╚════██║ ╚██████╔╝██║ ██║███████╗██║ ╚═╝ ██║███████╗██║██║ ╚████║███████║ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝╚══════╝ ███████╗██████╗ ██╗████████╗██╗ ██████╗ ███╗ ██╗ ██╔════╝██╔══██╗██║╚══██╔══╝██║██╔═══██╗████╗ ██║ █████╗ ██║ ██║██║ ██║ ██║██║ ██║██╔██╗ ██║ ██╔══╝ ██║ ██║██║ ██║ ██║██║ ██║██║╚██╗██║ ███████╗██████╔╝██║ ██║ ██║╚██████╔╝██║ ╚████║ ╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ */ contract GremlinsEdition is GremlinsERC721Proxy { // Base Roles bytes32 private constant _AIRDROP_ADMIN_ROLE = keccak256("AIRDROP_ADMIN_ROLE"); // Max planned supply uint16 public constant TOKEN_MAX_SUPPLY = 80; // App storage structure struct AppStorage { uint16 totalSupply; } // Constructor constructor(address baseContract, string memory name_, string memory symbol_) GremlinsERC721Proxy(baseContract, name_, symbol_) {} /** * @dev Gets app storage struct from defined storage slot. */ function _appStorage() internal pure returns(AppStorage storage app) { bytes32 storagePosition = bytes32(uint256(keccak256("app.storage")) - 1); assembly { app.slot := storagePosition } } /** * @dev Mints tokens to the specified wallets. */ function airdrop(address[] calldata wallets) public { require(IAccessControl(_implementation()).hasRole(_AIRDROP_ADMIN_ROLE, msg.sender), "!R"); require(availableSupply() > wallets.length, "#"); for (uint8 i = 0; i < wallets.length; i++) { _airdrop(wallets[i], totalSupply() + 1); } } /** * @dev Internal airdrop helper. */ function _airdrop(address to, uint256 tokenId) internal { _appStorage().totalSupply += 1; bytes memory data = abi.encodeWithSignature("mint(address,uint256,string)", to, tokenId, ""); Address.functionDelegateCall(_implementation(), data); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return _appStorage().totalSupply; } /** * @dev Helper function to pair with total supply. */ function availableSupply() public view returns (uint256) { return TOKEN_MAX_SUPPLY - totalSupply(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /// @author jpegmint.xyz import "@openzeppelin/contracts/proxy/Proxy.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/StorageSlot.sol"; /* ██████╗ ██████╗ ███████╗███╗ ███╗██╗ ██╗███╗ ██╗███████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗██╗ ██╗ ██╔════╝ ██╔══██╗██╔════╝████╗ ████║██║ ██║████╗ ██║██╔════╝ ██╔══██╗██╔══██╗██╔═══██╗╚██╗██╔╝╚██╗ ██╔╝ ██║ ███╗██████╔╝█████╗ ██╔████╔██║██║ ██║██╔██╗ ██║███████╗ ██████╔╝██████╔╝██║ ██║ ╚███╔╝ ╚████╔╝ ██║ ██║██╔══██╗██╔══╝ ██║╚██╔╝██║██║ ██║██║╚██╗██║╚════██║ ██╔═══╝ ██╔══██╗██║ ██║ ██╔██╗ ╚██╔╝ ╚██████╔╝██║ ██║███████╗██║ ╚═╝ ██║███████╗██║██║ ╚████║███████║ ██║ ██║ ██║╚██████╔╝██╔╝ ██╗ ██║ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ */ abstract contract GremlinsERC721Proxy is Proxy { /// Storage slot with the address of the gremlins contract bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; // ██████╗ ██████╗ ███╗ ██╗███████╗████████╗██████╗ ██╗ ██╗ ██████╗████████╗ ██████╗ ██████╗ // ██╔════╝██╔═══██╗████╗ ██║██╔════╝╚══██╔══╝██╔══██╗██║ ██║██╔════╝╚══██╔══╝██╔═══██╗██╔══██╗ // ██║ ██║ ██║██╔██╗ ██║███████╗ ██║ ██████╔╝██║ ██║██║ ██║ ██║ ██║██████╔╝ // ██║ ██║ ██║██║╚██╗██║╚════██║ ██║ ██╔══██╗██║ ██║██║ ██║ ██║ ██║██╔══██╗ // ╚██████╗╚██████╔╝██║ ╚████║███████║ ██║ ██║ ██║╚██████╔╝╚██████╗ ██║ ╚██████╔╝██║ ██║ // ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ /// Constructor constructor(address logic, string memory name_, string memory symbol_) { // Store logic address StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = logic; // Initialize contract bytes memory data = abi.encodeWithSignature("initialize(string,string)", name_, symbol_); Address.functionDelegateCall(_implementation(), data); } // ██████╗ ██████╗ ██████╗ ██╗ ██╗██╗ ██╗ // ██╔══██╗██╔══██╗██╔═══██╗╚██╗██╔╝╚██╗ ██╔╝ // ██████╔╝██████╔╝██║ ██║ ╚███╔╝ ╚████╔╝ // ██╔═══╝ ██╔══██╗██║ ██║ ██╔██╗ ╚██╔╝ // ██║ ██║ ██║╚██████╔╝██╔╝ ██╗ ██║ // ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ /** * @dev Returns the stored implementation address. */ function _implementation() internal view virtual override returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Check if function is supported via beforeFallback hook. */ function _beforeFallback() internal virtual override { require(supportsFunction(msg.sig), "?"); super._beforeFallback(); } /** * @dev Returns whether function selector is in known set of proxied functions. */ function supportsFunction(bytes4 functionId) public pure returns(bool) { return // ERC721 Functions functionId == 0x70a08231 || // _FUNCTION_ID_BALANCE_OF = bytes4(keccak256("balanceOf(address)")) functionId == 0x6352211e || // _FUNCTION_ID_OWNER_OF = bytes4(keccak256("ownerOf(uint256)")) functionId == 0x42842e0e || // _FUNCTION_ID_SAFE_TRANSFER_FROM = bytes4(keccak256("safeTransferFrom(address,address,uint256)")) functionId == 0xb88d4fde || // _FUNCTION_ID_SAFE_TRANSFER_FROM_DATA = bytes4(keccak256("safeTransferFrom(address,address,uint256,bytes)")) functionId == 0x23b872dd || // _FUNCTION_ID_TRANSFER_FROM = bytes4(keccak256("transferFrom(address,address,uint256)")) functionId == 0x095ea7b3 || // _FUNCTION_ID_APPROVE = bytes4(keccak256("approve(address,uint256)")) functionId == 0xa22cb465 || // _FUNCTION_ID_SET_APPROVAL_FOR_ALL = bytes4(keccak256("setApprovalForAll(address,bool)")) functionId == 0x081812fc || // _FUNCTION_ID_GET_APPROVED = bytes4(keccak256("getApproved(uint256)")) functionId == 0xe985e9c5 || // _FUNCTION_ID_IS_APPROVED_FOR_ALL = bytes4(keccak256("isApprovedForAll(address,address)")) // ERC721Metadata Functions functionId == 0x06fdde03 || // _FUNCTION_ID_NAME = bytes4(keccak256("name()")) functionId == 0x95d89b41 || // _FUNCTION_ID_SYMBOL = bytes4(keccak256("symbol()")) functionId == 0xc87b56dd || // _FUNCTION_ID_TOKEN_URI = bytes4(keccak256("tokenURI(uint256)")) functionId == 0x162094c4 || // _FUNCTION_ID_SET_TOKEN_URI = bytes4(keccak256("setTokenURI(uint256,string)")) functionId == 0x6c0360eb || // _FUNCTION_ID_BASE_URI = bytes4(keccak256("baseURI()")) functionId == 0x55f804b3 || // _FUNCTION_ID_SET_BASE_URI = bytes4(keccak256("setBaseURI(string)")) // ERC721Burnable Function functionId == 0x42966c68 || // _FUNCTION_ID_BURN = bytes4(keccak256("burn(uint256)")) // Ownable Functions functionId == 0x8da5cb5b || // _FUNCTION_ID_OWNER = bytes4(keccak256("owner()")) functionId == 0x715018a6 || // _FUNCTION_ID_RENOUNCE_OWNERSHIP = bytes4(keccak256("renounceOwnership()")) functionId == 0xf2fde38b || // _FUNCTION_ID_TRANSFER_OWNERSHIP = bytes4(keccak256("transferOwnership(address)")) // Royalties functionId == 0xbb3bafd6 || // _FUNCTION_ID_GET_ROYALTIES = bytes4(keccak256("getRoyalties(uint256)")) functionId == 0x2a55205a || // _FUNCTION_ID_ROYALTY_INFO = bytes4(keccak256("royaltyInfo(uint256,uint256)")) functionId == 0x8c7ea24b || // _FUNCTION_ID_SET_ROYALTIES = bytes4(keccak256("setRoyalties(address,uint256)")) // ERC165 Functions functionId == 0x01ffc9a7 // _FUNCTION_ID_SUPPORTS_INTERFACE = bytes4(keccak256("supportsInterface(bytes4)")) ; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
// 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); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"logic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"TOKEN_MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"functionId","type":"bytes4"}],"name":"supportsFunction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000e7638038062000e768339810160408190526200003491620002c6565b806040518060400160405280600c81526020016b11da5e9b5bdcd1185e53dd5d60a21b8152506040518060400160405280600581526020016447495a4d4f60d81b81525082828282620000a460008051602062000e2f83398151915260001b6200013c60201b620005511760201c565b80546001600160a01b0319166001600160a01b0392909216919091179055604051600090620000da908490849060240162000352565b60408051601f198184030181529190526020810180516001600160e01b0390811663266c45bb60e11b179091529091506200012d906200011b906200013f16565b826200017860201b620005541760201c565b505050505050505050620003b7565b90565b60006200016960008051602062000e2f83398151915260001b6200013c60201b620005511760201c565b546001600160a01b0316919050565b6060620001a0838360405180606001604052806027815260200162000e4f60279139620001a7565b9392505050565b6060833b6200020c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084015b60405180910390fd5b600080856001600160a01b0316856040516200022991906200031f565b600060405180830381855af49150503d806000811462000266576040519150601f19603f3d011682016040523d82523d6000602084013e6200026b565b606091505b5090925090506200027e82828662000288565b9695505050505050565b6060831562000299575081620001a0565b825115620002aa5782518084602001fd5b8160405162461bcd60e51b81526004016200020391906200033d565b600060208284031215620002d957600080fd5b81516001600160a01b0381168114620001a057600080fd5b600081518084526200030b81602086016020860162000384565b601f01601f19169290920160200192915050565b600082516200033381846020870162000384565b9190910192915050565b602081526000620001a06020830184620002f1565b604081526000620003676040830185620002f1565b82810360208401526200037b8185620002f1565b95945050505050565b60005b83811015620003a157818101518382015260200162000387565b83811115620003b1576000848401525b50505050565b610a6880620003c76000396000f3fe60806040526004361061004e5760003560e01c806318160ddd14610065578063729ad39e1461008d5780637ecc2b56146100ad5780638ee2c4b8146100c2578063be464464146100ea5761005d565b3661005d5761005b61011a565b005b61005b61011a565b34801561007157600080fd5b5061007a610134565b6040519081526020015b60405180910390f35b34801561009957600080fd5b5061005b6100a836600461082e565b610148565b3480156100b957600080fd5b5061007a6102c9565b3480156100ce57600080fd5b506100d7605081565b60405161ffff9091168152602001610084565b3480156100f657600080fd5b5061010a6101053660046108c5565b6102e3565b6040519015158152602001610084565b610122610580565b61013261012d6105c5565b6105f3565b565b600061013e610617565b5461ffff16919050565b6101506105c5565b604051632474521560e21b81527f786fcfa0099ab9aba15d4b2ccc7ffa9994e7c522c9b340b95e584749e47fcfb960048201523360248201526001600160a01b0391909116906391d148549060440160206040518083038186803b1580156101b757600080fd5b505afa1580156101cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ef91906108a3565b6102255760405162461bcd60e51b815260206004820152600260248201526110a960f11b60448201526064015b60405180910390fd5b8061022e6102c9565b1161025f5760405162461bcd60e51b81526020600482015260016024820152602360f81b604482015260640161021c565b60005b60ff81168211156102c4576102b283838360ff16818110610285576102856109f5565b905060200201602081019061029a9190610805565b6102a2610134565b6102ad906001610964565b610645565b806102bc816109bf565b915050610262565b505050565b60006102d3610134565b6102de90605061097c565b905090565b60006370a0823160e01b6001600160e01b03198316148061031457506331a9108f60e11b6001600160e01b03198316145b8061032f5750632142170760e11b6001600160e01b03198316145b8061034a5750635c46a7ef60e11b6001600160e01b03198316145b8061036557506323b872dd60e01b6001600160e01b03198316145b80610380575063095ea7b360e01b6001600160e01b03198316145b8061039b575063a22cb46560e01b6001600160e01b03198316145b806103b6575063020604bf60e21b6001600160e01b03198316145b806103d1575063e985e9c560e01b6001600160e01b03198316145b806103ec57506306fdde0360e01b6001600160e01b03198316145b8061040757506395d89b4160e01b6001600160e01b03198316145b80610422575063c87b56dd60e01b6001600160e01b03198316145b8061043d5750630588253160e21b6001600160e01b03198316145b806104585750636c0360eb60e01b6001600160e01b03198316145b8061047357506355f804b360e01b6001600160e01b03198316145b8061048e5750630852cd8d60e31b6001600160e01b03198316145b806104a95750638da5cb5b60e01b6001600160e01b03198316145b806104c457506338a80c5360e11b6001600160e01b03198316145b806104df575063f2fde38b60e01b6001600160e01b03198316145b806104fa5750635d9dd7eb60e11b6001600160e01b03198316145b80610515575063152a902d60e11b6001600160e01b03198316145b806105305750638c7ea24b60e01b6001600160e01b03198316145b8061054b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b90565b60606105798383604051806060016040528060278152602001610a0c602791396106f8565b9392505050565b6105956000356001600160e01b0319166102e3565b6101325760405162461bcd60e51b81526020600482015260016024820152603f60f81b604482015260640161021c565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e808015610612573d6000f35b3d6000fd5b60008061054b60017f47dc25f21c7793543edaeb1ef19d41726ddbada967ae9a7980b9bd8a45228a5e61097c565b600161064f610617565b805460009061066390849061ffff1661093e565b92506101000a81548161ffff021916908361ffff160217905550600082826040516024016106b59291906001600160a01b03929092168252602082015260606040820181905260009082015260800190565b60408051601f198184030181529190526020810180516001600160e01b03166334ff261960e21b17905290506106f26106ec6105c5565b82610554565b50505050565b6060833b6107575760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161021c565b600080856001600160a01b03168560405161077291906108ef565b600060405180830381855af49150503d80600081146107ad576040519150601f19603f3d011682016040523d82523d6000602084013e6107b2565b606091505b50915091506107c28282866107cc565b9695505050505050565b606083156107db575081610579565b8251156107eb5782518084602001fd5b8160405162461bcd60e51b815260040161021c919061090b565b60006020828403121561081757600080fd5b81356001600160a01b038116811461057957600080fd5b6000806020838503121561084157600080fd5b823567ffffffffffffffff8082111561085957600080fd5b818501915085601f83011261086d57600080fd5b81358181111561087c57600080fd5b8660208260051b850101111561089157600080fd5b60209290920196919550909350505050565b6000602082840312156108b557600080fd5b8151801515811461057957600080fd5b6000602082840312156108d757600080fd5b81356001600160e01b03198116811461057957600080fd5b60008251610901818460208701610993565b9190910192915050565b602081526000825180602084015261092a816040850160208701610993565b601f01601f19169190910160400192915050565b600061ffff80831681851680830382111561095b5761095b6109df565b01949350505050565b60008219821115610977576109776109df565b500190565b60008282101561098e5761098e6109df565b500390565b60005b838110156109ae578181015183820152602001610996565b838111156106f25750506000910152565b600060ff821660ff8114156109d6576109d66109df565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212200e39d86c464bc61463cf896cd4c3b93af6749d3dc75e77f98a1571eec7f3b3df64736f6c63430008070033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000001b0a83bc73a8c82128a88226994adb616aee1a35
Deployed Bytecode
0x60806040526004361061004e5760003560e01c806318160ddd14610065578063729ad39e1461008d5780637ecc2b56146100ad5780638ee2c4b8146100c2578063be464464146100ea5761005d565b3661005d5761005b61011a565b005b61005b61011a565b34801561007157600080fd5b5061007a610134565b6040519081526020015b60405180910390f35b34801561009957600080fd5b5061005b6100a836600461082e565b610148565b3480156100b957600080fd5b5061007a6102c9565b3480156100ce57600080fd5b506100d7605081565b60405161ffff9091168152602001610084565b3480156100f657600080fd5b5061010a6101053660046108c5565b6102e3565b6040519015158152602001610084565b610122610580565b61013261012d6105c5565b6105f3565b565b600061013e610617565b5461ffff16919050565b6101506105c5565b604051632474521560e21b81527f786fcfa0099ab9aba15d4b2ccc7ffa9994e7c522c9b340b95e584749e47fcfb960048201523360248201526001600160a01b0391909116906391d148549060440160206040518083038186803b1580156101b757600080fd5b505afa1580156101cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ef91906108a3565b6102255760405162461bcd60e51b815260206004820152600260248201526110a960f11b60448201526064015b60405180910390fd5b8061022e6102c9565b1161025f5760405162461bcd60e51b81526020600482015260016024820152602360f81b604482015260640161021c565b60005b60ff81168211156102c4576102b283838360ff16818110610285576102856109f5565b905060200201602081019061029a9190610805565b6102a2610134565b6102ad906001610964565b610645565b806102bc816109bf565b915050610262565b505050565b60006102d3610134565b6102de90605061097c565b905090565b60006370a0823160e01b6001600160e01b03198316148061031457506331a9108f60e11b6001600160e01b03198316145b8061032f5750632142170760e11b6001600160e01b03198316145b8061034a5750635c46a7ef60e11b6001600160e01b03198316145b8061036557506323b872dd60e01b6001600160e01b03198316145b80610380575063095ea7b360e01b6001600160e01b03198316145b8061039b575063a22cb46560e01b6001600160e01b03198316145b806103b6575063020604bf60e21b6001600160e01b03198316145b806103d1575063e985e9c560e01b6001600160e01b03198316145b806103ec57506306fdde0360e01b6001600160e01b03198316145b8061040757506395d89b4160e01b6001600160e01b03198316145b80610422575063c87b56dd60e01b6001600160e01b03198316145b8061043d5750630588253160e21b6001600160e01b03198316145b806104585750636c0360eb60e01b6001600160e01b03198316145b8061047357506355f804b360e01b6001600160e01b03198316145b8061048e5750630852cd8d60e31b6001600160e01b03198316145b806104a95750638da5cb5b60e01b6001600160e01b03198316145b806104c457506338a80c5360e11b6001600160e01b03198316145b806104df575063f2fde38b60e01b6001600160e01b03198316145b806104fa5750635d9dd7eb60e11b6001600160e01b03198316145b80610515575063152a902d60e11b6001600160e01b03198316145b806105305750638c7ea24b60e01b6001600160e01b03198316145b8061054b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b90565b60606105798383604051806060016040528060278152602001610a0c602791396106f8565b9392505050565b6105956000356001600160e01b0319166102e3565b6101325760405162461bcd60e51b81526020600482015260016024820152603f60f81b604482015260640161021c565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e808015610612573d6000f35b3d6000fd5b60008061054b60017f47dc25f21c7793543edaeb1ef19d41726ddbada967ae9a7980b9bd8a45228a5e61097c565b600161064f610617565b805460009061066390849061ffff1661093e565b92506101000a81548161ffff021916908361ffff160217905550600082826040516024016106b59291906001600160a01b03929092168252602082015260606040820181905260009082015260800190565b60408051601f198184030181529190526020810180516001600160e01b03166334ff261960e21b17905290506106f26106ec6105c5565b82610554565b50505050565b6060833b6107575760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161021c565b600080856001600160a01b03168560405161077291906108ef565b600060405180830381855af49150503d80600081146107ad576040519150601f19603f3d011682016040523d82523d6000602084013e6107b2565b606091505b50915091506107c28282866107cc565b9695505050505050565b606083156107db575081610579565b8251156107eb5782518084602001fd5b8160405162461bcd60e51b815260040161021c919061090b565b60006020828403121561081757600080fd5b81356001600160a01b038116811461057957600080fd5b6000806020838503121561084157600080fd5b823567ffffffffffffffff8082111561085957600080fd5b818501915085601f83011261086d57600080fd5b81358181111561087c57600080fd5b8660208260051b850101111561089157600080fd5b60209290920196919550909350505050565b6000602082840312156108b557600080fd5b8151801515811461057957600080fd5b6000602082840312156108d757600080fd5b81356001600160e01b03198116811461057957600080fd5b60008251610901818460208701610993565b9190910192915050565b602081526000825180602084015261092a816040850160208701610993565b601f01601f19169190910160400192915050565b600061ffff80831681851680830382111561095b5761095b6109df565b01949350505050565b60008219821115610977576109776109df565b500190565b60008282101561098e5761098e6109df565b500390565b60005b838110156109ae578181015183820152602001610996565b838111156106f25750506000910152565b600060ff821660ff8114156109d6576109d66109df565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212200e39d86c464bc61463cf896cd4c3b93af6749d3dc75e77f98a1571eec7f3b3df64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001b0a83bc73a8c82128a88226994adb616aee1a35
-----Decoded View---------------
Arg [0] : logic (address): 0x1B0a83Bc73A8c82128A88226994adB616Aee1A35
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b0a83bc73a8c82128a88226994adb616aee1a35
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.