Cryo Explorer Ethereum Mainnet

Address Contract Partially Verified

Address 0x1d59429571d8Fde785F45bf593E94F2Da6072Edb
Balance 0 ETH
Nonce 1
Code Size 763 bytes
Indexed Transactions 0
External Etherscan · Sourcify

Contract Bytecode

763 bytes
0x60806040526004361061002d5760003560e01c80631830893b1461011057806344df8e70146101385761009f565b3661009f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100969060208082526004908201527f6e6f6f7000000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b3480156100ab57600080fd5b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100969060208082526004908201527f6e6f6f7000000000000000000000000000000000000000000000000000000000604082015260600190565b34801561011c57600080fd5b5061012660005481565b60405190815260200160405180910390f35b34801561014457600080fd5b5061014d61014f565b005b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527396a5399d07896f757bd4c6ef56461f58db9518629060009082906370a0823190602401602060405180830381865afa1580156101bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101e09190610295565b9050806000036101ee575050565b8173ffffffffffffffffffffffffffffffffffffffff166344df8e706040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561023657600080fd5b505af115801561024a573d6000803e3d6000fd5b505050508060008082825461025f91906102ae565b9091555050604051819033907f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df790600090a35050565b6000602082840312156102a757600080fd5b5051919050565b808201808211156102e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b9291505056fea164736f6c6343000818000a

Verified Source Code Partial Match

Compiler: v0.8.24+commit.e11b9ed9 EVM: paris Optimization: Yes (9999 runs)
Constants.sol 45 lines
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// Addresses
address constant DRAGONX_ADDRESS = 0x96a5399D07896f757Bd4c6eF56461F58DB951862;
address constant TITANX_ADDRESS = 0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1;
address constant WETH9_ADDRESS = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
address constant UNI_SWAP_ROUTER = 0xE592427A0AEce92De3Edee1F18E0157C05861564;

/* Uniswap Liquidity Pools (DragonX, TitanX) */
uint24 constant FEE_TIER = 10000;

// Dragon Types
enum DragonTypes {
    Apprentice,
    Ninja,
    Samurai,
    Shogun,
    Emperor
}

// Constants for Apprentice
uint256 constant APPRENTICE_MINT_FEE = 8800 * 10 ** 18; // 8.8 K TitanX with 18 decimals
uint256 constant APPRENTICE_BURN_FEE = 8800 * 10 ** 18; // 8.8 K DragonX with 18 decimals
uint256 constant APPRENTICE_LOCKUP_AMOUNT = 8800000 * 10 ** 18; // 8.8 Million DragonX with 18 decimals

// Constants for Ninja
uint256 constant NINJA_MINT_FEE = 88000 * 10 ** 18; // 88 K TitanX with 18 decimals
uint256 constant NINJA_BURN_FEE = 88000 * 10 ** 18; // 88 K DragonX with 18 decimals
uint256 constant NINJA_LOCKUP_AMOUNT = 88000000 * 10 ** 18; // 88 Million DragonX with 18 decimals

// Constants for Samurai
uint256 constant SAMURAI_MINT_FEE = 880000 * 10 ** 18; // 880 K TitanX with 18 decimals
uint256 constant SAMURAI_BURN_FEE = 880000 * 10 ** 18; // 880 K DragonX with 18 decimals
uint256 constant SAMURAI_LOCKUP_AMOUNT = 888000000 * 10 ** 18; // 888 Million DragonX with 18 decimals

// Constants for Shogun
uint256 constant SHOGUN_MINT_FEE = 8800000 * 10 ** 18; // 8.8 Million TitanX with 18 decimals
uint256 constant SHOGUN_BURN_FEE = 8800000 * 10 ** 18; // 8.8 Million DragonX with 18 decimals
uint256 constant SHOGUN_LOCKUP_AMOUNT = 8800000000 * 10 ** 18; // 8.8 Billion DragonX with 18 decimals

