ETH Price: $3,523.30 (+5.03%)

Contract

0x18C2295A19299D1288b2f99E87965f36334A8bEE
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214472302024-12-21 0:11:115 hrs ago1734739871IN
0x18C2295A...6334A8bEE
0 ETH0.0002858711.76859722
Approve214472272024-12-21 0:10:355 hrs ago1734739835IN
0x18C2295A...6334A8bEE
0 ETH0.0002861711.77537472
Approve213922552024-12-13 7:59:597 days ago1734076799IN
0x18C2295A...6334A8bEE
0 ETH0.0002647810.89528884
Approve191238562024-01-31 3:40:59325 days ago1706672459IN
0x18C2295A...6334A8bEE
0 ETH0.0004487518.46519156
Approve189928032024-01-12 19:08:23343 days ago1705086503IN
0x18C2295A...6334A8bEE
0 ETH0.0007406430.47532225
Transfer181537582023-09-17 5:39:23461 days ago1694929163IN
0x18C2295A...6334A8bEE
0 ETH0.000231827.85435007
Approve170100282023-04-09 10:02:59621 days ago1681034579IN
0x18C2295A...6334A8bEE
0 ETH0.0005090920.94794639
Approve164914972023-01-26 14:10:23694 days ago1674742223IN
0x18C2295A...6334A8bEE
0 ETH0.0004354417.91717715
Approve164116082023-01-15 10:28:35705 days ago1673778515IN
0x18C2295A...6334A8bEE
0 ETH0.0003681615.14899589
Approve163862332023-01-11 21:25:35709 days ago1673472335IN
0x18C2295A...6334A8bEE
0 ETH0.0004989520.54088027
Approve156983922022-10-07 19:48:11805 days ago1665172091IN
0x18C2295A...6334A8bEE
0 ETH0.000189037.77842085
Transfer155120352022-09-11 1:22:08832 days ago1662859328IN
0x18C2295A...6334A8bEE
0 ETH0.000279685.97066103
Approve154917492022-09-07 17:56:18835 days ago1662573378IN
0x18C2295A...6334A8bEE
0 ETH0.0004819319.83019429
Approve153179682022-08-11 2:00:47863 days ago1660183247IN
0x18C2295A...6334A8bEE
0 ETH0.0012252426.30008479
Approve153032162022-08-08 18:42:14865 days ago1659984134IN
0x18C2295A...6334A8bEE
0 ETH0.0006316725.99182065
Transfer152941002022-08-07 8:30:15866 days ago1659861015IN
0x18C2295A...6334A8bEE
0 ETH0.000309956.62010558
Transfer152848012022-08-05 21:45:13868 days ago1659735913IN
0x18C2295A...6334A8bEE
0 ETH0.000441414.94875625
Approve152839492022-08-05 18:30:27868 days ago1659724227IN
0x18C2295A...6334A8bEE
0 ETH0.0002952912.15059551
Transfer152706472022-08-03 16:57:06870 days ago1659545826IN
0x18C2295A...6334A8bEE
0 ETH0.0003990713.50961945
Approve152610222022-08-02 4:46:27872 days ago1659415587IN
0x18C2295A...6334A8bEE
0 ETH0.0010166121.82196598
Transfer152608992022-08-02 4:14:26872 days ago1659413666IN
0x18C2295A...6334A8bEE
0 ETH0.000260558.8274353
Approve152608352022-08-02 4:00:51872 days ago1659412851IN
0x18C2295A...6334A8bEE
0 ETH0.000533311.44750987
Approve152608072022-08-02 3:55:42872 days ago1659412542IN
0x18C2295A...6334A8bEE
0 ETH0.0005627212.07893041
Transfer152607992022-08-02 3:54:14872 days ago1659412454IN
0x18C2295A...6334A8bEE
0 ETH0.0005747512.27263165
Approve152607772022-08-02 3:49:16872 days ago1659412156IN
0x18C2295A...6334A8bEE
0 ETH0.0006742414.47280921
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Shards

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT
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;
    }
}

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

