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 | |||
---|---|---|---|---|---|---|
3633937 | 92 days ago | Contract Creation | 0 APE |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DegenERC20V2
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/interfaces/degen/v2/IDegenFactoryV2.sol"; import "contracts/libraries/Errors.sol"; /// @title DegenERC20V2 /// @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 DegenERC20V2 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. IDegenFactoryV2 public immutable degenFactory; /// @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 DegenERC20V2 contract. * @param _degenFactory The address of the factory contract. */ constructor(address _degenFactory) { degenFactory = IDegenFactoryV2(_degenFactory); } /** * @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() != address(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 whitelisted addresses. if (hasLaunched || degenFactory.isTransferWhitelisted(_msgSender())) 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 == address(degenFactory))) return true; if (_from == address(0) && _to == bondingCurve) return true; if (_from == address(degenFactory) && !_isContract(_to)) return true; bool isToWhitelisted = degenFactory.isTransferWhitelisted(_to); bool isMsgSenderWhitelisted = degenFactory.isTransferWhitelisted(_msgSender()); if (isToWhitelisted && isMsgSenderWhitelisted) return true; bool isFromWhitelisted = degenFactory.isTransferWhitelisted(_from); if (isFromWhitelisted && !_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; /// @title IDegenFactory: Bare minimum interface for the Degen Factory contract. interface IDegenFactoryV2 { /// @return uint256 Buy referral fee percent (1 d.p.) function buyReferralFeePercent() external view returns (uint256); function sellReferralFeePercent() external view returns (uint256); /** * @notice Check if a wallet is transfer whitelisted * @param _account Account. * @return bool True - Is whitelist, False - Is not whitelisted. */ function isTransferWhitelisted(address _account) external view returns (bool); /** * @notice Get the creator of a token. * @param _token Token address. * @return address Creator address. */ function creatorByToken(address _token) external view returns (address); }
// 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"}],"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":"contract IDegenFactoryV2","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":"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
60a060405234801561001057600080fd5b506040516113fb3803806113fb83398101604081905261002f91610040565b6001600160a01b0316608052610070565b60006020828403121561005257600080fd5b81516001600160a01b038116811461006957600080fd5b9392505050565b60805161133f6100bc6000396000818161024601528181610411015281816105e201528181610af701528181610b6b01528181610bd701528181610c520152610d1d015261133f6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461022e578063c604a08814610241578063dd62ed3e14610280578063eff1d50e1461029357600080fd5b806370a08231146101ca57806379cc679014610200578063906571471461021357806395d89b411461022657600080fd5b806323b872dd116100d357806323b872dd14610181578063313ce5671461019457806342966c68146101a357806363a2b3ab146101b657600080fd5b806301339c211461010557806306fdde031461010f578063095ea7b31461012d57806318160ddd14610150575b600080fd5b61010d6102a6565b005b610117610316565b6040516101249190610f0d565b60405180910390f35b61014061013b366004610f78565b6103d9565b6040519015158152602001610124565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02545b604051908152602001610124565b61014061018f366004610fa2565b6103f3565b60405160128152602001610124565b61010d6101b1366004610fde565b610500565b60005461014090600160a01b900460ff1681565b6101736101d8366004610ff7565b6001600160a01b031660009081526000805160206112ea833981519152602052604090205490565b61010d61020e366004610f78565b61050d565b61010d6102213660046110b5565b610526565b6101176106b3565b61014061023c366004610f78565b6106f2565b6102687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610124565b61017361028e366004611129565b610700565b600054610268906001600160a01b031681565b6000546001600160a01b0316336001600160a01b0316146102da576040516348f5c3ed60e01b815260040160405180910390fd5b6000805460ff60a01b1916600160a01b1781556040517fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c89190a1565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060916000805160206112ea833981519152916103559061115c565b80601f01602080910402602001604051908101604052809291908181526020018280546103819061115c565b80156103ce5780601f106103a3576101008083540402835291602001916103ce565b820191906000526020600020905b8154815290600101906020018083116103b157829003601f168201915b505050505091505090565b6000336103e781858561074a565b60019150505b92915050565b60008054600160a01b900460ff168061049f57506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631eee7e60336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561047b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049f9190611196565b156104b6576104af84848461075c565b90506104f9565b6000546001600160a01b0316336001600160a01b0316146104ea576040516348f5c3ed60e01b815260040160405180910390fd5b6104f5848484610780565b5060015b9392505050565b61050a33826107e4565b50565b61051882338361081a565b61052282826107e4565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff1660008115801561056c5750825b905060008267ffffffffffffffff1660011480156105895750303b155b905081158015610597575080155b156105b55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105df57845460ff60401b1916600160401b1785555b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610628576040516348f5c3ed60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038a1617905561064d8787610880565b610663886b033b2e3c9fd0803ce8000000610892565b83156106a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060916000805160206112ea833981519152916103559061115c565b6000336103e7818585610780565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b61075783838360016108c8565b505050565b60003361076a85828561081a565b610775858585610780565b506001949350505050565b6001600160a01b0383166107af57604051634b637e8f60e11b8152600060048201526024015b60405180910390fd5b6001600160a01b0382166107d95760405163ec442f0560e01b8152600060048201526024016107a6565b6107578383836109b0565b6001600160a01b03821661080e57604051634b637e8f60e11b8152600060048201526024016107a6565b610522826000836109b0565b60006108268484610700565b9050600019811461087a578181101561086b57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107a6565b61087a848484840360006108c8565b50505050565b6108886109fa565b6105228282610a45565b6001600160a01b0382166108bc5760405163ec442f0560e01b8152600060048201526024016107a6565b610522600083836109b0565b6000805160206112ea8339815191526001600160a01b0385166109015760405163e602df0560e01b8152600060048201526024016107a6565b6001600160a01b03841661092b57604051634a1406b160e11b8152600060048201526024016107a6565b6001600160a01b038086166000908152600183016020908152604080832093881683529290522083905581156109a957836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109a091815260200190565b60405180910390a35b5050505050565b600054600160a01b900460ff161580156109d157506109cf8383610a96565b155b156109ef5760405163a3b8915f60e01b815260040160405180910390fd5b610757838383610dcf565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610a4357604051631afcd79f60e31b815260040160405180910390fd5b565b610a4d6109fa565b6000805160206112ea8339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03610a878482611208565b506004810161087a8382611208565b600080546001600160a01b038381169116148015610ac757506000546001600160a01b0316336001600160a01b0316145b15610ad4575060016103ed565b6000546001600160a01b038481169116148015610b2b5750813b1580610b2b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15610b38575060016103ed565b6001600160a01b038316158015610b5c57506000546001600160a01b038381169116145b15610b69575060016103ed565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610ba95750813b155b15610bb6575060016103ed565b60405162f773f360e51b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000090911690631eee7e6090602401602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190611196565b905060006001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631eee7e60336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190611196565b9050818015610cec5750805b15610cfc576001925050506103ed565b60405162f773f360e51b81526001600160a01b0386811660048301526000917f000000000000000000000000000000000000000000000000000000000000000090911690631eee7e6090602401602060405180830381865afa158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a9190611196565b9050808015610d985750843b155b15610da957600193505050506103ed565b6001600160a01b038516610dc357600193505050506103ed565b50600095945050505050565b6000805160206112ea8339815191526001600160a01b038416610e0b5781816002016000828254610e0091906112c8565b90915550610e7d9050565b6001600160a01b03841660009081526020829052604090205482811015610e5e5760405163391434e360e21b81526001600160a01b038616600482015260248101829052604481018490526064016107a6565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316610e9b576002810180548390039055610eba565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eff91815260200190565b60405180910390a350505050565b60006020808352835180602085015260005b81811015610f3b57858101830151858201604001528201610f1f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f7357600080fd5b919050565b60008060408385031215610f8b57600080fd5b610f9483610f5c565b946020939093013593505050565b600080600060608486031215610fb757600080fd5b610fc084610f5c565b9250610fce60208501610f5c565b9150604084013590509250925092565b600060208284031215610ff057600080fd5b5035919050565b60006020828403121561100957600080fd5b6104f982610f5c565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261103957600080fd5b813567ffffffffffffffff8082111561105457611054611012565b604051601f8301601f19908116603f0116810190828211818310171561107c5761107c611012565b8160405283815286602085880101111561109557600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156110ca57600080fd5b6110d384610f5c565b9250602084013567ffffffffffffffff808211156110f057600080fd5b6110fc87838801611028565b9350604086013591508082111561111257600080fd5b5061111f86828701611028565b9150509250925092565b6000806040838503121561113c57600080fd5b61114583610f5c565b915061115360208401610f5c565b90509250929050565b600181811c9082168061117057607f821691505b60208210810361119057634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156111a857600080fd5b815180151581146104f957600080fd5b601f821115610757576000816000526020600020601f850160051c810160208610156111e15750805b601f850160051c820191505b81811015611200578281556001016111ed565b505050505050565b815167ffffffffffffffff81111561122257611222611012565b61123681611230845461115c565b846111b8565b602080601f83116001811461126b57600084156112535750858301515b600019600386901b1c1916600185901b178555611200565b600085815260208120601f198616915b8281101561129a5788860151825594840194600190910190840161127b565b50858210156112b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156103ed57634e487b7160e01b600052601160045260246000fdfe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a2646970667358221220bcbe43d4740f6bbb0aa14d5346dfb9e0059a3990d620d38c56fbab02b4b89a0464736f6c63430008170033000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa836
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461022e578063c604a08814610241578063dd62ed3e14610280578063eff1d50e1461029357600080fd5b806370a08231146101ca57806379cc679014610200578063906571471461021357806395d89b411461022657600080fd5b806323b872dd116100d357806323b872dd14610181578063313ce5671461019457806342966c68146101a357806363a2b3ab146101b657600080fd5b806301339c211461010557806306fdde031461010f578063095ea7b31461012d57806318160ddd14610150575b600080fd5b61010d6102a6565b005b610117610316565b6040516101249190610f0d565b60405180910390f35b61014061013b366004610f78565b6103d9565b6040519015158152602001610124565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02545b604051908152602001610124565b61014061018f366004610fa2565b6103f3565b60405160128152602001610124565b61010d6101b1366004610fde565b610500565b60005461014090600160a01b900460ff1681565b6101736101d8366004610ff7565b6001600160a01b031660009081526000805160206112ea833981519152602052604090205490565b61010d61020e366004610f78565b61050d565b61010d6102213660046110b5565b610526565b6101176106b3565b61014061023c366004610f78565b6106f2565b6102687f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa83681565b6040516001600160a01b039091168152602001610124565b61017361028e366004611129565b610700565b600054610268906001600160a01b031681565b6000546001600160a01b0316336001600160a01b0316146102da576040516348f5c3ed60e01b815260040160405180910390fd5b6000805460ff60a01b1916600160a01b1781556040517fba61a96074b3d636edeee92caddc86293c917d5b6818b7d3698bb52e02ec86c89190a1565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060916000805160206112ea833981519152916103559061115c565b80601f01602080910402602001604051908101604052809291908181526020018280546103819061115c565b80156103ce5780601f106103a3576101008083540402835291602001916103ce565b820191906000526020600020905b8154815290600101906020018083116103b157829003601f168201915b505050505091505090565b6000336103e781858561074a565b60019150505b92915050565b60008054600160a01b900460ff168061049f57506001600160a01b037f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa83616631eee7e60336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561047b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049f9190611196565b156104b6576104af84848461075c565b90506104f9565b6000546001600160a01b0316336001600160a01b0316146104ea576040516348f5c3ed60e01b815260040160405180910390fd5b6104f5848484610780565b5060015b9392505050565b61050a33826107e4565b50565b61051882338361081a565b61052282826107e4565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff1660008115801561056c5750825b905060008267ffffffffffffffff1660011480156105895750303b155b905081158015610597575080155b156105b55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156105df57845460ff60401b1916600160401b1785555b337f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa8366001600160a01b031614610628576040516348f5c3ed60e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b038a1617905561064d8787610880565b610663886b033b2e3c9fd0803ce8000000610892565b83156106a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060916000805160206112ea833981519152916103559061115c565b6000336103e7818585610780565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b61075783838360016108c8565b505050565b60003361076a85828561081a565b610775858585610780565b506001949350505050565b6001600160a01b0383166107af57604051634b637e8f60e11b8152600060048201526024015b60405180910390fd5b6001600160a01b0382166107d95760405163ec442f0560e01b8152600060048201526024016107a6565b6107578383836109b0565b6001600160a01b03821661080e57604051634b637e8f60e11b8152600060048201526024016107a6565b610522826000836109b0565b60006108268484610700565b9050600019811461087a578181101561086b57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107a6565b61087a848484840360006108c8565b50505050565b6108886109fa565b6105228282610a45565b6001600160a01b0382166108bc5760405163ec442f0560e01b8152600060048201526024016107a6565b610522600083836109b0565b6000805160206112ea8339815191526001600160a01b0385166109015760405163e602df0560e01b8152600060048201526024016107a6565b6001600160a01b03841661092b57604051634a1406b160e11b8152600060048201526024016107a6565b6001600160a01b038086166000908152600183016020908152604080832093881683529290522083905581156109a957836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109a091815260200190565b60405180910390a35b5050505050565b600054600160a01b900460ff161580156109d157506109cf8383610a96565b155b156109ef5760405163a3b8915f60e01b815260040160405180910390fd5b610757838383610dcf565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610a4357604051631afcd79f60e31b815260040160405180910390fd5b565b610a4d6109fa565b6000805160206112ea8339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03610a878482611208565b506004810161087a8382611208565b600080546001600160a01b038381169116148015610ac757506000546001600160a01b0316336001600160a01b0316145b15610ad4575060016103ed565b6000546001600160a01b038481169116148015610b2b5750813b1580610b2b57507f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa8366001600160a01b0316826001600160a01b0316145b15610b38575060016103ed565b6001600160a01b038316158015610b5c57506000546001600160a01b038381169116145b15610b69575060016103ed565b7f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa8366001600160a01b0316836001600160a01b0316148015610ba95750813b155b15610bb6575060016103ed565b60405162f773f360e51b81526001600160a01b0383811660048301526000917f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa83690911690631eee7e6090602401602060405180830381865afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c449190611196565b905060006001600160a01b037f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa83616631eee7e60336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190611196565b9050818015610cec5750805b15610cfc576001925050506103ed565b60405162f773f360e51b81526001600160a01b0386811660048301526000917f000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa83690911690631eee7e6090602401602060405180830381865afa158015610d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8a9190611196565b9050808015610d985750843b155b15610da957600193505050506103ed565b6001600160a01b038516610dc357600193505050506103ed565b50600095945050505050565b6000805160206112ea8339815191526001600160a01b038416610e0b5781816002016000828254610e0091906112c8565b90915550610e7d9050565b6001600160a01b03841660009081526020829052604090205482811015610e5e5760405163391434e360e21b81526001600160a01b038616600482015260248101829052604481018490526064016107a6565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316610e9b576002810180548390039055610eba565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eff91815260200190565b60405180910390a350505050565b60006020808352835180602085015260005b81811015610f3b57858101830151858201604001528201610f1f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f7357600080fd5b919050565b60008060408385031215610f8b57600080fd5b610f9483610f5c565b946020939093013593505050565b600080600060608486031215610fb757600080fd5b610fc084610f5c565b9250610fce60208501610f5c565b9150604084013590509250925092565b600060208284031215610ff057600080fd5b5035919050565b60006020828403121561100957600080fd5b6104f982610f5c565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261103957600080fd5b813567ffffffffffffffff8082111561105457611054611012565b604051601f8301601f19908116603f0116810190828211818310171561107c5761107c611012565b8160405283815286602085880101111561109557600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156110ca57600080fd5b6110d384610f5c565b9250602084013567ffffffffffffffff808211156110f057600080fd5b6110fc87838801611028565b9350604086013591508082111561111257600080fd5b5061111f86828701611028565b9150509250925092565b6000806040838503121561113c57600080fd5b61114583610f5c565b915061115360208401610f5c565b90509250929050565b600181811c9082168061117057607f821691505b60208210810361119057634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156111a857600080fd5b815180151581146104f957600080fd5b601f821115610757576000816000526020600020601f850160051c810160208610156111e15750805b601f850160051c820191505b81811015611200578281556001016111ed565b505050505050565b815167ffffffffffffffff81111561122257611222611012565b61123681611230845461115c565b846111b8565b602080601f83116001811461126b57600084156112535750858301515b600019600386901b1c1916600185901b178555611200565b600085815260208120601f198616915b8281101561129a5788860151825594840194600190910190840161127b565b50858210156112b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156103ed57634e487b7160e01b600052601160045260246000fdfe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a2646970667358221220bcbe43d4740f6bbb0aa14d5346dfb9e0059a3990d620d38c56fbab02b4b89a0464736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa836
-----Decoded View---------------
Arg [0] : _degenFactory (address): 0xBcace40e446b06E6A530D945eFbae222f84fA836
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bcace40e446b06e6a530d945efbae222f84fa836
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.