ETH Price: $3,176.62 (+2.33%)

Contract

0x018b7B52564093eb37537D6020AB8B14189D19e6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve211347402024-11-07 9:00:119 days ago1730970011IN
0x018b7B52...4189D19e6
0 ETH0.000392548.46849966
Transfer210642762024-10-28 12:57:1118 days ago1730120231IN
0x018b7B52...4189D19e6
0 ETH0.0005528511.84502096
Approve210427042024-10-25 12:42:5921 days ago1729860179IN
0x018b7B52...4189D19e6
0 ETH0.000400968.61228763
Approve209404472024-10-11 5:59:2336 days ago1728626363IN
0x018b7B52...4189D19e6
0 ETH0.0005638712.11143299
Approve209375342024-10-10 20:14:3536 days ago1728591275IN
0x018b7B52...4189D19e6
0 ETH0.0003149112.94189111
Approve209318842024-10-10 1:20:3537 days ago1728523235IN
0x018b7B52...4189D19e6
0 ETH0.0005325211.42333069
Approve209307692024-10-09 21:36:4737 days ago1728509807IN
0x018b7B52...4189D19e6
0 ETH0.0011073223.75377763
Approve209306842024-10-09 21:19:4737 days ago1728508787IN
0x018b7B52...4189D19e6
0 ETH0.0014785831.71774309
Approve209300882024-10-09 19:19:5937 days ago1728501599IN
0x018b7B52...4189D19e6
0 ETH0.0013997830.06607137
Approve209297432024-10-09 18:10:5937 days ago1728497459IN
0x018b7B52...4189D19e6
0 ETH0.0017174337.05114793
Approve209291422024-10-09 16:10:3537 days ago1728490235IN
0x018b7B52...4189D19e6
0 ETH0.0020475743.92330778
Approve209291132024-10-09 16:04:4737 days ago1728489887IN
0x018b7B52...4189D19e6
0 ETH0.0021174145.48003593
Approve209289272024-10-09 15:27:3537 days ago1728487655IN
0x018b7B52...4189D19e6
0 ETH0.0017561337.93532269
Approve209288792024-10-09 15:17:5937 days ago1728487079IN
0x018b7B52...4189D19e6
0 ETH0.0015777833.88936701
Approve209288712024-10-09 15:16:2337 days ago1728486983IN
0x018b7B52...4189D19e6
0 ETH0.0016946136.3517807
Approve209287372024-10-09 14:49:3537 days ago1728485375IN
0x018b7B52...4189D19e6
0 ETH0.0006305321.55462723
Approve209284922024-10-09 14:00:2337 days ago1728482423IN
0x018b7B52...4189D19e6
0 ETH0.0010700322.95371814
Approve209280912024-10-09 12:40:1137 days ago1728477611IN
0x018b7B52...4189D19e6
0 ETH0.0008999519.30535876
Approve209280712024-10-09 12:36:1138 days ago1728477371IN
0x018b7B52...4189D19e6
0 ETH0.0005277618.07851551
Transfer209280362024-10-09 12:29:1138 days ago1728476951IN
0x018b7B52...4189D19e6
0 ETH0.0004462915.09692065
Transfer209280162024-10-09 12:25:1138 days ago1728476711IN
0x018b7B52...4189D19e6
0 ETH0.0004474415.14208875
Transfer209280112024-10-09 12:24:1138 days ago1728476651IN
0x018b7B52...4189D19e6
0 ETH0.0004611615.59990261
Approve209280042024-10-09 12:22:4738 days ago1728476567IN
0x018b7B52...4189D19e6
0 ETH0.0007158115.37506506
Approve209279622024-10-09 12:13:5938 days ago1728476039IN
0x018b7B52...4189D19e6
0 ETH0.0007299815.6591692
Approve209279582024-10-09 12:13:1138 days ago1728475991IN
0x018b7B52...4189D19e6
0 ETH0.0006852614.7
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
209271572024-10-09 9:31:5938 days ago1728466319  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x84c62A38...aee067e0E
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20TokenDF

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-22
*/

////////////////////////////
//
// Deployed on Degen.Food
//
////////////////////////////


pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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);
    }
}

// File: contracts/Ignite/contracts/interfaces/IUniswapRouter.sol


pragma solidity ^0.8.19;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

// File: contracts/Ignite/contracts/interfaces/IUniswapV2Factory.sol



pragma solidity ^0.8.19;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}
// File: contracts/Ignite/contracts/v2/ERC20Token.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;