/*
⠀*⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢀⣀⣀⣠⣴⣾⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣄⣀⣀⡀⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⠛⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⢸⣿⣿⣿⣿⡿⠟⠁⠀⠀⣀⣾⣿⣿⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⢸⣿⣿⡿⠋⠀⠀⠀⣠⣾⣿⡿⠋⠁⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⢸⠟⠉⠀⠀⢀⣴⣾⣿⠿⠋⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⣠⣴⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⠀⣠⣾⣿⡿⠋⠁⠀⠀⠀⠀⠀⣠⣶⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⢸⣿⠿⠋⠀⠀⠀⠀⠀⢀⣠⣾⡿⠟⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⠘⠁⠀⠀⠀⠀⠀⢀⣴⣿⡿⠋⣠⣴⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⣠⣾⣿⠟⢁⣠⣾⣿⣿⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⠀⠀⠀⢀⣠⣾⡿⠋⢁⣴⣿⣿⣿⣿⣿⠀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⢸⣿⣀⣀⣀⣈⣉⣉⣀⣀⣉⣉⣉⣉⣉⣉⣉⣀⣿⡇⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⠘⠛⠛⠛⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠛⠛⠃⠀⠀⠀⠀⠀
⠀*⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠛⠛⠛⠛⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
 *          MIRRORPASS.XYZ
 */
