Sepolia Testnet

Contract

0x94f1e0a6E02092Bf33EfFFeE9bC4b9B70c3C9ffD

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Approve68028002024-10-02 21:16:122 days ago1727903772IN
0x94f1e0a6...70c3C9ffD
0 ETH0.00348596143.74515192
Approve67873022024-09-30 10:43:365 days ago1727693016IN
0x94f1e0a6...70c3C9ffD
0 ETH0.00757035163.69390544
Approve67708842024-09-27 19:54:487 days ago1727466888IN
0x94f1e0a6...70c3C9ffD
0 ETH0.00339473.38864362
Approve67703872024-09-27 17:57:367 days ago1727459856IN
0x94f1e0a6...70c3C9ffD
0 ETH0.00527318114.02220192
Approve67564842024-09-25 10:24:0010 days ago1727259840IN
0x94f1e0a6...70c3C9ffD
0 ETH0.00847196183.18947949
Approve67560642024-09-25 8:41:4810 days ago1727253708IN
0x94f1e0a6...70c3C9ffD
0 ETH0.01716881371.24175928
Approve67505142024-09-24 10:19:0011 days ago1727173140IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0005442918.66658054
Approve67505142024-09-24 10:19:0011 days ago1727173140IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0004913618.66658054
Approve67505142024-09-24 10:19:0011 days ago1727173140IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0004913618.66658054
Approve67505142024-09-24 10:19:0011 days ago1727173140IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0008628218.66658054
Approve67202962024-09-19 8:55:3616 days ago1726736136IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0017634238.14038564
Approve67199512024-09-19 7:31:1216 days ago1726731072IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0023954751.81089609
Transfer67099762024-09-17 15:44:2418 days ago1726587864IN
0x94f1e0a6...70c3C9ffD
0 ETH0.000324066.30898951
Approve67029362024-09-16 13:07:4819 days ago1726492068IN
0x94f1e0a6...70c3C9ffD
0 ETH0.000175756.67069202
Transfer67022332024-09-16 10:31:4819 days ago1726482708IN
0x94f1e0a6...70c3C9ffD
0 ETH0.000372237.24498593
Approve66974532024-09-15 16:38:0020 days ago1726418280IN
0x94f1e0a6...70c3C9ffD
0 ETH0.000237575.13710732
Approve66923492024-09-14 21:32:2420 days ago1726349544IN
0x94f1e0a6...70c3C9ffD
0 ETH0.000007260.15719495
Approve66716482024-09-11 10:25:0024 days ago1726050300IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0019219941.57015176
Approve66713002024-09-11 8:52:1224 days ago1726044732IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0007262815.7085605
Mint66498912024-09-07 15:18:1228 days ago1725722292IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0006613118.03755845
Mint66498782024-09-07 15:15:2428 days ago1725722124IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0008184822.32445213
Mint66498742024-09-07 15:14:1228 days ago1725722052IN
0x94f1e0a6...70c3C9ffD
0 ETH0.001185822.05614951
Transfer66316192024-09-04 13:55:4831 days ago1725458148IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0025086748.82775573
Transfer66316162024-09-04 13:54:4831 days ago1725458088IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0019742845.47885312
Transfer66313772024-09-04 12:55:3631 days ago1725454536IN
0x94f1e0a6...70c3C9ffD
0 ETH0.0032869663.99100055
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

import "./ERC20.sol";