contract ERC20TokenDF is ERC20, Ownable {
    mapping(address => bool) public isAMMPair;

    address public lpPair;
    IUniswapV2Router02 public dexRouter;

    constructor(
        address _owner,
        address _dynamicSaleCA,
        string memory _name,
        string memory _symbol,
        address[] memory _holders,
        uint256[] memory _balances,
        address _v2Router,
        uint256 _liquidityAmt,
        uint256 _burnAmt
    ) ERC20(_name, _symbol) {
        for (uint256 i = 0; i < _holders.length; i++) {
            _mint(_holders[i], _balances[i]);
        }
        _mint(_dynamicSaleCA, _liquidityAmt);
        _mint(address(this), _burnAmt);
        _burn(address(this), _burnAmt);

        dexRouter = IUniswapV2Router02(_v2Router);

        lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(
            address(this),
            dexRouter.WETH()
        );

        isAMMPair[lpPair] = true;

        transferOwnership(_owner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_dynamicSaleCA","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address[]","name":"_holders","type":"address[]"},{"internalType":"uint256[]","name":"_balances","type":"uint256[]"},{"internalType":"address","name":"_v2Router","type":"address"},{"internalType":"uint256","name":"_liquidityAmt","type":"uint256"},{"internalType":"uint256","name":"_burnAmt","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":[{"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAMMPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063b0249cc614610248578063dd62ed3e1461026b578063f2fde38b1461027e57600080fd5b806370a08231146101d6578063715018a6146101ff5780638da5cb5b1461020957806395d89b411461021a57600080fd5b806323b872dd116100de57806323b872dd1461018e578063313ce567146101a157806339509351146101b0578063452ed4f1146101c357600080fd5b806306fdde03146101105780630758d9241461012e578063095ea7b31461015957806318160ddd1461017c575b600080fd5b610118610291565b60405161012591906108c6565b60405180910390f35b600854610141906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b61016c610167366004610930565b610323565b6040519015158152602001610125565b6002545b604051908152602001610125565b61016c61019c36600461095a565b61033d565b60405160128152602001610125565b61016c6101be366004610930565b610361565b600754610141906001600160a01b031681565b6101806101e4366004610996565b6001600160a01b031660009081526020819052604090205490565b610207610383565b005b6005546001600160a01b0316610141565b610118610397565b61016c610230366004610930565b6103a6565b61016c610243366004610930565b610426565b61016c610256366004610996565b60066020526000908152604090205460ff1681565b6101806102793660046109b8565b610434565b61020761028c366004610996565b61045f565b6060600380546102a0906109eb565b80601f01602080910402602001604051908101604052809291908181526020018280546102cc906109eb565b80156103195780601f106102ee57610100808354040283529160200191610319565b820191906000526020600020905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b6000336103318185856104d8565b60019150505b92915050565b60003361034b8582856105fc565b610356858585610676565b506001949350505050565b6000336103318185856103748383610434565b61037e9190610a25565b6104d8565b61038b61081a565b6103956000610874565b565b6060600480546102a0906109eb565b600033816103b48286610434565b9050838110156104195760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61035682868684036104d8565b600033610331818585610676565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61046761081a565b6001600160a01b0381166104cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610410565b6104d581610874565b50565b6001600160a01b03831661053a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610410565b6001600160a01b03821661059b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610410565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106088484610434565b9050600019811461067057818110156106635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610410565b61067084848484036104d8565b50505050565b6001600160a01b0383166106da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610410565b6001600160a01b03821661073c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610410565b6001600160a01b038316600090815260208190526040902054818110156107b45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610410565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610670565b6005546001600160a01b031633146103955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610410565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156108f3578581018301518582016040015282016108d7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461092b57600080fd5b919050565b6000806040838503121561094357600080fd5b61094c83610914565b946020939093013593505050565b60008060006060848603121561096f57600080fd5b61097884610914565b925061098660208501610914565b9150604084013590509250925092565b6000602082840312156109a857600080fd5b6109b182610914565b9392505050565b600080604083850312156109cb57600080fd5b6109d483610914565b91506109e260208401610914565b90509250929050565b600181811c908216806109ff57607f821691505b602082108103610a1f57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561033757634e487b7160e01b600052601160045260246000fdfea264697066735822122016d5d114e5fe78eb8cc4424753e9209cba09e042ce8430d2a87974d7fe9b85b464736f6c63430008130033

Deployed Bytecode Sourcemap

26894:1015:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6583:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27019:35;;;;;-1:-1:-1;;;;;27019:35:0;;;;;;-1:-1:-1;;;;;758:32:1;;;740:51;;728:2;713:18;27019:35:0;567:230:1;8943:201:0;;;;;;:::i;:::-;;:::i;:::-;;;1404:14:1;;1397:22;1379:41;;1367:2;1352:18;8943:201:0;1239:187:1;7712:108:0;7800:12;;7712:108;;;1577:25:1;;;1565:2;1550:18;7712:108:0;1431:177:1;9724:261:0;;;;;;:::i;:::-;;:::i;7554:93::-;;;7637:2;2088:36:1;;2076:2;2061:18;7554:93:0;1946:184:1;10394:238:0;;;;;;:::i;:::-;;:::i;26991:21::-;;;;;-1:-1:-1;;;;;26991:21:0;;;7883:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7984:18:0;7957:7;7984:18;;;;;;;;;;;;7883:127;19452:103;;;:::i;:::-;;18811:87;18884:6;;-1:-1:-1;;;;;18884:6:0;18811:87;;6802:104;;;:::i;11135:436::-;;;;;;:::i;:::-;;:::i;8216:193::-;;;;;;:::i;:::-;;:::i;26941:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8472:151;;;;;;:::i;:::-;;:::i;19710:201::-;;;;;;:::i;:::-;;:::i;6583:100::-;6637:13;6670:5;6663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6583:100;:::o;8943:201::-;9026:4;4301:10;9082:32;4301:10;9098:7;9107:6;9082:8;:32::i;:::-;9132:4;9125:11;;;8943:201;;;;;:::o;9724:261::-;9821:4;4301:10;9879:38;9895:4;4301:10;9910:6;9879:15;:38::i;:::-;9928:27;9938:4;9944:2;9948:6;9928:9;:27::i;:::-;-1:-1:-1;9973:4:0;;9724:261;-1:-1:-1;;;;9724:261:0:o;10394:238::-;10482:4;4301:10;10538:64;4301:10;10554:7;10591:10;10563:25;4301:10;10554:7;10563:9;:25::i;:::-;:38;;;;:::i;:::-;10538:8;:64::i;19452:103::-;18697:13;:11;:13::i;:::-;19517:30:::1;19544:1;19517:18;:30::i;:::-;19452:103::o:0;6802:104::-;6858:13;6891:7;6884:14;;;;;:::i;11135:436::-;11228:4;4301:10;11228:4;11311:25;4301:10;11328:7;11311:9;:25::i;:::-;11284:52;;11375:15;11355:16;:35;;11347:85;;;;-1:-1:-1;;;11347:85:0;;3613:2:1;11347:85:0;;;3595:21:1;3652:2;3632:18;;;3625:30;3691:34;3671:18;;;3664:62;-1:-1:-1;;;3742:18:1;;;3735:35;3787:19;;11347:85:0;;;;;;;;;11468:60;11477:5;11484:7;11512:15;11493:16;:34;11468:8;:60::i;8216:193::-;8295:4;4301:10;8351:28;4301:10;8368:2;8372:6;8351:9;:28::i;8472:151::-;-1:-1:-1;;;;;8588:18:0;;;8561:7;8588:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8472:151::o;19710:201::-;18697:13;:11;:13::i;:::-;-1:-1:-1;;;;;19799:22:0;::::1;19791:73;;;::::0;-1:-1:-1;;;19791:73:0;;4019:2:1;19791:73:0::1;::::0;::::1;4001:21:1::0;4058:2;4038:18;;;4031:30;4097:34;4077:18;;;4070:62;-1:-1:-1;;;4148:18:1;;;4141:36;4194:19;;19791:73:0::1;3817:402:1::0;19791:73:0::1;19875:28;19894:8;19875:18;:28::i;:::-;19710:201:::0;:::o;15128:346::-;-1:-1:-1;;;;;15230:19:0;;15222:68;;;;-1:-1:-1;;;15222:68:0;;4426:2:1;15222:68:0;;;4408:21:1;4465:2;4445:18;;;4438:30;4504:34;4484:18;;;4477:62;-1:-1:-1;;;4555:18:1;;;4548:34;4599:19;;15222:68:0;4224:400:1;15222:68:0;-1:-1:-1;;;;;15309:21:0;;15301:68;;;;-1:-1:-1;;;15301:68:0;;4831:2:1;15301:68:0;;;4813:21:1;4870:2;4850:18;;;4843:30;4909:34;4889:18;;;4882:62;-1:-1:-1;;;4960:18:1;;;4953:32;5002:19;;15301:68:0;4629:398:1;15301:68:0;-1:-1:-1;;;;;15382:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15434:32;;1577:25:1;;;15434:32:0;;1550:18:1;15434:32:0;;;;;;;15128:346;;;:::o;15765:419::-;15866:24;15893:25;15903:5;15910:7;15893:9;:25::i;:::-;15866:52;;-1:-1:-1;;15933:16:0;:37;15929:248;;16015:6;15995:16;:26;;15987:68;;;;-1:-1:-1;;;15987:68:0;;5234:2:1;15987:68:0;;;5216:21:1;5273:2;5253:18;;;5246:30;5312:31;5292:18;;;5285:59;5361:18;;15987:68:0;5032:353:1;15987:68:0;16099:51;16108:5;16115:7;16143:6;16124:16;:25;16099:8;:51::i;:::-;15855:329;15765:419;;;:::o;12041:806::-;-1:-1:-1;;;;;12138:18:0;;12130:68;;;;-1:-1:-1;;;12130:68:0;;5592:2:1;12130:68:0;;;5574:21:1;5631:2;5611:18;;;5604:30;5670:34;5650:18;;;5643:62;-1:-1:-1;;;5721:18:1;;;5714:35;5766:19;;12130:68:0;5390:401:1;12130:68:0;-1:-1:-1;;;;;12217:16:0;;12209:64;;;;-1:-1:-1;;;12209:64:0;;5998:2:1;12209:64:0;;;5980:21:1;6037:2;6017:18;;;6010:30;6076:34;6056:18;;;6049:62;-1:-1:-1;;;6127:18:1;;;6120:33;6170:19;;12209:64:0;5796:399:1;12209:64:0;-1:-1:-1;;;;;12359:15:0;;12337:19;12359:15;;;;;;;;;;;12393:21;;;;12385:72;;;;-1:-1:-1;;;12385:72:0;;6402:2:1;12385:72:0;;;6384:21:1;6441:2;6421:18;;;6414:30;6480:34;6460:18;;;6453:62;-1:-1:-1;;;6531:18:1;;;6524:36;6577:19;;12385:72:0;6200:402:1;12385:72:0;-1:-1:-1;;;;;12493:15:0;;;:9;:15;;;;;;;;;;;12511:20;;;12493:38;;12711:13;;;;;;;;;;:23;;;;;;12763:26;;1577:25:1;;;12711:13:0;;12763:26;;1550:18:1;12763:26:0;;;;;;;12802:37;16784:91;18976:132;18884:6;;-1:-1:-1;;;;;18884:6:0;4301:10;19040:23;19032:68;;;;-1:-1:-1;;;19032:68:0;;6809:2:1;19032:68:0;;;6791:21:1;;;6828:18;;;6821:30;6887:34;6867:18;;;6860:62;6939:18;;19032:68:0;6607:356:1;20071:191:0;20164:6;;;-1:-1:-1;;;;;20181:17:0;;;-1:-1:-1;;;;;;20181:17:0;;;;;;;20214:40;;20164:6;;;20181:17;20164:6;;20214:40;;20145:16;;20214:40;20134:128;20071:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;802:173::-;870:20;;-1:-1:-1;;;;;919:31:1;;909:42;;899:70;;965:1;962;955:12;899:70;802:173;;;:::o;980:254::-;1048:6;1056;1109:2;1097:9;1088:7;1084:23;1080:32;1077:52;;;1125:1;1122;1115:12;1077:52;1148:29;1167:9;1148:29;:::i;:::-;1138:39;1224:2;1209:18;;;;1196:32;;-1:-1:-1;;;980:254:1:o;1613:328::-;1690:6;1698;1706;1759:2;1747:9;1738:7;1734:23;1730:32;1727:52;;;1775:1;1772;1765:12;1727:52;1798:29;1817:9;1798:29;:::i;:::-;1788:39;;1846:38;1880:2;1869:9;1865:18;1846:38;:::i;:::-;1836:48;;1931:2;1920:9;1916:18;1903:32;1893:42;;1613:328;;;;;:::o;2343:186::-;2402:6;2455:2;2443:9;2434:7;2430:23;2426:32;2423:52;;;2471:1;2468;2461:12;2423:52;2494:29;2513:9;2494:29;:::i;:::-;2484:39;2343:186;-1:-1:-1;;;2343:186:1:o;2534:260::-;2602:6;2610;2663:2;2651:9;2642:7;2638:23;2634:32;2631:52;;;2679:1;2676;2669:12;2631:52;2702:29;2721:9;2702:29;:::i;:::-;2692:39;;2750:38;2784:2;2773:9;2769:18;2750:38;:::i;:::-;2740:48;;2534:260;;;;;:::o;2799:380::-;2878:1;2874:12;;;;2921;;;2942:61;;2996:4;2988:6;2984:17;2974:27;;2942:61;3049:2;3041:6;3038:14;3018:18;3015:38;3012:161;;3095:10;3090:3;3086:20;3083:1;3076:31;3130:4;3127:1;3120:15;3158:4;3155:1;3148:15;3012:161;;2799:380;;;:::o;3184:222::-;3249:9;;;3270:10;;;3267:133;;;3322:10;3317:3;3313:20;3310:1;3303:31;3357:4;3354:1;3347:15;3385:4;3382:1;3375:15

Swarm Source

ipfs://16d5d114e5fe78eb8cc4424753e9209cba09e042ce8430d2a87974d7fe9b85b4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.