contract Shards is ERC20, Ownable {
    uint256 public shardRate = 10 ether;
    uint256 public shardsDay = 1 days;
    uint256 private teamRate = 0;
    mapping(address => bool) public adminAddresses;

    modifier onlyAdmins() {
        require(adminAddresses[msg.sender], "You're not authorized to call this");
        _;
    }

    constructor() ERC20("Shards", "Shards") {}

    function setAdminAddresses(address contractAddress, bool state) public onlyOwner {
        adminAddresses[contractAddress] = state;
    }

    function changeShardRate(uint256 newRate) public onlyOwner {
        shardRate = newRate;
    }

    function changeShardDay(uint256 day) public onlyOwner {
        shardsDay = day;
    }

    function determineYield(uint256 timestamp) public view returns(uint256) {
        return shardRate * (block.timestamp - timestamp) / shardsDay;
    }

    function mintShards(address wallet, uint256 amount) public onlyAdmins {
        _mint(wallet, amount);
    }

    function burnShards(address wallet, uint256 amount) public onlyAdmins {
        _burn(wallet, amount);
    }

    function setTeamRate(uint256 newRate) public onlyOwner {
        teamRate = newRate;
    }

    function getTeamRate() public view returns(uint256) {
        return teamRate;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"adminAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnShards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"day","type":"uint256"}],"name":"changeShardDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"changeShardRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"determineYield","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTeamRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintShards","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":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setAdminAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"setTeamRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shardsDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052678ac7230489e800006006556201518060075560006008553480156200002957600080fd5b5060408051808201825260068082526553686172647360d01b6020808401828152855180870190965292855284015281519192916200006b91600391620000fa565b50805162000081906004906020840190620000fa565b5050506200009e62000098620000a460201b60201c565b620000a8565b620001dd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010890620001a0565b90600052602060002090601f0160209004810192826200012c576000855562000177565b82601f106200014757805160ff191683800117855562000177565b8280016001018555821562000177579182015b82811115620001775782518255916020019190600101906200015a565b506200018592915062000189565b5090565b5b808211156200018557600081556001016200018a565b600181811c90821680620001b557607f821691505b60208210811415620001d757634e487b7160e01b600052602260045260246000fd5b50919050565b61108680620001ed6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063be80ee6811610097578063cd14382111610071578063cd14382114610322578063dd62ed3e1461032b578063ede6aa2914610364578063f2fde38b1461037757600080fd5b8063be80ee68146102f4578063c684e516146102fc578063ca192f2e1461030f57600080fd5b80638da5cb5b1461028f57806395d89b41146102aa578063a0243170146102b2578063a457c2d7146102c5578063a9059cbb146102d8578063a97af06e146102eb57600080fd5b80632e8f7b1f116101305780632e8f7b1f14610206578063313ce5671461021957806339509351146102285780634ed38faf1461023b57806370a082311461025e578063715018a61461028757600080fd5b806306fdde0314610178578063095ea7b31461019657806317bbddf7146101b957806318160ddd146101ce57806323b872dd146101e05780632c22a12a146101f3575b600080fd5b61018061038a565b60405161018d9190610ec3565b60405180910390f35b6101a96101a4366004610e80565b61041c565b604051901515815260200161018d565b6101cc6101c7366004610e80565b610432565b005b6002545b60405190815260200161018d565b6101a96101ee366004610e08565b610478565b6101cc610201366004610e80565b610522565b6101cc610214366004610eaa565b61055b565b6040516012815260200161018d565b6101a9610236366004610e80565b61058a565b6101a9610249366004610db3565b60096020526000908152604090205460ff1681565b6101d261026c366004610db3565b6001600160a01b031660009081526020819052604090205490565b6101cc6105c6565b6005546040516001600160a01b03909116815260200161018d565b6101806105fc565b6101cc6102c0366004610eaa565b61060b565b6101a96102d3366004610e80565b61063a565b6101a96102e6366004610e80565b6106d3565b6101d260075481565b6008546101d2565b6101d261030a366004610eaa565b6106e0565b6101cc61031d366004610eaa565b61070d565b6101d260065481565b6101d2610339366004610dd5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101cc610372366004610e44565b61073c565b6101cc610385366004610db3565b610791565b60606003805461039990610fff565b80601f01602080910402602001604051908101604052809291908181526020018280546103c590610fff565b80156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b5050505050905090565b600061042933848461082c565b50600192915050565b3360009081526009602052604090205460ff1661046a5760405162461bcd60e51b815260040161046190610f18565b60405180910390fd5b6104748282610951565b5050565b6000610485848484610a30565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561050a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610461565b610517853385840361082c565b506001949350505050565b3360009081526009602052604090205460ff166105515760405162461bcd60e51b815260040161046190610f18565b6104748282610bff565b6005546001600160a01b031633146105855760405162461bcd60e51b815260040161046190610f5a565b600855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104299185906105c1908690610f8f565b61082c565b6005546001600160a01b031633146105f05760405162461bcd60e51b815260040161046190610f5a565b6105fa6000610d45565b565b60606004805461039990610fff565b6005546001600160a01b031633146106355760405162461bcd60e51b815260040161046190610f5a565b600755565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610461565b6106c9338585840361082c565b5060019392505050565b6000610429338484610a30565b6007546000906106f08342610fe8565b6006546106fd9190610fc9565b6107079190610fa7565b92915050565b6005546001600160a01b031633146107375760405162461bcd60e51b815260040161046190610f5a565b600655565b6005546001600160a01b031633146107665760405162461bcd60e51b815260040161046190610f5a565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146107bb5760405162461bcd60e51b815260040161046190610f5a565b6001600160a01b0381166108205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b61082981610d45565b50565b6001600160a01b03831661088e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b0382166108ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b80600260008282546109b99190610f8f565b90915550506001600160a01b038216600090815260208190526040812080548392906109e6908490610f8f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610a945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b038216610af65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6001600160a01b03831660009081526020819052604090205481811015610b6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610461565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ba5908490610f8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf191815260200190565b60405180910390a350505050565b6001600160a01b038216610c5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b6001600160a01b03821660009081526020819052604090205481811015610cd35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610461565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d02908490610fe8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610944565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610dae57600080fd5b919050565b600060208284031215610dc557600080fd5b610dce82610d97565b9392505050565b60008060408385031215610de857600080fd5b610df183610d97565b9150610dff60208401610d97565b90509250929050565b600080600060608486031215610e1d57600080fd5b610e2684610d97565b9250610e3460208501610d97565b9150604084013590509250925092565b60008060408385031215610e5757600080fd5b610e6083610d97565b915060208301358015158114610e7557600080fd5b809150509250929050565b60008060408385031215610e9357600080fd5b610e9c83610d97565b946020939093013593505050565b600060208284031215610ebc57600080fd5b5035919050565b600060208083528351808285015260005b81811015610ef057858101830151858201604001528201610ed4565b81811115610f02576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f596f75277265206e6f7420617574686f72697a656420746f2063616c6c207468604082015261697360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610fa257610fa261103a565b500190565b600082610fc457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610fe357610fe361103a565b500290565b600082821015610ffa57610ffa61103a565b500390565b600181811c9082168061101357607f821691505b6020821081141561103457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220900777d7d0882ee94ace5bfd9e07ddc5ea14a15972dd3f76233df2239b31e5e464736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063be80ee6811610097578063cd14382111610071578063cd14382114610322578063dd62ed3e1461032b578063ede6aa2914610364578063f2fde38b1461037757600080fd5b8063be80ee68146102f4578063c684e516146102fc578063ca192f2e1461030f57600080fd5b80638da5cb5b1461028f57806395d89b41146102aa578063a0243170146102b2578063a457c2d7146102c5578063a9059cbb146102d8578063a97af06e146102eb57600080fd5b80632e8f7b1f116101305780632e8f7b1f14610206578063313ce5671461021957806339509351146102285780634ed38faf1461023b57806370a082311461025e578063715018a61461028757600080fd5b806306fdde0314610178578063095ea7b31461019657806317bbddf7146101b957806318160ddd146101ce57806323b872dd146101e05780632c22a12a146101f3575b600080fd5b61018061038a565b60405161018d9190610ec3565b60405180910390f35b6101a96101a4366004610e80565b61041c565b604051901515815260200161018d565b6101cc6101c7366004610e80565b610432565b005b6002545b60405190815260200161018d565b6101a96101ee366004610e08565b610478565b6101cc610201366004610e80565b610522565b6101cc610214366004610eaa565b61055b565b6040516012815260200161018d565b6101a9610236366004610e80565b61058a565b6101a9610249366004610db3565b60096020526000908152604090205460ff1681565b6101d261026c366004610db3565b6001600160a01b031660009081526020819052604090205490565b6101cc6105c6565b6005546040516001600160a01b03909116815260200161018d565b6101806105fc565b6101cc6102c0366004610eaa565b61060b565b6101a96102d3366004610e80565b61063a565b6101a96102e6366004610e80565b6106d3565b6101d260075481565b6008546101d2565b6101d261030a366004610eaa565b6106e0565b6101cc61031d366004610eaa565b61070d565b6101d260065481565b6101d2610339366004610dd5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101cc610372366004610e44565b61073c565b6101cc610385366004610db3565b610791565b60606003805461039990610fff565b80601f01602080910402602001604051908101604052809291908181526020018280546103c590610fff565b80156104125780601f106103e757610100808354040283529160200191610412565b820191906000526020600020905b8154815290600101906020018083116103f557829003601f168201915b5050505050905090565b600061042933848461082c565b50600192915050565b3360009081526009602052604090205460ff1661046a5760405162461bcd60e51b815260040161046190610f18565b60405180910390fd5b6104748282610951565b5050565b6000610485848484610a30565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561050a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610461565b610517853385840361082c565b506001949350505050565b3360009081526009602052604090205460ff166105515760405162461bcd60e51b815260040161046190610f18565b6104748282610bff565b6005546001600160a01b031633146105855760405162461bcd60e51b815260040161046190610f5a565b600855565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104299185906105c1908690610f8f565b61082c565b6005546001600160a01b031633146105f05760405162461bcd60e51b815260040161046190610f5a565b6105fa6000610d45565b565b60606004805461039990610fff565b6005546001600160a01b031633146106355760405162461bcd60e51b815260040161046190610f5a565b600755565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610461565b6106c9338585840361082c565b5060019392505050565b6000610429338484610a30565b6007546000906106f08342610fe8565b6006546106fd9190610fc9565b6107079190610fa7565b92915050565b6005546001600160a01b031633146107375760405162461bcd60e51b815260040161046190610f5a565b600655565b6005546001600160a01b031633146107665760405162461bcd60e51b815260040161046190610f5a565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146107bb5760405162461bcd60e51b815260040161046190610f5a565b6001600160a01b0381166108205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b61082981610d45565b50565b6001600160a01b03831661088e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b0382166108ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b80600260008282546109b99190610f8f565b90915550506001600160a01b038216600090815260208190526040812080548392906109e6908490610f8f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610a945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b038216610af65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6001600160a01b03831660009081526020819052604090205481811015610b6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610461565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ba5908490610f8f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf191815260200190565b60405180910390a350505050565b6001600160a01b038216610c5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b6001600160a01b03821660009081526020819052604090205481811015610cd35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610461565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d02908490610fe8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610944565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610dae57600080fd5b919050565b600060208284031215610dc557600080fd5b610dce82610d97565b9392505050565b60008060408385031215610de857600080fd5b610df183610d97565b9150610dff60208401610d97565b90509250929050565b600080600060608486031215610e1d57600080fd5b610e2684610d97565b9250610e3460208501610d97565b9150604084013590509250925092565b60008060408385031215610e5757600080fd5b610e6083610d97565b915060208301358015158114610e7557600080fd5b809150509250929050565b60008060408385031215610e9357600080fd5b610e9c83610d97565b946020939093013593505050565b600060208284031215610ebc57600080fd5b5035919050565b600060208083528351808285015260005b81811015610ef057858101830151858201604001528201610ed4565b81811115610f02576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f596f75277265206e6f7420617574686f72697a656420746f2063616c6c207468604082015261697360f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610fa257610fa261103a565b500190565b600082610fc457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610fe357610fe361103a565b500290565b600082821015610ffa57610ffa61103a565b500390565b600181811c9082168061101357607f821691505b6020821081141561103457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220900777d7d0882ee94ace5bfd9e07ddc5ea14a15972dd3f76233df2239b31e5e464736f6c63430008070033

Deployed Bytecode Sourcemap

19668:1329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8275:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10442:169;;;;;;:::i;:::-;;:::i;:::-;;;2150:14:1;;2143:22;2125:41;;2113:2;2098:18;10442:169:0;1985:187:1;20572:110:0;;;;;;:::i;:::-;;:::i;:::-;;9395:108;9483:12;;9395:108;;;8101:25:1;;;8089:2;8074:18;9395:108:0;7955:177:1;11093:492:0;;;;;;:::i;:::-;;:::i;20690:110::-;;;;;;:::i;:::-;;:::i;20808:92::-;;;;;;:::i;:::-;;:::i;9237:93::-;;;9320:2;8279:36:1;;8267:2;8252:18;9237:93:0;8137:184:1;11994:215:0;;;;;;:::i;:::-;;:::i;19826:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9566:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9667:18:0;9640:7;9667:18;;;;;;;;;;;;9566:127;2375:94;;;:::i;1724:87::-;1797:6;;1724:87;;-1:-1:-1;;;;;1797:6:0;;;1923:51:1;;1911:2;1896:18;1724:87:0;1777:203:1;8494:104:0;;;:::i;20317:88::-;;;;;;:::i;:::-;;:::i;12712:413::-;;;;;;:::i;:::-;;:::i;9906:175::-;;;;;;:::i;:::-;;:::i;19751:33::-;;;;;;20908:86;20978:8;;20908:86;;20413:151;;;;;;:::i;:::-;;:::i;20212:97::-;;;;;;:::i;:::-;;:::i;19709:35::-;;;;;;10144:151;;;;;;:::i;:::-;-1:-1:-1;;;;;10260:18:0;;;10233:7;10260:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10144:151;20065:139;;;;;;:::i;:::-;;:::i;2624:192::-;;;;;;:::i;:::-;;:::i;8275:100::-;8329:13;8362:5;8355:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8275:100;:::o;10442:169::-;10525:4;10542:39;680:10;10565:7;10574:6;10542:8;:39::i;:::-;-1:-1:-1;10599:4:0;10442:169;;;;:::o;20572:110::-;19937:10;19922:26;;;;:14;:26;;;;;;;;19914:73;;;;-1:-1:-1;;;19914:73:0;;;;;;;:::i;:::-;;;;;;;;;20653:21:::1;20659:6;20667;20653:5;:21::i;:::-;20572:110:::0;;:::o;11093:492::-;11233:4;11250:36;11260:6;11268:9;11279:6;11250:9;:36::i;:::-;-1:-1:-1;;;;;11326:19:0;;11299:24;11326:19;;;:11;:19;;;;;;;;680:10;11326:33;;;;;;;;11378:26;;;;11370:79;;;;-1:-1:-1;;;11370:79:0;;5408:2:1;11370:79:0;;;5390:21:1;5447:2;5427:18;;;5420:30;5486:34;5466:18;;;5459:62;-1:-1:-1;;;5537:18:1;;;5530:38;5585:19;;11370:79:0;5206:404:1;11370:79:0;11485:57;11494:6;680:10;11535:6;11516:16;:25;11485:8;:57::i;:::-;-1:-1:-1;11573:4:0;;11093:492;-1:-1:-1;;;;11093:492:0:o;20690:110::-;19937:10;19922:26;;;;:14;:26;;;;;;;;19914:73;;;;-1:-1:-1;;;19914:73:0;;;;;;;:::i;:::-;20771:21:::1;20777:6;20785;20771:5;:21::i;20808:92::-:0;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;20874:8:::1;:18:::0;20808:92::o;11994:215::-;680:10;12082:4;12131:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12131:34:0;;;;;;;;;;12082:4;;12099:80;;12122:7;;12131:47;;12168:10;;12131:47;:::i;:::-;12099:8;:80::i;2375:94::-;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;2440:21:::1;2458:1;2440:9;:21::i;:::-;2375:94::o:0;8494:104::-;8550:13;8583:7;8576:14;;;;;:::i;20317:88::-;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;20382:9:::1;:15:::0;20317:88::o;12712:413::-;680:10;12805:4;12849:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12849:34:0;;;;;;;;;;12902:35;;;;12894:85;;;;-1:-1:-1;;;12894:85:0;;7391:2:1;12894:85:0;;;7373:21:1;7430:2;7410:18;;;7403:30;7469:34;7449:18;;;7442:62;-1:-1:-1;;;7520:18:1;;;7513:35;7565:19;;12894:85:0;7189:401:1;12894:85:0;13015:67;680:10;13038:7;13066:15;13047:16;:34;13015:8;:67::i;:::-;-1:-1:-1;13113:4:0;;12712:413;-1:-1:-1;;;12712:413:0:o;9906:175::-;9992:4;10009:42;680:10;10033:9;10044:6;10009:9;:42::i;20413:151::-;20547:9;;20476:7;;20516:27;20534:9;20516:15;:27;:::i;:::-;20503:9;;:41;;;;:::i;:::-;:53;;;;:::i;:::-;20496:60;20413:151;-1:-1:-1;;20413:151:0:o;20212:97::-;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;20282:9:::1;:19:::0;20212:97::o;20065:139::-;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20157:31:0;;;::::1;;::::0;;;:14:::1;:31;::::0;;;;:39;;-1:-1:-1;;20157:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20065:139::o;2624:192::-;1797:6;;-1:-1:-1;;;;;1797:6:0;680:10;1944:23;1936:68;;;;-1:-1:-1;;;1936:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2713:22:0;::::1;2705:73;;;::::0;-1:-1:-1;;;2705:73:0;;3788:2:1;2705:73:0::1;::::0;::::1;3770:21:1::0;3827:2;3807:18;;;3800:30;3866:34;3846:18;;;3839:62;-1:-1:-1;;;3917:18:1;;;3910:36;3963:19;;2705:73:0::1;3586:402:1::0;2705:73:0::1;2789:19;2799:8;2789:9;:19::i;:::-;2624:192:::0;:::o;16396:380::-;-1:-1:-1;;;;;16532:19:0;;16524:68;;;;-1:-1:-1;;;16524:68:0;;6986:2:1;16524:68:0;;;6968:21:1;7025:2;7005:18;;;6998:30;7064:34;7044:18;;;7037:62;-1:-1:-1;;;7115:18:1;;;7108:34;7159:19;;16524:68:0;6784:400:1;16524:68:0;-1:-1:-1;;;;;16611:21:0;;16603:68;;;;-1:-1:-1;;;16603:68:0;;4195:2:1;16603:68:0;;;4177:21:1;4234:2;4214:18;;;4207:30;4273:34;4253:18;;;4246:62;-1:-1:-1;;;4324:18:1;;;4317:32;4366:19;;16603:68:0;3993:398:1;16603:68:0;-1:-1:-1;;;;;16684:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16736:32;;8101:25:1;;;16736:32:0;;8074:18:1;16736:32:0;;;;;;;;16396:380;;;:::o;14635:399::-;-1:-1:-1;;;;;14719:21:0;;14711:65;;;;-1:-1:-1;;;14711:65:0;;7797:2:1;14711:65:0;;;7779:21:1;7836:2;7816:18;;;7809:30;7875:33;7855:18;;;7848:61;7926:18;;14711:65:0;7595:355:1;14711:65:0;14867:6;14851:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14884:18:0;;:9;:18;;;;;;;;;;:28;;14906:6;;14884:9;:28;;14906:6;;14884:28;:::i;:::-;;;;-1:-1:-1;;14928:37:0;;8101:25:1;;;-1:-1:-1;;;;;14928:37:0;;;14945:1;;14928:37;;8089:2:1;8074:18;14928:37:0;;;;;;;20572:110;;:::o;13615:733::-;-1:-1:-1;;;;;13755:20:0;;13747:70;;;;-1:-1:-1;;;13747:70:0;;6580:2:1;13747:70:0;;;6562:21:1;6619:2;6599:18;;;6592:30;6658:34;6638:18;;;6631:62;-1:-1:-1;;;6709:18:1;;;6702:35;6754:19;;13747:70:0;6378:401:1;13747:70:0;-1:-1:-1;;;;;13836:23:0;;13828:71;;;;-1:-1:-1;;;13828:71:0;;2981:2:1;13828:71:0;;;2963:21:1;3020:2;3000:18;;;2993:30;3059:34;3039:18;;;3032:62;-1:-1:-1;;;3110:18:1;;;3103:33;3153:19;;13828:71:0;2779:399:1;13828:71:0;-1:-1:-1;;;;;13996:17:0;;13972:21;13996:17;;;;;;;;;;;14032:23;;;;14024:74;;;;-1:-1:-1;;;14024:74:0;;4598:2:1;14024:74:0;;;4580:21:1;4637:2;4617:18;;;4610:30;4676:34;4656:18;;;4649:62;-1:-1:-1;;;4727:18:1;;;4720:36;4773:19;;14024:74:0;4396:402:1;14024:74:0;-1:-1:-1;;;;;14134:17:0;;;:9;:17;;;;;;;;;;;14154:22;;;14134:42;;14198:20;;;;;;;;:30;;14170:6;;14134:9;14198:30;;14170:6;;14198:30;:::i;:::-;;;;;;;;14263:9;-1:-1:-1;;;;;14246:35:0;14255:6;-1:-1:-1;;;;;14246:35:0;;14274:6;14246:35;;;;8101:25:1;;8089:2;8074:18;;7955:177;14246:35:0;;;;;;;;13736:612;13615:733;;;:::o;15367:591::-;-1:-1:-1;;;;;15451:21:0;;15443:67;;;;-1:-1:-1;;;15443:67:0;;6178:2:1;15443:67:0;;;6160:21:1;6217:2;6197:18;;;6190:30;6256:34;6236:18;;;6229:62;-1:-1:-1;;;6307:18:1;;;6300:31;6348:19;;15443:67:0;5976:397:1;15443:67:0;-1:-1:-1;;;;;15610:18:0;;15585:22;15610:18;;;;;;;;;;;15647:24;;;;15639:71;;;;-1:-1:-1;;;15639:71:0;;3385:2:1;15639:71:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:32;3556:19;;15639:71:0;3183:398:1;15639:71:0;-1:-1:-1;;;;;15746:18:0;;:9;:18;;;;;;;;;;15767:23;;;15746:44;;15812:12;:22;;15784:6;;15746:9;15812:22;;15784:6;;15812:22;:::i;:::-;;;;-1:-1:-1;;15852:37:0;;8101:25:1;;;15878:1:0;;-1:-1:-1;;;;;15852:37:0;;;;;8089:2:1;8074:18;15852:37:0;7955:177:1;2824:173:0;2899:6;;;-1:-1:-1;;;;;2916:17:0;;;-1:-1:-1;;;;;;2916:17:0;;;;;;;2949:40;;2899:6;;;2916:17;2899:6;;2949:40;;2880:16;;2949:40;2869:128;2824:173;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:347::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1225:2;1214:9;1210:18;1197:32;1272:5;1265:13;1258:21;1251:5;1248:32;1238:60;;1294:1;1291;1284:12;1238:60;1317:5;1307:15;;;981:347;;;;;:::o;1333:254::-;1401:6;1409;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;1501:29;1520:9;1501:29;:::i;:::-;1491:39;1577:2;1562:18;;;;1549:32;;-1:-1:-1;;;1333:254:1:o;1592:180::-;1651:6;1704:2;1692:9;1683:7;1679:23;1675:32;1672:52;;;1720:1;1717;1710:12;1672:52;-1:-1:-1;1743:23:1;;1592:180;-1:-1:-1;1592:180:1:o;2177:597::-;2289:4;2318:2;2347;2336:9;2329:21;2379:6;2373:13;2422:6;2417:2;2406:9;2402:18;2395:34;2447:1;2457:140;2471:6;2468:1;2465:13;2457:140;;;2566:14;;;2562:23;;2556:30;2532:17;;;2551:2;2528:26;2521:66;2486:10;;2457:140;;;2615:6;2612:1;2609:13;2606:91;;;2685:1;2680:2;2671:6;2660:9;2656:22;2652:31;2645:42;2606:91;-1:-1:-1;2758:2:1;2737:15;-1:-1:-1;;2733:29:1;2718:45;;;;2765:2;2714:54;;2177:597;-1:-1:-1;;;2177:597:1:o;4803:398::-;5005:2;4987:21;;;5044:2;5024:18;;;5017:30;5083:34;5078:2;5063:18;;5056:62;-1:-1:-1;;;5149:2:1;5134:18;;5127:32;5191:3;5176:19;;4803:398::o;5615:356::-;5817:2;5799:21;;;5836:18;;;5829:30;5895:34;5890:2;5875:18;;5868:62;5962:2;5947:18;;5615:356::o;8326:128::-;8366:3;8397:1;8393:6;8390:1;8387:13;8384:39;;;8403:18;;:::i;:::-;-1:-1:-1;8439:9:1;;8326:128::o;8459:217::-;8499:1;8525;8515:132;;8569:10;8564:3;8560:20;8557:1;8550:31;8604:4;8601:1;8594:15;8632:4;8629:1;8622:15;8515:132;-1:-1:-1;8661:9:1;;8459:217::o;8681:168::-;8721:7;8787:1;8783;8779:6;8775:14;8772:1;8769:21;8764:1;8757:9;8750:17;8746:45;8743:71;;;8794:18;;:::i;:::-;-1:-1:-1;8834:9:1;;8681:168::o;8854:125::-;8894:4;8922:1;8919;8916:8;8913:34;;;8927:18;;:::i;:::-;-1:-1:-1;8964:9:1;;8854:125::o;8984:380::-;9063:1;9059:12;;;;9106;;;9127:61;;9181:4;9173:6;9169:17;9159:27;;9127:61;9234:2;9226:6;9223:14;9203:18;9200:38;9197:161;;;9280:10;9275:3;9271:20;9268:1;9261:31;9315:4;9312:1;9305:15;9343:4;9340:1;9333:15;9197:161;;8984:380;;;:::o;9369:127::-;9430:10;9425:3;9421:20;9418:1;9411:31;9461:4;9458:1;9451:15;9485:4;9482:1;9475:15

Swarm Source

ipfs://900777d7d0882ee94ace5bfd9e07ddc5ea14a15972dd3f76233df2239b31e5e4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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