ETH Price: $3,068.87 (+2.37%)
Gas: 4 Gwei

Contract

0xA825d9B5b09276894AF4666a1bf341b2Fca0f9af
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve200585142024-06-10 2:41:4729 days ago1717987307IN
0xA825d9B5...2Fca0f9af
0 ETH0.000179693.86167411
Approve200277472024-06-05 19:34:1134 days ago1717616051IN
0xA825d9B5...2Fca0f9af
0 ETH0.0017407837.61414994
Transfer200270622024-06-05 17:16:3534 days ago1717607795IN
0xA825d9B5...2Fca0f9af
0 ETH0.0008155122.34790441
Approve200264272024-06-05 15:09:1134 days ago1717600151IN
0xA825d9B5...2Fca0f9af
0 ETH0.0010016821.61602997
Approve200263242024-06-05 14:48:2334 days ago1717598903IN
0xA825d9B5...2Fca0f9af
0 ETH0.0010473522.64849075
Approve200259562024-06-05 13:34:1134 days ago1717594451IN
0xA825d9B5...2Fca0f9af
0 ETH0.0018212139.08849674
Increase Allowan...198525782024-05-12 7:53:4758 days ago1715500427IN
0xA825d9B5...2Fca0f9af
0 ETH0.000196994.20313363
Approve198474012024-05-11 14:31:2359 days ago1715437883IN
0xA825d9B5...2Fca0f9af
0 ETH0.00023565.09351145
Approve197725922024-05-01 3:27:2369 days ago1714534043IN
0xA825d9B5...2Fca0f9af
0 ETH0.000425259.179169
Approve197232042024-04-24 5:37:5976 days ago1713937079IN
0xA825d9B5...2Fca0f9af
0 ETH0.000408368.82388675
Approve196912592024-04-19 18:26:5981 days ago1713551219IN
0xA825d9B5...2Fca0f9af
0 ETH0.0004999510.74441024
Approve196820212024-04-18 11:23:4782 days ago1713439427IN
0xA825d9B5...2Fca0f9af
0 ETH0.0008597718.56799752
Approve196795942024-04-18 3:15:4782 days ago1713410147IN
0xA825d9B5...2Fca0f9af
0 ETH0.0004933510.58880012
Approve196757702024-04-17 14:24:2383 days ago1713363863IN
0xA825d9B5...2Fca0f9af
0 ETH0.0023465550.36387743
Approve196333062024-04-11 15:35:3589 days ago1712849735IN
0xA825d9B5...2Fca0f9af
0 ETH0.0013428928.8595047
Transfer196332902024-04-11 15:32:1189 days ago1712849531IN
0xA825d9B5...2Fca0f9af
0 ETH0.0007274222.96155686
Transfer196332852024-04-11 15:31:1189 days ago1712849471IN
0xA825d9B5...2Fca0f9af
0 ETH0.0008521326.89806596
Transfer196332812024-04-11 15:30:2389 days ago1712849423IN
0xA825d9B5...2Fca0f9af
0 ETH0.0007992625.22939456
Approve195152802024-03-26 1:14:59105 days ago1711415699IN
0xA825d9B5...2Fca0f9af
0 ETH0.0008319917.88006712
Transfer194521052024-03-17 4:10:47114 days ago1710648647IN
0xA825d9B5...2Fca0f9af
0 ETH0.0009058928.56261444
Transfer194421032024-03-15 18:22:47116 days ago1710526967IN
0xA825d9B5...2Fca0f9af
0 ETH0.0020817938.82793165
Transfer194120442024-03-11 13:05:59120 days ago1710162359IN
0xA825d9B5...2Fca0f9af
0 ETH0.0039660773.9883379
Approve193961532024-03-09 7:49:35122 days ago1709970575IN
0xA825d9B5...2Fca0f9af
0 ETH0.0021194645.54862258
Approve193525492024-03-03 5:26:59128 days ago1709443619IN
0xA825d9B5...2Fca0f9af
0 ETH0.0018649440.07878113
Transfer193477412024-03-02 13:20:23129 days ago1709385623IN
0xA825d9B5...2Fca0f9af
0 ETH0.0012472339.35476983
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
191490312024-02-03 16:31:11157 days ago1706977871  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
IToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract IToken is ERC20, Ownable {

    address public vault;
    bool public tge;
    
    constructor(string memory _name, string memory _symbol, uint256 _max) ERC20(_name, _symbol) {        
        vault = msg.sender;
        _mint(vault, _max);
    }
    
    function burn(uint256 amount) public{
        _burn(msg.sender, amount);
        (bool success, ) = vault.call(abi.encodeWithSignature("burn(address,uint256)", msg.sender, amount));
        require(success, "burn failed");
    } 


    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        address spender = _msgSender();
        if(!tge){
            require(spender==vault, "err");
        }
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();
        if(!tge){
            require(owner==vault, "err");
        }
        _transfer(owner, to, amount);
        return true;
    }

    function renounceOwnership() public override  onlyOwner {
        _transferOwnership(address(0));
        tge = true;
    }

}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * 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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_max","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"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":"tge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a7497fa511610071578063a7497fa51461021e578063a9059cbb14610232578063dd62ed3e14610245578063f2fde38b14610258578063fbfa77cf1461026b57600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b4114610203578063a457c2d71461020b57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806342966c681461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b61011861027e565b6040516101259190610bb0565b60405180910390f35b61014161013c366004610bff565b610310565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610c29565b610328565b60405160128152602001610125565b610141610193366004610bff565b6103a7565b6101ab6101a6366004610c65565b6103c9565b005b6101556101bb366004610c7e565b6001600160a01b031660009081526020819052604090205490565b6101ab6104b0565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101186104d7565b610141610219366004610bff565b6104e6565b60065461014190600160a01b900460ff1681565b610141610240366004610bff565b610561565b610155610253366004610ca0565b6105c5565b6101ab610266366004610c7e565b6105f0565b6006546101eb906001600160a01b031681565b60606003805461028d90610cd3565b80601f01602080910402602001604051908101604052809291908181526020018280546102b990610cd3565b80156103065780601f106102db57610100808354040283529160200191610306565b820191906000526020600020905b8154815290600101906020018083116102e957829003601f168201915b5050505050905090565b60003361031e818585610669565b5060019392505050565b6006546000903390600160a01b900460ff16610386576006546001600160a01b038281169116146103865760405162461bcd60e51b815260206004820152600360248201526232b93960e91b60448201526064015b60405180910390fd5b61039185828561078e565b61039c858585610808565b506001949350505050565b60003361031e8185856103ba83836105c5565b6103c49190610d0e565b610669565b6103d333826109ac565b600654604051336024820152604481018390526000916001600160a01b03169060640160408051601f198184030181529181526020820180516001600160e01b0316632770a7eb60e21b1790525161042b9190610d34565b6000604051808303816000865af19150503d8060008114610468576040519150601f19603f3d011682016040523d82523d6000602084013e61046d565b606091505b50509050806104ac5760405162461bcd60e51b815260206004820152600b60248201526a189d5c9b8819985a5b195960aa1b604482015260640161037d565b5050565b6104b8610ad6565b6104c26000610b32565b6006805460ff60a01b1916600160a01b179055565b60606004805461028d90610cd3565b600033816104f482866105c5565b9050838110156105545760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037d565b61039c8286868403610669565b6006546000903390600160a01b900460ff166105ba576006546001600160a01b038281169116146105ba5760405162461bcd60e51b815260206004820152600360248201526232b93960e91b604482015260640161037d565b61031e818585610808565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105f8610ad6565b6001600160a01b03811661065d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161037d565b61066681610b32565b50565b6001600160a01b0383166106cb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037d565b6001600160a01b03821661072c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061079a84846105c5565b9050600019811461080257818110156107f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037d565b6108028484848403610669565b50505050565b6001600160a01b03831661086c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037d565b6001600160a01b0382166108ce5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037d565b6001600160a01b038316600090815260208190526040902054818110156109465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610802565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161037d565b6001600160a01b03821660009081526020819052604090205481811015610a805760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161037d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610781565b6005546001600160a01b03163314610b305760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161037d565b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b83811015610b9f578181015183820152602001610b87565b838111156108025750506000910152565b6020815260008251806020840152610bcf816040850160208701610b84565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610bfa57600080fd5b919050565b60008060408385031215610c1257600080fd5b610c1b83610be3565b946020939093013593505050565b600080600060608486031215610c3e57600080fd5b610c4784610be3565b9250610c5560208501610be3565b9150604084013590509250925092565b600060208284031215610c7757600080fd5b5035919050565b600060208284031215610c9057600080fd5b610c9982610be3565b9392505050565b60008060408385031215610cb357600080fd5b610cbc83610be3565b9150610cca60208401610be3565b90509250929050565b600181811c90821680610ce757607f821691505b60208210811415610d0857634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d2f57634e487b7160e01b600052601160045260246000fd5b500190565b60008251610d46818460208701610b84565b919091019291505056fea2646970667358221220b18362adfa9627801aa86fa442740b5ae4d22c9c1e1344db8fb0aff9f552c4e764736f6c634300080a0033

