Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
107,617,495,132.106935122746913078 BDX
Holders
426
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
25,540,901.995362502387239653 BDXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BabyDragonX
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 9999 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // UniSwap import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; // OpenZeppelin import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; // lib import "./lib/Constants.sol"; import "./lib/interfaces/IDragonX.sol"; import "./lib/interfaces/ITitanX.sol"; import "./lib/interfaces/INonfungiblePositionManager.sol"; /* * @title The BabyDragonX Contract * @author The DragonX and BabyDragon devs */ contract BabyDragonX is ERC20, Ownable2Step { // ----------------------------------------- // Type declarations // ----------------------------------------- /** * @dev Indicates if a contract was initialized */ enum Initialized { No, Yes } /** * @dev Indicates if minting was closed */ enum MintingFinalized { No, Yes } /** * @dev Represents the information about a Uniswap V3 liquidity pool position token. * This struct is used to store details of the position token, specifically for a single full range position. */ struct LpTokenInfo { uint80 tokenId; // The ID of the position token in the Uniswap V3 pool. uint128 liquidity; // The amount of liquidity provided in the position. int24 tickLower; // The lower end of the price range for the position. int24 tickUpper; // The upper end of the price range for the position. } // ----------------------------------------- // State variables // ----------------------------------------- /** * @dev Begin of the mint phase */ uint256 public mintPhaseBegin; /** * @dev The end of the mint phase */ uint256 public mintPhaseEnd; /** * @dev The address of the main LP for DragonX / BabyDragon */ address public poolAddress; /** * @notice true if the address is a LP Pool */ mapping(address => bool) public pools; /** * @dev Indicates if BabyDragon contract was initialized */ Initialized public initialized; /** * @dev Indicates if the mint phase was finalized */ MintingFinalized public mintingFinalized; /** * @dev Total DragonX send to BabyDragonX buy and burn */ uint256 public totalDragonSentToBabyDragonBuyAndBurn; /** * @dev Total BabyDragon burned through LP fees */ uint256 public totalBabyDragonBurned; /** * @dev Interacting with LP pools is disabled while minting */ bool public tradingEnabled; /** * @dev Stores the position token information, specifically for a single full range position in the Uniswap V3 pool. */ LpTokenInfo public lpTokenInfo; /** * @dev The BabyDragonX buy and burn address (smart contract executing buy and burns) */ address public babyDragonBuyAndBurnAddress; // ----------------------------------------- // Events // ----------------------------------------- /** * @notice Emitted when fees are collected in both DragonX and BabyDragon tokens. * @dev This event is triggered when a fee collection transaction is completed. * @param dragon The amount of DragonX collected as fees. * @param babyDragon The amount of BabyDragon tokens collected as fees. * @param caller The address of the user or contract that initiated the fee collection. */ event CollectedFees( uint256 indexed dragon, uint256 indexed babyDragon, address indexed caller ); // ----------------------------------------- // Errors // ----------------------------------------- // ----------------------------------------- // Modifiers // ----------------------------------------- // ----------------------------------------- // Constructor // ----------------------------------------- constructor( address babyDragonBuyAndBurnAddress_ ) ERC20("Baby DragonX", "BDX") Ownable(msg.sender) { require(babyDragonBuyAndBurnAddress_ != address(0), "invalid address"); // set other states initialized = Initialized.No; mintingFinalized = MintingFinalized.No; tradingEnabled = false; babyDragonBuyAndBurnAddress = babyDragonBuyAndBurnAddress_; } // ----------------------------------------- // Receive function // ----------------------------------------- // ----------------------------------------- // Fallback function // ----------------------------------------- // ----------------------------------------- // External functions // ----------------------------------------- /** * Mint BabyDragonX Tokens * @dev Mints BabyDragonX tokens in exchange for TitanX tokens based on a dynamic minting ratio. * This function allows users to contribute TitanX tokens during the mint phase of * DragonX and receive BabyDragonX tokens in return. * The mint ratio adjusts according to the timestamp. It also allocates a * portion of TitanX tokens for team allocation, * expenses, and DragonX genesis share before minting. * * Requirements: * - The contract must be initialized. * - The minting phase must have started and not yet ended. * * Emits a {Transfer} event from the zero address to the `msg.sender` indicating the minting of BabyDragonX tokens. * * @param titanAmount The amount of TitanX tokens the user wishes to contribute for minting BabyDragonX tokens. * The function calculates the allocation for different purposes, mints DragonX tokens with a portion of TitanX, * and finally mints BabyDragonX tokens based on the calculated ratio. */ function mint(uint256 titanAmount) external { IDragonX dragonX = IDragonX(DRAGONX_ADDRESS); ITitanX titanX = ITitanX(TITANX_ADDRESS); require(initialized == Initialized.Yes, "not initialized"); require(titanAmount > 0, "invalid amount"); // Align the mint-ratio with DragonX // This function will revert if minting has ended or not started yet uint256 ratio = getMintRatio(); // 7% Baby Dragon Team Allocation uint256 teamAllocation = (titanAmount * 700) / BASIS; titanX.transferFrom( msg.sender, BABY_DRAGON_TEAM_ADDRESS, teamAllocation ); // 5% Baby Dragon Expenses uint256 expenses = (titanAmount * 500) / BASIS; titanX.transferFrom(msg.sender, BABY_DRAGON_EXPENSES_ADDRESS, expenses); // Send 1% of TitanX to DragonX genesis uint256 dragonGenesisShare = (titanAmount * 100) / BASIS; titanX.transferFrom( msg.sender, DRAGONX_GENESIS_ADDRESS, dragonGenesisShare ); // Mint DragonX with 87% of TitanX (accumulate in this contract) uint256 titanToMintDragon = titanAmount - teamAllocation - expenses - dragonGenesisShare; titanX.transferFrom(msg.sender, address(this), titanToMintDragon); titanX.approve(DRAGONX_ADDRESS, titanToMintDragon); dragonX.mint(titanToMintDragon); // Mint BabyDragon uint256 babyDragonToMint = (titanAmount * ratio) / BASIS; _mint(msg.sender, babyDragonToMint); } /** * Collects fees accrued from liquidity provision in DragonX and BabyDragon tokens. * @dev This function handles the collection and burning of fees generated by liquidity pools. * It determines the amounts of DragonX and BabyDragon tokens collected as fees, * burns the collected BabyDragon tokens, and sends the collected DragonX tokens to the * BabyDragon buy and burn address. * * Emits a {CollectedFees} event indicating the amounts of tokens collected and burned, and the caller's address. */ function collectFees() external { require(initialized == Initialized.Yes, "not initialized"); // Cache state variables address dragonAddress = DRAGONX_ADDRESS; address babyDragonAddress = address(this); (uint256 amount0, uint256 amount1) = _collectFees(); uint256 dragon; uint256 babyDragon; if (dragonAddress < babyDragonAddress) { dragon = amount0; babyDragon = amount1; } else { babyDragon = amount0; dragon = amount1; } // Burn BabyDragon totalBabyDragonBurned += babyDragon; _burn(address(this), babyDragon); // Burn DragonX IDragonX dragonX = IDragonX(dragonAddress); totalDragonSentToBabyDragonBuyAndBurn += dragon; dragonX.transfer(babyDragonBuyAndBurnAddress, dragon); emit CollectedFees(dragon, babyDragon, msg.sender); } /** * @notice Allows users to burn their BabyDragonX tokens, reducing the total supply. * @dev Burns a specific amount of BabyDragonX tokens from the caller's balance. * Updates the `totalBabyDragonBurned` state to reflect the burned tokens. * * @param amount The amount of BabyDragonX tokens to burn from the caller's balance. * * Requirements: * - The caller must have at least `amount` tokens in their balance. */ function burn(uint256 amount) external { require(amount > 0, "invalid amount"); totalBabyDragonBurned += amount; _burn(msg.sender, amount); } /** * Finalizes the minting phase, allocates tokens for liquidity, grants, and rewards, and enables trading. * @dev This function can only be called once by the contract owner after * the minting phase has ended. * It performs token allocations to various addresses and pools, mints additional * BabyDragonX tokens for grants and rewards, adds liquidity to the UniSwap pool, * and enables trading by updating the contract state. * * Requirements: * - The minting phase has ended. * - The function must not have been previously called. * - Can only be called by the contract owner. */ function finalizeMint() external onlyOwner { require(block.timestamp > mintPhaseEnd, "minting still open"); require( mintingFinalized == MintingFinalized.No, "minting already finalized" ); IDragonX dragonX = IDragonX(DRAGONX_ADDRESS); uint256 dragonBalance = dragonX.balanceOf(address(this)); // Allocate 50% to liquidity pool uint256 liquidityTopUp = (dragonBalance * 5000) / BASIS; // Allocate 3% to BabyDragonX Genesis uint256 genesisShare = (dragonBalance * 300) / BASIS; dragonX.transfer(BABY_DRAGON_TEAM_ADDRESS, genesisShare); // Allocate 47% to BabyDragonX buy and burn uint256 dragonForBabyDragonBurnShare = dragonBalance - liquidityTopUp - genesisShare; dragonX.transfer( babyDragonBuyAndBurnAddress, dragonForBabyDragonBurnShare ); totalDragonSentToBabyDragonBuyAndBurn += dragonForBabyDragonBurnShare; // Mint additional 4% for grants uint256 totalBabyDragonMinted = totalSupply(); _mint(BABY_DRAGON_GRANT_ADDRESS, (totalBabyDragonMinted * 400) / BASIS); // Mint additional 10% for future rewards _mint( BABY_DRAGON_FUTURE_REWARDS_ADDRESS, (totalBabyDragonMinted * 1000) / BASIS ); // Prepare LP uint256 amount0Desired = liquidityTopUp; uint256 amount1Desired = liquidityTopUp; // mint BabyDragon for LP _mint(address(this), liquidityTopUp); // Approve the Uniswap non-fungible position manager to spend DragonX. dragonX.approve(UNI_NONFUNGIBLEPOSITIONMANAGER, liquidityTopUp); // Approve the UniSwap non-fungible position manager to spend BabyDragon. _approve(address(this), UNI_NONFUNGIBLEPOSITIONMANAGER, liquidityTopUp); // Top Up Liquidity (uint128 liquidity, , ) = _addLiquidity(amount0Desired, amount1Desired); lpTokenInfo.liquidity = liquidity; // Burn remaining DragonX if (dragonX.balanceOf(address(this)) > 0) { dragonX.burn(); } // Burn remaining BabyDragon uint256 remainingBabyDragon = balanceOf(address(this)); if (remainingBabyDragon > 0) { totalBabyDragonBurned += remainingBabyDragon; _burn(address(this), remainingBabyDragon); } // enable trading tradingEnabled = true; // Update state mintingFinalized = MintingFinalized.Yes; } /** * @notice Initializes the contract by setting up initial liquidity in the Uniswap pool and enabling minting. * @dev This function sets the initial liquidity parameters for the BabyDragonX and * DragonX tokens in the Uniswap pool. It mints initial liquidity tokens to this contract, * approves the Uniswap non-fungible position manager to spend the tokens, * and creates the initial liquidity pool if it doesn't exist already. * It also sets the minting phase's beginning and end times. This function can only be * called once by the contract owner. * * @param initialLiquidityAmount The amount of DragonX tokens to be added as initial liquidity to the Uniswap pool. * The function automatically calculates and mints the amount of BabyDragonX tokens for the initial liquidity, * assuming an initial price ratio of 1 DragonX to 1 BabyDragonX. * * Requirements: * - The contract must not have been initialized before. * - Only the contract owner can call this function. */ function initialize(uint256 initialLiquidityAmount) external onlyOwner { require(initialized == Initialized.No, "already initialized"); IDragonX dragonX = IDragonX(DRAGONX_ADDRESS); // Mint initial liquidity _mint(address(this), initialLiquidityAmount); // Setup initial liquidity pool // Transfer the specified amount of DragonX tokens from the caller to this contract. dragonX.transferFrom(msg.sender, address(this), initialLiquidityAmount); // Approve the Uniswap non-fungible position manager to spend DragonX. dragonX.approve(UNI_NONFUNGIBLEPOSITIONMANAGER, initialLiquidityAmount); // Approve the UniSwap non-fungible position manager to spend BabyDragon. _approve( address(this), UNI_NONFUNGIBLEPOSITIONMANAGER, initialLiquidityAmount ); // Create the initial liquidity pool in Uniswap V3. _createPool(initialLiquidityAmount); // Mint the initial position in the pool. _mintInitialPosition(initialLiquidityAmount); // Align mint phase begin to midnight UTC uint256 currentTimestamp = block.timestamp; uint256 secondsUntilMidnight = 86400 - (currentTimestamp % 86400); // The mint phase begins at midnight mintPhaseBegin = currentTimestamp + secondsUntilMidnight; // Minting will be open for 14 days mintPhaseEnd = mintPhaseBegin + 14 days; // Update states initialized = Initialized.Yes; } /** * @notice Registers or deregisters an address as a liquidity pool. * @dev Allows the contract owner to mark an address as a recognized liquidity pool * or remove it from the list of recognized pools. This function is critical for managing * which pools are considered for trading and can help in disabling trading in the minting phase. * * @param poolAddress_ The address of the liquidity pool to be registered or deregistered. * @param isPool A boolean indicating whether the address should be considered a * liquidity pool (true) or not (false). * * Requirements: * - Only the contract owner can call this function. * - This function has no effect once minting is finalized and trading is enabled. */ function setPool(address poolAddress_, bool isPool) external onlyOwner { require(poolAddress_ != address(0), "invalid address"); pools[poolAddress_] = isPool; } /** * @notice Sets the BabyDragon buy and burn address to a new address. * @dev Allows the contract owner to update the address where DragonX tokens are * sent for buying and burning BabyDragonX tokens. * This can be used to change the destination address for the DragonX tokens * collected as fees and used for burning. * * @param babyDragonBuyAndBurnAddress_ The new address for buying and burning BabyDragonX tokens. * * Requirements: * - Only the contract owner can call this function. * - The new address must not be the zero address. */ function setBabyDragonBuyAndBurnAddress( address babyDragonBuyAndBurnAddress_ ) external onlyOwner { require(babyDragonBuyAndBurnAddress_ != address(0), "invalid address"); babyDragonBuyAndBurnAddress = babyDragonBuyAndBurnAddress_; } // ----------------------------------------- // Public functions // ----------------------------------------- /** * @notice Calculates the current mint ratio for BabyDragonX tokens based on the current * phase of the minting period. * @dev Returns a mint ratio that determines how many BabyDragonX tokens can be minted per unit of TitanX. * The mint ratio changes depending on which week of the minting phase the function is called. * * The mint ratio starts at 1 for the first week and adjusts to 0.95 for the second week. * This function ensures that the ratio is only accessible during the minting phase to enforce the minting schedule. * * Requirements: * - The current timestamp must be within the minting phase period, between `mintPhaseBegin` and `mintPhaseEnd`. * * @return ratio The current mint ratio */ function getMintRatio() public view returns (uint256 ratio) { require(initialized == Initialized.Yes, "not yet initialized"); require(block.timestamp >= mintPhaseBegin, "minting not started"); require(block.timestamp <= mintPhaseEnd, "minting has ended"); if (block.timestamp < mintPhaseBegin + 7 days) { // week 1 ratio = 10_000; } else { // week 2 ratio = 9_500; } } // ----------------------------------------- // Internal functions // ----------------------------------------- /** * @dev Overrides the ERC20 `_update` function to enforce trading restrictions. * This internal function is called during every transfer operation to check if trading is enabled * and whether the sender or recipient is a recognized liquidity pool address. * It ensures that trading through LP pools is only possible when explicitly enabled. * * @param from The address sending the tokens. * @param to The address receiving the tokens. * @param value The amount of tokens being transferred. * * Requirements: * - Trading must be enabled if either `from` or `to` is a recognized liquidity pool address. * - Always allow the contract itself to interact with the LP pool. */ function _update( address from, address to, uint256 value ) internal override { // Allow the contract itself to always interact without checking if trading is enabled if (from != address(this) && to != address(this)) { require( (!pools[from] && !pools[to]) || tradingEnabled, "trading was not enabled yet" ); } super._update(from, to, value); } // ----------------------------------------- // Private functions // ----------------------------------------- /** * @notice Sorts tokens in ascending order, as required by Uniswap for identifying a pair. * @dev This function arranges the token addresses in ascending order and assigns * liquidity in a ratio of 1:1 * @param initialLiquidityAmount The amount of liquidity to assign to each token. * @return token0 The token address that is numerically smaller. * @return token1 The token address that is numerically larger. * @return amount0 The liquidity amount for `token0`. * @return amount1 The liquidity amount for `token1`. */ function _getTokenConfig( uint256 initialLiquidityAmount ) private view returns ( address token0, address token1, uint256 amount0, uint256 amount1 ) { // Cache state variables address dragonAddress = DRAGONX_ADDRESS; address babyDragonAddress = address(this); amount0 = initialLiquidityAmount; amount1 = initialLiquidityAmount; if (dragonAddress < babyDragonAddress) { token0 = dragonAddress; token1 = babyDragonAddress; } else { token0 = babyDragonAddress; token1 = dragonAddress; } } /** * @notice Creates a liquidity pool with a preset square root price ratio. * @dev This function initializes a Uniswap V3 pool with the specified initial liquidity amount. * @param initialLiquidityAmount The amount of liquidity to use for initializing the pool. */ function _createPool(uint256 initialLiquidityAmount) private { (address token0, address token1, , ) = _getTokenConfig( initialLiquidityAmount ); INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); poolAddress = manager.createAndInitializePoolIfNecessary( token0, token1, FEE_TIER, INITIAL_SQRT_PRICE_DRAGONX_BABYDRAGONX ); // Increase cardinality for observations enabling TWAP IUniswapV3Pool(poolAddress).increaseObservationCardinalityNext(100); // Update state pools[poolAddress] = true; } /** * @notice Mints a full range liquidity provider (LP) token in the Uniswap V3 pool. * @dev This function mints an LP token with the full price range in the Uniswap V3 pool. * @param initialLiquidityAmount The amount of liquidity to be used for minting the position. */ function _mintInitialPosition(uint256 initialLiquidityAmount) private { INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); ( address token0, address token1, uint256 amount0Desired, uint256 amount1Desired ) = _getTokenConfig(initialLiquidityAmount); INonfungiblePositionManager.MintParams memory params = INonfungiblePositionManager.MintParams({ token0: token0, token1: token1, fee: FEE_TIER, tickLower: MIN_TICK, tickUpper: MAX_TICK, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: (amount0Desired * 90) / 100, amount1Min: (amount1Desired * 90) / 100, recipient: address(this), deadline: block.timestamp }); (uint256 tokenId, uint256 liquidity, , ) = manager.mint(params); lpTokenInfo.tokenId = uint80(tokenId); lpTokenInfo.liquidity = uint128(liquidity); lpTokenInfo.tickLower = MIN_TICK; lpTokenInfo.tickUpper = MAX_TICK; } /** * @notice Collects liquidity pool fees from the Uniswap V3 pool. * @dev This function calls the Uniswap V3 `collect` function to retrieve LP fees. * @return amount0 The amount of `token0` collected as fees. * @return amount1 The amount of `token1` collected as fees. */ function _collectFees() private returns (uint256 amount0, uint256 amount1) { INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); INonfungiblePositionManager.CollectParams memory params = INonfungiblePositionManager.CollectParams( lpTokenInfo.tokenId, address(this), type(uint128).max, type(uint128).max ); (amount0, amount1) = manager.collect(params); } /** * @dev Adds liquidity to the Uniswap V3 pool for the BabyDragonX and DragonX tokens. * Attempts to add the desired amounts of token0 and token1 to the liquidity pool, with a * 10% minimum slippage tolerance. * * @param amount0Desired The desired amount of token0 to be added to the pool. * @param amount1Desired The desired amount of token1 to be added to the pool. * @return liquidity The amount of liquidity tokens received for the added liquidity. * @return amount0 The actual amount of token0 added to the pool. * @return amount1 The actual amount of token1 added to the pool. */ function _addLiquidity( uint256 amount0Desired, uint256 amount1Desired ) private returns (uint128 liquidity, uint256 amount0, uint256 amount1) { INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); INonfungiblePositionManager.IncreaseLiquidityParams memory params = INonfungiblePositionManager .IncreaseLiquidityParams({ tokenId: lpTokenInfo.tokenId, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: 0, amount1Min: 0, deadline: block.timestamp }); (liquidity, amount0, amount1) = manager.increaseLiquidity(params); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// 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/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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 ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { 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) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { 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) { 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 { 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 { 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/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/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// 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: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for IUniswapV3PoolActions#swap /// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface interface IUniswapV3SwapCallback { /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. /// @dev In the implementation you must pay the pool tokens owed for the swap. /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory. /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped. /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token0 to the pool. /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata data ) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import './pool/IUniswapV3PoolImmutables.sol'; import './pool/IUniswapV3PoolState.sol'; import './pool/IUniswapV3PoolDerivedState.sol'; import './pool/IUniswapV3PoolActions.sol'; import './pool/IUniswapV3PoolOwnerActions.sol'; import './pool/IUniswapV3PoolEvents.sol'; /// @title The interface for a Uniswap V3 Pool /// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform /// to the ERC20 specification /// @dev The pool interface is broken up into many smaller pieces interface IUniswapV3Pool is IUniswapV3PoolImmutables, IUniswapV3PoolState, IUniswapV3PoolDerivedState, IUniswapV3PoolActions, IUniswapV3PoolOwnerActions, IUniswapV3PoolEvents { }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissionless pool actions /// @notice Contains pool methods that can be called by anyone interface IUniswapV3PoolActions { /// @notice Sets the initial price for the pool /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96 function initialize(uint160 sqrtPriceX96) external; /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends /// on tickLower, tickUpper, the amount of liquidity, and the current price. /// @param recipient The address for which the liquidity will be created /// @param tickLower The lower tick of the position in which to add liquidity /// @param tickUpper The upper tick of the position in which to add liquidity /// @param amount The amount of liquidity to mint /// @param data Any data that should be passed through to the callback /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback function mint( address recipient, int24 tickLower, int24 tickUpper, uint128 amount, bytes calldata data ) external returns (uint256 amount0, uint256 amount1); /// @notice Collects tokens owed to a position /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. /// @param recipient The address which should receive the fees collected /// @param tickLower The lower tick of the position for which to collect fees /// @param tickUpper The upper tick of the position for which to collect fees /// @param amount0Requested How much token0 should be withdrawn from the fees owed /// @param amount1Requested How much token1 should be withdrawn from the fees owed /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested ) external returns (uint128 amount0, uint128 amount1); /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 /// @dev Fees must be collected separately via a call to #collect /// @param tickLower The lower tick of the position for which to burn liquidity /// @param tickUpper The upper tick of the position for which to burn liquidity /// @param amount How much liquidity to burn /// @return amount0 The amount of token0 sent to the recipient /// @return amount1 The amount of token1 sent to the recipient function burn( int24 tickLower, int24 tickUpper, uint128 amount ) external returns (uint256 amount0, uint256 amount1); /// @notice Swap token0 for token1, or token1 for token0 /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback /// @param recipient The address to receive the output of the swap /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0 /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative) /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this /// value after the swap. If one for zero, the price cannot be greater than this value after the swap /// @param data Any data to be passed through to the callback /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data ) external returns (int256 amount0, int256 amount1); /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling /// with 0 amount{0,1} and sending the donation amount(s) from the callback /// @param recipient The address which will receive the token0 and token1 amounts /// @param amount0 The amount of token0 to send /// @param amount1 The amount of token1 to send /// @param data Any data to be passed through to the callback function flash( address recipient, uint256 amount0, uint256 amount1, bytes calldata data ) external; /// @notice Increase the maximum number of price and liquidity observations that this pool will store /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to /// the input observationCardinalityNext. /// @param observationCardinalityNext The desired minimum number of observations for the pool to store function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that is not stored /// @notice Contains view functions to provide information about the pool that is computed rather than stored on the /// blockchain. The functions here may have variable gas costs. interface IUniswapV3PoolDerivedState { /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick, /// you must call it with secondsAgos = [3600, 0]. /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio. /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block /// timestamp function observe(uint32[] calldata secondsAgos) external view returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s); /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed. /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first /// snapshot is taken and the second snapshot is taken. /// @param tickLower The lower tick of the range /// @param tickUpper The upper tick of the range /// @return tickCumulativeInside The snapshot of the tick accumulator for the range /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range /// @return secondsInside The snapshot of seconds per liquidity for the range function snapshotCumulativesInside(int24 tickLower, int24 tickUpper) external view returns ( int56 tickCumulativeInside, uint160 secondsPerLiquidityInsideX128, uint32 secondsInside ); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Events emitted by a pool /// @notice Contains all events emitted by the pool interface IUniswapV3PoolEvents { /// @notice Emitted exactly once by a pool when #initialize is first called on the pool /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool event Initialize(uint160 sqrtPriceX96, int24 tick); /// @notice Emitted when liquidity is minted for a given position /// @param sender The address that minted the liquidity /// @param owner The owner of the position and recipient of any minted liquidity /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity minted to the position range /// @param amount0 How much token0 was required for the minted liquidity /// @param amount1 How much token1 was required for the minted liquidity event Mint( address sender, address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted when fees are collected by the owner of a position /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees /// @param owner The owner of the position for which fees are collected /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount0 The amount of token0 fees collected /// @param amount1 The amount of token1 fees collected event Collect( address indexed owner, address recipient, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount0, uint128 amount1 ); /// @notice Emitted when a position's liquidity is removed /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect /// @param owner The owner of the position for which liquidity is removed /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity to remove /// @param amount0 The amount of token0 withdrawn /// @param amount1 The amount of token1 withdrawn event Burn( address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted by the pool for any swaps between token0 and token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the output of the swap /// @param amount0 The delta of the token0 balance of the pool /// @param amount1 The delta of the token1 balance of the pool /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96 /// @param liquidity The liquidity of the pool after the swap /// @param tick The log base 1.0001 of price of the pool after the swap event Swap( address indexed sender, address indexed recipient, int256 amount0, int256 amount1, uint160 sqrtPriceX96, uint128 liquidity, int24 tick ); /// @notice Emitted by the pool for any flashes of token0/token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the tokens from flash /// @param amount0 The amount of token0 that was flashed /// @param amount1 The amount of token1 that was flashed /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee event Flash( address indexed sender, address indexed recipient, uint256 amount0, uint256 amount1, uint256 paid0, uint256 paid1 ); /// @notice Emitted by the pool for increases to the number of observations that can be stored /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index /// just before a mint/swap/burn. /// @param observationCardinalityNextOld The previous value of the next observation cardinality /// @param observationCardinalityNextNew The updated value of the next observation cardinality event IncreaseObservationCardinalityNext( uint16 observationCardinalityNextOld, uint16 observationCardinalityNextNew ); /// @notice Emitted when the protocol fee is changed by the pool /// @param feeProtocol0Old The previous value of the token0 protocol fee /// @param feeProtocol1Old The previous value of the token1 protocol fee /// @param feeProtocol0New The updated value of the token0 protocol fee /// @param feeProtocol1New The updated value of the token1 protocol fee event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New); /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner /// @param sender The address that collects the protocol fees /// @param recipient The address that receives the collected protocol fees /// @param amount0 The amount of token0 protocol fees that is withdrawn /// @param amount0 The amount of token1 protocol fees that is withdrawn event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that never changes /// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values interface IUniswapV3PoolImmutables { /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface /// @return The contract address function factory() external view returns (address); /// @notice The first of the two tokens of the pool, sorted by address /// @return The token contract address function token0() external view returns (address); /// @notice The second of the two tokens of the pool, sorted by address /// @return The token contract address function token1() external view returns (address); /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6 /// @return The fee function fee() external view returns (uint24); /// @notice The pool tick spacing /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ... /// This value is an int24 to avoid casting even though it is always positive. /// @return The tick spacing function tickSpacing() external view returns (int24); /// @notice The maximum amount of position liquidity that can use any tick in the range /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool /// @return The max amount of liquidity per tick function maxLiquidityPerTick() external view returns (uint128); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissioned pool actions /// @notice Contains pool methods that may only be called by the factory owner interface IUniswapV3PoolOwnerActions { /// @notice Set the denominator of the protocol's % share of the fees /// @param feeProtocol0 new protocol fee for token0 of the pool /// @param feeProtocol1 new protocol fee for token1 of the pool function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external; /// @notice Collect the protocol fee accrued to the pool /// @param recipient The address to which collected protocol fees should be sent /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1 /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0 /// @return amount0 The protocol fee collected in token0 /// @return amount1 The protocol fee collected in token1 function collectProtocol( address recipient, uint128 amount0Requested, uint128 amount1Requested ) external returns (uint128 amount0, uint128 amount1); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that can change /// @notice These methods compose the pool's state, and can change with any frequency including multiple times /// per transaction interface IUniswapV3PoolState { /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas /// when accessed externally. /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value /// tick The current tick of the pool, i.e. according to the last tick transition that was run. /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick /// boundary. /// observationIndex The index of the last oracle observation that was written, /// observationCardinality The current maximum number of observations stored in the pool, /// observationCardinalityNext The next maximum number of observations, to be updated when the observation. /// feeProtocol The protocol fee for both tokens of the pool. /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0 /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee. /// unlocked Whether the pool is currently locked to reentrancy function slot0() external view returns ( uint160 sqrtPriceX96, int24 tick, uint16 observationIndex, uint16 observationCardinality, uint16 observationCardinalityNext, uint8 feeProtocol, bool unlocked ); /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal0X128() external view returns (uint256); /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal1X128() external view returns (uint256); /// @notice The amounts of token0 and token1 that are owed to the protocol /// @dev Protocol fees will never exceed uint128 max in either token function protocolFees() external view returns (uint128 token0, uint128 token1); /// @notice The currently in range liquidity available to the pool /// @dev This value has no relationship to the total liquidity across all ticks function liquidity() external view returns (uint128); /// @notice Look up information about a specific tick in the pool /// @param tick The tick to look up /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or /// tick upper, /// liquidityNet how much liquidity changes when the pool price crosses the tick, /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0, /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1, /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick, /// secondsOutside the seconds spent on the other side of the tick from the current tick, /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false. /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0. /// In addition, these values are only relative and must be used only in comparison to previous snapshots for /// a specific position. function ticks(int24 tick) external view returns ( uint128 liquidityGross, int128 liquidityNet, uint256 feeGrowthOutside0X128, uint256 feeGrowthOutside1X128, int56 tickCumulativeOutside, uint160 secondsPerLiquidityOutsideX128, uint32 secondsOutside, bool initialized ); /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information function tickBitmap(int16 wordPosition) external view returns (uint256); /// @notice Returns the information about a position by the position's key /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper /// @return _liquidity The amount of liquidity in the position, /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke, /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke, /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke, /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke function positions(bytes32 key) external view returns ( uint128 _liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ); /// @notice Returns data about a specific observation index /// @param index The element of the observations array to fetch /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time /// ago, rather than at a specific index in the array. /// @return blockTimestamp The timestamp of the observation, /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp, /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp, /// Returns initialized whether the observation has been initialized and the values are safe to use function observations(uint256 index) external view returns ( uint32 blockTimestamp, int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128, bool initialized ); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol'; /// @title Router token swapping functionality /// @notice Functions for swapping tokens via Uniswap V3 interface ISwapRouter is IUniswapV3SwapCallback { struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } /// @notice Swaps `amountIn` of one token for as much as possible of another token /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata /// @return amountOut The amount of the received token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { bytes path; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; uint160 sqrtPriceLimitX96; } /// @notice Swaps as little as possible of one token for `amountOut` of another token /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata /// @return amountIn The amount of the input token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { bytes path; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; } /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed) /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata /// @return amountIn The amount of the input token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // UniSwap import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol"; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; // OpenZeppelins import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; // Library import "./lib/Constants.sol"; import "./lib/interfaces/IWETH.sol"; import "./lib/uniswap/PoolAddress.sol"; import "./lib/uniswap/Oracle.sol"; import "./lib/uniswap/TickMath.sol"; // Other import "./BabyDragonX.sol"; contract BabyDragonBuyAndBurn is Ownable2Step, ReentrancyGuard { using SafeERC20 for IERC20; using SafeERC20 for BabyDragonX; using SafeERC20 for IDragonX; // ----------------------------------------- // Type declarations // ----------------------------------------- // ----------------------------------------- // State variables // ----------------------------------------- /** * @dev The address of the BabyDragonX Contract. */ address public babyDragonAddress; /** * @dev Maximum slippage percentage acceptable when buying BabyDragonX with DragonX. * Slippage is expressed as a percentage (e.g., 5 for 5% slippage). */ uint256 public slippage; /** * @dev Tracks the total amount of DragonX used for purchasing BabyDragonX tokens. * This accumulates the DragonX spent over time in buy transactions. */ uint256 public totalDragonUsedForBuys; /** * @dev Tracks the total amount of BabyDragonX tokens purchased and burned. * This accumulates the BabyDragonX bought and subsequently burned over time. */ uint256 public totalBabyDragonBought; /** * @dev Tracks the current cap on the amount of DragonX that can be used per individual swap. * This cap can be adjusted to control the maximum size of each swap transaction. */ uint256 public capPerSwap; /** * @dev Records the timestamp of the last time the buy and burn function was called. * Used for tracking the interval between successive buy and burn operations. */ uint256 public lastCallTs; /** * @dev Specifies the interval in seconds between allowed buy and burn operations. * This sets a minimum time gap that must elapse before the buy and burn function can be called again. */ uint256 public interval; /** * @dev Specifies the value in minutes for the timed-weighted average when * calculating the BabyDragonX price (in DragonX) * for slippage protection. */ uint32 private _babyDragonPriceTwa; // ----------------------------------------- // Events // ----------------------------------------- /** * @notice Emitted when BabyDragonX tokens are purchased and burned. * @param dragon The amount of DragonX used for the purchase. * @param babyDragon The amount BabyDragonX tokens bought. * @param caller The address of the caller who initiated the transaction. */ event BabyDragonBoughtAndBurned( uint256 indexed dragon, uint256 indexed babyDragon, address indexed caller ); // ----------------------------------------- // Errors // ----------------------------------------- /** * @dev Thrown when the provided address is address(0) */ error InvalidBabyDragonAddress(); /** * @dev Thrown when the function caller is not authorized or expected. */ error InvalidCaller(); /** * @dev Thrown when trying to buy BabyDragonX but the cooldown period is still active. */ error CooldownPeriodActive(); /** * @dev Thrown when trying to buy BabyDragonX but there is no DragonX in the contract. */ error NoDragonToBuyBabyDragon(); /** * @dev Thrown when trying to call buy and burn while trading is not yet active. */ error TradingNotEnabled(); // ----------------------------------------- // Modifiers // ----------------------------------------- // ----------------------------------------- // Constructor // ----------------------------------------- /** * @notice Creates a new instance of the contract. * @dev Initializes the contract with predefined values for `capPerSwap`, `slippage`, and `interval`. * Inherits from Ownable and sets the contract deployer as the initial owner. * - Sets `capPerSwap` to 1000 DragonX, limiting the maximum amount of DragonX that can be used in each swap. * - Sets `slippage` to 5%, defining the maximum allowable price movement in a swap transaction. * - Sets `interval` to 15 minutes, establishing the minimum time between consecutive buy and burn operations. * - Sets `_babyDragonPriceTwa` to 15 minutes, establishing a protection against sandwich-attacks. */ constructor() Ownable(msg.sender) { // Set the cap to approx 1000 DragonX per day (called every hour) capPerSwap = 1000 ether; // Set the maximum slippage to 5% slippage = 5; // Set the minimum interval between buy and burn calls to 1 hour interval = 60 * 60; // Set TWA to 15 mins _babyDragonPriceTwa = 15; } // ----------------------------------------- // Receive function // ----------------------------------------- // ----------------------------------------- // Fallback function // ----------------------------------------- // ----------------------------------------- // External functions // ----------------------------------------- /** * @notice Executes a swap of DragonX for BabyDragonX tokens, applies incentive fees, * and updates relevant contracts and state. * @dev This function: * 1. Checks for valid BabyDragonX address. * 2. Ensures the caller is not a contract to prevent bot interactions. * 3. Enforces a cooldown period between successive calls. * 4. Calculates the DragonX amount to be used for the swap based on the contract's * DragonX balance and cap per swap. * 5. Deducts an incentive fee from the DragonX amount. * 6. Approves the swap router to spend DragonX. * 7. Calculates the minimum amount of BabyDragonX to be received in the swap, accounting for slippage. * 8. Performs the swap via the swap router. * 9. Burns the bought BabyDragonX. * 11. Updates state variables tracking DragonX used and BabyDragonX bought. * 12. Sends the incentive fee to the message sender. * 13. Emits a `BabyDragonBoughtAndBurned` event. * @return amountOut The amount of BabyDragonX tokens bought in the swap. * @custom:revert InvalidBabyDragonAddress If the BabyDragonX address is not set. * @custom:revert InvalidCaller If the function caller is a contract. * @custom:revert CooldownPeriodActive If the function is called again before the cooldown period has elapsed. * @custom:revert NoDragonToBuyBabyDragon If there is no DragonX available to buy BabyDragonX after * deducting the incentive fee. */ function buyAndBurnBabyDragonX() external nonReentrant returns (uint256 amountOut) { // Cache state variables address babyDragonAddress_ = babyDragonAddress; // Ensure BabyDragonX address has been set if (babyDragonAddress_ == address(0)) { revert InvalidBabyDragonAddress(); } //prevent contract accounts (bots) from calling this function if (msg.sender != tx.origin) { revert InvalidCaller(); } //a minium gap of `interval` between each call if (block.timestamp - lastCallTs <= interval) { revert CooldownPeriodActive(); } lastCallTs = block.timestamp; ISwapRouter swapRouter = ISwapRouter(UNI_SWAP_ROUTER); IDragonX dragonX = IDragonX(DRAGONX_ADDRESS); BabyDragonX babyDragonX = BabyDragonX(babyDragonAddress_); if (!babyDragonX.tradingEnabled()) { revert TradingNotEnabled(); } // Balance of this contract uint256 amountIn = dragonX.balanceOf(address(this)); uint256 dragonCap = capPerSwap; if (amountIn > dragonCap) { amountIn = dragonCap; } uint256 incentiveFee = (amountIn * INCENTIVE_FEE) / BASIS; amountIn -= incentiveFee; if (amountIn == 0) { revert NoDragonToBuyBabyDragon(); } // Approve the router to spend WETH dragonX.safeIncreaseAllowance(address(swapRouter), amountIn); // The minimum amount to receive uint256 amountOutMinimum = calculateMinimumBabyDragonAmount(amountIn); // Swap parameters ISwapRouter.ExactInputSingleParams memory params = ISwapRouter .ExactInputSingleParams({ tokenIn: DRAGONX_ADDRESS, tokenOut: babyDragonAddress_, fee: FEE_TIER, recipient: address(this), deadline: block.timestamp + 1, amountIn: amountIn, amountOutMinimum: amountOutMinimum, sqrtPriceLimitX96: 0 }); // Execute the swap amountOut = swapRouter.exactInputSingle(params); // Send incentive fee dragonX.transfer(msg.sender, incentiveFee); // Burn the bought BabyDragonX amount babyDragonX.burn(amountOut); // Update state totalDragonUsedForBuys += amountIn; totalBabyDragonBought += amountOut; // Emit events emit BabyDragonBoughtAndBurned(amountIn, amountOut, msg.sender); } /** * @dev Retrieves the total amount of DragonX available to buy BabyDragonX. * This function queries the balance of DragonX held by the contract itself. * * @notice Use this function to get the total DragonX available for purchasing BabyDragonX. * * @return balance The total amount of DragonX available, represented as a uint256. */ function totalDragonForBuy() external view returns (uint256 balance) { return IDragonX(DRAGONX_ADDRESS).balanceOf(address(this)); } /** * @dev Calculates the incentive fee for executing the buyAndBurnBabyDragonX function. * The fee is computed based on the DragonX amount designated for the next BabyDragonX purchase, * using the `dragonForNextBuyAndBurn` function, and applying a predefined incentive fee rate. * * @notice Used to determine the incentive fee for running the buyAndBurnBabyDragonX function. * * @return fee The calculated incentive fee, represented as a uint256. * This value is calculated by taking the product of `dragonForNextBuyAndBurn()` and * `INCENTIVE_FEE`, then dividing by `BASIS` to normalize the fee calculation. */ function incentiveFeeForRunningBuyAndBurnBabyDragonX() external view returns (uint256 fee) { uint256 forBuy = dragonForNextBuyAndBurn(); fee = (forBuy * INCENTIVE_FEE) / BASIS; } /** * @notice Sets the address of the BabyDragonX contract * @dev This function allows the contract owner to update the address of the BabyDragonX contract. * It includes a check to prevent setting the address to the zero address. * @param babyDragonAddress_ The new address to be set for the contract. * @custom:revert InvalidAddress If the provided address is the zero address. */ function setBabyDragonContractAddress( address babyDragonAddress_ ) external onlyOwner { if (babyDragonAddress_ == address(0)) { revert InvalidBabyDragonAddress(); } babyDragonAddress = babyDragonAddress_; } /** * @notice set DragonX cap amount per buynburn call. Only callable by owner address. * @param amount amount in 18 decimals */ function setCapPerSwap(uint256 amount) external onlyOwner { capPerSwap = amount; } /** * @notice set slippage % for buy and burn minimum received amount. Only callable by owner address. * @param amount amount from 0 - 50 */ function setSlippage(uint256 amount) external onlyOwner { require(amount >= 5 && amount <= 15, "5-15% only"); slippage = amount; } /** * @notice set the buy and burn interval in seconds. Only callable by owner address. * @param secs amount in seconds */ function setBuyAndBurnInterval(uint256 secs) external onlyOwner { require(secs >= 60 && secs <= 43200, "1m-12h only"); interval = secs; } /** * @notice set the TWA value used when calculting the BabyDragonX price. Only callable by owner address. * @param mins TWA in minutes */ function setBabyDragonPriceTwa(uint32 mins) external onlyOwner { require(mins >= 5 && mins <= 60, "5m-1h only"); _babyDragonPriceTwa = mins; } // ----------------------------------------- // Public functions // ----------------------------------------- /** * Get a quote for BabyDragonX for a given amount of DragonX * @notice Uses Time-Weighted Average Price (TWAP) and falls back to the pool price if TWAP is not available. * @param baseAmount The amount of DragonX for which the BabyDragonX quote is needed. * @return quote The amount of BabyDraognX. * @dev This function computes the TWAP of BabyDragonX in DragonX using the Uniswap V3 pool for * DragonX/BabyDragonX and the Oracle Library. Steps to compute the TWAP: * 1. Compute the pool address with the PoolAddress library using the Uniswap factory address, * the addresses of DragonX and BabyDragonX, and the fee tier. * 2. Determine the period for the TWAP calculation, limited by the oldest * available observation from the Oracle. * 3. If `secondsAgo` is zero, use the current price from the pool; otherwise, consult the Oracle Library * for the arithmetic mean tick for the calculated period. * 4. Convert the arithmetic mean tick to the square root price (sqrtPriceX96) and calculate the price * based on the specified baseAmount of ETH. */ function getBabyDragonQuoteForDragon( uint256 baseAmount ) public view returns (uint256 quote) { address poolAddress = PoolAddress.computeAddress( UNI_FACTORY, PoolAddress.getPoolKey(DRAGONX_ADDRESS, babyDragonAddress, FEE_TIER) ); uint32 secondsAgo = _babyDragonPriceTwa * 60; uint32 oldestObservation = OracleLibrary.getOldestObservationSecondsAgo( poolAddress ); // Limit to oldest observation if (oldestObservation < secondsAgo) { secondsAgo = oldestObservation; } uint160 sqrtPriceX96; if (secondsAgo == 0) { // Default to current price IUniswapV3Pool pool = IUniswapV3Pool(poolAddress); (sqrtPriceX96, , , , , , ) = pool.slot0(); } else { // Consult the Oracle Library for TWAP (int24 arithmeticMeanTick, ) = OracleLibrary.consult( poolAddress, secondsAgo ); // Convert tick to sqrtPriceX96 sqrtPriceX96 = TickMath.getSqrtRatioAtTick(arithmeticMeanTick); } return OracleLibrary.getQuoteForSqrtRatioX96( sqrtPriceX96, baseAmount, DRAGONX_ADDRESS, babyDragonAddress ); } /** * Calculate Minimum Amount Out for swapping DragonX to BabyDragonX * @notice Calculates the minimum amount of BabyDragonX tokens expected from a single-hop swap * starting with DragonX. * @dev This function calculates the minimum amount of BabyDragonX tokens that should be received when * swapping a given amount of DragonX for BabyDragonX, considering a specified slippage. * It involves the following steps: * 1. Get a quote for BabyDragonX with the given DragonX amount. * 2. Adjust the BabyDragonX amount for slippage to get the minimum amount out. * @param amountIn The amount of DragonX to be swapped. * @return amountOutMinimum The minimum amount of BabyDragonX tokens expected from the swap. */ function calculateMinimumBabyDragonAmount( uint256 amountIn ) public view returns (uint256) { // Calculate the expected amount of TITAN for the given amount of ETH uint256 expectedTitanAmount = getBabyDragonQuoteForDragon(amountIn); // Adjust for slippage (applied uniformly across both hops) uint256 adjustedTitanAmount = (expectedTitanAmount * (100 - slippage)) / 100; return adjustedTitanAmount; } /** * @dev Determines the DragonX amount available for the next call to buyAndBurnBabyDragonX. * This amount may be capped by a predefined limit `capPerSwap`. * * @notice Provides the amount of DragonX to be used in the next BabyDragonX purchase. * * @return forBuy The amount of DragonX available for the next buy, possibly subject to a cap. * If the balance exceeds `capPerSwap`, `forBuy` is set to `capPerSwap`. */ function dragonForNextBuyAndBurn() public view returns (uint256 forBuy) { // Cache state variables uint256 capPerSwap_ = capPerSwap; IERC20 dragonX = IERC20(DRAGONX_ADDRESS); forBuy = dragonX.balanceOf(address(this)); if (forBuy > capPerSwap_) { forBuy = capPerSwap_; } } // ----------------------------------------- // Internal functions // ----------------------------------------- // ----------------------------------------- // Private functions // ----------------------------------------- }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; /* Other */ uint256 constant BASIS = 10_000; /* Addresses */ address constant DRAGONX_ADDRESS = 0x96a5399D07896f757Bd4c6eF56461F58DB951862; address constant TITANX_ADDRESS = 0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1; address constant WETH9_ADDRESS = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address constant UNI_SWAP_ROUTER = 0xE592427A0AEce92De3Edee1F18E0157C05861564; address constant UNI_NONFUNGIBLEPOSITIONMANAGER = 0xC36442b4a4522E871399CD717aBDD847Ab11FE88; address constant UNI_FACTORY = 0x1F98431c8aD98523631AE4a59f267346ea31F984; /* Genesis and dedicated Addresses */ address constant DRAGONX_GENESIS_ADDRESS = 0x25C9E69177655FdA916d849B1d7C11BE32d2458b; address constant BABY_DRAGON_TEAM_ADDRESS = 0x3B30cC62f24183084779dfe4411506FB8b9a0F9D; address constant BABY_DRAGON_EXPENSES_ADDRESS = 0x62d7940FEEE2E7E9d1BEF21203b1e1441EB0B749; address constant BABY_DRAGON_GRANT_ADDRESS = 0x7877201c70892F6B5A896ddD9b909306EdD36220; address constant BABY_DRAGON_FUTURE_REWARDS_ADDRESS = 0xfc51fa192fa63d357d4Fc496A11Ca9d8383ec2c5; /* Uniswap Liquidity Pools (DragonX, BabyDragon) */ uint24 constant FEE_TIER = 10000; int24 constant MIN_TICK = -887200; int24 constant MAX_TICK = 887200; uint160 constant INITIAL_SQRT_PRICE_DRAGONX_BABYDRAGONX = 79228162514264337593543950336; // 1:1 /* BabyDragonX Constants */ uint256 constant INCENTIVE_FEE = 300;
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // OpenZeppelin import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IDragonX is IERC20 { // External functions function mint(uint256 amount) external; function stake() external; function claim() external returns (uint256 claimedAmount); function totalStakesOpened() external view returns (uint256 totalStakes); function incentiveFeeForClaim() external view returns (uint256 fee); function stakeReachedMaturity() external view returns (bool hasStakesToEnd, address instanceAddress, uint256 sId); function burn() external; function vault() external view returns (uint256 vault); function mintPhaseBegin() external view returns (uint256); function mintPhaseEnd() external view returns (uint256); function mintRatioWeekOne() external view returns (uint256); function mintRatioWeekTwo() external view returns (uint256); function mintRatioWeekThree() external view returns (uint256); function mintRatioWeekFour() external view returns (uint256); function mintRatioWeekFive() external view returns (uint256); function mintRatioWeekSix() external view returns (uint256); function mintRatioWeekSeven() external view returns (uint256); function mintRatioWeekEight() external view returns (uint256); function mintRatioWeekNine() external view returns (uint256); function mintRatioWeekTen() external view returns (uint256); function mintRatioWeekEleven() external view returns (uint256); function mintRatioWeekTwelve() external view returns (uint256); // Public functions function updateVault() external; function totalEthClaimable() external view returns (uint256 claimable); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; /** * @notice A subset of the Uniswap Interface to allow * using latest openzeppelin contracts */ interface INonfungiblePositionManager { // Structs for mint and collect functions struct MintParams { address token0; address token1; uint24 fee; int24 tickLower; int24 tickUpper; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; address recipient; uint256 deadline; } struct CollectParams { uint256 tokenId; address recipient; uint128 amount0Max; uint128 amount1Max; } struct IncreaseLiquidityParams { uint256 tokenId; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; uint256 deadline; } // Functions function createAndInitializePoolIfNecessary( address token0, address token1, uint24 fee, uint160 sqrtPriceX96 ) external payable returns (address pool); function mint( MintParams calldata params ) external payable returns ( uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1 ); function collect( CollectParams calldata params ) external payable returns (uint256 amount0, uint256 amount1); function increaseLiquidity( IncreaseLiquidityParams calldata params ) external returns (uint128 liquidity, uint256 amount0, uint256 amount1); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // OpenZeppelin import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // Enum for stake status enum StakeStatus { ACTIVE, ENDED, BURNED } // Struct for user stake information struct UserStakeInfo { uint152 titanAmount; uint128 shares; uint16 numOfDays; uint48 stakeStartTs; uint48 maturityTs; StakeStatus status; } // Struct for user stake struct UserStake { uint256 sId; uint256 globalStakeId; UserStakeInfo stakeInfo; } // Interface for the contract interface IStakeInfo { /** * @notice Get all stake info of a given user address. * @param user The address of the user to query stake information for. * @return An array of UserStake structs containing all stake info for the given address. */ function getUserStakes( address user ) external view returns (UserStake[] memory); /** @notice get stake info with stake id * @return stakeInfo stake info */ function getUserStakeInfo( address user, uint256 id ) external view returns (UserStakeInfo memory); } /** * @title The TitanX interface used by DragonX to manages stakes * @author The DragonX devs */ interface ITitanX is IERC20, IStakeInfo { /** * @notice Start a new stake * @param amount The amount of TitanX tokens to stake * @param numOfDays The length of the stake in days */ function startStake(uint256 amount, uint256 numOfDays) external; /** * @notice Claims available ETH payouts for a user based on their shares in various cycles. * @dev This function calculates the total reward from different cycles and transfers it to the caller. */ function claimUserAvailableETHPayouts() external; /** * @notice Calculates the total ETH claimable by a user for all cycles. * @dev This function sums up the rewards from various cycles based on user shares. * @param user The address of the user for whom to calculate the claimable ETH. * @return reward The total ETH reward claimable by the user. */ function getUserETHClaimableTotal( address user ) external view returns (uint256 reward); /** * @notice Allows anyone to sync dailyUpdate manually. * @dev Function to be called for manually triggering the daily update process. * This function is public and can be called by any external entity. */ function manualDailyUpdate() external; /** * @notice Trigger cycle payouts for days 8, 28, 90, 369, 888, including the burn reward cycle 28. * Payouts can be triggered on or after the maturity day of each cycle (e.g., Cycle8 on day 8). */ function triggerPayouts() external; /** * @notice Create a new mint * @param mintPower The power of the mint, ranging from 1 to 100. * @param numOfDays The duration of the mint, ranging from 1 to 280 days. */ function startMint(uint256 mintPower, uint256 numOfDays) external payable; /** * @notice Returns current mint cost * @return currentMintCost The current cost of minting. */ function getCurrentMintCost() external view returns (uint256); /** @notice end a stake * @param id stake id */ function endStake(uint256 id) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // OpenZeppelin import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IWETH9 is IERC20 { // Deposit ether to get wrapped ether function deposit() external payable; // Withdraw wrapped ether to get ether function withdraw(uint256) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // Uniswap import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; // OpenZeppelin import "@openzeppelin/contracts/utils/math/Math.sol"; /** * @notice Adapted Uniswap V3 OracleLibrary computation to be compliant with Solidity 0.8.x and later. * * Documentation for Auditors: * * Solidity Version: Updated the Solidity version pragma to ^0.8.0. This change ensures compatibility * with Solidity version 0.8.x. * * Safe Arithmetic Operations: Solidity 0.8.x automatically checks for arithmetic overflows/underflows. * Therefore, the code no longer needs to use SafeMath library (or similar) for basic arithmetic operations. * This change simplifies the code and reduces the potential for errors related to manual overflow/underflow checking. * * Overflow/Underflow: With the introduction of automatic overflow/underflow checks in Solidity 0.8.x, * the code is inherently safer and less prone to certain types of arithmetic errors. * * Removal of SafeMath Library: Since Solidity 0.8.x handles arithmetic operations safely, the use of SafeMath library * is omitted in this update. * * Git-style diff for the `consult` function: * * ```diff * function consult(address pool, uint32 secondsAgo) * internal * view * returns (int24 arithmeticMeanTick, uint128 harmonicMeanLiquidity) * { * require(secondsAgo != 0, 'BP'); * * uint32[] memory secondsAgos = new uint32[](2); * secondsAgos[0] = secondsAgo; * secondsAgos[1] = 0; * * (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s) = * IUniswapV3Pool(pool).observe(secondsAgos); * * int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0]; * uint160 secondsPerLiquidityCumulativesDelta = * secondsPerLiquidityCumulativeX128s[1] - secondsPerLiquidityCumulativeX128s[0]; * * - arithmeticMeanTick = int24(tickCumulativesDelta / secondsAgo); * + int56 secondsAgoInt56 = int56(uint56(secondsAgo)); * + arithmeticMeanTick = int24(tickCumulativesDelta / secondsAgoInt56); * // Always round to negative infinity * - if (tickCumulativesDelta < 0 && (tickCumulativesDelta % secondsAgo != 0)) arithmeticMeanTick--; * + if (tickCumulativesDelta < 0 && (tickCumulativesDelta % secondsAgoInt56 != 0)) arithmeticMeanTick--; * * - uint192 secondsAgoX160 = uint192(secondsAgo) * type(uint160).max; * + uint192 secondsAgoUint192 = uint192(secondsAgo); * + uint192 secondsAgoX160 = secondsAgoUint192 * type(uint160).max; * harmonicMeanLiquidity = uint128(secondsAgoX160 / (uint192(secondsPerLiquidityCumulativesDelta) << 32)); * } * ``` */ /// @title Oracle library /// @notice Provides functions to integrate with V3 pool oracle library OracleLibrary { /// @notice Calculates time-weighted means of tick and liquidity for a given Uniswap V3 pool /// @param pool Address of the pool that we want to observe /// @param secondsAgo Number of seconds in the past from which to calculate the time-weighted means /// @return arithmeticMeanTick The arithmetic mean tick from (block.timestamp - secondsAgo) to block.timestamp /// @return harmonicMeanLiquidity The harmonic mean liquidity from (block.timestamp - secondsAgo) to block.timestamp function consult( address pool, uint32 secondsAgo ) internal view returns (int24 arithmeticMeanTick, uint128 harmonicMeanLiquidity) { require(secondsAgo != 0, "BP"); uint32[] memory secondsAgos = new uint32[](2); secondsAgos[0] = secondsAgo; secondsAgos[1] = 0; ( int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s ) = IUniswapV3Pool(pool).observe(secondsAgos); int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0]; uint160 secondsPerLiquidityCumulativesDelta = secondsPerLiquidityCumulativeX128s[ 1 ] - secondsPerLiquidityCumulativeX128s[0]; // Safe casting of secondsAgo to int56 for division int56 secondsAgoInt56 = int56(uint56(secondsAgo)); arithmeticMeanTick = int24(tickCumulativesDelta / secondsAgoInt56); // Always round to negative infinity if ( tickCumulativesDelta < 0 && (tickCumulativesDelta % secondsAgoInt56 != 0) ) arithmeticMeanTick--; // Safe casting of secondsAgo to uint192 for multiplication uint192 secondsAgoUint192 = uint192(secondsAgo); harmonicMeanLiquidity = uint128( (secondsAgoUint192 * uint192(type(uint160).max)) / (uint192(secondsPerLiquidityCumulativesDelta) << 32) ); } /// @notice Given a pool, it returns the number of seconds ago of the oldest stored observation /// @param pool Address of Uniswap V3 pool that we want to observe /// @return secondsAgo The number of seconds ago of the oldest observation stored for the pool function getOldestObservationSecondsAgo( address pool ) internal view returns (uint32 secondsAgo) { ( , , uint16 observationIndex, uint16 observationCardinality, , , ) = IUniswapV3Pool(pool).slot0(); require(observationCardinality > 0, "NI"); (uint32 observationTimestamp, , , bool initialized) = IUniswapV3Pool( pool ).observations((observationIndex + 1) % observationCardinality); // The next index might not be initialized if the cardinality is in the process of increasing // In this case the oldest observation is always in index 0 if (!initialized) { (observationTimestamp, , , ) = IUniswapV3Pool(pool).observations(0); } secondsAgo = uint32(block.timestamp) - observationTimestamp; } /// @notice Given a tick and a token amount, calculates the amount of token received in exchange /// a slightly modified version of the UniSwap library getQuoteAtTick to accept a sqrtRatioX96 as input parameter /// @param sqrtRatioX96 The sqrt ration /// @param baseAmount Amount of token to be converted /// @param baseToken Address of an ERC20 token contract used as the baseAmount denomination /// @param quoteToken Address of an ERC20 token contract used as the quoteAmount denomination /// @return quoteAmount Amount of quoteToken received for baseAmount of baseToken function getQuoteForSqrtRatioX96( uint160 sqrtRatioX96, uint256 baseAmount, address baseToken, address quoteToken ) internal pure returns (uint256 quoteAmount) { // Calculate quoteAmount with better precision if it doesn't overflow when multiplied by itself if (sqrtRatioX96 <= type(uint128).max) { uint256 ratioX192 = uint256(sqrtRatioX96) * sqrtRatioX96; quoteAmount = baseToken < quoteToken ? Math.mulDiv(ratioX192, baseAmount, 1 << 192) : Math.mulDiv(1 << 192, baseAmount, ratioX192); } else { uint256 ratioX128 = Math.mulDiv( sqrtRatioX96, sqrtRatioX96, 1 << 64 ); quoteAmount = baseToken < quoteToken ? Math.mulDiv(ratioX128, baseAmount, 1 << 128) : Math.mulDiv(1 << 128, baseAmount, ratioX128); } } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; /** * @notice Adapted Uniswap V3 pool address computation to be compliant with Solidity 0.8.x and later. * @dev Changes were made to address the stricter type conversion rules in newer Solidity versions. * Original Uniswap V3 code directly converted a uint256 to an address, which is disallowed in Solidity 0.8.x. * Adaptation Steps: * 1. The `pool` address is computed by first hashing pool parameters. * 2. The resulting `uint256` hash is then explicitly cast to `uint160` before casting to `address`. * This two-step conversion process is necessary due to the Solidity 0.8.x restriction. * Direct conversion from `uint256` to `address` is disallowed to prevent mistakes * that can occur due to the size mismatch between the types. * 3. Added a require statement to ensure `token0` is less than `token1`, maintaining * Uniswap's invariant and preventing pool address calculation errors. * @param factory The Uniswap V3 factory contract address. * @param key The PoolKey containing token addresses and fee tier. * @return pool The computed address of the Uniswap V3 pool. * @custom:modification Explicit type conversion from `uint256` to `uint160` then to `address`. * * function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) { * require(key.token0 < key.token1); * pool = address( * uint160( // Explicit conversion to uint160 added for compatibility with Solidity 0.8.x * uint256( * keccak256( * abi.encodePacked( * hex'ff', * factory, * keccak256(abi.encode(key.token0, key.token1, key.fee)), * POOL_INIT_CODE_HASH * ) * ) * ) * ) * ); * } */ /// @dev This code is copied from Uniswap V3 which uses an older compiler version. /// @title Provides functions for deriving a pool address from the factory, tokens, and the fee library PoolAddress { bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54; /// @notice The identifying key of the pool struct PoolKey { address token0; address token1; uint24 fee; } /// @notice Returns PoolKey: the ordered tokens with the matched fee levels /// @param tokenA The first token of a pool, unsorted /// @param tokenB The second token of a pool, unsorted /// @param fee The fee level of the pool /// @return Poolkey The pool details with ordered token0 and token1 assignments function getPoolKey( address tokenA, address tokenB, uint24 fee ) internal pure returns (PoolKey memory) { if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA); return PoolKey({token0: tokenA, token1: tokenB, fee: fee}); } /// @notice Deterministically computes the pool address given the factory and PoolKey /// @param factory The Uniswap V3 factory contract address /// @param key The PoolKey /// @return pool The contract address of the V3 pool function computeAddress( address factory, PoolKey memory key ) internal pure returns (address pool) { require(key.token0 < key.token1); pool = address( uint160( // Convert uint256 to uint160 first uint256( keccak256( abi.encodePacked( hex"ff", factory, keccak256( abi.encode(key.token0, key.token1, key.fee) ), POOL_INIT_CODE_HASH ) ) ) ) ); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.8.24; /** * @notice Adapted Uniswap V3 TickMath library computation to be compliant with Solidity 0.8.x and later. * * Documentation for Auditors: * * Solidity Version: Updated the Solidity version pragma to ^0.8.0. This change ensures compatibility * with Solidity version 0.8.x. * * Safe Arithmetic Operations: Solidity 0.8.x automatically checks for arithmetic overflows/underflows. * Therefore, the code no longer needs to use the SafeMath library (or similar) for basic arithmetic operations. * This change simplifies the code and reduces the potential for errors related to manual overflow/underflow checking. * * Explicit Type Conversion: The explicit conversion of `MAX_TICK` from `int24` to `uint256` in the `require` statement * is safe and necessary for comparison with `absTick`, which is a `uint256`. This conversion is compliant with * Solidity 0.8.x's type system and does not introduce any arithmetic risk. * * Overflow/Underflow: With the introduction of automatic overflow/underflow checks in Solidity 0.8.x, * the code is inherently safer and less prone to certain types of arithmetic errors. * * Removal of SafeMath Library: Since Solidity 0.8.x handles arithmetic operations safely, * the use of the SafeMath library is omitted in this update. * * Git-style diff for the TickMath library: * * ```diff * - pragma solidity >=0.5.0 <0.8.0; * + pragma solidity ^0.8.0; * * function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) { * uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick)); * - require(absTick <= uint256(MAX_TICK), 'T'); * // Explicit type conversion for Solidity 0.8.x compatibility * + require(absTick <= uint256(int256(MAX_TICK)), 'T'); * * // ... (rest of the function) * } * * function getTickAtSqrtRatio( * uint160 sqrtPriceX96 * ) internal pure returns (int24 tick) { * // [Code for calculating the tick based on sqrtPriceX96 remains unchanged] * * - tick = tickLow == tickHi * - ? tickLow * - : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 * - ? tickHi * - : tickLow; * + if (tickLow == tickHi) { * + tick = tickLow; * + } else { * + tick = (getSqrtRatioAtTick(tickHi) <= sqrtPriceX96) ? tickHi : tickLow; * + } * } * ``` * * Note: Other than the pragma version change and the explicit type conversion in the `require` statement, * the original functions within the TickMath library are compatible with Solidity 0.8.x without * requiring any further modifications. This is due to the fact that the logic within these * functions already adheres to safe arithmetic practices and does not involve operations * that would be affected by the 0.8.x compiler's built-in checks. */ /// @title Math library for computing sqrt prices from ticks and vice versa /// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports /// prices between 2**-128 and 2**128 library TickMath { /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128 int24 internal constant MIN_TICK = -887272; /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128 int24 internal constant MAX_TICK = -MIN_TICK; /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK) uint160 internal constant MIN_SQRT_RATIO = 4295128739; /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK) uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; /// @notice Calculates sqrt(1.0001^tick) * 2^96 /// @dev Throws if |tick| > max tick /// @param tick The input tick for the above formula /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the /// ratio of the two assets (token1/token0) at the given tick function getSqrtRatioAtTick( int24 tick ) internal pure returns (uint160 sqrtPriceX96) { uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick)); require(absTick <= uint256(int256(MAX_TICK)), "T"); // Explicit type conversion for Solidity 0.8.x compatibility uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000; if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128; if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128; if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128; if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128; if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128; if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128; if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128; if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128; if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128; if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128; if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128; if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128; if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128; if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128; if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128; if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128; if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128; if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128; if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128; if (tick > 0) ratio = type(uint256).max / ratio; // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96. // we then downcast because we know the result always fits within 160 bits due to our tick input constraint // we round up in the division so getTickAtSqrtRatio of the output price is always consistent sqrtPriceX96 = uint160( (ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1) ); } /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may /// ever return. /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96 /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio function getTickAtSqrtRatio( uint160 sqrtPriceX96 ) internal pure returns (int24 tick) { // second inequality must be < because the price can never reach the price at the max tick require( sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, "R" ); uint256 ratio = uint256(sqrtPriceX96) << 32; uint256 r = ratio; uint256 msb = 0; assembly { let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(5, gt(r, 0xFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(4, gt(r, 0xFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(3, gt(r, 0xFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(2, gt(r, 0xF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(1, gt(r, 0x3)) msb := or(msb, f) r := shr(f, r) } assembly { let f := gt(r, 0x1) msb := or(msb, f) } if (msb >= 128) r = ratio >> (msb - 127); else r = ratio << (127 - msb); int256 log_2 = (int256(msb) - 128) << 64; assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(63, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(62, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(61, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(60, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(59, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(58, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(57, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(56, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(55, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(54, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(53, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(52, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(51, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(50, f)) } int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number int24 tickLow = int24( (log_sqrt10001 - 3402992956809132418596140100660247210) >> 128 ); int24 tickHi = int24( (log_sqrt10001 + 291339464771989622907027621153398088495) >> 128 ); // Adjusted logic for determining the tick if (tickLow == tickHi) { tick = tickLow; } else { tick = (getSqrtRatioAtTick(tickHi) <= sqrtPriceX96) ? tickHi : tickLow; } } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // UniSwap import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; // OpenZeppelin import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; // lib import "../lib/Constants.sol"; import "../lib/interfaces/IDragonX.sol"; import "../lib/interfaces/ITitanX.sol"; import "../lib/interfaces/INonfungiblePositionManager.sol"; import "../BabyDragonX.sol"; contract PoolHelper { uint24 constant LOWER_FEE_TIER = 100; address public babyDragonAddress; address public poolAddress; constructor(address babyDragonAddress_) { babyDragonAddress = babyDragonAddress_; } function initialize(uint256 initialLiquidityAmount) external { IDragonX dragonX = IDragonX(DRAGONX_ADDRESS); BabyDragonX babyDragonX = BabyDragonX(babyDragonAddress); // Mint initial liquidity babyDragonX.transferFrom( msg.sender, address(this), initialLiquidityAmount ); // Setup initial liquidity pool // Transfer the specified amount of DragonX tokens from the caller to this contract. dragonX.transferFrom(msg.sender, address(this), initialLiquidityAmount); // Approve the Uniswap non-fungible position manager to spend DragonX. dragonX.approve(UNI_NONFUNGIBLEPOSITIONMANAGER, initialLiquidityAmount); // Approve the UniSwap non-fungible position manager to spend BabyDragonX. babyDragonX.approve( UNI_NONFUNGIBLEPOSITIONMANAGER, initialLiquidityAmount ); // Create the initial liquidity pool in Uniswap V3. _createPool(initialLiquidityAmount); // Mint the initial position in the pool. _mintInitialPosition(initialLiquidityAmount); } function _getTokenConfig( uint256 initialLiquidityAmount ) private view returns ( address token0, address token1, uint256 amount0, uint256 amount1 ) { // Cache state variables address dragonAddress = DRAGONX_ADDRESS; amount0 = initialLiquidityAmount; amount1 = initialLiquidityAmount; if (dragonAddress < babyDragonAddress) { token0 = dragonAddress; token1 = babyDragonAddress; } else { token0 = babyDragonAddress; token1 = dragonAddress; } } function _createPool(uint256 initialLiquidityAmount) private { (address token0, address token1, , ) = _getTokenConfig( initialLiquidityAmount ); INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); poolAddress = manager.createAndInitializePoolIfNecessary( token0, token1, LOWER_FEE_TIER, INITIAL_SQRT_PRICE_DRAGONX_BABYDRAGONX ); // Increase cardinality for observations enabling TWAP IUniswapV3Pool(poolAddress).increaseObservationCardinalityNext(100); } function _mintInitialPosition(uint256 initialLiquidityAmount) private { INonfungiblePositionManager manager = INonfungiblePositionManager( UNI_NONFUNGIBLEPOSITIONMANAGER ); ( address token0, address token1, uint256 amount0Desired, uint256 amount1Desired ) = _getTokenConfig(initialLiquidityAmount); INonfungiblePositionManager.MintParams memory params = INonfungiblePositionManager.MintParams({ token0: token0, token1: token1, fee: LOWER_FEE_TIER, tickLower: MIN_TICK, tickUpper: MAX_TICK, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: (amount0Desired * 90) / 100, amount1Min: (amount1Desired * 90) / 100, recipient: address(this), deadline: block.timestamp + 600 }); manager.mint(params); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.24; // Library import "../BabyDragonBuyAndBurn.sol"; // A simple contract to trigger functions by a contract contract TriggerBot { function triggerBabyDragonBuyAndBurn( address babyDragonBuyAndBurnAddress ) external { BabyDragonBuyAndBurn(babyDragonBuyAndBurnAddress) .buyAndBurnBabyDragonX(); } }
{ "optimizer": { "enabled": true, "runs": 9999 }, "metadata": { "bytecodeHash": "none" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"babyDragonBuyAndBurnAddress_","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"uint256","name":"dragon","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"babyDragon","type":"uint256"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"CollectedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"babyDragonBuyAndBurnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMintRatio","outputs":[{"internalType":"uint256","name":"ratio","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"initialLiquidityAmount","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"enum BabyDragonX.Initialized","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokenInfo","outputs":[{"internalType":"uint80","name":"tokenId","type":"uint80"},{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"titanAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPhaseBegin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPhaseEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFinalized","outputs":[{"internalType":"enum BabyDragonX.MintingFinalized","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"babyDragonBuyAndBurnAddress_","type":"address"}],"name":"setBabyDragonBuyAndBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress_","type":"address"},{"internalType":"bool","name":"isPool","type":"bool"}],"name":"setPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBabyDragonBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDragonSentToBabyDragonBuyAndBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002deb38038062002deb8339810160408190526200003491620001ca565b336040518060400160405280600c81526020016b084c2c4f24088e4c2cededcb60a31b8152506040518060400160405280600381526020016208488b60eb1b8152508160039081620000879190620002a3565b506004620000968282620002a3565b5050506001600160a01b038116620000c957604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000d4816200015a565b506001600160a01b0381166200011f5760405162461bcd60e51b815260206004820152600f60248201526e696e76616c6964206164647265737360881b6044820152606401620000c0565b600b805461ffff19169055600e805460ff19169055601080546001600160a01b0319166001600160a01b03929092169190911790556200036f565b600680546001600160a01b0319169055620001758162000178565b50565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208284031215620001dd57600080fd5b81516001600160a01b0381168114620001f557600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029e576000816000526020600020601f850160051c81016020861015620002795750805b601f850160051c820191505b818110156200029a5782815560010162000285565b5050505b505050565b81516001600160401b03811115620002bf57620002bf620001fc565b620002d781620002d0845462000212565b846200024e565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029a565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612a6c806200037f6000396000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c806379ba50971161012a578063c8796572116100bd578063e0ca94201161008c578063eec90e3e11610071578063eec90e3e1461050c578063f2fde38b1461051f578063fe4b84df1461053257600080fd5b8063e0ca9420146104f2578063e30c3978146104fb57600080fd5b8063c87965721461049f578063cfd5ee46146104a7578063d84caa2f146104b0578063dd62ed3e146104b957600080fd5b8063a223111c116100f9578063a223111c1461044e578063a4063dbc14610456578063a569a08e14610479578063a9059cbb1461048c57600080fd5b806379ba50971461041a5780638da5cb5b1461042257806395d89b4114610433578063a0712d681461043b57600080fd5b8063313ce567116101a25780634c9e08c4116101715780634c9e08c4146103d857806370a08231146103e0578063715018a61461040957806378f864851461041157600080fd5b8063313ce5671461039757806342966c68146103a65780634934bf5c146103b95780634ada218b146103cb57600080fd5b80631755ff21116101de5780631755ff211461033257806318160ddd1461035d57806320bec12c1461036f57806323b872dd1461038457600080fd5b806306fdde0314610210578063095ea7b31461022e5780630e7eda7d14610251578063158ef93e14610318575b600080fd5b610218610545565b604051610225919061255e565b60405180910390f35b61024161023c3660046125e0565b6105d7565b6040519015158152602001610225565b600f546102d19069ffffffffffffffffffff8116906fffffffffffffffffffffffffffffffff6a0100000000000000000000820416907a0100000000000000000000000000000000000000000000000000008104600290810b917d0100000000000000000000000000000000000000000000000000000000009004900b84565b6040805169ffffffffffffffffffff90951685526fffffffffffffffffffffffffffffffff9093166020850152600291820b928401929092520b6060820152608001610225565b600b546103259060ff1681565b6040516102259190612672565b600954610345906001600160a01b031681565b6040516001600160a01b039091168152602001610225565b6002545b604051908152602001610225565b61038261037d366004612693565b6105f1565b005b6102416103923660046126cc565b61069d565b60405160128152602001610225565b6103826103b436600461270d565b6106c1565b600b5461032590610100900460ff1681565b600e546102419060ff1681565b610361610736565b6103616103ee366004612726565b6001600160a01b031660009081526020819052604090205490565b610382610867565b610361600d5481565b61038261087b565b6005546001600160a01b0316610345565b6102186108d5565b61038261044936600461270d565b6108e4565b610382610e12565b610241610464366004612726565b600a6020526000908152604090205460ff1681565b610382610487366004612726565b611401565b61024161049a3660046125e0565b611499565b6103826114a7565b61036160085481565b610361600c5481565b6103616104c736600461274a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61036160075481565b6006546001600160a01b0316610345565b601054610345906001600160a01b031681565b61038261052d366004612726565b611666565b61038261054036600461270d565b6116ef565b60606003805461055490612778565b80601f016020809104026020016040519081016040528092919081815260200182805461058090612778565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000336105e581858561194c565b60019150505b92915050565b6105f961195e565b6001600160a01b0382166106545760405162461bcd60e51b815260206004820152600f60248201527f696e76616c69642061646472657373000000000000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000336106ab8582856119a4565b6106b6858585611a59565b506001949350505050565b600081116107115760405162461bcd60e51b815260206004820152600e60248201527f696e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161064b565b80600d600082825461072391906127fa565b9091555061073390503382611aea565b50565b60006001600b5460ff1660018111156107515761075161260c565b1461079e5760405162461bcd60e51b815260206004820152601360248201527f6e6f742079657420696e697469616c697a656400000000000000000000000000604482015260640161064b565b6007544210156107f05760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e67206e6f74207374617274656400000000000000000000000000604482015260640161064b565b6008544211156108425760405162461bcd60e51b815260206004820152601160248201527f6d696e74696e672068617320656e646564000000000000000000000000000000604482015260640161064b565b6007546108529062093a806127fa565b421015610860575061271090565b5061251c90565b61086f61195e565b6108796000611b3d565b565b60065433906001600160a01b031681146108cc576040517f118cdaa70000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260240161064b565b61073381611b3d565b60606004805461055490612778565b7396a5399d07896f757bd4c6ef56461f58db95186273f19308f923582a6f7c465e5ce7a9dc1bec6665b16001600b5460ff1660018111156109275761092761260c565b146109745760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420696e697469616c697a65640000000000000000000000000000000000604482015260640161064b565b600083116109c45760405162461bcd60e51b815260206004820152600e60248201527f696e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161064b565b60006109ce610736565b905060006127106109e1866102bc61280d565b6109eb9190612853565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152733b30cc62f24183084779dfe4411506fb8b9a0f9d6024820152604481018290529091506001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a929190612867565b506000612710610aa4876101f461280d565b610aae9190612853565b6040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201527362d7940feee2e7e9d1bef21203b1e1441eb0b7496024820152604481018290529091506001600160a01b038516906323b872dd906064016020604051808303816000875af1158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190612867565b506000612710610b6688606461280d565b610b709190612853565b6040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201527325c9e69177655fda916d849b1d7c11be32d2458b6024820152604481018290529091506001600160a01b038616906323b872dd906064016020604051808303816000875af1158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c179190612867565b5060008183610c26868b612884565b610c309190612884565b610c3a9190612884565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018290529091506001600160a01b038716906323b872dd906064016020604051808303816000875af1158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd9190612867565b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527396a5399d07896f757bd4c6ef56461f58db9518626004820152602481018290526001600160a01b0387169063095ea7b3906044016020604051808303816000875af1158015610d48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6c9190612867565b506040517fa0712d68000000000000000000000000000000000000000000000000000000008152600481018290526001600160a01b0388169063a0712d6890602401600060405180830381600087803b158015610dc857600080fd5b505af1158015610ddc573d6000803e3d6000fd5b505050506000612710868a610df1919061280d565b610dfb9190612853565b9050610e073382611b6e565b505050505050505050565b610e1a61195e565b6008544211610e6b5760405162461bcd60e51b815260206004820152601260248201527f6d696e74696e67207374696c6c206f70656e0000000000000000000000000000604482015260640161064b565b6000600b54610100900460ff166001811115610e8957610e8961260c565b14610ed65760405162461bcd60e51b815260206004820152601960248201527f6d696e74696e6720616c72656164792066696e616c697a656400000000000000604482015260640161064b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527396a5399d07896f757bd4c6ef56461f58db9518629060009082906370a0823190602401602060405180830381865afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f679190612897565b90506000612710610f7a8361138861280d565b610f849190612853565b90506000612710610f978461012c61280d565b610fa19190612853565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152733b30cc62f24183084779dfe4411506fb8b9a0f9d6004820152602481018290529091506001600160a01b0385169063a9059cbb906044016020604051808303816000875af115801561101e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110429190612867565b506000816110508486612884565b61105a9190612884565b6010546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810183905291925086169063a9059cbb906044016020604051808303816000875af11580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec9190612867565b5080600c60008282546110ff91906127fa565b909155505060025461113d737877201c70892f6b5a896ddd9b909306edd3622061271061112e8461019061280d565b6111389190612853565b611b6e565b61116473fc51fa192fa63d357d4fc496a11ca9d8383ec2c561271061112e846103e861280d565b83806111703082611b6e565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273c36442b4a4522e871399cd717abdd847ab11fe886004820152602481018790526001600160a01b0389169063095ea7b3906044016020604051808303816000875af11580156111ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120e9190612867565b5061122e3073c36442b4a4522e871399cd717abdd847ab11fe888861194c565b600061123a8383611bbd565b5050600f80547fffffffffffff00000000000000000000000000000000ffffffffffffffffffff166a01000000000000000000006fffffffffffffffffffffffffffffffff8416021790556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529091506000906001600160a01b038b16906370a0823190602401602060405180830381865afa1580156112e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130c9190612897565b111561136657886001600160a01b03166344df8e706040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b505050505b30600090815260208190526040902054801561139e5780600d600082825461138e91906127fa565b9091555061139e90503082611aea565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055505050505050565b61140961195e565b6001600160a01b03811661145f5760405162461bcd60e51b815260206004820152600f60248201527f696e76616c696420616464726573730000000000000000000000000000000000604482015260640161064b565b601080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000336105e5818585611a59565b6001600b5460ff1660018111156114c0576114c061260c565b1461150d5760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420696e697469616c697a65640000000000000000000000000000000000604482015260640161064b565b7396a5399d07896f757bd4c6ef56461f58db9518623060008061152e611cc4565b91509150600080846001600160a01b0316866001600160a01b0316101561155957508290508161155f565b50819050825b80600d600082825461157191906127fa565b9091555061158190503082611aea565b600086905082600c600082825461159891906127fa565b90915550506010546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018590529082169063a9059cbb906044016020604051808303816000875af1158015611609573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162d9190612867565b506040513390839085907fb3ff07f4fe20273bbc264b773aacc6325987f8b0b1aa4c5bdfe5b75fdbd1284c90600090a450505050505050565b61166e61195e565b600680546001600160a01b0383167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556116b76005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f761195e565b6000600b5460ff1660018111156117105761171061260c565b1461175d5760405162461bcd60e51b815260206004820152601360248201527f616c726561647920696e697469616c697a656400000000000000000000000000604482015260640161064b565b7396a5399d07896f757bd4c6ef56461f58db95186261177c3083611b6e565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b038216906323b872dd906064016020604051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190612867565b506040517f095ea7b300000000000000000000000000000000000000000000000000000000815273c36442b4a4522e871399cd717abdd847ab11fe886004820152602481018390526001600160a01b0382169063095ea7b3906044016020604051808303816000875af1158015611887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ab9190612867565b506118cb3073c36442b4a4522e871399cd717abdd847ab11fe888461194c565b6118d482611dc6565b6118dd82611f7d565b4260006118ed62015180836128b0565b6118fa9062015180612884565b905061190681836127fa565b600781905561191890621275006127fa565b6008555050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b611959838383600161219f565b505050565b6005546001600160a01b03163314610879576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161064b565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a535781811015611a44576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602481018290526044810183905260640161064b565b611a538484848403600061219f565b50505050565b6001600160a01b038316611a9c576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b038216611adf576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6119598383836122a6565b6001600160a01b038216611b2d576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b611b39826000836122a6565b5050565b600680547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561073381612373565b6001600160a01b038216611bb1576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b611b39600083836122a6565b6040805160c081018252600f5469ffffffffffffffffffff16815260208101848152818301848152600060608401818152608085018281524260a0870190815296517f219f5d1700000000000000000000000000000000000000000000000000000000815286516004820152945160248601529251604485015251606484015290516084830152925160a48201528291829173c36442b4a4522e871399cd717abdd847ab11fe889190829063219f5d179060c4016060604051808303816000875af1158015611c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb491906128e9565b9199909850909650945050505050565b60408051608081018252600f5469ffffffffffffffffffff16815230602082019081526fffffffffffffffffffffffffffffffff8284018181526060840182815294517ffc6f78650000000000000000000000000000000000000000000000000000000081528451600482015292516001600160a01b03166024840152518116604483015292519092166064830152600091829173c36442b4a4522e871399cd717abdd847ab11fe8891829063fc6f78659060840160408051808303816000875af1158015611d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbb919061291e565b909590945092505050565b600080611dd2836123dd565b50506040517f13ead5620000000000000000000000000000000000000000000000000000000081526001600160a01b0380841660048301528216602482015261271060448201526c010000000000000000000000006064820152919350915073c36442b4a4522e871399cd717abdd847ab11fe889081906313ead562906084016020604051808303816000875af1158015611e71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e959190612942565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691821790556040517f32148f67000000000000000000000000000000000000000000000000000000008152606460048201526332148f6790602401600060405180830381600087803b158015611f1c57600080fd5b505af1158015611f30573d6000803e3d6000fd5b50506009546001600160a01b03166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055505050505050565b73c36442b4a4522e871399cd717abdd847ab11fe886000808080611fa0866123dd565b93509350935093506000604051806101600160405280866001600160a01b03168152602001856001600160a01b0316815260200161271062ffffff1681526020017ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff2766060020b8152602001620d89a060020b8152602001848152602001838152602001606485605a612031919061280d565b61203b9190612853565b8152602001606461204d85605a61280d565b6120579190612853565b815230602082015242604091820152517f8831645600000000000000000000000000000000000000000000000000000000815290915060009081906001600160a01b038916906388316456906120b190869060040161295f565b6080604051808303816000875af11580156120d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f49190612a23565b5050600f805469ffffffffffffffffffff939093167fffffffffffff0000000000000000000000000000000000000000000000000000909316929092176fffffffffffffffffffffffffffffffff919091166a0100000000000000000000021779ffffffffffffffffffffffffffffffffffffffffffffffffffff167f0d89a0f276600000000000000000000000000000000000000000000000000000179055505050505050505050565b6001600160a01b0384166121e2576040517fe602df050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b038316612225576040517f94280d620000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015611a5357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161229891815260200190565b60405180910390a350505050565b6001600160a01b03831630148015906122c857506001600160a01b0382163014155b15612368576001600160a01b0383166000908152600a602052604090205460ff1615801561230f57506001600160a01b0382166000908152600a602052604090205460ff16155b8061231c5750600e5460ff165b6123685760405162461bcd60e51b815260206004820152601b60248201527f74726164696e6720776173206e6f7420656e61626c6564207965740000000000604482015260640161064b565b61195983838361241b565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082807396a5399d07896f757bd4c6ef56461f58db951862308082101561240b57819550809450612412565b8095508194505b50509193509193565b6001600160a01b03831661244657806002600082825461243b91906127fa565b909155506124d19050565b6001600160a01b038316600090815260208190526040902054818110156124b2576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602481018290526044810183905260640161064b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166124ed5760028054829003905561250c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161255191815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561258c57858101830151858201604001528201612570565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b038116811461073357600080fd5b600080604083850312156125f357600080fd5b82356125fe816125cb565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110610733577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810161267f8361263b565b91905290565b801515811461073357600080fd5b600080604083850312156126a657600080fd5b82356126b1816125cb565b915060208301356126c181612685565b809150509250929050565b6000806000606084860312156126e157600080fd5b83356126ec816125cb565b925060208401356126fc816125cb565b929592945050506040919091013590565b60006020828403121561271f57600080fd5b5035919050565b60006020828403121561273857600080fd5b8135612743816125cb565b9392505050565b6000806040838503121561275d57600080fd5b8235612768816125cb565b915060208301356126c1816125cb565b600181811c9082168061278c57607f821691505b6020821081036127c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156105eb576105eb6127cb565b80820281158282048414176105eb576105eb6127cb565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261286257612862612824565b500490565b60006020828403121561287957600080fd5b815161274381612685565b818103818111156105eb576105eb6127cb565b6000602082840312156128a957600080fd5b5051919050565b6000826128bf576128bf612824565b500690565b80516fffffffffffffffffffffffffffffffff811681146128e457600080fd5b919050565b6000806000606084860312156128fe57600080fd5b612907846128c4565b925060208401519150604084015190509250925092565b6000806040838503121561293157600080fd5b505080516020909101519092909150565b60006020828403121561295457600080fd5b8151612743816125cb565b81516001600160a01b031681526101608101602083015161298b60208401826001600160a01b03169052565b5060408301516129a2604084018262ffffff169052565b5060608301516129b7606084018260020b9052565b5060808301516129cc608084018260020b9052565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151612a12828501826001600160a01b03169052565b505061014092830151919092015290565b60008060008060808587031215612a3957600080fd5b84519350612a49602086016128c4565b604086015160609096015194979096509250505056fea164736f6c6343000818000a000000000000000000000000836cad9ea4e47c6a8969c2f48f908b32864a6617
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061020b5760003560e01c806379ba50971161012a578063c8796572116100bd578063e0ca94201161008c578063eec90e3e11610071578063eec90e3e1461050c578063f2fde38b1461051f578063fe4b84df1461053257600080fd5b8063e0ca9420146104f2578063e30c3978146104fb57600080fd5b8063c87965721461049f578063cfd5ee46146104a7578063d84caa2f146104b0578063dd62ed3e146104b957600080fd5b8063a223111c116100f9578063a223111c1461044e578063a4063dbc14610456578063a569a08e14610479578063a9059cbb1461048c57600080fd5b806379ba50971461041a5780638da5cb5b1461042257806395d89b4114610433578063a0712d681461043b57600080fd5b8063313ce567116101a25780634c9e08c4116101715780634c9e08c4146103d857806370a08231146103e0578063715018a61461040957806378f864851461041157600080fd5b8063313ce5671461039757806342966c68146103a65780634934bf5c146103b95780634ada218b146103cb57600080fd5b80631755ff21116101de5780631755ff211461033257806318160ddd1461035d57806320bec12c1461036f57806323b872dd1461038457600080fd5b806306fdde0314610210578063095ea7b31461022e5780630e7eda7d14610251578063158ef93e14610318575b600080fd5b610218610545565b604051610225919061255e565b60405180910390f35b61024161023c3660046125e0565b6105d7565b6040519015158152602001610225565b600f546102d19069ffffffffffffffffffff8116906fffffffffffffffffffffffffffffffff6a0100000000000000000000820416907a0100000000000000000000000000000000000000000000000000008104600290810b917d0100000000000000000000000000000000000000000000000000000000009004900b84565b6040805169ffffffffffffffffffff90951685526fffffffffffffffffffffffffffffffff9093166020850152600291820b928401929092520b6060820152608001610225565b600b546103259060ff1681565b6040516102259190612672565b600954610345906001600160a01b031681565b6040516001600160a01b039091168152602001610225565b6002545b604051908152602001610225565b61038261037d366004612693565b6105f1565b005b6102416103923660046126cc565b61069d565b60405160128152602001610225565b6103826103b436600461270d565b6106c1565b600b5461032590610100900460ff1681565b600e546102419060ff1681565b610361610736565b6103616103ee366004612726565b6001600160a01b031660009081526020819052604090205490565b610382610867565b610361600d5481565b61038261087b565b6005546001600160a01b0316610345565b6102186108d5565b61038261044936600461270d565b6108e4565b610382610e12565b610241610464366004612726565b600a6020526000908152604090205460ff1681565b610382610487366004612726565b611401565b61024161049a3660046125e0565b611499565b6103826114a7565b61036160085481565b610361600c5481565b6103616104c736600461274a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61036160075481565b6006546001600160a01b0316610345565b601054610345906001600160a01b031681565b61038261052d366004612726565b611666565b61038261054036600461270d565b6116ef565b60606003805461055490612778565b80601f016020809104026020016040519081016040528092919081815260200182805461058090612778565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000336105e581858561194c565b60019150505b92915050565b6105f961195e565b6001600160a01b0382166106545760405162461bcd60e51b815260206004820152600f60248201527f696e76616c69642061646472657373000000000000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000336106ab8582856119a4565b6106b6858585611a59565b506001949350505050565b600081116107115760405162461bcd60e51b815260206004820152600e60248201527f696e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161064b565b80600d600082825461072391906127fa565b9091555061073390503382611aea565b50565b60006001600b5460ff1660018111156107515761075161260c565b1461079e5760405162461bcd60e51b815260206004820152601360248201527f6e6f742079657420696e697469616c697a656400000000000000000000000000604482015260640161064b565b6007544210156107f05760405162461bcd60e51b815260206004820152601360248201527f6d696e74696e67206e6f74207374617274656400000000000000000000000000604482015260640161064b565b6008544211156108425760405162461bcd60e51b815260206004820152601160248201527f6d696e74696e672068617320656e646564000000000000000000000000000000604482015260640161064b565b6007546108529062093a806127fa565b421015610860575061271090565b5061251c90565b61086f61195e565b6108796000611b3d565b565b60065433906001600160a01b031681146108cc576040517f118cdaa70000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260240161064b565b61073381611b3d565b60606004805461055490612778565b7396a5399d07896f757bd4c6ef56461f58db95186273f19308f923582a6f7c465e5ce7a9dc1bec6665b16001600b5460ff1660018111156109275761092761260c565b146109745760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420696e697469616c697a65640000000000000000000000000000000000604482015260640161064b565b600083116109c45760405162461bcd60e51b815260206004820152600e60248201527f696e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161064b565b60006109ce610736565b905060006127106109e1866102bc61280d565b6109eb9190612853565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152733b30cc62f24183084779dfe4411506fb8b9a0f9d6024820152604481018290529091506001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a929190612867565b506000612710610aa4876101f461280d565b610aae9190612853565b6040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201527362d7940feee2e7e9d1bef21203b1e1441eb0b7496024820152604481018290529091506001600160a01b038516906323b872dd906064016020604051808303816000875af1158015610b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b559190612867565b506000612710610b6688606461280d565b610b709190612853565b6040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201527325c9e69177655fda916d849b1d7c11be32d2458b6024820152604481018290529091506001600160a01b038616906323b872dd906064016020604051808303816000875af1158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c179190612867565b5060008183610c26868b612884565b610c309190612884565b610c3a9190612884565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018290529091506001600160a01b038716906323b872dd906064016020604051808303816000875af1158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd9190612867565b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527396a5399d07896f757bd4c6ef56461f58db9518626004820152602481018290526001600160a01b0387169063095ea7b3906044016020604051808303816000875af1158015610d48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6c9190612867565b506040517fa0712d68000000000000000000000000000000000000000000000000000000008152600481018290526001600160a01b0388169063a0712d6890602401600060405180830381600087803b158015610dc857600080fd5b505af1158015610ddc573d6000803e3d6000fd5b505050506000612710868a610df1919061280d565b610dfb9190612853565b9050610e073382611b6e565b505050505050505050565b610e1a61195e565b6008544211610e6b5760405162461bcd60e51b815260206004820152601260248201527f6d696e74696e67207374696c6c206f70656e0000000000000000000000000000604482015260640161064b565b6000600b54610100900460ff166001811115610e8957610e8961260c565b14610ed65760405162461bcd60e51b815260206004820152601960248201527f6d696e74696e6720616c72656164792066696e616c697a656400000000000000604482015260640161064b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527396a5399d07896f757bd4c6ef56461f58db9518629060009082906370a0823190602401602060405180830381865afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f679190612897565b90506000612710610f7a8361138861280d565b610f849190612853565b90506000612710610f978461012c61280d565b610fa19190612853565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152733b30cc62f24183084779dfe4411506fb8b9a0f9d6004820152602481018290529091506001600160a01b0385169063a9059cbb906044016020604051808303816000875af115801561101e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110429190612867565b506000816110508486612884565b61105a9190612884565b6010546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201526024810183905291925086169063a9059cbb906044016020604051808303816000875af11580156110c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ec9190612867565b5080600c60008282546110ff91906127fa565b909155505060025461113d737877201c70892f6b5a896ddd9b909306edd3622061271061112e8461019061280d565b6111389190612853565b611b6e565b61116473fc51fa192fa63d357d4fc496a11ca9d8383ec2c561271061112e846103e861280d565b83806111703082611b6e565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273c36442b4a4522e871399cd717abdd847ab11fe886004820152602481018790526001600160a01b0389169063095ea7b3906044016020604051808303816000875af11580156111ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120e9190612867565b5061122e3073c36442b4a4522e871399cd717abdd847ab11fe888861194c565b600061123a8383611bbd565b5050600f80547fffffffffffff00000000000000000000000000000000ffffffffffffffffffff166a01000000000000000000006fffffffffffffffffffffffffffffffff8416021790556040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529091506000906001600160a01b038b16906370a0823190602401602060405180830381865afa1580156112e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130c9190612897565b111561136657886001600160a01b03166344df8e706040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b505050505b30600090815260208190526040902054801561139e5780600d600082825461138e91906127fa565b9091555061139e90503082611aea565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055505050505050565b61140961195e565b6001600160a01b03811661145f5760405162461bcd60e51b815260206004820152600f60248201527f696e76616c696420616464726573730000000000000000000000000000000000604482015260640161064b565b601080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000336105e5818585611a59565b6001600b5460ff1660018111156114c0576114c061260c565b1461150d5760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420696e697469616c697a65640000000000000000000000000000000000604482015260640161064b565b7396a5399d07896f757bd4c6ef56461f58db9518623060008061152e611cc4565b91509150600080846001600160a01b0316866001600160a01b0316101561155957508290508161155f565b50819050825b80600d600082825461157191906127fa565b9091555061158190503082611aea565b600086905082600c600082825461159891906127fa565b90915550506010546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018590529082169063a9059cbb906044016020604051808303816000875af1158015611609573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162d9190612867565b506040513390839085907fb3ff07f4fe20273bbc264b773aacc6325987f8b0b1aa4c5bdfe5b75fdbd1284c90600090a450505050505050565b61166e61195e565b600680546001600160a01b0383167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556116b76005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f761195e565b6000600b5460ff1660018111156117105761171061260c565b1461175d5760405162461bcd60e51b815260206004820152601360248201527f616c726561647920696e697469616c697a656400000000000000000000000000604482015260640161064b565b7396a5399d07896f757bd4c6ef56461f58db95186261177c3083611b6e565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018390526001600160a01b038216906323b872dd906064016020604051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190612867565b506040517f095ea7b300000000000000000000000000000000000000000000000000000000815273c36442b4a4522e871399cd717abdd847ab11fe886004820152602481018390526001600160a01b0382169063095ea7b3906044016020604051808303816000875af1158015611887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ab9190612867565b506118cb3073c36442b4a4522e871399cd717abdd847ab11fe888461194c565b6118d482611dc6565b6118dd82611f7d565b4260006118ed62015180836128b0565b6118fa9062015180612884565b905061190681836127fa565b600781905561191890621275006127fa565b6008555050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b611959838383600161219f565b505050565b6005546001600160a01b03163314610879576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161064b565b6001600160a01b038381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a535781811015611a44576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602481018290526044810183905260640161064b565b611a538484848403600061219f565b50505050565b6001600160a01b038316611a9c576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b038216611adf576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6119598383836122a6565b6001600160a01b038216611b2d576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b611b39826000836122a6565b5050565b600680547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561073381612373565b6001600160a01b038216611bb1576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b611b39600083836122a6565b6040805160c081018252600f5469ffffffffffffffffffff16815260208101848152818301848152600060608401818152608085018281524260a0870190815296517f219f5d1700000000000000000000000000000000000000000000000000000000815286516004820152945160248601529251604485015251606484015290516084830152925160a48201528291829173c36442b4a4522e871399cd717abdd847ab11fe889190829063219f5d179060c4016060604051808303816000875af1158015611c90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb491906128e9565b9199909850909650945050505050565b60408051608081018252600f5469ffffffffffffffffffff16815230602082019081526fffffffffffffffffffffffffffffffff8284018181526060840182815294517ffc6f78650000000000000000000000000000000000000000000000000000000081528451600482015292516001600160a01b03166024840152518116604483015292519092166064830152600091829173c36442b4a4522e871399cd717abdd847ab11fe8891829063fc6f78659060840160408051808303816000875af1158015611d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbb919061291e565b909590945092505050565b600080611dd2836123dd565b50506040517f13ead5620000000000000000000000000000000000000000000000000000000081526001600160a01b0380841660048301528216602482015261271060448201526c010000000000000000000000006064820152919350915073c36442b4a4522e871399cd717abdd847ab11fe889081906313ead562906084016020604051808303816000875af1158015611e71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e959190612942565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691821790556040517f32148f67000000000000000000000000000000000000000000000000000000008152606460048201526332148f6790602401600060405180830381600087803b158015611f1c57600080fd5b505af1158015611f30573d6000803e3d6000fd5b50506009546001600160a01b03166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055505050505050565b73c36442b4a4522e871399cd717abdd847ab11fe886000808080611fa0866123dd565b93509350935093506000604051806101600160405280866001600160a01b03168152602001856001600160a01b0316815260200161271062ffffff1681526020017ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff2766060020b8152602001620d89a060020b8152602001848152602001838152602001606485605a612031919061280d565b61203b9190612853565b8152602001606461204d85605a61280d565b6120579190612853565b815230602082015242604091820152517f8831645600000000000000000000000000000000000000000000000000000000815290915060009081906001600160a01b038916906388316456906120b190869060040161295f565b6080604051808303816000875af11580156120d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f49190612a23565b5050600f805469ffffffffffffffffffff939093167fffffffffffff0000000000000000000000000000000000000000000000000000909316929092176fffffffffffffffffffffffffffffffff919091166a0100000000000000000000021779ffffffffffffffffffffffffffffffffffffffffffffffffffff167f0d89a0f276600000000000000000000000000000000000000000000000000000179055505050505050505050565b6001600160a01b0384166121e2576040517fe602df050000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b038316612225576040517f94280d620000000000000000000000000000000000000000000000000000000081526000600482015260240161064b565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015611a5357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161229891815260200190565b60405180910390a350505050565b6001600160a01b03831630148015906122c857506001600160a01b0382163014155b15612368576001600160a01b0383166000908152600a602052604090205460ff1615801561230f57506001600160a01b0382166000908152600a602052604090205460ff16155b8061231c5750600e5460ff165b6123685760405162461bcd60e51b815260206004820152601b60248201527f74726164696e6720776173206e6f7420656e61626c6564207965740000000000604482015260640161064b565b61195983838361241b565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082807396a5399d07896f757bd4c6ef56461f58db951862308082101561240b57819550809450612412565b8095508194505b50509193509193565b6001600160a01b03831661244657806002600082825461243b91906127fa565b909155506124d19050565b6001600160a01b038316600090815260208190526040902054818110156124b2576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602481018290526044810183905260640161064b565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166124ed5760028054829003905561250c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161255191815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561258c57858101830151858201604001528201612570565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b038116811461073357600080fd5b600080604083850312156125f357600080fd5b82356125fe816125cb565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110610733577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810161267f8361263b565b91905290565b801515811461073357600080fd5b600080604083850312156126a657600080fd5b82356126b1816125cb565b915060208301356126c181612685565b809150509250929050565b6000806000606084860312156126e157600080fd5b83356126ec816125cb565b925060208401356126fc816125cb565b929592945050506040919091013590565b60006020828403121561271f57600080fd5b5035919050565b60006020828403121561273857600080fd5b8135612743816125cb565b9392505050565b6000806040838503121561275d57600080fd5b8235612768816125cb565b915060208301356126c1816125cb565b600181811c9082168061278c57607f821691505b6020821081036127c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156105eb576105eb6127cb565b80820281158282048414176105eb576105eb6127cb565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261286257612862612824565b500490565b60006020828403121561287957600080fd5b815161274381612685565b818103818111156105eb576105eb6127cb565b6000602082840312156128a957600080fd5b5051919050565b6000826128bf576128bf612824565b500690565b80516fffffffffffffffffffffffffffffffff811681146128e457600080fd5b919050565b6000806000606084860312156128fe57600080fd5b612907846128c4565b925060208401519150604084015190509250925092565b6000806040838503121561293157600080fd5b505080516020909101519092909150565b60006020828403121561295457600080fd5b8151612743816125cb565b81516001600160a01b031681526101608101602083015161298b60208401826001600160a01b03169052565b5060408301516129a2604084018262ffffff169052565b5060608301516129b7606084018260020b9052565b5060808301516129cc608084018260020b9052565b5060a083015160a083015260c083015160c083015260e083015160e083015261010080840151818401525061012080840151612a12828501826001600160a01b03169052565b505061014092830151919092015290565b60008060008060808587031215612a3957600080fd5b84519350612a49602086016128c4565b604086015160609096015194979096509250505056fea164736f6c6343000818000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000836cad9ea4e47c6a8969c2f48f908b32864a6617
-----Decoded View---------------
Arg [0] : babyDragonBuyAndBurnAddress_ (address): 0x836CAd9eA4e47C6A8969C2F48f908B32864A6617
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000836cad9ea4e47c6a8969c2f48f908b32864a6617
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.