// Constants for Emperor
uint256 constant EMPEROR_MINT_FEE = 88800000 * 10 ** 18; // 88.8 Million TitanX with 18 decimals
uint256 constant EMPEROR_BURN_FEE = 88800000 * 10 ** 18; // 88.8 Million DragonX with 18 decimals
uint256 constant EMPEROR_LOCKUP_AMOUNT = 88000000000 * 10 ** 18; // 88 Billion DragonX with 18 decimals
DragonBurnProxy.sol 114 lines
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// OpenZeppelin
import "@openzeppelin/contracts/utils/Context.sol";

// lib
import "./lib/interfaces/IDragonX.sol";
import "./lib/Constants.sol";

contract DragonBurnProxy is Context {
    // -----------------------------------------
    // Type declarations
    // -----------------------------------------

    // -----------------------------------------
    // State variables
    // -----------------------------------------
    /**
     * @notice The total amount of DragonX burned through the DragonX burn proxy
     */
    uint256 public totalDragonBurned;

    // -----------------------------------------
    // Events
    // -----------------------------------------
    /**
     * Emitted when burning all DragonX tokens hold by the DragonX burn proxy
     * @param caller the function caller
     * @param amount the amount burned
     */
    event Burned(address indexed caller, uint256 indexed amount);

    // -----------------------------------------
    // Errors
    // -----------------------------------------

    // -----------------------------------------
    // Modifiers
    // -----------------------------------------

    // -----------------------------------------
    // Constructor
    // -----------------------------------------

    // -----------------------------------------
    // Receive function
    // -----------------------------------------
    /**
     * @dev Receive function to handle plain Ether transfers.
     * Always revert.
     */
    receive() external payable {
        revert("noop");
    }

    // -----------------------------------------
    // Fallback function
    // -----------------------------------------
    /**
     * @dev Fallback function to handle non-function calls or Ether transfers if receive() doesn't exist.
     * Always revert.
     */
    fallback() external {
        revert("noop");
    }

    // -----------------------------------------
    // External functions
    // -----------------------------------------
    /**
     * @dev Burns tokens held by this contract and updates the total burned tokens count.
     *      Only callable by external addresses.
     *
     *      The function retrieves the balance of tokens (assumed to be DragonX tokens)
     *      held by the contract itself. If the balance is non-zero, it proceeds to burn
     *      those tokens by calling the `burn` method on the DragonX contract. After burning
     *      the tokens, it updates the `totalDragonBurned` state variable to reflect the new
     *      total amount of burned tokens. Finally, it emits a `Burned` event indicating
     *      the address that initiated the burn and the amount of tokens burned.
     *
     * Emits a `Burned` event with the caller's address and the amount burned.
     */
    function burn() external {
        IDragonX dragonX = IDragonX(DRAGONX_ADDRESS);
        uint256 toBurn = dragonX.balanceOf(address(this));

        // noop if nothing to burn
        if (toBurn == 0) {
            return;
        }

        // Burn tokens hold by the proxy
        dragonX.burn();

        // Update State
        totalDragonBurned += toBurn;

        // Emit events
        emit Burned(_msgSender(), toBurn);
    }

    // -----------------------------------------
    // Public functions
    // -----------------------------------------

    // -----------------------------------------
    // Internal functions
    // -----------------------------------------

    // -----------------------------------------
    // Private functions
    // -----------------------------------------
}
IDragonX.sol 21 lines
// 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);

    // Public functions
    function updateVault() external;
    function totalEthClaimable() external view returns (uint256 claimable);
}
Context.sol 28 lines
// 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;
    }
}
IERC20.sol 79 lines
// 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);
}

Read Contract

totalDragonBurned 0x1830893b → uint256

Write Contract 1 functions

These functions modify contract state and require a wallet transaction to execute.

burn 0x44df8e70
No parameters

Recent Transactions

No transactions found for this address