Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
81 PEPEGREMLINS
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PEPEGREMLINSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pepegremlins
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 Pepegremlins /// @author jpegmint.xyz import "./GremlinsCollectible.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 Pepegremlins is GremlinsCollectible { constructor(address logic) GremlinsCollectible(logic, "Pepegremlins", "PEPEGREMLINS", 100) {} }
// 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 GremlinsCollectible is GremlinsERC721Proxy { // Base Roles bytes32 private constant _AIRDROP_ADMIN_ROLE = keccak256("AIRDROP_ADMIN_ROLE"); // Max planned supply uint16 public immutable TOKEN_MAX_SUPPLY; // App storage structure struct AppStorage { uint16 totalSupply; } // Constructor constructor(address baseContract, string memory name_, string memory symbol_, uint16 tokenMaxSupply) GremlinsERC721Proxy(baseContract, name_, symbol_) { TOKEN_MAX_SUPPLY = tokenMaxSupply; } /** * @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, "#"); uint256 nextTokenId = totalSupply() + 1; _appStorage().totalSupply += uint16(wallets.length); for (uint8 i = 0; i < wallets.length; i++) { bytes memory data = abi.encodeWithSignature("mint(address,uint256,string)", wallets[i], nextTokenId++, ""); 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 (last updated v4.5.0) (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 internal 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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
60a06040523480156200001157600080fd5b5060405162000f1038038062000f108339810160408190526200003491620002e9565b806040518060400160405280600c81526020016b506570656772656d6c696e7360a01b8152506040518060400160405280600c81526020016b504550454752454d4c494e5360a01b815250606483838382620000ad60008051602062000ec983398151915260001b6200015660201b620006421760201c565b80546001600160a01b0319166001600160a01b0392909216919091179055604051600090620000e3908490849060240162000375565b60408051601f198184030181529190526020810180516001600160e01b0390811663266c45bb60e11b17909152909150620001369062000124906200015916565b826200019260201b620006451760201c565b505050505060f01b6001600160f01b03191660805250620003da92505050565b90565b60006200018360008051602062000ec983398151915260001b6200015660201b620006421760201c565b546001600160a01b0316919050565b6060620001ba838360405180606001604052806027815260200162000ee960279139620001c1565b9392505050565b60606001600160a01b0384163b6200022f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084015b60405180910390fd5b600080856001600160a01b0316856040516200024c919062000342565b600060405180830381855af49150503d806000811462000289576040519150601f19603f3d011682016040523d82523d6000602084013e6200028e565b606091505b509092509050620002a1828286620002ab565b9695505050505050565b60608315620002bc575081620001ba565b825115620002cd5782518084602001fd5b8160405162461bcd60e51b815260040162000226919062000360565b600060208284031215620002fc57600080fd5b81516001600160a01b0381168114620001ba57600080fd5b600081518084526200032e816020860160208601620003a7565b601f01601f19169290920160200192915050565b6000825162000356818460208701620003a7565b9190910192915050565b602081526000620001ba602083018462000314565b6040815260006200038a604083018562000314565b82810360208401526200039e818562000314565b95945050505050565b60005b83811015620003c4578181015183820152602001620003aa565b83811115620003d4576000848401525b50505050565b60805160f01c610aca620003ff6000396000818160d401526103aa0152610aca6000f3fe60806040526004361061004e5760003560e01c806318160ddd14610065578063729ad39e1461008d5780637ecc2b56146100ad5780638ee2c4b8146100c2578063be464464146101095761005d565b3661005d5761005b610139565b005b61005b610139565b34801561007157600080fd5b5061007a610153565b6040519081526020015b60405180910390f35b34801561009957600080fd5b5061005b6100a8366004610875565b610167565b3480156100b957600080fd5b5061007a610397565b3480156100ce57600080fd5b506100f67f000000000000000000000000000000000000000000000000000000000000000081565b60405161ffff9091168152602001610084565b34801561011557600080fd5b5061012961012436600461090c565b6103d4565b6040519015158152602001610084565b610141610671565b61015161014c6106b6565b6106e4565b565b600061015d610708565b5461ffff16919050565b61016f6106b6565b604051632474521560e21b81527f786fcfa0099ab9aba15d4b2ccc7ffa9994e7c522c9b340b95e584749e47fcfb960048201523360248201526001600160a01b0391909116906391d148549060440160206040518083038186803b1580156101d657600080fd5b505afa1580156101ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020e91906108ea565b6102445760405162461bcd60e51b815260206004820152600260248201526110a960f11b60448201526064015b60405180910390fd5b8061024d610397565b101561027f5760405162461bcd60e51b81526020600482015260016024820152602360f81b604482015260640161023b565b6000610289610153565b6102949060016109ab565b90508161029f610708565b80546000906102b390849061ffff16610985565b92506101000a81548161ffff021916908361ffff16021790555060005b60ff811683111561039157600084848360ff168181106102f2576102f2610a57565b9050602002016020810190610307919061084c565b8361031181610a06565b6040516001600160a01b03909316602484015260448301919091526060606483015260006084830152935060a40160408051601f198184030181529190526020810180516001600160e01b03166334ff261960e21b179052905061037c6103766106b6565b82610645565b5050808061038990610a21565b9150506102d0565b50505050565b60006103a1610153565b6103cf9061ffff7f0000000000000000000000000000000000000000000000000000000000000000166109c3565b905090565b60006370a0823160e01b6001600160e01b03198316148061040557506331a9108f60e11b6001600160e01b03198316145b806104205750632142170760e11b6001600160e01b03198316145b8061043b5750635c46a7ef60e11b6001600160e01b03198316145b8061045657506323b872dd60e01b6001600160e01b03198316145b80610471575063095ea7b360e01b6001600160e01b03198316145b8061048c575063a22cb46560e01b6001600160e01b03198316145b806104a7575063020604bf60e21b6001600160e01b03198316145b806104c2575063e985e9c560e01b6001600160e01b03198316145b806104dd57506306fdde0360e01b6001600160e01b03198316145b806104f857506395d89b4160e01b6001600160e01b03198316145b80610513575063c87b56dd60e01b6001600160e01b03198316145b8061052e5750630588253160e21b6001600160e01b03198316145b806105495750636c0360eb60e01b6001600160e01b03198316145b8061056457506355f804b360e01b6001600160e01b03198316145b8061057f5750630852cd8d60e31b6001600160e01b03198316145b8061059a5750638da5cb5b60e01b6001600160e01b03198316145b806105b557506338a80c5360e11b6001600160e01b03198316145b806105d0575063f2fde38b60e01b6001600160e01b03198316145b806105eb5750635d9dd7eb60e11b6001600160e01b03198316145b80610606575063152a902d60e11b6001600160e01b03198316145b806106215750638c7ea24b60e01b6001600160e01b03198316145b8061063c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b90565b606061066a8383604051806060016040528060278152602001610a6e60279139610736565b9392505050565b6106866000356001600160e01b0319166103d4565b6101515760405162461bcd60e51b81526020600482015260016024820152603f60f81b604482015260640161023b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e808015610703573d6000f35b3d6000fd5b60008061063c60017f47dc25f21c7793543edaeb1ef19d41726ddbada967ae9a7980b9bd8a45228a5e6109c3565b60606001600160a01b0384163b61079e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161023b565b600080856001600160a01b0316856040516107b99190610936565b600060405180830381855af49150503d80600081146107f4576040519150601f19603f3d011682016040523d82523d6000602084013e6107f9565b606091505b5091509150610809828286610813565b9695505050505050565b6060831561082257508161066a565b8251156108325782518084602001fd5b8160405162461bcd60e51b815260040161023b9190610952565b60006020828403121561085e57600080fd5b81356001600160a01b038116811461066a57600080fd5b6000806020838503121561088857600080fd5b823567ffffffffffffffff808211156108a057600080fd5b818501915085601f8301126108b457600080fd5b8135818111156108c357600080fd5b8660208260051b85010111156108d857600080fd5b60209290920196919550909350505050565b6000602082840312156108fc57600080fd5b8151801515811461066a57600080fd5b60006020828403121561091e57600080fd5b81356001600160e01b03198116811461066a57600080fd5b600082516109488184602087016109da565b9190910192915050565b60208152600082518060208401526109718160408501602087016109da565b601f01601f19169190910160400192915050565b600061ffff8083168185168083038211156109a2576109a2610a41565b01949350505050565b600082198211156109be576109be610a41565b500190565b6000828210156109d5576109d5610a41565b500390565b60005b838110156109f55781810151838201526020016109dd565b838111156103915750506000910152565b6000600019821415610a1a57610a1a610a41565b5060010190565b600060ff821660ff811415610a3857610a38610a41565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220e12028d70dd96e8695bbb5a0682d6f42fca5881f7dbcd02fab50748a942ef9e964736f6c63430008070033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000001b0a83bc73a8c82128a88226994adb616aee1a35
Deployed Bytecode
0x60806040526004361061004e5760003560e01c806318160ddd14610065578063729ad39e1461008d5780637ecc2b56146100ad5780638ee2c4b8146100c2578063be464464146101095761005d565b3661005d5761005b610139565b005b61005b610139565b34801561007157600080fd5b5061007a610153565b6040519081526020015b60405180910390f35b34801561009957600080fd5b5061005b6100a8366004610875565b610167565b3480156100b957600080fd5b5061007a610397565b3480156100ce57600080fd5b506100f67f000000000000000000000000000000000000000000000000000000000000006481565b60405161ffff9091168152602001610084565b34801561011557600080fd5b5061012961012436600461090c565b6103d4565b6040519015158152602001610084565b610141610671565b61015161014c6106b6565b6106e4565b565b600061015d610708565b5461ffff16919050565b61016f6106b6565b604051632474521560e21b81527f786fcfa0099ab9aba15d4b2ccc7ffa9994e7c522c9b340b95e584749e47fcfb960048201523360248201526001600160a01b0391909116906391d148549060440160206040518083038186803b1580156101d657600080fd5b505afa1580156101ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061020e91906108ea565b6102445760405162461bcd60e51b815260206004820152600260248201526110a960f11b60448201526064015b60405180910390fd5b8061024d610397565b101561027f5760405162461bcd60e51b81526020600482015260016024820152602360f81b604482015260640161023b565b6000610289610153565b6102949060016109ab565b90508161029f610708565b80546000906102b390849061ffff16610985565b92506101000a81548161ffff021916908361ffff16021790555060005b60ff811683111561039157600084848360ff168181106102f2576102f2610a57565b9050602002016020810190610307919061084c565b8361031181610a06565b6040516001600160a01b03909316602484015260448301919091526060606483015260006084830152935060a40160408051601f198184030181529190526020810180516001600160e01b03166334ff261960e21b179052905061037c6103766106b6565b82610645565b5050808061038990610a21565b9150506102d0565b50505050565b60006103a1610153565b6103cf9061ffff7f0000000000000000000000000000000000000000000000000000000000000064166109c3565b905090565b60006370a0823160e01b6001600160e01b03198316148061040557506331a9108f60e11b6001600160e01b03198316145b806104205750632142170760e11b6001600160e01b03198316145b8061043b5750635c46a7ef60e11b6001600160e01b03198316145b8061045657506323b872dd60e01b6001600160e01b03198316145b80610471575063095ea7b360e01b6001600160e01b03198316145b8061048c575063a22cb46560e01b6001600160e01b03198316145b806104a7575063020604bf60e21b6001600160e01b03198316145b806104c2575063e985e9c560e01b6001600160e01b03198316145b806104dd57506306fdde0360e01b6001600160e01b03198316145b806104f857506395d89b4160e01b6001600160e01b03198316145b80610513575063c87b56dd60e01b6001600160e01b03198316145b8061052e5750630588253160e21b6001600160e01b03198316145b806105495750636c0360eb60e01b6001600160e01b03198316145b8061056457506355f804b360e01b6001600160e01b03198316145b8061057f5750630852cd8d60e31b6001600160e01b03198316145b8061059a5750638da5cb5b60e01b6001600160e01b03198316145b806105b557506338a80c5360e11b6001600160e01b03198316145b806105d0575063f2fde38b60e01b6001600160e01b03198316145b806105eb5750635d9dd7eb60e11b6001600160e01b03198316145b80610606575063152a902d60e11b6001600160e01b03198316145b806106215750638c7ea24b60e01b6001600160e01b03198316145b8061063c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b90565b606061066a8383604051806060016040528060278152602001610a6e60279139610736565b9392505050565b6106866000356001600160e01b0319166103d4565b6101515760405162461bcd60e51b81526020600482015260016024820152603f60f81b604482015260640161023b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e808015610703573d6000f35b3d6000fd5b60008061063c60017f47dc25f21c7793543edaeb1ef19d41726ddbada967ae9a7980b9bd8a45228a5e6109c3565b60606001600160a01b0384163b61079e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161023b565b600080856001600160a01b0316856040516107b99190610936565b600060405180830381855af49150503d80600081146107f4576040519150601f19603f3d011682016040523d82523d6000602084013e6107f9565b606091505b5091509150610809828286610813565b9695505050505050565b6060831561082257508161066a565b8251156108325782518084602001fd5b8160405162461bcd60e51b815260040161023b9190610952565b60006020828403121561085e57600080fd5b81356001600160a01b038116811461066a57600080fd5b6000806020838503121561088857600080fd5b823567ffffffffffffffff808211156108a057600080fd5b818501915085601f8301126108b457600080fd5b8135818111156108c357600080fd5b8660208260051b85010111156108d857600080fd5b60209290920196919550909350505050565b6000602082840312156108fc57600080fd5b8151801515811461066a57600080fd5b60006020828403121561091e57600080fd5b81356001600160e01b03198116811461066a57600080fd5b600082516109488184602087016109da565b9190910192915050565b60208152600082518060208401526109718160408501602087016109da565b601f01601f19169190910160400192915050565b600061ffff8083168185168083038211156109a2576109a2610a41565b01949350505050565b600082198211156109be576109be610a41565b500190565b6000828210156109d5576109d5610a41565b500390565b60005b838110156109f55781810151838201526020016109dd565b838111156103915750506000910152565b6000600019821415610a1a57610a1a610a41565b5060010190565b600060ff821660ff811415610a3857610a38610a41565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220e12028d70dd96e8695bbb5a0682d6f42fca5881f7dbcd02fab50748a942ef9e964736f6c63430008070033
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.