Deployed Bytecode Sourcemap

175:1286:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;:::i;:::-;;:::i;:::-;;;1267:14:6;;1260:22;1242:41;;1230:2;1215:18;4431:197:1;1102:187:6;3242:106:1;3329:12;;3242:106;;;1440:25:6;;;1428:2;1413:18;3242:106:1;1294:177:6;694:362:5;;;;;;:::i;:::-;;:::i;3091:91:1:-;;;3173:2;1951:36:6;;1939:2;1924:18;3091:91:1;1809:184:6;5871:234:1;;;;;;:::i;:::-;;:::i;451:232:5:-;;;;;;:::i;:::-;;:::i;:::-;;3406:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:1;3480:7;3506:18;;;;;;;;;;;;3406:125;1330:126:5;;;:::i;1201:85:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;;-1:-1:-1;;;;;2538:32:6;;;2520:51;;2508:2;2493:18;1201:85:0;2374:203:6;2365:102:1;;;:::i;6592:427::-;;;;;;:::i;:::-;;:::i;245:15:5:-;;;;;-1:-1:-1;;;245:15:5;;;;;;1064:258;;;;;;:::i;:::-;;:::i;3974:149:1:-;;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;:::i;:::-;;:::i;218:20:5:-;;;;;-1:-1:-1;;;;;218:20:5;;;2154:98:1;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:4;4568:32:1;719:10:4;4584:7:1;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:1;;4431:197;-1:-1:-1;;;4431:197:1:o;694:362:5:-;879:3;;817:4;;719:10:4;;-1:-1:-1;;;879:3:5;;;;875:65;;915:5;;-1:-1:-1;;;;;906:14:5;;;915:5;;906:14;898:30;;;;-1:-1:-1;;;898:30:5;;3434:2:6;898:30:5;;;3416:21:6;3473:1;3453:18;;;3446:29;-1:-1:-1;;;3491:18:6;;;3484:33;3534:18;;898:30:5;;;;;;;;;950:38;966:4;972:7;981:6;950:15;:38::i;:::-;999:27;1009:4;1015:2;1019:6;999:9;:27::i;:::-;-1:-1:-1;1044:4:5;;694:362;-1:-1:-1;;;;694:362:5:o;5871:234:1:-;5959:4;719:10:4;6013:64:1;719:10:4;6029:7:1;6066:10;6038:25;719:10:4;6029:7:1;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;451:232:5:-;498:25;504:10;516:6;498:5;:25::i;:::-;553:5;;564:68;;613:10;564:68;;;3967:51:6;4034:18;;;4027:34;;;535:12:5;;-1:-1:-1;;;;;553:5:5;;3940:18:6;;564:68:5;;;-1:-1:-1;;564:68:5;;;;;;;;;;;;;;-1:-1:-1;;;;;564:68:5;-1:-1:-1;;;564:68:5;;;553:80;;;564:68;553:80;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;534:99;;;652:7;644:31;;;;-1:-1:-1;;;644:31:5;;4553:2:6;644:31:5;;;4535:21:6;4592:2;4572:18;;;4565:30;-1:-1:-1;;;4611:18:6;;;4604:41;4662:18;;644:31:5;4351:335:6;644:31:5;487:196;451:232;:::o;1330:126::-;1094:13:0;:11;:13::i;:::-;1397:30:5::1;1424:1;1397:18;:30::i;:::-;1438:3;:10:::0;;-1:-1:-1;;;;1438:10:5::1;-1:-1:-1::0;;;1438:10:5::1;::::0;;1330:126::o;2365:102:1:-;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;6685:4;719:10:4;6685:4:1;6766:25;719:10:4;6783:7:1;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:1;;4893:2:6;6801:85:1;;;4875:21:6;4932:2;4912:18;;;4905:30;4971:34;4951:18;;;4944:62;-1:-1:-1;;;5022:18:6;;;5015:35;5067:19;;6801:85:1;4691:401:6;6801:85:1;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;1064:258:5:-;1195:3;;1135:4;;719:10:4;;-1:-1:-1;;;1195:3:5;;;;1191:63;;1229:5;;-1:-1:-1;;;;;1222:12:5;;;1229:5;;1222:12;1214:28;;;;-1:-1:-1;;;1214:28:5;;3434:2:6;1214:28:5;;;3416:21:6;3473:1;3453:18;;;3446:29;-1:-1:-1;;;3491:18:6;;;3484:33;3534:18;;1214:28:5;3232:326:6;1214:28:5;1264;1274:5;1281:2;1285:6;1264:9;:28::i;3974:149:1:-;-1:-1:-1;;;;;4089:18:1;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;5299:2:6;2161:73:0::1;::::0;::::1;5281:21:6::0;5338:2;5318:18;;;5311:30;5377:34;5357:18;;;5350:62;-1:-1:-1;;;5428:18:6;;;5421:36;5474:19;;2161:73:0::1;5097:402:6::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;10504:370:1:-;-1:-1:-1;;;;;10635:19:1;;10627:68;;;;-1:-1:-1;;;10627:68:1;;5706:2:6;10627:68:1;;;5688:21:6;5745:2;5725:18;;;5718:30;5784:34;5764:18;;;5757:62;-1:-1:-1;;;5835:18:6;;;5828:34;5879:19;;10627:68:1;5504:400:6;10627:68:1;-1:-1:-1;;;;;10713:21:1;;10705:68;;;;-1:-1:-1;;;10705:68:1;;6111:2:6;10705:68:1;;;6093:21:6;6150:2;6130:18;;;6123:30;6189:34;6169:18;;;6162:62;-1:-1:-1;;;6240:18:6;;;6233:32;6282:19;;10705:68:1;5909:398:6;10705:68:1;-1:-1:-1;;;;;10784:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1440:25:6;;;10835:32:1;;1413:18:6;10835:32:1;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:1;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:1;;6514:2:6;11404:68:1;;;6496:21:6;6553:2;6533:18;;;6526:30;6592:31;6572:18;;;6565:59;6641:18;;11404:68:1;6312:353:6;11404:68:1;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:1;;7591:68;;;;-1:-1:-1;;;7591:68:1;;6872:2:6;7591:68:1;;;6854:21:6;6911:2;6891:18;;;6884:30;6950:34;6930:18;;;6923:62;-1:-1:-1;;;7001:18:6;;;6994:35;7046:19;;7591:68:1;6670:401:6;7591:68:1;-1:-1:-1;;;;;7677:16:1;;7669:64;;;;-1:-1:-1;;;7669:64:1;;7278:2:6;7669:64:1;;;7260:21:6;7317:2;7297:18;;;7290:30;7356:34;7336:18;;;7329:62;-1:-1:-1;;;7407:18:6;;;7400:33;7450:19;;7669:64:1;7076:399:6;7669:64:1;-1:-1:-1;;;;;7815:15:1;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:1;;7682:2:6;7840:72:1;;;7664:21:6;7721:2;7701:18;;;7694:30;7760:34;7740:18;;;7733:62;-1:-1:-1;;;7811:18:6;;;7804:36;7857:19;;7840:72:1;7480:402:6;7840:72:1;-1:-1:-1;;;;;7946:15:1;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1440:25:6;;;8161:13:1;;8210:26;;1413:18:6;8210:26:1;;;;;;;8247:37;9422:659;;-1:-1:-1;;;;;9505:21:1;;9497:67;;;;-1:-1:-1;;;9497:67:1;;8089:2:6;9497:67:1;;;8071:21:6;8128:2;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;-1:-1:-1;;;8218:18:6;;;8211:31;8259:19;;9497:67:1;7887:397:6;9497:67:1;-1:-1:-1;;;;;9660:18:1;;9635:22;9660:18;;;;;;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:1;;8491:2:6;9688:71:1;;;8473:21:6;8530:2;8510:18;;;8503:30;8569:34;8549:18;;;8542:62;-1:-1:-1;;;8620:18:6;;;8613:32;8662:19;;9688:71:1;8289:398:6;9688:71:1;-1:-1:-1;;;;;9793:18:1;;:9;:18;;;;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;1440:25:6;;;9793:9:1;;:18;9978:37;;1413:18:6;9978:37:1;1294:177:6;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;8894:2:6;1414:68:0;;;8876:21:6;;;8913:18;;;8906:30;8972:34;8952:18;;;8945:62;9024:18;;1414:68:0;8692:356:6;1414:68:0;1359:130::o;2433:187::-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;14:258:6:-;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:6;244:16;;237:27;14:258::o;277:383::-;426:2;415:9;408:21;389:4;458:6;452:13;501:6;496:2;485:9;481:18;474:34;517:66;576:6;571:2;560:9;556:18;551:2;543:6;539:15;517:66;:::i;:::-;644:2;623:15;-1:-1:-1;;619:29:6;604:45;;;;651:2;600:54;;277:383;-1:-1:-1;;277:383:6:o;665:173::-;733:20;;-1:-1:-1;;;;;782:31:6;;772:42;;762:70;;828:1;825;818:12;762:70;665:173;;;:::o;843:254::-;911:6;919;972:2;960:9;951:7;947:23;943:32;940:52;;;988:1;985;978:12;940:52;1011:29;1030:9;1011:29;:::i;:::-;1001:39;1087:2;1072:18;;;;1059:32;;-1:-1:-1;;;843:254:6:o;1476:328::-;1553:6;1561;1569;1622:2;1610:9;1601:7;1597:23;1593:32;1590:52;;;1638:1;1635;1628:12;1590:52;1661:29;1680:9;1661:29;:::i;:::-;1651:39;;1709:38;1743:2;1732:9;1728:18;1709:38;:::i;:::-;1699:48;;1794:2;1783:9;1779:18;1766:32;1756:42;;1476:328;;;;;:::o;1998:180::-;2057:6;2110:2;2098:9;2089:7;2085:23;2081:32;2078:52;;;2126:1;2123;2116:12;2078:52;-1:-1:-1;2149:23:6;;1998:180;-1:-1:-1;1998:180:6:o;2183:186::-;2242:6;2295:2;2283:9;2274:7;2270:23;2266:32;2263:52;;;2311:1;2308;2301:12;2263:52;2334:29;2353:9;2334:29;:::i;:::-;2324:39;2183:186;-1:-1:-1;;;2183:186:6:o;2582:260::-;2650:6;2658;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;2750:29;2769:9;2750:29;:::i;:::-;2740:39;;2798:38;2832:2;2821:9;2817:18;2798:38;:::i;:::-;2788:48;;2582:260;;;;;:::o;2847:380::-;2926:1;2922:12;;;;2969;;;2990:61;;3044:4;3036:6;3032:17;3022:27;;2990:61;3097:2;3089:6;3086:14;3066:18;3063:38;3060:161;;;3143:10;3138:3;3134:20;3131:1;3124:31;3178:4;3175:1;3168:15;3206:4;3203:1;3196:15;3060:161;;2847:380;;;:::o;3563:225::-;3603:3;3634:1;3630:6;3627:1;3624:13;3621:136;;;3679:10;3674:3;3670:20;3667:1;3660:31;3714:4;3711:1;3704:15;3742:4;3739:1;3732:15;3621:136;-1:-1:-1;3773:9:6;;3563:225::o;4072:274::-;4201:3;4239:6;4233:13;4255:53;4301:6;4296:3;4289:4;4281:6;4277:17;4255:53;:::i;:::-;4324:16;;;;;4072:274;-1:-1:-1;;4072:274:6:o

Swarm Source

ipfs://b18362adfa9627801aa86fa442740b5ae4d22c9c1e1344db8fb0aff9f552c4e7

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.