ETH Price: $1,582.54 (+0.34%)
Gas: 0.33 Gwei
 

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer222920402025-04-17 23:36:3513 mins ago1744932995IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000122182.33744517
Approve222920262025-04-17 23:33:4716 mins ago1744932827IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000070531.5
Approve222920252025-04-17 23:33:3516 mins ago1744932815IN
Virtual Protocol: VIRTUAL Token
0 ETH0.00003890.82384029
Transfer222918342025-04-17 22:54:4755 mins ago1744930487IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000011180.36819056
Transfer222917132025-04-17 22:30:111 hr ago1744929011IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000060742
Transfer222917012025-04-17 22:27:471 hr ago1744928867IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000030690.64651087
Approve222916102025-04-17 22:09:351 hr ago1744927775IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000020770.44209747
Approve222914542025-04-17 21:38:232 hrs ago1744925903IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000034880.73768347
Approve222913202025-04-17 21:11:352 hrs ago1744924295IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000019740.41779746
Transfer222911302025-04-17 20:33:353 hrs ago1744922015IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000087272.48046373
Approve222911092025-04-17 20:29:233 hrs ago1744921763IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000020740.44152783
Approve222911082025-04-17 20:29:113 hrs ago1744921751IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000023740.50287452
Transfer222910902025-04-17 20:25:353 hrs ago1744921535IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000128112.45031154
Transfer222910362025-04-17 20:14:473 hrs ago1744920887IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000130262.49138878
Approve222910012025-04-17 20:07:473 hrs ago1744920467IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000037750.80372978
Approve222907682025-04-17 19:20:594 hrs ago1744917659IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000020720.7665725
Approve222907162025-04-17 19:10:354 hrs ago1744917035IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000029630.63128222
Approve222906902025-04-17 19:05:114 hrs ago1744916711IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000038230.81337831
Transfer222905162025-04-17 18:30:115 hrs ago1744914611IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000060772
Transfer222903662025-04-17 18:00:115 hrs ago1744912811IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000060742
Transfer222903642025-04-17 17:59:475 hrs ago1744912787IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000129682.48083017
Approve222902422025-04-17 17:35:236 hrs ago1744911323IN
Virtual Protocol: VIRTUAL Token
0 ETH0.00003340.70642352
Transfer222902162025-04-17 17:30:116 hrs ago1744911011IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000060772
Transfer222901992025-04-17 17:26:476 hrs ago1744910807IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000087751.67831035
Approve222901952025-04-17 17:25:596 hrs ago1744910759IN
Virtual Protocol: VIRTUAL Token
0 ETH0.000078841.6771225
View all transactions

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer218795422025-02-19 9:33:1157 days ago1739957591
Virtual Protocol: VIRTUAL Token
0.02333112 ETH
Transfer218794922025-02-19 9:23:1157 days ago1739956991
Virtual Protocol: VIRTUAL Token
0.02333112 ETH
Transfer218793782025-02-19 9:00:1157 days ago1739955611
Virtual Protocol: VIRTUAL Token
0.02353479 ETH
Transfer216207862025-01-14 5:59:2393 days ago1736834363
Virtual Protocol: VIRTUAL Token
0.49492554 ETH
Transfer214244752024-12-17 19:54:11121 days ago1734465251
Virtual Protocol: VIRTUAL Token
0.00253623 ETH
Transfer195221862024-03-27 0:37:11386 days ago1711499831
Virtual Protocol: VIRTUAL Token
0.0510254 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VirtualToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : Virtual.sol
pragma solidity ^0.8.20;

// SPDX-License-Identifier: MIT

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

