Overview
APE Balance
APE Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
63977 | 120 days ago | Contract Creation | 0 APE |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DegenERC20
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * @title Ape Express * @notice Official smart contract for the APE EXPRESS project. * @dev More details at: https://ape.express/ */ // SPDX-License-Identifier: MIT pragma solidity =0.8.23; import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol"; import "contracts/libraries/Errors.sol"; /// @title DegenERC20 /// @notice This is a custom ERC20 token designed to work with the BondingCurve contract. /// @dev The contract is upgradeable, leveraging a Cloneable proxy pattern. It uses ERC20BurnableUpgradeable for burn functionality. contract DegenERC20 is ERC20BurnableUpgradeable { /// @notice Maximum total supply of the token (1 billion tokens, accounting for decimals). uint256 private constant MAX_TOTAL_SUPPLY = 1_000_000_000 ether; /// @notice Address of the DegenFactory contract responsible for deploying this token. address public immutable degenFactory; /// @notice Address of the NFT rewards contract associated with this token. address public immutable nftRewards; /// @notice Address of the BondingCurve contract that manages liquidity. address public bondingCurve; /// @notice Indicates whether the token has been officially launched. bool public hasLaunched; /// @dev Emitted when the token is successfully launched via the `launch` function. event Launched(); /** * @notice Constructor for initializing the DegenERC20 contract. * @param _degenFactory The address of the factory contract. * @param _nftRewards The address of the NFT rewards contract. */ constructor(address _degenFactory, address _nftRewards) { degenFactory = _degenFactory; nftRewards = _nftRewards; } /** * @notice Initializes the contract. Can only be called by the DegenFactory. * @param _bondingCurve Address of the BondingCurve contract. * @param name_ Token name. * @param symbol_ Token symbol. */ function initialize( address _bondingCurve, string memory name_, string memory symbol_ ) external initializer { if (_msgSender() != degenFactory) revert Errors.InvalidCaller(); bondingCurve = _bondingCurve; __ERC20_init(name_, symbol_); _mint(_bondingCurve, MAX_TOTAL_SUPPLY); } /// @notice Launches the token, enabling full functionality. /// @dev Can only be called by the BondingCurve contract. function launch() external { if (_msgSender() != bondingCurve) revert Errors.InvalidCaller(); hasLaunched = true; emit Launched(); } /** * @notice Transfers tokens with approval check. * @dev Overrides the ERC20 transferFrom to add custom logic for bonding curve and NFT rewards interactions. * @param _from Sender address. * @param _to Recipient address. * @param _value Amount to transfer. * @return bool Always returns true to support legacy contracts. */ function transferFrom( address _from, address _to, uint256 _value ) public override returns (bool) { // Tokens can be transferred freely after launch or by the NFT rewards contract. if (hasLaunched || _msgSender() == nftRewards) { return super.transferFrom(_from, _to, _value); } // Pre-launch, only the bonding curve can transfer tokens. if (_msgSender() != bondingCurve) revert Errors.InvalidCaller(); _transfer(_from, _to, _value); return true; } /** * @dev Internal function to handle updates during token transfers. * @param _from Sender address. * @param _to Recipient address. * @param _value Transfer amount. */ function _update(address _from, address _to, uint256 _value) internal override { if (!hasLaunched && !_isTransferAllowed(_from, _to)) revert Errors.Unavailable(); super._update(_from, _to, _value); } /** * @dev Determines if a transfer is allowed based on the sender and recipient. * @param _from Sender address. * @param _to Recipient address. * @return bool True if the transfer is allowed, false otherwise. */ function _isTransferAllowed(address _from, address _to) private view returns (bool) { if (_to == bondingCurve && _msgSender() == bondingCurve) return true; if (_from == bondingCurve && (!_isContract(_to) || _to == degenFactory)) return true; if (_from == address(0) && _to == bondingCurve) return true; if (_from == degenFactory && !_isContract(_to)) return true; if (_to == nftRewards && _msgSender() == nftRewards) return true; if (_from == nftRewards && !_isContract(_to)) return true; if (_to == address(0)) return true; return false; } /** * @dev Determines if an account is a smart contract address. * @param _account Address to check. * @return bool True if the address is a contract, false otherwise. */ function _isContract(address _account) private view returns (bool) { uint256 size; assembly { size := extcodesize(_account) } return size != 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {ContextUpgradeable} from "../../utils/ContextUpgradeable.sol"; import {IERC20Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol"; import {Initializable} from "../../proxy/utils/Initializable.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors { /// @custom:storage-location erc7201:openzeppelin.storage.ERC20 struct ERC20Storage { mapping(address account => uint256) _balances; mapping(address account => mapping(address spender => uint256)) _allowances; uint256 _totalSupply; string _name; string _symbol; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00; function _getERC20Storage() private pure returns (ERC20Storage storage $) { assembly { $.slot := ERC20StorageLocation } } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { ERC20Storage storage $ = _getERC20Storage(); $._name = name_; $._symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows $._totalSupply += value; } else { uint256 fromBalance = $._balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. $._balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. $._totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. $._balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } $._allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20Upgradeable} from "../ERC20Upgradeable.sol"; import {ContextUpgradeable} from "../../../utils/ContextUpgradeable.sol"; import {Initializable} from "../../../proxy/utils/Initializable.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 ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal onlyInitializing { } function __ERC20Burnable_init_unchained() internal onlyInitializing { } /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Unlicense pragma solidity =0.8.23; /// @notice A library that houses common errors. library Errors { error InvalidAddress(); error InvalidAddressAtIndex(uint256 index); error InvalidAmount(); error InvalidAmountAtIndex(uint256 index); error InvalidCaller(); error InvalidToken(address token); error InvalidListLength(uint256 provided, uint256 limit); error InvalidPayment(); error InvalidLimits(); error InsufficientAllowance(); error InsufficientBalance(); error UnsupportedFeature(); error NotInitialized(); error AlreadyInitialized(); error NothingToWithdraw(); error PrematureExecution(uint256 requiredTimestamp); error Unavailable(); }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "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":"_degenFactory","type":"address"},{"internalType":"address","name":"_nftRewards","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidCaller","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"Unavailable","type":"error"},{"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":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Launched","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"bondingCurve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"degenFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bondingCurve","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftRewards","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405161129838038061129883398101604081905261002f91610062565b6001600160a01b039182166080521660a052610095565b80516001600160a01b038116811461005d57600080fd5b919050565b6000806040838503121561007557600080fd5b61007e83610046565b915061008c60208401610046565b90509250929050565b60805160a0516111ad6100eb600039600081816101c60152818161043c01528181610b7f01528181610bbc0152610bf5015260008181610290015281816105a901528181610abe0152610b3201526111ad6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806363a2b3ab116100a257806395d89b411161007157806395d89b4114610270578063a9059cbb14610278578063c604a0881461028b578063dd62ed3e146102b2578063eff1d50e146102c557600080fd5b806363a2b3ab1461020057806370a082311461021457806379cc67901461024a578063906571471461025d57600080fd5b806323b872dd116100de57806323b872dd1461018c578063313ce5671461019f57806342966c68146101ae5780635ad9f993146101c157600080fd5b806301339c211461011057806306fdde031461011a578063095ea7b31461013857806318160ddd1461015b575b600080fd5b6101186102d8565b005b610122610348565b60405161012f9190610d9d565b60405180910390f35b61014b610146366004610e08565b61040b565b604051901515815260200161012f565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02545b60405190815260200161012f565b61014b61019a366004610e32565b610425565b6040516012815260200161012f565b6101186101bc366004610e6e565b6104c7565b6101e87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161012f565b60005461014b90600160a01b900460ff1681565b61017e610222366004610e87565b6001600160a01b03166000908152600080516020611158833981519152602052604090205490565b610118610258366004610e08565b6104d4565b61011861026b366004610f45565b6104ed565b61012261067a565b61014b610286366004610e08565b6106b9565b6101e87f000000000000000000000000000000000000000000000000000000000000000081565b61017e6102c0366004610fb9565b6106c7565b6000546101e8906001600160a01b031681565b6000546001600160a01b0316336001600160a01b03161461030c576040516348f5c3ed60e01b815260040160405180910390fd5b6000805460ff60a01b1916600160a01b1781556040517fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c89190a1565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060916000805160206111588339815191529161038790610fec565b80601f01602080910402602001604051908101604052809291908181526020018280546103b390610fec565b80156104005780601f106103d557610100808354040283529160200191610400565b820191906000526020600020905b8154815290600101906020018083116103e357829003601f168201915b505050505091505090565b600033610419818585610711565b60019150505b92915050565b60008054600160a01b900460ff16806104665750337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316145b1561047d57610476848484610723565b90506104c0565b6000546001600160a01b0316336001600160a01b0316146104b1576040516348f5c3ed60e01b815260040160405180910390fd5b6104bc848484610747565b5060015b9392505050565b6104d133826107ab565b50565b6104df8233836107e1565b6104e982826107ab565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156105335750825b905060008267ffffffffffffffff1660011480156105505750303b155b90508115801561055e575080155b1561057c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105a657845460ff60401b1916600160401b1785555b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146105ef576040516348f5c3ed60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038a161790556106148787610847565b61062a886b033b2e3c9fd0803ce8000000610859565b831561067057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060916000805160206111588339815191529161038790610fec565b600033610419818585610747565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b61071e838383600161088f565b505050565b6000336107318582856107e1565b61073c858585610747565b506001949350505050565b6001600160a01b03831661077657604051634b637e8f60e11b8152600060048201526024015b60405180910390fd5b6001600160a01b0382166107a05760405163ec442f0560e01b81526000600482015260240161076d565b61071e838383610977565b6001600160a01b0382166107d557604051634b637e8f60e11b81526000600482015260240161076d565b6104e982600083610977565b60006107ed84846106c7565b90506000198114610841578181101561083257604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161076d565b6108418484848403600061088f565b50505050565b61084f6109c1565b6104e98282610a0c565b6001600160a01b0382166108835760405163ec442f0560e01b81526000600482015260240161076d565b6104e960008383610977565b6000805160206111588339815191526001600160a01b0385166108c85760405163e602df0560e01b81526000600482015260240161076d565b6001600160a01b0384166108f257604051634a1406b160e11b81526000600482015260240161076d565b6001600160a01b0380861660009081526001830160209081526040808320938816835292905220839055811561097057836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161096791815260200190565b60405180910390a35b5050505050565b600054600160a01b900460ff1615801561099857506109968383610a5d565b155b156109b65760405163a3b8915f60e01b815260040160405180910390fd5b61071e838383610c5f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610a0a57604051631afcd79f60e31b815260040160405180910390fd5b565b610a146109c1565b6000805160206111588339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03610a4e8482611076565b50600481016108418382611076565b600080546001600160a01b038381169116148015610a8e57506000546001600160a01b0316336001600160a01b0316145b15610a9b5750600161041f565b6000546001600160a01b038481169116148015610af25750813b1580610af257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15610aff5750600161041f565b6001600160a01b038316158015610b2357506000546001600160a01b038381169116145b15610b305750600161041f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610b705750813b155b15610b7d5750600161041f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015610be65750337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316145b15610bf35750600161041f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610c335750813b155b15610c405750600161041f565b6001600160a01b038216610c565750600161041f565b50600092915050565b6000805160206111588339815191526001600160a01b038416610c9b5781816002016000828254610c909190611136565b90915550610d0d9050565b6001600160a01b03841660009081526020829052604090205482811015610cee5760405163391434e360e21b81526001600160a01b0386166004820152602481018290526044810184905260640161076d565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316610d2b576002810180548390039055610d4a565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f91815260200190565b60405180910390a350505050565b60006020808352835180602085015260005b81811015610dcb57858101830151858201604001528201610daf565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e0357600080fd5b919050565b60008060408385031215610e1b57600080fd5b610e2483610dec565b946020939093013593505050565b600080600060608486031215610e4757600080fd5b610e5084610dec565b9250610e5e60208501610dec565b9150604084013590509250925092565b600060208284031215610e8057600080fd5b5035919050565b600060208284031215610e9957600080fd5b6104c082610dec565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610ec957600080fd5b813567ffffffffffffffff80821115610ee457610ee4610ea2565b604051601f8301601f19908116603f01168101908282118183101715610f0c57610f0c610ea2565b81604052838152866020858801011115610f2557600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215610f5a57600080fd5b610f6384610dec565b9250602084013567ffffffffffffffff80821115610f8057600080fd5b610f8c87838801610eb8565b93506040860135915080821115610fa257600080fd5b50610faf86828701610eb8565b9150509250925092565b60008060408385031215610fcc57600080fd5b610fd583610dec565b9150610fe360208401610dec565b90509250929050565b600181811c9082168061100057607f821691505b60208210810361102057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561071e576000816000526020600020601f850160051c8101602086101561104f5750805b601f850160051c820191505b8181101561106e5782815560010161105b565b505050505050565b815167ffffffffffffffff81111561109057611090610ea2565b6110a48161109e8454610fec565b84611026565b602080601f8311600181146110d957600084156110c15750858301515b600019600386901b1c1916600185901b17855561106e565b600085815260208120601f198616915b82811015611108578886015182559484019460019091019084016110e9565b50858210156111265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561041f57634e487b7160e01b600052601160045260246000fdfe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a2646970667358221220930b865b229e15ea47c89d3d7b4a4280c8a9a3dcb546a4a6dea4dc65dde31d2d64736f6c63430008170033000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f80943476000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be0
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806363a2b3ab116100a257806395d89b411161007157806395d89b4114610270578063a9059cbb14610278578063c604a0881461028b578063dd62ed3e146102b2578063eff1d50e146102c557600080fd5b806363a2b3ab1461020057806370a082311461021457806379cc67901461024a578063906571471461025d57600080fd5b806323b872dd116100de57806323b872dd1461018c578063313ce5671461019f57806342966c68146101ae5780635ad9f993146101c157600080fd5b806301339c211461011057806306fdde031461011a578063095ea7b31461013857806318160ddd1461015b575b600080fd5b6101186102d8565b005b610122610348565b60405161012f9190610d9d565b60405180910390f35b61014b610146366004610e08565b61040b565b604051901515815260200161012f565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02545b60405190815260200161012f565b61014b61019a366004610e32565b610425565b6040516012815260200161012f565b6101186101bc366004610e6e565b6104c7565b6101e87f000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be081565b6040516001600160a01b03909116815260200161012f565b60005461014b90600160a01b900460ff1681565b61017e610222366004610e87565b6001600160a01b03166000908152600080516020611158833981519152602052604090205490565b610118610258366004610e08565b6104d4565b61011861026b366004610f45565b6104ed565b61012261067a565b61014b610286366004610e08565b6106b9565b6101e87f000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f8094347681565b61017e6102c0366004610fb9565b6106c7565b6000546101e8906001600160a01b031681565b6000546001600160a01b0316336001600160a01b03161461030c576040516348f5c3ed60e01b815260040160405180910390fd5b6000805460ff60a01b1916600160a01b1781556040517fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c89190a1565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060916000805160206111588339815191529161038790610fec565b80601f01602080910402602001604051908101604052809291908181526020018280546103b390610fec565b80156104005780601f106103d557610100808354040283529160200191610400565b820191906000526020600020905b8154815290600101906020018083116103e357829003601f168201915b505050505091505090565b600033610419818585610711565b60019150505b92915050565b60008054600160a01b900460ff16806104665750337f000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be06001600160a01b0316145b1561047d57610476848484610723565b90506104c0565b6000546001600160a01b0316336001600160a01b0316146104b1576040516348f5c3ed60e01b815260040160405180910390fd5b6104bc848484610747565b5060015b9392505050565b6104d133826107ab565b50565b6104df8233836107e1565b6104e982826107ab565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156105335750825b905060008267ffffffffffffffff1660011480156105505750303b155b90508115801561055e575080155b1561057c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105a657845460ff60401b1916600160401b1785555b337f000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f809434766001600160a01b0316146105ef576040516348f5c3ed60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038a161790556106148787610847565b61062a886b033b2e3c9fd0803ce8000000610859565b831561067057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060916000805160206111588339815191529161038790610fec565b600033610419818585610747565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b61071e838383600161088f565b505050565b6000336107318582856107e1565b61073c858585610747565b506001949350505050565b6001600160a01b03831661077657604051634b637e8f60e11b8152600060048201526024015b60405180910390fd5b6001600160a01b0382166107a05760405163ec442f0560e01b81526000600482015260240161076d565b61071e838383610977565b6001600160a01b0382166107d557604051634b637e8f60e11b81526000600482015260240161076d565b6104e982600083610977565b60006107ed84846106c7565b90506000198114610841578181101561083257604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161076d565b6108418484848403600061088f565b50505050565b61084f6109c1565b6104e98282610a0c565b6001600160a01b0382166108835760405163ec442f0560e01b81526000600482015260240161076d565b6104e960008383610977565b6000805160206111588339815191526001600160a01b0385166108c85760405163e602df0560e01b81526000600482015260240161076d565b6001600160a01b0384166108f257604051634a1406b160e11b81526000600482015260240161076d565b6001600160a01b0380861660009081526001830160209081526040808320938816835292905220839055811561097057836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161096791815260200190565b60405180910390a35b5050505050565b600054600160a01b900460ff1615801561099857506109968383610a5d565b155b156109b65760405163a3b8915f60e01b815260040160405180910390fd5b61071e838383610c5f565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610a0a57604051631afcd79f60e31b815260040160405180910390fd5b565b610a146109c1565b6000805160206111588339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03610a4e8482611076565b50600481016108418382611076565b600080546001600160a01b038381169116148015610a8e57506000546001600160a01b0316336001600160a01b0316145b15610a9b5750600161041f565b6000546001600160a01b038481169116148015610af25750813b1580610af257507f000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f809434766001600160a01b0316826001600160a01b0316145b15610aff5750600161041f565b6001600160a01b038316158015610b2357506000546001600160a01b038381169116145b15610b305750600161041f565b7f000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f809434766001600160a01b0316836001600160a01b0316148015610b705750813b155b15610b7d5750600161041f565b7f000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be06001600160a01b0316826001600160a01b0316148015610be65750337f000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be06001600160a01b0316145b15610bf35750600161041f565b7f000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be06001600160a01b0316836001600160a01b0316148015610c335750813b155b15610c405750600161041f565b6001600160a01b038216610c565750600161041f565b50600092915050565b6000805160206111588339815191526001600160a01b038416610c9b5781816002016000828254610c909190611136565b90915550610d0d9050565b6001600160a01b03841660009081526020829052604090205482811015610cee5760405163391434e360e21b81526001600160a01b0386166004820152602481018290526044810184905260640161076d565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316610d2b576002810180548390039055610d4a565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8f91815260200190565b60405180910390a350505050565b60006020808352835180602085015260005b81811015610dcb57858101830151858201604001528201610daf565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e0357600080fd5b919050565b60008060408385031215610e1b57600080fd5b610e2483610dec565b946020939093013593505050565b600080600060608486031215610e4757600080fd5b610e5084610dec565b9250610e5e60208501610dec565b9150604084013590509250925092565b600060208284031215610e8057600080fd5b5035919050565b600060208284031215610e9957600080fd5b6104c082610dec565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610ec957600080fd5b813567ffffffffffffffff80821115610ee457610ee4610ea2565b604051601f8301601f19908116603f01168101908282118183101715610f0c57610f0c610ea2565b81604052838152866020858801011115610f2557600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215610f5a57600080fd5b610f6384610dec565b9250602084013567ffffffffffffffff80821115610f8057600080fd5b610f8c87838801610eb8565b93506040860135915080821115610fa257600080fd5b50610faf86828701610eb8565b9150509250925092565b60008060408385031215610fcc57600080fd5b610fd583610dec565b9150610fe360208401610dec565b90509250929050565b600181811c9082168061100057607f821691505b60208210810361102057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561071e576000816000526020600020601f850160051c8101602086101561104f5750805b601f850160051c820191505b8181101561106e5782815560010161105b565b505050505050565b815167ffffffffffffffff81111561109057611090610ea2565b6110a48161109e8454610fec565b84611026565b602080601f8311600181146110d957600084156110c15750858301515b600019600386901b1c1916600185901b17855561106e565b600085815260208120601f198616915b82811015611108578886015182559484019460019091019084016110e9565b50858210156111265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561041f57634e487b7160e01b600052601160045260246000fdfe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a2646970667358221220930b865b229e15ea47c89d3d7b4a4280c8a9a3dcb546a4a6dea4dc65dde31d2d64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f80943476000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be0
-----Decoded View---------------
Arg [0] : _degenFactory (address): 0xCd7a0227Bc48b1c14C5a1A6a4851010f80943476
Arg [1] : _nftRewards (address): 0xDFad6F2e7269836ff15e5cc797CA55F64DD11BE0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000cd7a0227bc48b1c14c5a1a6a4851010f80943476
Arg [1] : 000000000000000000000000dfad6f2e7269836ff15e5cc797ca55f64dd11be0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.