ETH Price: $2,411.57 (-2.84%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve211054722024-11-03 6:58:4743 hrs ago1730617127IN
0x517AB044...40C8f452C
0 ETH0.000094783.9
Approve210412012024-10-25 7:41:4710 days ago1729842107IN
0x517AB044...40C8f452C
0 ETH0.000146646.03412099
Approve210318032024-10-24 0:13:5912 days ago1729728839IN
0x517AB044...40C8f452C
0 ETH0.000160616.60867291
Approve210209972024-10-22 12:03:5913 days ago1729598639IN
0x517AB044...40C8f452C
0 ETH0.000189457.79547956
Approve210138642024-10-21 12:10:3514 days ago1729512635IN
0x517AB044...40C8f452C
0 ETH0.000181297.45982256
Approve209466782024-10-12 2:54:3523 days ago1728701675IN
0x517AB044...40C8f452C
0 ETH0.0002730311.23472019
Approve207681692024-09-17 5:13:2348 days ago1726550003IN
0x517AB044...40C8f452C
0 ETH0.000052192.14756566
Approve206494742024-08-31 15:34:1165 days ago1725118451IN
0x517AB044...40C8f452C
0 ETH0.000032661.34402796
Approve206494732024-08-31 15:33:5965 days ago1725118439IN
0x517AB044...40C8f452C
0 ETH0.000032261.32741209
Approve205943192024-08-23 22:35:1173 days ago1724452511IN
0x517AB044...40C8f452C
0 ETH0.000064022.63458149
Approve205466852024-08-17 6:54:3579 days ago1723877675IN
0x517AB044...40C8f452C
0 ETH0.00002390.98341979
Approve205286002024-08-14 18:16:1182 days ago1723659371IN
0x517AB044...40C8f452C
0 ETH0.00009123.75283181
Approve203413442024-07-19 15:01:59108 days ago1721401319IN
0x517AB044...40C8f452C
0 ETH0.0003657415.04939282
Approve203230312024-07-17 1:42:23111 days ago1721180543IN
0x517AB044...40C8f452C
0 ETH0.00016226.67418815
Approve202604912024-07-08 8:05:47119 days ago1720425947IN
0x517AB044...40C8f452C
0 ETH0.000085043.499458
Approve202019412024-06-30 3:53:47127 days ago1719719627IN
0x517AB044...40C8f452C
0 ETH0.000174863.77789773
Approve198884052024-05-17 8:08:47171 days ago1715933327IN
0x517AB044...40C8f452C
0 ETH0.000198538.16911124
Approve198884032024-05-17 8:08:23171 days ago1715933303IN
0x517AB044...40C8f452C
0 ETH0.000208238.56837771
Approve198292862024-05-09 1:43:35180 days ago1715219015IN
0x517AB044...40C8f452C
0 ETH0.000177673.81875377
Approve198065112024-05-05 21:15:35183 days ago1714943735IN
0x517AB044...40C8f452C
0 ETH0.000103894.2751676
Approve197724912024-05-01 3:07:11187 days ago1714532831IN
0x517AB044...40C8f452C
0 ETH0.000413568.87733109
Approve196770812024-04-17 18:47:59201 days ago1713379679IN
0x517AB044...40C8f452C
0 ETH0.0004068516.74101167
Approve196770782024-04-17 18:47:23201 days ago1713379643IN
0x517AB044...40C8f452C
0 ETH0.0004751219.5499115
Approve195756912024-04-03 13:58:23215 days ago1712152703IN
0x517AB044...40C8f452C
0 ETH0.0009651239.71198381
Approve195055252024-03-24 16:16:11225 days ago1711296971IN
0x517AB044...40C8f452C
0 ETH0.0005450622.42807621
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
JiraToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-09
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/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/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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// File: @openzeppelin/contracts/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/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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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: contracts/JiraToken.sol


pragma solidity ^0.8.4;




contract JiraToken is ERC20, Ownable {
    using SafeMath for uint256;

    address public staking; //TODO : Set Address
    uint8 public _decimals = 18;
    string public _name = 'Jira Token';
    string public _symbol = 'JIRA';
    uint256 TOTAL_CAP = 2 * 10 ** 8 * 1e18;
    uint256 STAKING_CAP = 10 ** 7 * 1e18;
    uint256 stakingSupply = 0;

    constructor() ERC20(_name, _symbol) {

    }

    modifier onlyStaking() {
        require(msg.sender == staking, "Not staking");
        _;
    }
    
    function mint(address _to, uint256 _amount) external onlyStaking {
        require(_amount != 0, "Invalid amount");
        require(stakingSupply + _amount <= STAKING_CAP, "Max limit");
	    stakingSupply += _amount;
        _mint(_to, _amount);
    }

    function mintOnlyOwner(address _to, uint256 _amount) external onlyOwner {
        require(_amount != 0, "Invalid amount");
        require(totalSupply() + _amount <= TOTAL_CAP, "Max limit");
        _mint(_to, _amount);
    }

    function modifyTotalCap(uint256 _cap) external onlyOwner {
	require(_cap > totalSupply(), "total supply already exceeds");
	TOTAL_CAP = _cap;
    }

    function modifyStakingCap(uint256 _cap) external onlyOwner {
	require(_cap > stakeSupply(), "staking supply already exceeds");
	STAKING_CAP = _cap;
    }

    function modifyStakingOwner(address _staking) external onlyOwner {
        staking = _staking;
    }

    function stakeSupply() public view returns (uint256) {
	return stakingSupply;
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintOnlyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"modifyStakingCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"}],"name":"modifyStakingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"modifyTotalCap","outputs":[],"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":"stakeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

6006805460ff60a01b1916600960a11b17905560c0604052600a6080819052692534b930902a37b5b2b760b11b60a09081526200004091600791906200026a565b50604080518082019091526004808252634a49524160e01b60209092019182526200006e916008916200026a565b506aa56fa5b99019a5c80000006009556a084595161401484a000000600a556000600b553480156200009f57600080fd5b5060078054620000af9062000310565b80601f0160208091040260200160405190810160405280929190818152602001828054620000dd9062000310565b80156200012e5780601f1062000102576101008083540402835291602001916200012e565b820191906000526020600020905b8154815290600101906020018083116200011057829003601f168201915b505050505060088054620001429062000310565b80601f0160208091040260200160405190810160405280929190818152602001828054620001709062000310565b8015620001c15780601f106200019557610100808354040283529160200191620001c1565b820191906000526020600020905b815481529060010190602001808311620001a357829003601f168201915b50508451620001db9350600392506020860191506200026a565b508051620001f19060049060208401906200026a565b5050506200020e620002086200021460201b60201c565b62000218565b6200034d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002789062000310565b90600052602060002090601f0160209004810192826200029c5760008555620002e7565b82601f10620002b757805160ff1916838001178555620002e7565b82800160010185558215620002e7579182015b82811115620002e7578251825591602001919060010190620002ca565b50620002f5929150620002f9565b5090565b5b80821115620002f55760008155600101620002fa565b600181811c908216806200032557607f821691505b602082108114156200034757634e487b7160e01b600052602260045260246000fd5b50919050565b6111ec806200035d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b0595c5c11610097578063d28d885211610071578063d28d885214610326578063d9944a6f1461032e578063dd62ed3e14610341578063f2fde38b1461037a57600080fd5b8063b0595c5c14610303578063b09f126614610316578063c2778b281461031e57600080fd5b8063715018a6146102a95780638da5cb5b146102b157806395d89b41146102c2578063978bf9cb146102ca578063a457c2d7146102dd578063a9059cbb146102f057600080fd5b806332424aa31161013057806332424aa314610208578063395093511461021c57806340c10f191461022f57806342966c68146102425780634cf088d91461025557806370a082311461028057600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b957806323b872dd146101cb5780632498d85c146101de578063313ce567146101f3575b600080fd5b61018061038d565b60405161018d91906110ac565b60405180910390f35b6101a96101a4366004611069565b61041f565b604051901515815260200161018d565b6002545b60405190815260200161018d565b6101a96101d936600461102d565b610435565b6101f16101ec366004611093565b6104e4565b005b60125b60405160ff909116815260200161018d565b6006546101f690600160a01b900460ff1681565b6101a961022a366004611069565b610564565b6101f161023d366004611069565b6105a0565b6101f1610250366004611093565b610697565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101bd61028e366004610fd8565b6001600160a01b031660009081526020819052604090205490565b6101f16106a4565b6005546001600160a01b0316610268565b6101806106da565b6101f16102d8366004611093565b6106e9565b6101a96102eb366004611069565b610769565b6101a96102fe366004611069565b610802565b6101f1610311366004611069565b61080f565b6101806108d2565b600b546101bd565b610180610960565b6101f161033c366004610fd8565b61096d565b6101bd61034f366004610ffa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f1610388366004610fd8565b6109b9565b60606003805461039c90611165565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611165565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b600061042c338484610a51565b50600192915050565b6000610442848484610b76565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610a51565b506001949350505050565b6005546001600160a01b0316331461050e5760405162461bcd60e51b81526004016104c390611101565b600b54811161055f5760405162461bcd60e51b815260206004820152601e60248201527f7374616b696e6720737570706c7920616c72656164792065786365656473000060448201526064016104c3565b600a55565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042c91859061059b908690611136565b610a51565b6006546001600160a01b031633146105e85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74207374616b696e6760a81b60448201526064016104c3565b806106265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b600a5481600b546106379190611136565b11156106715760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b80600b60008282546106839190611136565b9091555061069390508282610d45565b5050565b6106a13382610e24565b50565b6005546001600160a01b031633146106ce5760405162461bcd60e51b81526004016104c390611101565b6106d86000610f6a565b565b60606004805461039c90611165565b6005546001600160a01b031633146107135760405162461bcd60e51b81526004016104c390611101565b60025481116107645760405162461bcd60e51b815260206004820152601c60248201527f746f74616c20737570706c7920616c726561647920657863656564730000000060448201526064016104c3565b600955565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b6107f83385858403610a51565b5060019392505050565b600061042c338484610b76565b6005546001600160a01b031633146108395760405162461bcd60e51b81526004016104c390611101565b806108775760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b6009548161088460025490565b61088e9190611136565b11156108c85760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b6106938282610d45565b600880546108df90611165565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611165565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b505050505081565b600780546108df90611165565b6005546001600160a01b031633146109975760405162461bcd60e51b81526004016104c390611101565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016104c390611101565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b6106a181610f6a565b6001600160a01b038316610ab35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b038216610b145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6001600160a01b03831660009081526020819052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ceb908490611136565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3791815260200190565b60405180910390a350505050565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c3565b8060026000828254610dad9190611136565b90915550506001600160a01b03821660009081526020819052604081208054839290610dda908490611136565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c3565b6001600160a01b03821660009081526020819052604090205481811015610ef85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f2790849061114e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b69565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610fd357600080fd5b919050565b600060208284031215610fea57600080fd5b610ff382610fbc565b9392505050565b6000806040838503121561100d57600080fd5b61101683610fbc565b915061102460208401610fbc565b90509250929050565b60008060006060848603121561104257600080fd5b61104b84610fbc565b925061105960208501610fbc565b9150604084013590509250925092565b6000806040838503121561107c57600080fd5b61108583610fbc565b946020939093013593505050565b6000602082840312156110a557600080fd5b5035919050565b600060208083528351808285015260005b818110156110d9578581018301518582016040015282016110bd565b818111156110eb576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611149576111496111a0565b500190565b600082821015611160576111606111a0565b500390565b600181811c9082168061117957607f821691505b6020821081141561119a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209661ee21b23b46ad1febaab7c13e1396495e0309c2f710bd20d3996c4a5ed52b64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b0595c5c11610097578063d28d885211610071578063d28d885214610326578063d9944a6f1461032e578063dd62ed3e14610341578063f2fde38b1461037a57600080fd5b8063b0595c5c14610303578063b09f126614610316578063c2778b281461031e57600080fd5b8063715018a6146102a95780638da5cb5b146102b157806395d89b41146102c2578063978bf9cb146102ca578063a457c2d7146102dd578063a9059cbb146102f057600080fd5b806332424aa31161013057806332424aa314610208578063395093511461021c57806340c10f191461022f57806342966c68146102425780634cf088d91461025557806370a082311461028057600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b957806323b872dd146101cb5780632498d85c146101de578063313ce567146101f3575b600080fd5b61018061038d565b60405161018d91906110ac565b60405180910390f35b6101a96101a4366004611069565b61041f565b604051901515815260200161018d565b6002545b60405190815260200161018d565b6101a96101d936600461102d565b610435565b6101f16101ec366004611093565b6104e4565b005b60125b60405160ff909116815260200161018d565b6006546101f690600160a01b900460ff1681565b6101a961022a366004611069565b610564565b6101f161023d366004611069565b6105a0565b6101f1610250366004611093565b610697565b600654610268906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6101bd61028e366004610fd8565b6001600160a01b031660009081526020819052604090205490565b6101f16106a4565b6005546001600160a01b0316610268565b6101806106da565b6101f16102d8366004611093565b6106e9565b6101a96102eb366004611069565b610769565b6101a96102fe366004611069565b610802565b6101f1610311366004611069565b61080f565b6101806108d2565b600b546101bd565b610180610960565b6101f161033c366004610fd8565b61096d565b6101bd61034f366004610ffa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f1610388366004610fd8565b6109b9565b60606003805461039c90611165565b80601f01602080910402602001604051908101604052809291908181526020018280546103c890611165565b80156104155780601f106103ea57610100808354040283529160200191610415565b820191906000526020600020905b8154815290600101906020018083116103f857829003601f168201915b5050505050905090565b600061042c338484610a51565b50600192915050565b6000610442848484610b76565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104cc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d98533858403610a51565b506001949350505050565b6005546001600160a01b0316331461050e5760405162461bcd60e51b81526004016104c390611101565b600b54811161055f5760405162461bcd60e51b815260206004820152601e60248201527f7374616b696e6720737570706c7920616c72656164792065786365656473000060448201526064016104c3565b600a55565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042c91859061059b908690611136565b610a51565b6006546001600160a01b031633146105e85760405162461bcd60e51b815260206004820152600b60248201526a4e6f74207374616b696e6760a81b60448201526064016104c3565b806106265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b600a5481600b546106379190611136565b11156106715760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b80600b60008282546106839190611136565b9091555061069390508282610d45565b5050565b6106a13382610e24565b50565b6005546001600160a01b031633146106ce5760405162461bcd60e51b81526004016104c390611101565b6106d86000610f6a565b565b60606004805461039c90611165565b6005546001600160a01b031633146107135760405162461bcd60e51b81526004016104c390611101565b60025481116107645760405162461bcd60e51b815260206004820152601c60248201527f746f74616c20737570706c7920616c726561647920657863656564730000000060448201526064016104c3565b600955565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156107eb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c3565b6107f83385858403610a51565b5060019392505050565b600061042c338484610b76565b6005546001600160a01b031633146108395760405162461bcd60e51b81526004016104c390611101565b806108775760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104c3565b6009548161088460025490565b61088e9190611136565b11156108c85760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016104c3565b6106938282610d45565b600880546108df90611165565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611165565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b505050505081565b600780546108df90611165565b6005546001600160a01b031633146109975760405162461bcd60e51b81526004016104c390611101565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e35760405162461bcd60e51b81526004016104c390611101565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c3565b6106a181610f6a565b6001600160a01b038316610ab35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c3565b6001600160a01b038216610b145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610bda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c3565b6001600160a01b038216610c3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c3565b6001600160a01b03831660009081526020819052604090205481811015610cb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ceb908490611136565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3791815260200190565b60405180910390a350505050565b6001600160a01b038216610d9b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104c3565b8060026000828254610dad9190611136565b90915550506001600160a01b03821660009081526020819052604081208054839290610dda908490611136565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104c3565b6001600160a01b03821660009081526020819052604090205481811015610ef85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610f2790849061114e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b69565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610fd357600080fd5b919050565b600060208284031215610fea57600080fd5b610ff382610fbc565b9392505050565b6000806040838503121561100d57600080fd5b61101683610fbc565b915061102460208401610fbc565b90509250929050565b60008060006060848603121561104257600080fd5b61104b84610fbc565b925061105960208501610fbc565b9150604084013590509250925092565b6000806040838503121561107c57600080fd5b61108583610fbc565b946020939093013593505050565b6000602082840312156110a557600080fd5b5035919050565b600060208083528351808285015260005b818110156110d9578581018301518582016040015282016110bd565b818111156110eb576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611149576111496111a0565b500190565b600082821015611160576111606111a0565b500390565b600181811c9082168061117957607f821691505b6020821081141561119a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212209661ee21b23b46ad1febaab7c13e1396495e0309c2f710bd20d3996c4a5ed52b64736f6c63430008070033

Deployed Bytecode Sourcemap

25673:1756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15641:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17808:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;17808:169:0;1633:187:1;16761:108:0;16849:12;;16761:108;;;9082:25:1;;;9070:2;9055:18;16761:108:0;8936:177:1;18459:492:0;;;;;;:::i;:::-;;:::i;26860:156::-;;;;;;:::i;:::-;;:::i;:::-;;16603:93;16686:2;16603:93;;;9290:4:1;9278:17;;;9260:36;;9248:2;9233:18;16603:93:0;9118:184:1;25802:27:0;;;;;-1:-1:-1;;;25802:27:0;;;;;;19360:215;;;;;;:::i;:::-;;:::i;26201:256::-;;;;;;:::i;:::-;;:::i;27335:91::-;;;;;;:::i;:::-;;:::i;25752:22::-;;;;;-1:-1:-1;;;;;25752:22:0;;;;;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;25752:22:0;1425:203:1;16932:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;17033:18:0;17006:7;17033:18;;;;;;;;;;;;16932:127;9445:94;;;:::i;8794:87::-;8867:6;;-1:-1:-1;;;;;8867:6:0;8794:87;;15860:104;;;:::i;26702:150::-;;;;;;:::i;:::-;;:::i;20078:413::-;;;;;;:::i;:::-;;:::i;17272:175::-;;;;;;:::i;:::-;;:::i;26465:229::-;;;;;;:::i;:::-;;:::i;25877:30::-;;;:::i;27134:85::-;27198:13;;27134:85;;25836:34;;;:::i;27024:102::-;;;;;;:::i;:::-;;:::i;17510:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17626:18:0;;;17599:7;17626:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17510:151;9694:192;;;;;;:::i;:::-;;:::i;15641:100::-;15695:13;15728:5;15721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15641:100;:::o;17808:169::-;17891:4;17908:39;7662:10;17931:7;17940:6;17908:8;:39::i;:::-;-1:-1:-1;17965:4:0;17808:169;;;;:::o;18459:492::-;18599:4;18616:36;18626:6;18634:9;18645:6;18616:9;:36::i;:::-;-1:-1:-1;;;;;18692:19:0;;18665:24;18692:19;;;:11;:19;;;;;;;;7662:10;18692:33;;;;;;;;18744:26;;;;18736:79;;;;-1:-1:-1;;;18736:79:0;;5690:2:1;18736:79:0;;;5672:21:1;5729:2;5709:18;;;5702:30;5768:34;5748:18;;;5741:62;-1:-1:-1;;;5819:18:1;;;5812:38;5867:19;;18736:79:0;;;;;;;;;18851:57;18860:6;7662:10;18901:6;18882:16;:25;18851:8;:57::i;:::-;-1:-1:-1;18939:4:0;;18459:492;-1:-1:-1;;;;18459:492:0:o;26860:156::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;27198:13;;26931:4:::1;:20;26923:63;;;::::0;-1:-1:-1;;;26923:63:0;;7608:2:1;26923:63:0::1;::::0;::::1;7590:21:1::0;7647:2;7627:18;;;7620:30;7686:32;7666:18;;;7659:60;7736:18;;26923:63:0::1;7406:354:1::0;26923:63:0::1;26990:11;:18:::0;26860:156::o;19360:215::-;7662:10;19448:4;19497:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19497:34:0;;;;;;;;;;19448:4;;19465:80;;19488:7;;19497:47;;19534:10;;19497:47;:::i;:::-;19465:8;:80::i;26201:256::-;26146:7;;-1:-1:-1;;;;;26146:7:0;26132:10;:21;26124:45;;;;-1:-1:-1;;;26124:45:0;;6862:2:1;26124:45:0;;;6844:21:1;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:41;6971:18;;26124:45:0;6660:335:1;26124:45:0;26285:12;26277:39:::1;;;::::0;-1:-1:-1;;;26277:39:0;;4246:2:1;26277:39:0::1;::::0;::::1;4228:21:1::0;4285:2;4265:18;;;4258:30;-1:-1:-1;;;4304:18:1;;;4297:44;4358:18;;26277:39:0::1;4044:338:1::0;26277:39:0::1;26362:11;;26351:7;26335:13;;:23;;;;:::i;:::-;:38;;26327:60;;;::::0;-1:-1:-1;;;26327:60:0;;5353:2:1;26327:60:0::1;::::0;::::1;5335:21:1::0;5392:1;5372:18;;;5365:29;-1:-1:-1;;;5410:18:1;;;5403:39;5459:18;;26327:60:0::1;5151:332:1::0;26327:60:0::1;26412:7;26395:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;26430:19:0::1;::::0;-1:-1:-1;26436:3:0;26441:7;26430:5:::1;:19::i;:::-;26201:256:::0;;:::o;27335:91::-;27391:27;7662:10;27411:6;27391:5;:27::i;:::-;27335:91;:::o;9445:94::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;9510:21:::1;9528:1;9510:9;:21::i;:::-;9445:94::o:0;15860:104::-;15916:13;15949:7;15942:14;;;;;:::i;26702:150::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;16849:12;;26771:4:::1;:20;26763:61;;;::::0;-1:-1:-1;;;26763:61:0;;4996:2:1;26763:61:0::1;::::0;::::1;4978:21:1::0;5035:2;5015:18;;;5008:30;5074;5054:18;;;5047:58;5122:18;;26763:61:0::1;4794:352:1::0;26763:61:0::1;26828:9;:16:::0;26702:150::o;20078:413::-;7662:10;20171:4;20215:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20215:34:0;;;;;;;;;;20268:35;;;;20260:85;;;;-1:-1:-1;;;20260:85:0;;8372:2:1;20260:85:0;;;8354:21:1;8411:2;8391:18;;;8384:30;8450:34;8430:18;;;8423:62;-1:-1:-1;;;8501:18:1;;;8494:35;8546:19;;20260:85:0;8170:401:1;20260:85:0;20381:67;7662:10;20404:7;20432:15;20413:16;:34;20381:8;:67::i;:::-;-1:-1:-1;20479:4:0;;20078:413;-1:-1:-1;;;20078:413:0:o;17272:175::-;17358:4;17375:42;7662:10;17399:9;17410:6;17375:9;:42::i;26465:229::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;26556:12;26548:39:::1;;;::::0;-1:-1:-1;;;26548:39:0;;4246:2:1;26548:39:0::1;::::0;::::1;4228:21:1::0;4285:2;4265:18;;;4258:30;-1:-1:-1;;;4304:18:1;;;4297:44;4358:18;;26548:39:0::1;4044:338:1::0;26548:39:0::1;26633:9;;26622:7;26606:13;16849:12:::0;;;16761:108;26606:13:::1;:23;;;;:::i;:::-;:36;;26598:58;;;::::0;-1:-1:-1;;;26598:58:0;;5353:2:1;26598:58:0::1;::::0;::::1;5335:21:1::0;5392:1;5372:18;;;5365:29;-1:-1:-1;;;5410:18:1;;;5403:39;5459:18;;26598:58:0::1;5151:332:1::0;26598:58:0::1;26667:19;26673:3;26678:7;26667:5;:19::i;25877:30::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25836:34::-;;;;;;;:::i;27024:102::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;27100:7:::1;:18:::0;;-1:-1:-1;;;;;;27100:18:0::1;-1:-1:-1::0;;;;;27100:18:0;;;::::1;::::0;;;::::1;::::0;;27024:102::o;9694:192::-;8867:6;;-1:-1:-1;;;;;8867:6:0;7662:10;9014:23;9006:68;;;;-1:-1:-1;;;9006:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9783:22:0;::::1;9775:73;;;::::0;-1:-1:-1;;;9775:73:0;;3436:2:1;9775:73:0::1;::::0;::::1;3418:21:1::0;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:36;3611:19;;9775:73:0::1;3234:402:1::0;9775:73:0::1;9859:19;9869:8;9859:9;:19::i;23762:380::-:0;-1:-1:-1;;;;;23898:19:0;;23890:68;;;;-1:-1:-1;;;23890:68:0;;7967:2:1;23890:68:0;;;7949:21:1;8006:2;7986:18;;;7979:30;8045:34;8025:18;;;8018:62;-1:-1:-1;;;8096:18:1;;;8089:34;8140:19;;23890:68:0;7765:400:1;23890:68:0;-1:-1:-1;;;;;23977:21:0;;23969:68;;;;-1:-1:-1;;;23969:68:0;;3843:2:1;23969:68:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:32;4014:19;;23969:68:0;3641:398:1;23969:68:0;-1:-1:-1;;;;;24050:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24102:32;;9082:25:1;;;24102:32:0;;9055:18:1;24102:32:0;;;;;;;;23762:380;;;:::o;20981:733::-;-1:-1:-1;;;;;21121:20:0;;21113:70;;;;-1:-1:-1;;;21113:70:0;;7202:2:1;21113:70:0;;;7184:21:1;7241:2;7221:18;;;7214:30;7280:34;7260:18;;;7253:62;-1:-1:-1;;;7331:18:1;;;7324:35;7376:19;;21113:70:0;7000:401:1;21113:70:0;-1:-1:-1;;;;;21202:23:0;;21194:71;;;;-1:-1:-1;;;21194:71:0;;2629:2:1;21194:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;21194:71:0;2427:399:1;21194:71:0;-1:-1:-1;;;;;21362:17:0;;21338:21;21362:17;;;;;;;;;;;21398:23;;;;21390:74;;;;-1:-1:-1;;;21390:74:0;;4589:2:1;21390:74:0;;;4571:21:1;4628:2;4608:18;;;4601:30;4667:34;4647:18;;;4640:62;-1:-1:-1;;;4718:18:1;;;4711:36;4764:19;;21390:74:0;4387:402:1;21390:74:0;-1:-1:-1;;;;;21500:17:0;;;:9;:17;;;;;;;;;;;21520:22;;;21500:42;;21564:20;;;;;;;;:30;;21536:6;;21500:9;21564:30;;21536:6;;21564:30;:::i;:::-;;;;;;;;21629:9;-1:-1:-1;;;;;21612:35:0;21621:6;-1:-1:-1;;;;;21612:35:0;;21640:6;21612:35;;;;9082:25:1;;9070:2;9055:18;;8936:177;21612:35:0;;;;;;;;21102:612;20981:733;;;:::o;22001:399::-;-1:-1:-1;;;;;22085:21:0;;22077:65;;;;-1:-1:-1;;;22077:65:0;;8778:2:1;22077:65:0;;;8760:21:1;8817:2;8797:18;;;8790:30;8856:33;8836:18;;;8829:61;8907:18;;22077:65:0;8576:355:1;22077:65:0;22233:6;22217:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;22250:18:0;;:9;:18;;;;;;;;;;:28;;22272:6;;22250:9;:28;;22272:6;;22250:28;:::i;:::-;;;;-1:-1:-1;;22294:37:0;;9082:25:1;;;-1:-1:-1;;;;;22294:37:0;;;22311:1;;22294:37;;9070:2:1;9055:18;22294:37:0;;;;;;;26201:256;;:::o;22733:591::-;-1:-1:-1;;;;;22817:21:0;;22809:67;;;;-1:-1:-1;;;22809:67:0;;6460:2:1;22809:67:0;;;6442:21:1;6499:2;6479:18;;;6472:30;6538:34;6518:18;;;6511:62;-1:-1:-1;;;6589:18:1;;;6582:31;6630:19;;22809:67:0;6258:397:1;22809:67:0;-1:-1:-1;;;;;22976:18:0;;22951:22;22976:18;;;;;;;;;;;23013:24;;;;23005:71;;;;-1:-1:-1;;;23005:71:0;;3033:2:1;23005:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;23005:71:0;2831:398:1;23005:71:0;-1:-1:-1;;;;;23112:18:0;;:9;:18;;;;;;;;;;23133:23;;;23112:44;;23178:12;:22;;23150:6;;23112:9;23178:22;;23150:6;;23178:22;:::i;:::-;;;;-1:-1:-1;;23218:37:0;;9082:25:1;;;23244:1:0;;-1:-1:-1;;;;;23218:37:0;;;;;9070:2:1;9055:18;23218:37:0;8936:177:1;9894:173:0;9969:6;;;-1:-1:-1;;;;;9986:17:0;;;-1:-1:-1;;;;;;9986:17:0;;;;;;;10019:40;;9969:6;;;9986:17;9969:6;;10019:40;;9950:16;;10019:40;9939:128;9894:173;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;5897:356::-;6099:2;6081:21;;;6118:18;;;6111:30;6177:34;6172:2;6157:18;;6150:62;6244:2;6229:18;;5897:356::o;9307:128::-;9347:3;9378:1;9374:6;9371:1;9368:13;9365:39;;;9384:18;;:::i;:::-;-1:-1:-1;9420:9:1;;9307:128::o;9440:125::-;9480:4;9508:1;9505;9502:8;9499:34;;;9513:18;;:::i;:::-;-1:-1:-1;9550:9:1;;9440:125::o;9570:380::-;9649:1;9645:12;;;;9692;;;9713:61;;9767:4;9759:6;9755:17;9745:27;;9713:61;9820:2;9812:6;9809:14;9789:18;9786:38;9783:161;;;9866:10;9861:3;9857:20;9854:1;9847:31;9901:4;9898:1;9891:15;9929:4;9926:1;9919:15;9783:161;;9570:380;;;:::o;9955:127::-;10016:10;10011:3;10007:20;10004:1;9997:31;10047:4;10044:1;10037:15;10071:4;10068:1;10061:15

Swarm Source

ipfs://9661ee21b23b46ad1febaab7c13e1396495e0309c2f710bd20d3996c4a5ed52b

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  ]

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.