contract VirtualToken is ERC20Capped, Ownable {
    constructor(uint256 _initialSupply, address initialOwner) ERC20("Virtual Protocol", "VIRTUAL") ERC20Capped(1000000000*10**18) Ownable(initialOwner){
        ERC20._mint(msg.sender, _initialSupply);
    }

    function mint(address _to, uint256 _amount) onlyOwner external {
        _mint(_to, _amount);
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 8 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Total supply cap has been exceeded.
     */
    error ERC20ExceededCap(uint256 increasedSupply, uint256 cap);

    /**
     * @dev The supplied cap is not a valid cap.
     */
    error ERC20InvalidCap(uint256 cap);

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        if (cap_ == 0) {
            revert ERC20InvalidCap(0);
        }
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_update}.
     */
    function _update(address from, address to, uint256 value) internal virtual override {
        super._update(from, to, value);

        if (from == address(0)) {
            uint256 maxSupply = cap();
            uint256 supply = totalSupply();
            if (supply > maxSupply) {
                revert ERC20ExceededCap(supply, maxSupply);
            }
        }
    }
}

File 6 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededCap","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20InvalidCap","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162001edc38038062001edc8339818101604052810190620000379190620006c8565b806b033b2e3c9fd0803ce80000006040518060400160405280601081526020017f5669727475616c2050726f746f636f6c000000000000000000000000000000008152506040518060400160405280600781526020017f5649525455414c000000000000000000000000000000000000000000000000008152508160039081620000c291906200097f565b508060049081620000d491906200097f565b50505060008103620001205760006040517f392e1e2700000000000000000000000000000000000000000000000000000000815260040162000117919062000aa9565b60405180910390fd5b806080818152505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200019e5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000195919062000ad7565b60405180910390fd5b620001af81620001ca60201b60201c565b50620001c233836200029060201b60201c565b505062000bf6565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003055760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002fc919062000ad7565b60405180910390fd5b62000319600083836200031d60201b60201c565b5050565b62000330838383620003df60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003da576000620003776200060f60201b60201c565b905060006200038b6200061960201b60201c565b905081811115620003d75780826040517f9e79f854000000000000000000000000000000000000000000000000000000008152600401620003ce92919062000b05565b60405180910390fd5b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200043557806002600082825462000428919062000b61565b925050819055506200050b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620004c4578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004bb9392919062000b9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005565780600260008282540392505081905550620005a3565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000602919062000bd9565b60405180910390a3505050565b6000608051905090565b6000600254905090565b600080fd5b6000819050919050565b6200063d8162000628565b81146200064957600080fd5b50565b6000815190506200065d8162000632565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006908262000663565b9050919050565b620006a28162000683565b8114620006ae57600080fd5b50565b600081519050620006c28162000697565b92915050565b60008060408385031215620006e257620006e162000623565b5b6000620006f2858286016200064c565b92505060206200070585828601620006b1565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079157607f821691505b602082108103620007a757620007a662000749565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007d2565b6200081d8683620007d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008606200085a620008548462000628565b62000835565b62000628565b9050919050565b6000819050919050565b6200087c836200083f565b620008946200088b8262000867565b848454620007df565b825550505050565b600090565b620008ab6200089c565b620008b881848462000871565b505050565b5b81811015620008e057620008d4600082620008a1565b600181019050620008be565b5050565b601f8211156200092f57620008f981620007ad565b6200090484620007c2565b8101602085101562000914578190505b6200092c6200092385620007c2565b830182620008bd565b50505b505050565b600082821c905092915050565b6000620009546000198460080262000934565b1980831691505092915050565b60006200096f838362000941565b9150826002028217905092915050565b6200098a826200070f565b67ffffffffffffffff811115620009a657620009a56200071a565b5b620009b2825462000778565b620009bf828285620008e4565b600060209050601f831160018114620009f75760008415620009e2578287015190505b620009ee858262000961565b86555062000a5e565b601f19841662000a0786620007ad565b60005b8281101562000a315784890151825560018201915060208501945060208101905062000a0a565b8683101562000a51578489015162000a4d601f89168262000941565b8355505b6001600288020188555050505b505050505050565b6000819050919050565b600062000a9162000a8b62000a858462000a66565b62000835565b62000628565b9050919050565b62000aa38162000a70565b82525050565b600060208201905062000ac0600083018462000a98565b92915050565b62000ad18162000683565b82525050565b600060208201905062000aee600083018462000ac6565b92915050565b62000aff8162000628565b82525050565b600060408201905062000b1c600083018562000af4565b62000b2b602083018462000af4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b6e8262000628565b915062000b7b8362000628565b925082820190508082111562000b965762000b9562000b32565b5b92915050565b600060608201905062000bb3600083018662000ac6565b62000bc2602083018562000af4565b62000bd1604083018462000af4565b949350505050565b600060208201905062000bf0600083018462000af4565b92915050565b6080516112ca62000c1260003960006103d001526112ca6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461023b578063a9059cbb14610259578063dd62ed3e14610289578063f2fde38b146102b9576100ea565b806370a08231146101e3578063715018a6146102135780638da5cb5b1461021d576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b578063355274ea146101a957806340c10f19146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102d5565b6040516101049190610ef5565b60405180910390f35b61012760048036038101906101229190610fb0565b610367565b604051610134919061100b565b60405180910390f35b61014561038a565b6040516101529190611035565b60405180910390f35b61017560048036038101906101709190611050565b610394565b604051610182919061100b565b60405180910390f35b6101936103c3565b6040516101a091906110bf565b60405180910390f35b6101b16103cc565b6040516101be9190611035565b60405180910390f35b6101e160048036038101906101dc9190610fb0565b6103f4565b005b6101fd60048036038101906101f891906110da565b61040a565b60405161020a9190611035565b60405180910390f35b61021b610452565b005b610225610466565b6040516102329190611116565b60405180910390f35b610243610490565b6040516102509190610ef5565b60405180910390f35b610273600480360381019061026e9190610fb0565b610522565b604051610280919061100b565b60405180910390f35b6102a3600480360381019061029e9190611131565b610545565b6040516102b09190611035565b60405180910390f35b6102d360048036038101906102ce91906110da565b6105cc565b005b6060600380546102e4906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610310906111a0565b801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b5050505050905090565b600080610372610652565b905061037f81858561065a565b600191505092915050565b6000600254905090565b60008061039f610652565b90506103ac85828561066c565b6103b7858585610700565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6103fc6107f4565b610406828261087b565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61045a6107f4565b61046460006108fd565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461049f906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546104cb906111a0565b80156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b60008061052d610652565b905061053a818585610700565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105d46107f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106465760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161063d9190611116565b60405180910390fd5b61064f816108fd565b50565b600033905090565b61066783838360016109c3565b505050565b60006106788484610545565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106fa57818110156106ea578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106e1939291906111d1565b60405180910390fd5b6106f9848484840360006109c3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107725760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107699190611116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107db9190611116565b60405180910390fd5b6107ef838383610b9a565b505050565b6107fc610652565b73ffffffffffffffffffffffffffffffffffffffff1661081a610466565b73ffffffffffffffffffffffffffffffffffffffff16146108795761083d610652565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108709190611116565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ed5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e49190611116565b60405180910390fd5b6108f960008383610b9a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a2c9190611116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa75760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a9e9190611116565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b94578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b8b9190611035565b60405180910390a35b50505050565b610ba5838383610c40565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3b576000610be36103cc565b90506000610bef61038a565b905081811115610c385780826040517f9e79f854000000000000000000000000000000000000000000000000000000008152600401610c2f929190611208565b60405180910390fd5b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c92578060026000828254610c869190611260565b92505081905550610d65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d15939291906111d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dae5780600260008282540392505081905550610dfb565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e589190611035565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e9f578082015181840152602081019050610e84565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ec782610e65565b610ed18185610e70565b9350610ee1818560208601610e81565b610eea81610eab565b840191505092915050565b60006020820190508181036000830152610f0f8184610ebc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f4782610f1c565b9050919050565b610f5781610f3c565b8114610f6257600080fd5b50565b600081359050610f7481610f4e565b92915050565b6000819050919050565b610f8d81610f7a565b8114610f9857600080fd5b50565b600081359050610faa81610f84565b92915050565b60008060408385031215610fc757610fc6610f17565b5b6000610fd585828601610f65565b9250506020610fe685828601610f9b565b9150509250929050565b60008115159050919050565b61100581610ff0565b82525050565b60006020820190506110206000830184610ffc565b92915050565b61102f81610f7a565b82525050565b600060208201905061104a6000830184611026565b92915050565b60008060006060848603121561106957611068610f17565b5b600061107786828701610f65565b935050602061108886828701610f65565b925050604061109986828701610f9b565b9150509250925092565b600060ff82169050919050565b6110b9816110a3565b82525050565b60006020820190506110d460008301846110b0565b92915050565b6000602082840312156110f0576110ef610f17565b5b60006110fe84828501610f65565b91505092915050565b61111081610f3c565b82525050565b600060208201905061112b6000830184611107565b92915050565b6000806040838503121561114857611147610f17565b5b600061115685828601610f65565b925050602061116785828601610f65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b60006060820190506111e66000830186611107565b6111f36020830185611026565b6112006040830184611026565b949350505050565b600060408201905061121d6000830185611026565b61122a6020830184611026565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126b82610f7a565b915061127683610f7a565b925082820190508082111561128e5761128d611231565b5b9291505056fea26469706673582212209d14816fc8bbd530c10ff83139fd57132e1595f4d88d6ccbc08051fba8376ae464736f6c634300081400330000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000097cf38bb06da57b6418083998b09976ec40a90a3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461023b578063a9059cbb14610259578063dd62ed3e14610289578063f2fde38b146102b9576100ea565b806370a08231146101e3578063715018a6146102135780638da5cb5b1461021d576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b578063355274ea146101a957806340c10f19146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102d5565b6040516101049190610ef5565b60405180910390f35b61012760048036038101906101229190610fb0565b610367565b604051610134919061100b565b60405180910390f35b61014561038a565b6040516101529190611035565b60405180910390f35b61017560048036038101906101709190611050565b610394565b604051610182919061100b565b60405180910390f35b6101936103c3565b6040516101a091906110bf565b60405180910390f35b6101b16103cc565b6040516101be9190611035565b60405180910390f35b6101e160048036038101906101dc9190610fb0565b6103f4565b005b6101fd60048036038101906101f891906110da565b61040a565b60405161020a9190611035565b60405180910390f35b61021b610452565b005b610225610466565b6040516102329190611116565b60405180910390f35b610243610490565b6040516102509190610ef5565b60405180910390f35b610273600480360381019061026e9190610fb0565b610522565b604051610280919061100b565b60405180910390f35b6102a3600480360381019061029e9190611131565b610545565b6040516102b09190611035565b60405180910390f35b6102d360048036038101906102ce91906110da565b6105cc565b005b6060600380546102e4906111a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610310906111a0565b801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b5050505050905090565b600080610372610652565b905061037f81858561065a565b600191505092915050565b6000600254905090565b60008061039f610652565b90506103ac85828561066c565b6103b7858585610700565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b6103fc6107f4565b610406828261087b565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61045a6107f4565b61046460006108fd565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461049f906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546104cb906111a0565b80156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b60008061052d610652565b905061053a818585610700565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6105d46107f4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106465760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161063d9190611116565b60405180910390fd5b61064f816108fd565b50565b600033905090565b61066783838360016109c3565b505050565b60006106788484610545565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106fa57818110156106ea578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106e1939291906111d1565b60405180910390fd5b6106f9848484840360006109c3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107725760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107699190611116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107db9190611116565b60405180910390fd5b6107ef838383610b9a565b505050565b6107fc610652565b73ffffffffffffffffffffffffffffffffffffffff1661081a610466565b73ffffffffffffffffffffffffffffffffffffffff16146108795761083d610652565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108709190611116565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ed5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e49190611116565b60405180910390fd5b6108f960008383610b9a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a355760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a2c9190611116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa75760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a9e9190611116565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610b94578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b8b9190611035565b60405180910390a35b50505050565b610ba5838383610c40565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3b576000610be36103cc565b90506000610bef61038a565b905081811115610c385780826040517f9e79f854000000000000000000000000000000000000000000000000000000008152600401610c2f929190611208565b60405180910390fd5b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c92578060026000828254610c869190611260565b92505081905550610d65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d15939291906111d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dae5780600260008282540392505081905550610dfb565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e589190611035565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e9f578082015181840152602081019050610e84565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ec782610e65565b610ed18185610e70565b9350610ee1818560208601610e81565b610eea81610eab565b840191505092915050565b60006020820190508181036000830152610f0f8184610ebc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f4782610f1c565b9050919050565b610f5781610f3c565b8114610f6257600080fd5b50565b600081359050610f7481610f4e565b92915050565b6000819050919050565b610f8d81610f7a565b8114610f9857600080fd5b50565b600081359050610faa81610f84565b92915050565b60008060408385031215610fc757610fc6610f17565b5b6000610fd585828601610f65565b9250506020610fe685828601610f9b565b9150509250929050565b60008115159050919050565b61100581610ff0565b82525050565b60006020820190506110206000830184610ffc565b92915050565b61102f81610f7a565b82525050565b600060208201905061104a6000830184611026565b92915050565b60008060006060848603121561106957611068610f17565b5b600061107786828701610f65565b935050602061108886828701610f65565b925050604061109986828701610f9b565b9150509250925092565b600060ff82169050919050565b6110b9816110a3565b82525050565b60006020820190506110d460008301846110b0565b92915050565b6000602082840312156110f0576110ef610f17565b5b60006110fe84828501610f65565b91505092915050565b61111081610f3c565b82525050565b600060208201905061112b6000830184611107565b92915050565b6000806040838503121561114857611147610f17565b5b600061115685828601610f65565b925050602061116785828601610f65565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b60006060820190506111e66000830186611107565b6111f36020830185611026565b6112006040830184611026565b949350505050565b600060408201905061121d6000830185611026565b61122a6020830184611026565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126b82610f7a565b915061127683610f7a565b925082820190508082111561128e5761128d611231565b5b9291505056fea26469706673582212209d14816fc8bbd530c10ff83139fd57132e1595f4d88d6ccbc08051fba8376ae464736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000097cf38bb06da57b6418083998b09976ec40a90a3

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 1000000000000000000000000000
Arg [1] : initialOwner (address): 0x97cF38bB06Da57b6418083998b09976eC40A90a3

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 00000000000000000000000097cf38bb06da57b6418083998b09976ec40a90a3


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Virtual is an AI protocol that creates co-owned, human-curated, plug-and-play gaming AIs.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH61.72%$0.55681891,634.2445$51,023.61
ETH0.12%$1100$100
ETH0.09%$0.00789,276.624$72.35
BASE15.66%$0.55593923,285.1619$12,945.13
BASE12.23%$1,582.186.3893$10,109.08
BASE9.39%$0.9999327,759.6666$7,759.14
BASE<0.01%$0.000002740,000$1.41
BASE<0.01%<$0.00000111,111,888$0.1555
BASE<0.01%$0.3926180.3634$0.1426
BASE<0.01%$0.00373932.999$0.1233
BSC0.49%$0.999938402$401.98
BSC0.11%$589.710.1513$89.2
BSC<0.01%$1,583.550.00282598$4.48
ARB0.10%$0.282561285.2608$80.6
ARB0.06%$0.99989349.3504$49.35
ARB0.02%$117.77$17.77
ARB0.01%$0.12892693.7106$12.08
ARB<0.01%$1,582.180.00281041$4.45
Loading...
Loading
Loading...
Loading
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.