contract Token is ERC20 {

    constructor(string memory name_, string memory symbol_, uint8 decimals_) ERC20(name_, symbol_, decimals_) {
        _mint(_msgSender(), 1_000_000_000 * (10 ** decimals_));
    }

    function mint(address to, uint256 value) external returns (bool) {
        require(value <= 10_000 * (10 ** decimals()), "Token: invalid amount");
        _mint(to, value);
        return true;
    }
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

File 5 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100d45760003560e01c806340c10f1911610081578063a457c2d71161005b578063a457c2d7146101b8578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806340c10f191461016757806370a082311461017a57806395d89b41146101b057600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461015457600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e1610224565b6040516100ee9190610ac0565b60405180910390f35b61010a610105366004610b55565b6102b6565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610b7f565b6102d0565b60055460405160ff90911681526020016100ee565b61010a610162366004610b55565b6102f4565b61010a610175366004610b55565b610340565b61011e610188366004610bbb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100e16103e6565b61010a6101c6366004610b55565b6103f5565b61010a6101d9366004610b55565b6104c6565b61011e6101ec366004610bdd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461023390610c10565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610c10565b80156102ac5780601f10610281576101008083540402835291602001916102ac565b820191906000526020600020905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b6000336102c48185856104d4565b60019150505b92915050565b6000336102de858285610687565b6102e985858561075e565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102c4908290869061033b908790610c92565b6104d4565b600061034e60055460ff1690565b61035990600a610dc5565b61036590612710610dd4565b8211156103d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f546f6b656e3a20696e76616c696420616d6f756e74000000000000000000000060448201526064015b60405180910390fd5b6103dd83836109cd565b50600192915050565b60606004805461023390610c10565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156104b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103ca565b6102e982868684036104d4565b6000336102c481858561075e565b73ffffffffffffffffffffffffffffffffffffffff8316610576576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff8216610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610758578181101561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61075884848484036104d4565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff82166108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561095a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103ca565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610758565b73ffffffffffffffffffffffffffffffffffffffff8216610a4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b8060026000828254610a5c9190610c92565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b81811015610aed57858101830151858201604001528201610ad1565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b5057600080fd5b919050565b60008060408385031215610b6857600080fd5b610b7183610b2c565b946020939093013593505050565b600080600060608486031215610b9457600080fd5b610b9d84610b2c565b9250610bab60208501610b2c565b9150604084013590509250925092565b600060208284031215610bcd57600080fd5b610bd682610b2c565b9392505050565b60008060408385031215610bf057600080fd5b610bf983610b2c565b9150610c0760208401610b2c565b90509250929050565b600181811c90821680610c2457607f821691505b602082108103610c5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156102ca576102ca610c63565b600181815b80851115610cfe57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610ce457610ce4610c63565b80851615610cf157918102915b93841c9390800290610caa565b509250929050565b600082610d15575060016102ca565b81610d22575060006102ca565b8160018114610d385760028114610d4257610d5e565b60019150506102ca565b60ff841115610d5357610d53610c63565b50506001821b6102ca565b5060208310610133831016604e8410600b8410161715610d81575081810a6102ca565b610d8b8383610ca5565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115610dbd57610dbd610c63565b029392505050565b6000610bd660ff841683610d06565b80820281158282048414176102ca576102ca610c6356fea2646970667358221220e10b45b3b03c8f00f86c7298c93e3f0d3a8fa705e9ddfd739cb5bd827753e5e964736f6c63430008130033

Deployed Bytecode Sourcemap

87:426:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:201;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:5;;1244:22;1226:41;;1214:2;1199:18;4644:201:1;1086:187:5;3413:108:1;3501:12;;3413:108;;;1424:25:5;;;1412:2;1397:18;3413:108:1;1278:177:5;5425:261:1;;;;;;:::i;:::-;;:::i;3248:100::-;3331:9;;3248:100;;3331:9;;;;1935:36:5;;1923:2;1908:18;3248:100:1;1793:184:5;6095:238:1;;;;;;:::i;:::-;;:::i;307:203:4:-;;;;;;:::i;:::-;;:::i;3584:127:1:-;;;;;;:::i;:::-;3685:18;;3658:7;3685:18;;;;;;;;;;;;3584:127;2496:104;;;:::i;6836:436::-;;;;;;:::i;:::-;;:::i;3917:193::-;;;;;;:::i;:::-;;:::i;4173:151::-;;;;;;:::i;:::-;4289:18;;;;4262:7;4289:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4173:151;2277:100;2331:13;2364:5;2357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2277:100;:::o;4644:201::-;4727:4;736:10:0;4783:32:1;736:10:0;4799:7:1;4808:6;4783:8;:32::i;:::-;4833:4;4826:11;;;4644:201;;;;;:::o;5425:261::-;5522:4;736:10:0;5580:38:1;5596:4;736:10:0;5611:6:1;5580:15;:38::i;:::-;5629:27;5639:4;5645:2;5649:6;5629:9;:27::i;:::-;-1:-1:-1;5674:4:1;;5425:261;-1:-1:-1;;;;5425:261:1:o;6095:238::-;736:10:0;6183:4:1;4289:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6183:4;;736:10:0;6239:64:1;;736:10:0;;4289:27:1;;6264:38;;6292:10;;6264:38;:::i;:::-;6239:8;:64::i;307:203:4:-;366:4;416:10;3331:9:1;;;;;3248:100;416:10:4;410:16;;:2;:16;:::i;:::-;400:27;;:6;:27;:::i;:::-;391:5;:36;;383:70;;;;;;;5077:2:5;383:70:4;;;5059:21:5;5116:2;5096:18;;;5089:30;5155:23;5135:18;;;5128:51;5196:18;;383:70:4;;;;;;;;;464:16;470:2;474:5;464;:16::i;:::-;-1:-1:-1;498:4:4;307:203;;;;:::o;2496:104:1:-;2552:13;2585:7;2578:14;;;;;:::i;6836:436::-;736:10:0;6929:4:1;4289:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6929:4;;736:10:0;7076:15:1;7056:16;:35;;7048:85;;;;;;;5427:2:5;7048:85:1;;;5409:21:5;5466:2;5446:18;;;5439:30;5505:34;5485:18;;;5478:62;5576:7;5556:18;;;5549:35;5601:19;;7048:85:1;5225:401:5;7048:85:1;7169:60;7178:5;7185:7;7213:15;7194:16;:34;7169:8;:60::i;3917:193::-;3996:4;736:10:0;4052:28:1;736:10:0;4069:2:1;4073:6;4052:9;:28::i;10829:346::-;10931:19;;;10923:68;;;;;;;5833:2:5;10923:68:1;;;5815:21:5;5872:2;5852:18;;;5845:30;5911:34;5891:18;;;5884:62;5982:6;5962:18;;;5955:34;6006:19;;10923:68:1;5631:400:5;10923:68:1;11010:21;;;11002:68;;;;;;;6238:2:5;11002:68:1;;;6220:21:5;6277:2;6257:18;;;6250:30;6316:34;6296:18;;;6289:62;6387:4;6367:18;;;6360:32;6409:19;;11002:68:1;6036:398:5;11002:68:1;11083:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11135:32;;1424:25:5;;;11135:32:1;;1397:18:5;11135:32:1;;;;;;;10829:346;;;:::o;11466:419::-;4289:18;;;;11567:24;4289:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;11654:17;11634:37;;11630:248;;11716:6;11696:16;:26;;11688:68;;;;;;;6641:2:5;11688:68:1;;;6623:21:5;6680:2;6660:18;;;6653:30;6719:31;6699:18;;;6692:59;6768:18;;11688:68:1;6439:353:5;11688:68:1;11800:51;11809:5;11816:7;11844:6;11825:16;:25;11800:8;:51::i;:::-;11556:329;11466:419;;;:::o;7742:806::-;7839:18;;;7831:68;;;;;;;6999:2:5;7831:68:1;;;6981:21:5;7038:2;7018:18;;;7011:30;7077:34;7057:18;;;7050:62;7148:7;7128:18;;;7121:35;7173:19;;7831:68:1;6797:401:5;7831:68:1;7918:16;;;7910:64;;;;;;;7405:2:5;7910:64:1;;;7387:21:5;7444:2;7424:18;;;7417:30;7483:34;7463:18;;;7456:62;7554:5;7534:18;;;7527:33;7577:19;;7910:64:1;7203:399:5;7910:64:1;8060:15;;;8038:19;8060:15;;;;;;;;;;;8094:21;;;;8086:72;;;;;;;7809:2:5;8086:72:1;;;7791:21:5;7848:2;7828:18;;;7821:30;7887:34;7867:18;;;7860:62;7958:8;7938:18;;;7931:36;7984:19;;8086:72:1;7607:402:5;8086:72:1;8194:15;;;;:9;:15;;;;;;;;;;;8212:20;;;8194:38;;8412:13;;;;;;;;;;:23;;;;;;8464:26;;1424:25:5;;;8412:13:1;;8464:26;;1397:18:5;8464:26:1;;;;;;;8503:37;12485:91;8835:548;8919:21;;;8911:65;;;;;;;8216:2:5;8911:65:1;;;8198:21:5;8255:2;8235:18;;;8228:30;8294:33;8274:18;;;8267:61;8345:18;;8911:65:1;8014:355:5;8911:65:1;9067:6;9051:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;9222:18:1;;;:9;:18;;;;;;;;;;;:28;;;;;;9277:37;1424:25:5;;;9277:37:1;;1397:18:5;9277:37:1;;;;;;;8835:548;;:::o;14:607:5:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:5:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:186::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;1982:186;-1:-1:-1;;;1982:186:5:o;2173:260::-;2241:6;2249;2302:2;2290:9;2281:7;2277:23;2273:32;2270:52;;;2318:1;2315;2308:12;2270:52;2341:29;2360:9;2341:29;:::i;:::-;2331:39;;2389:38;2423:2;2412:9;2408:18;2389:38;:::i;:::-;2379:48;;2173:260;;;;;:::o;2438:437::-;2517:1;2513:12;;;;2560;;;2581:61;;2635:4;2627:6;2623:17;2613:27;;2581:61;2688:2;2680:6;2677:14;2657:18;2654:38;2651:218;;2725:77;2722:1;2715:88;2826:4;2823:1;2816:15;2854:4;2851:1;2844:15;2651:218;;2438:437;;;:::o;2880:184::-;2932:77;2929:1;2922:88;3029:4;3026:1;3019:15;3053:4;3050:1;3043:15;3069:125;3134:9;;;3155:10;;;3152:36;;;3168:18;;:::i;3199:482::-;3288:1;3331:5;3288:1;3345:330;3366:7;3356:8;3353:21;3345:330;;;3485:4;3417:66;3413:77;3407:4;3404:87;3401:113;;;3494:18;;:::i;:::-;3544:7;3534:8;3530:22;3527:55;;;3564:16;;;;3527:55;3643:22;;;;3603:15;;;;3345:330;;;3349:3;3199:482;;;;;:::o;3686:866::-;3735:5;3765:8;3755:80;;-1:-1:-1;3806:1:5;3820:5;;3755:80;3854:4;3844:76;;-1:-1:-1;3891:1:5;3905:5;;3844:76;3936:4;3954:1;3949:59;;;;4022:1;4017:130;;;;3929:218;;3949:59;3979:1;3970:10;;3993:5;;;4017:130;4054:3;4044:8;4041:17;4038:43;;;4061:18;;:::i;:::-;-1:-1:-1;;4117:1:5;4103:16;;4132:5;;3929:218;;4231:2;4221:8;4218:16;4212:3;4206:4;4203:13;4199:36;4193:2;4183:8;4180:16;4175:2;4169:4;4166:12;4162:35;4159:77;4156:159;;;-1:-1:-1;4268:19:5;;;4300:5;;4156:159;4347:34;4372:8;4366:4;4347:34;:::i;:::-;4477:6;4409:66;4405:79;4396:7;4393:92;4390:118;;;4488:18;;:::i;:::-;4526:20;;3686:866;-1:-1:-1;;;3686:866:5:o;4557:140::-;4615:5;4644:47;4685:4;4675:8;4671:19;4665:4;4644:47;:::i;4702:168::-;4775:9;;;4806;;4823:15;;;4817:22;;4803:37;4793:71;;4844:18;;:::i

Swarm Source

ipfs://e10b45b3b03c8f00f86c7298c93e3f0d3a8fa705e9ddfd739cb5bd827753e5e9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.