ETH Price: $1,788.46 (+9.87%)

Contract

0x4b2576BC44310D6dfb4cfCf2630f25190fc60803

Overview

ETH Balance

0 ETH

ETH Value

$0.00

More Info

Private Name Tags

TokenTracker

MoonsDust (MOOND) (@$0.0014)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve833687792025-04-18 12:20:484 days ago1744978848IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve833553782025-04-17 9:34:215 days ago1744882461IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve833294232025-04-15 12:04:067 days ago1744718646IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve833202772025-04-14 18:12:348 days ago1744654354IN
MoonsDust: MOOND Token
0 ETH0.00000050.01
Approve833200722025-04-14 17:51:198 days ago1744653079IN
MoonsDust: MOOND Token
0 ETH0.00000050.01
Approve832892212025-04-12 8:29:1210 days ago1744446552IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve832814242025-04-11 16:16:2211 days ago1744388182IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve832286782025-04-08 10:18:3914 days ago1744107519IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve831479282025-04-02 9:34:1720 days ago1743586457IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve830974172025-03-30 14:27:0623 days ago1743344826IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve830839082025-03-29 19:57:0524 days ago1743278225IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve830838542025-03-29 19:54:3324 days ago1743278073IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Transfer830435892025-03-27 16:18:4726 days ago1743092327IN
MoonsDust: MOOND Token
0 ETH0.000000480.01
Approve829508252025-03-24 17:22:5429 days ago1742836974IN
MoonsDust: MOOND Token
0 ETH0.000000250.01
Approve829449562025-03-24 15:16:2529 days ago1742829385IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve829417822025-03-24 11:31:3329 days ago1742815893IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve829292182025-03-23 17:32:1130 days ago1742751131IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve827810592025-03-16 12:55:4537 days ago1742129745IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve827806402025-03-16 12:35:5137 days ago1742128551IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve824168192025-02-21 11:00:3560 days ago1740135635IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Transfer824120752025-02-20 22:49:1261 days ago1740091752IN
MoonsDust: MOOND Token
0 ETH0.000000480.01
Approve824020522025-02-19 14:15:1562 days ago1739974515IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve822514962025-02-11 15:19:2570 days ago1739287165IN
MoonsDust: MOOND Token
0 ETH0.00000030.01
Approve822417932025-02-10 23:56:3071 days ago1739231790IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
Approve822250102025-02-10 1:47:1772 days ago1739152037IN
MoonsDust: MOOND Token
0 ETH0.000000470.01
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MoonsDust

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : MOOND.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

contract MoonsDust is ERC20, Ownable {
    uint256 public MAX_TOTAL_SUPPLY = 3_300_000 * 10 ** 18;

    uint256 public BRIDGE_PERIOD = 26 days;
    uint256 public bridgeStartTime;

    constructor() ERC20("MoonsDust", "MOOND") Ownable() {}

    function startBridge() external onlyOwner {
        require(bridgeStartTime == 0, "MOOND: bridge already started");

        bridgeStartTime = block.timestamp;
    }

    function endBridge() external onlyOwner {
        require(
            bridgeStartTime + BRIDGE_PERIOD < block.timestamp,
            "MOOND: bridge not finished"
        );
        require(
            totalSupply() <= MAX_TOTAL_SUPPLY,
            "MOOND: exceed the max limit"
        );

        uint256 restAmount = MAX_TOTAL_SUPPLY - totalSupply();

        _mint(msg.sender, restAmount);
    }

    function mint(
        address[] memory to,
        uint256[] memory amount
    ) external onlyOwner {
        require(bridgeStartTime > 0, "MOOND: bridge not started yet");
        require(
            bridgeStartTime + BRIDGE_PERIOD >= block.timestamp,
            "MOOD: bridge expired"
        );
        require(to.length == amount.length, "MOOND: invalid input data");
        for (uint i = 0; i < to.length; i++) {
            address _to = to[i];
            uint256 _amount = amount[i];
            _mint(_to, _amount);
        }
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BRIDGE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"bridgeStartTime","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":[],"name":"endBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526a02bacd5bc40aa9c6800000600655622247006007553480156200002757600080fd5b506040518060400160405280600981526020017f4d6f6f6e734475737400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4f4e440000000000000000000000000000000000000000000000000000008152508160039081620000a5919062000428565b508060049081620000b7919062000428565b505050620000da620000ce620000e060201b60201c565b620000e860201b60201c565b6200050f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023057607f821691505b602082108103620002465762000245620001e8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000271565b620002bc868362000271565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030962000303620002fd84620002d4565b620002de565b620002d4565b9050919050565b6000819050919050565b6200032583620002e8565b6200033d620003348262000310565b8484546200027e565b825550505050565b600090565b6200035462000345565b620003618184846200031a565b505050565b5b8181101562000389576200037d6000826200034a565b60018101905062000367565b5050565b601f821115620003d857620003a2816200024c565b620003ad8462000261565b81016020851015620003bd578190505b620003d5620003cc8562000261565b83018262000366565b50505b505050565b600082821c905092915050565b6000620003fd60001984600802620003dd565b1980831691505092915050565b6000620004188383620003ea565b9150826002028217905092915050565b6200043382620001ae565b67ffffffffffffffff8111156200044f576200044e620001b9565b5b6200045b825462000217565b620004688282856200038d565b600060209050601f831160018114620004a057600084156200048b578287015190505b6200049785826200040a565b86555062000507565b601f198416620004b0866200024c565b60005b82811015620004da57848901518255600182019150602085019450602081019050620004b3565b86831015620004fa5784890151620004f6601f891682620003ea565b8355505b6001600288020188555050505b505050505050565b6120b8806200051f6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610311578063dcc57f0314610341578063dd62ed3e1461035f578063e467f7e01461038f578063f2fde38b146103ab5761012c565b806370a082311461026b578063715018a61461029b5780638da5cb5b146102a557806395d89b41146102c3578063a457c2d7146102e15761012c565b806323b872dd116100f457806323b872dd146101c5578063313ce567146101f557806333039d3d14610213578063395093511461023157806365ba5eef146102615761012c565b806306fdde0314610131578063095ea7b31461014f578063133a01c41461017f57806318160ddd146101895780631c06e600146101a7575b600080fd5b6101396103c7565b604051610146919061123c565b60405180910390f35b61016960048036038101906101649190611306565b610459565b6040516101769190611361565b60405180910390f35b61018761047c565b005b6101916104d2565b60405161019e919061138b565b60405180910390f35b6101af6104dc565b6040516101bc919061138b565b60405180910390f35b6101df60048036038101906101da91906113a6565b6104e2565b6040516101ec9190611361565b60405180910390f35b6101fd610511565b60405161020a9190611415565b60405180910390f35b61021b61051a565b604051610228919061138b565b60405180910390f35b61024b60048036038101906102469190611306565b610520565b6040516102589190611361565b60405180910390f35b610269610557565b005b61028560048036038101906102809190611430565b610622565b604051610292919061138b565b60405180910390f35b6102a361066a565b005b6102ad61067e565b6040516102ba919061146c565b60405180910390f35b6102cb6106a8565b6040516102d8919061123c565b60405180910390f35b6102fb60048036038101906102f69190611306565b61073a565b6040516103089190611361565b60405180910390f35b61032b60048036038101906103269190611306565b6107b1565b6040516103389190611361565b60405180910390f35b6103496107d4565b604051610356919061138b565b60405180910390f35b61037960048036038101906103749190611487565b6107da565b604051610386919061138b565b60405180910390f35b6103a960048036038101906103a491906116d2565b610861565b005b6103c560048036038101906103c09190611430565b6109b2565b005b6060600380546103d690611779565b80601f016020809104026020016040519081016040528092919081815260200182805461040290611779565b801561044f5780601f106104245761010080835404028352916020019161044f565b820191906000526020600020905b81548152906001019060200180831161043257829003601f168201915b5050505050905090565b600080610464610a35565b9050610471818585610a3d565b600191505092915050565b610484610c06565b6000600854146104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c0906117f6565b60405180910390fd5b42600881905550565b6000600254905090565b60075481565b6000806104ed610a35565b90506104fa858285610c84565b610505858585610d10565b60019150509392505050565b60006012905090565b60065481565b60008061052b610a35565b905061054c81858561053d85896107da565b6105479190611845565b610a3d565b600191505092915050565b61055f610c06565b426007546008546105709190611845565b106105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a7906118c5565b60405180910390fd5b6006546105bb6104d2565b11156105fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f390611931565b60405180910390fd5b60006106066104d2565b6006546106139190611951565b905061061f3382610f86565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610672610c06565b61067c60006110dc565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106b790611779565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390611779565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745610a35565b9050600061075382866107da565b905083811015610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f906119f7565b60405180910390fd5b6107a58286868403610a3d565b60019250505092915050565b6000806107bc610a35565b90506107c9818585610d10565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610869610c06565b6000600854116108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590611a63565b60405180910390fd5b426007546008546108bf9190611845565b1015610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790611acf565b60405180910390fd5b8051825114610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90611b3b565b60405180910390fd5b60005b82518110156109ad57600083828151811061096557610964611b5b565b5b60200260200101519050600083838151811061098457610983611b5b565b5b602002602001015190506109988282610f86565b505080806109a590611b8a565b915050610947565b505050565b6109ba610c06565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090611c44565b60405180910390fd5b610a32816110dc565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611cd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290611d68565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf9919061138b565b60405180910390a3505050565b610c0e610a35565b73ffffffffffffffffffffffffffffffffffffffff16610c2c61067e565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611dd4565b60405180910390fd5b565b6000610c9084846107da565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d0a5781811015610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390611e40565b60405180910390fd5b610d098484848403610a3d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590611f64565b60405180910390fd5b610df98383836111a2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611ff6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6d919061138b565b60405180910390a3610f808484846111a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90612062565b60405180910390fd5b611001600083836111a2565b80600260008282546110139190611845565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110c4919061138b565b60405180910390a36110d8600083836111a7565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e65780820151818401526020810190506111cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061120e826111ac565b61121881856111b7565b93506112288185602086016111c8565b611231816111f2565b840191505092915050565b600060208201905081810360008301526112568184611203565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129d82611272565b9050919050565b6112ad81611292565b81146112b857600080fd5b50565b6000813590506112ca816112a4565b92915050565b6000819050919050565b6112e3816112d0565b81146112ee57600080fd5b50565b600081359050611300816112da565b92915050565b6000806040838503121561131d5761131c611268565b5b600061132b858286016112bb565b925050602061133c858286016112f1565b9150509250929050565b60008115159050919050565b61135b81611346565b82525050565b60006020820190506113766000830184611352565b92915050565b611385816112d0565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6000806000606084860312156113bf576113be611268565b5b60006113cd868287016112bb565b93505060206113de868287016112bb565b92505060406113ef868287016112f1565b9150509250925092565b600060ff82169050919050565b61140f816113f9565b82525050565b600060208201905061142a6000830184611406565b92915050565b60006020828403121561144657611445611268565b5b6000611454848285016112bb565b91505092915050565b61146681611292565b82525050565b6000602082019050611481600083018461145d565b92915050565b6000806040838503121561149e5761149d611268565b5b60006114ac858286016112bb565b92505060206114bd858286016112bb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611504826111f2565b810181811067ffffffffffffffff82111715611523576115226114cc565b5b80604052505050565b600061153661125e565b905061154282826114fb565b919050565b600067ffffffffffffffff821115611562576115616114cc565b5b602082029050602081019050919050565b600080fd5b600061158b61158684611547565b61152c565b905080838252602082019050602084028301858111156115ae576115ad611573565b5b835b818110156115d757806115c388826112bb565b8452602084019350506020810190506115b0565b5050509392505050565b600082601f8301126115f6576115f56114c7565b5b8135611606848260208601611578565b91505092915050565b600067ffffffffffffffff82111561162a576116296114cc565b5b602082029050602081019050919050565b600061164e6116498461160f565b61152c565b9050808382526020820190506020840283018581111561167157611670611573565b5b835b8181101561169a578061168688826112f1565b845260208401935050602081019050611673565b5050509392505050565b600082601f8301126116b9576116b86114c7565b5b81356116c984826020860161163b565b91505092915050565b600080604083850312156116e9576116e8611268565b5b600083013567ffffffffffffffff8111156117075761170661126d565b5b611713858286016115e1565b925050602083013567ffffffffffffffff8111156117345761173361126d565b5b611740858286016116a4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179157607f821691505b6020821081036117a4576117a361174a565b5b50919050565b7f4d4f4f4e443a2062726964676520616c72656164792073746172746564000000600082015250565b60006117e0601d836111b7565b91506117eb826117aa565b602082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611850826112d0565b915061185b836112d0565b925082820190508082111561187357611872611816565b5b92915050565b7f4d4f4f4e443a20627269646765206e6f742066696e6973686564000000000000600082015250565b60006118af601a836111b7565b91506118ba82611879565b602082019050919050565b600060208201905081810360008301526118de816118a2565b9050919050565b7f4d4f4f4e443a2065786365656420746865206d6178206c696d69740000000000600082015250565b600061191b601b836111b7565b9150611926826118e5565b602082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b600061195c826112d0565b9150611967836112d0565b925082820390508181111561197f5761197e611816565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119e16025836111b7565b91506119ec82611985565b604082019050919050565b60006020820190508181036000830152611a10816119d4565b9050919050565b7f4d4f4f4e443a20627269646765206e6f74207374617274656420796574000000600082015250565b6000611a4d601d836111b7565b9150611a5882611a17565b602082019050919050565b60006020820190508181036000830152611a7c81611a40565b9050919050565b7f4d4f4f443a206272696467652065787069726564000000000000000000000000600082015250565b6000611ab96014836111b7565b9150611ac482611a83565b602082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f4d4f4f4e443a20696e76616c696420696e707574206461746100000000000000600082015250565b6000611b256019836111b7565b9150611b3082611aef565b602082019050919050565b60006020820190508181036000830152611b5481611b18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b95826112d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bc757611bc6611816565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c2e6026836111b7565b9150611c3982611bd2565b604082019050919050565b60006020820190508181036000830152611c5d81611c21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cc06024836111b7565b9150611ccb82611c64565b604082019050919050565b60006020820190508181036000830152611cef81611cb3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d526022836111b7565b9150611d5d82611cf6565b604082019050919050565b60006020820190508181036000830152611d8181611d45565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dbe6020836111b7565b9150611dc982611d88565b602082019050919050565b60006020820190508181036000830152611ded81611db1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e2a601d836111b7565b9150611e3582611df4565b602082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc6025836111b7565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e6023836111b7565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe06026836111b7565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061204c601f836111b7565b915061205782612016565b602082019050919050565b6000602082019050818103600083015261207b8161203f565b905091905056fea264697066735822122059f9a9c3530495cc2544e6be48e5bf54c6017d0c912e8ebfb920cd573df82e9b64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610311578063dcc57f0314610341578063dd62ed3e1461035f578063e467f7e01461038f578063f2fde38b146103ab5761012c565b806370a082311461026b578063715018a61461029b5780638da5cb5b146102a557806395d89b41146102c3578063a457c2d7146102e15761012c565b806323b872dd116100f457806323b872dd146101c5578063313ce567146101f557806333039d3d14610213578063395093511461023157806365ba5eef146102615761012c565b806306fdde0314610131578063095ea7b31461014f578063133a01c41461017f57806318160ddd146101895780631c06e600146101a7575b600080fd5b6101396103c7565b604051610146919061123c565b60405180910390f35b61016960048036038101906101649190611306565b610459565b6040516101769190611361565b60405180910390f35b61018761047c565b005b6101916104d2565b60405161019e919061138b565b60405180910390f35b6101af6104dc565b6040516101bc919061138b565b60405180910390f35b6101df60048036038101906101da91906113a6565b6104e2565b6040516101ec9190611361565b60405180910390f35b6101fd610511565b60405161020a9190611415565b60405180910390f35b61021b61051a565b604051610228919061138b565b60405180910390f35b61024b60048036038101906102469190611306565b610520565b6040516102589190611361565b60405180910390f35b610269610557565b005b61028560048036038101906102809190611430565b610622565b604051610292919061138b565b60405180910390f35b6102a361066a565b005b6102ad61067e565b6040516102ba919061146c565b60405180910390f35b6102cb6106a8565b6040516102d8919061123c565b60405180910390f35b6102fb60048036038101906102f69190611306565b61073a565b6040516103089190611361565b60405180910390f35b61032b60048036038101906103269190611306565b6107b1565b6040516103389190611361565b60405180910390f35b6103496107d4565b604051610356919061138b565b60405180910390f35b61037960048036038101906103749190611487565b6107da565b604051610386919061138b565b60405180910390f35b6103a960048036038101906103a491906116d2565b610861565b005b6103c560048036038101906103c09190611430565b6109b2565b005b6060600380546103d690611779565b80601f016020809104026020016040519081016040528092919081815260200182805461040290611779565b801561044f5780601f106104245761010080835404028352916020019161044f565b820191906000526020600020905b81548152906001019060200180831161043257829003601f168201915b5050505050905090565b600080610464610a35565b9050610471818585610a3d565b600191505092915050565b610484610c06565b6000600854146104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c0906117f6565b60405180910390fd5b42600881905550565b6000600254905090565b60075481565b6000806104ed610a35565b90506104fa858285610c84565b610505858585610d10565b60019150509392505050565b60006012905090565b60065481565b60008061052b610a35565b905061054c81858561053d85896107da565b6105479190611845565b610a3d565b600191505092915050565b61055f610c06565b426007546008546105709190611845565b106105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a7906118c5565b60405180910390fd5b6006546105bb6104d2565b11156105fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f390611931565b60405180910390fd5b60006106066104d2565b6006546106139190611951565b905061061f3382610f86565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610672610c06565b61067c60006110dc565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106b790611779565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390611779565b80156107305780601f1061070557610100808354040283529160200191610730565b820191906000526020600020905b81548152906001019060200180831161071357829003601f168201915b5050505050905090565b600080610745610a35565b9050600061075382866107da565b905083811015610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f906119f7565b60405180910390fd5b6107a58286868403610a3d565b60019250505092915050565b6000806107bc610a35565b90506107c9818585610d10565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610869610c06565b6000600854116108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590611a63565b60405180910390fd5b426007546008546108bf9190611845565b1015610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790611acf565b60405180910390fd5b8051825114610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b90611b3b565b60405180910390fd5b60005b82518110156109ad57600083828151811061096557610964611b5b565b5b60200260200101519050600083838151811061098457610983611b5b565b5b602002602001015190506109988282610f86565b505080806109a590611b8a565b915050610947565b505050565b6109ba610c06565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090611c44565b60405180910390fd5b610a32816110dc565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611cd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290611d68565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf9919061138b565b60405180910390a3505050565b610c0e610a35565b73ffffffffffffffffffffffffffffffffffffffff16610c2c61067e565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611dd4565b60405180910390fd5b565b6000610c9084846107da565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d0a5781811015610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390611e40565b60405180910390fd5b610d098484848403610a3d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590611f64565b60405180910390fd5b610df98383836111a2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611ff6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6d919061138b565b60405180910390a3610f808484846111a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90612062565b60405180910390fd5b611001600083836111a2565b80600260008282546110139190611845565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110c4919061138b565b60405180910390a36110d8600083836111a7565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e65780820151818401526020810190506111cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061120e826111ac565b61121881856111b7565b93506112288185602086016111c8565b611231816111f2565b840191505092915050565b600060208201905081810360008301526112568184611203565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129d82611272565b9050919050565b6112ad81611292565b81146112b857600080fd5b50565b6000813590506112ca816112a4565b92915050565b6000819050919050565b6112e3816112d0565b81146112ee57600080fd5b50565b600081359050611300816112da565b92915050565b6000806040838503121561131d5761131c611268565b5b600061132b858286016112bb565b925050602061133c858286016112f1565b9150509250929050565b60008115159050919050565b61135b81611346565b82525050565b60006020820190506113766000830184611352565b92915050565b611385816112d0565b82525050565b60006020820190506113a0600083018461137c565b92915050565b6000806000606084860312156113bf576113be611268565b5b60006113cd868287016112bb565b93505060206113de868287016112bb565b92505060406113ef868287016112f1565b9150509250925092565b600060ff82169050919050565b61140f816113f9565b82525050565b600060208201905061142a6000830184611406565b92915050565b60006020828403121561144657611445611268565b5b6000611454848285016112bb565b91505092915050565b61146681611292565b82525050565b6000602082019050611481600083018461145d565b92915050565b6000806040838503121561149e5761149d611268565b5b60006114ac858286016112bb565b92505060206114bd858286016112bb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611504826111f2565b810181811067ffffffffffffffff82111715611523576115226114cc565b5b80604052505050565b600061153661125e565b905061154282826114fb565b919050565b600067ffffffffffffffff821115611562576115616114cc565b5b602082029050602081019050919050565b600080fd5b600061158b61158684611547565b61152c565b905080838252602082019050602084028301858111156115ae576115ad611573565b5b835b818110156115d757806115c388826112bb565b8452602084019350506020810190506115b0565b5050509392505050565b600082601f8301126115f6576115f56114c7565b5b8135611606848260208601611578565b91505092915050565b600067ffffffffffffffff82111561162a576116296114cc565b5b602082029050602081019050919050565b600061164e6116498461160f565b61152c565b9050808382526020820190506020840283018581111561167157611670611573565b5b835b8181101561169a578061168688826112f1565b845260208401935050602081019050611673565b5050509392505050565b600082601f8301126116b9576116b86114c7565b5b81356116c984826020860161163b565b91505092915050565b600080604083850312156116e9576116e8611268565b5b600083013567ffffffffffffffff8111156117075761170661126d565b5b611713858286016115e1565b925050602083013567ffffffffffffffff8111156117345761173361126d565b5b611740858286016116a4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061179157607f821691505b6020821081036117a4576117a361174a565b5b50919050565b7f4d4f4f4e443a2062726964676520616c72656164792073746172746564000000600082015250565b60006117e0601d836111b7565b91506117eb826117aa565b602082019050919050565b6000602082019050818103600083015261180f816117d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611850826112d0565b915061185b836112d0565b925082820190508082111561187357611872611816565b5b92915050565b7f4d4f4f4e443a20627269646765206e6f742066696e6973686564000000000000600082015250565b60006118af601a836111b7565b91506118ba82611879565b602082019050919050565b600060208201905081810360008301526118de816118a2565b9050919050565b7f4d4f4f4e443a2065786365656420746865206d6178206c696d69740000000000600082015250565b600061191b601b836111b7565b9150611926826118e5565b602082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b600061195c826112d0565b9150611967836112d0565b925082820390508181111561197f5761197e611816565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119e16025836111b7565b91506119ec82611985565b604082019050919050565b60006020820190508181036000830152611a10816119d4565b9050919050565b7f4d4f4f4e443a20627269646765206e6f74207374617274656420796574000000600082015250565b6000611a4d601d836111b7565b9150611a5882611a17565b602082019050919050565b60006020820190508181036000830152611a7c81611a40565b9050919050565b7f4d4f4f443a206272696467652065787069726564000000000000000000000000600082015250565b6000611ab96014836111b7565b9150611ac482611a83565b602082019050919050565b60006020820190508181036000830152611ae881611aac565b9050919050565b7f4d4f4f4e443a20696e76616c696420696e707574206461746100000000000000600082015250565b6000611b256019836111b7565b9150611b3082611aef565b602082019050919050565b60006020820190508181036000830152611b5481611b18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b95826112d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bc757611bc6611816565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c2e6026836111b7565b9150611c3982611bd2565b604082019050919050565b60006020820190508181036000830152611c5d81611c21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cc06024836111b7565b9150611ccb82611c64565b604082019050919050565b60006020820190508181036000830152611cef81611cb3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d526022836111b7565b9150611d5d82611cf6565b604082019050919050565b60006020820190508181036000830152611d8181611d45565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dbe6020836111b7565b9150611dc982611d88565b602082019050919050565b60006020820190508181036000830152611ded81611db1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e2a601d836111b7565b9150611e3582611df4565b602082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc6025836111b7565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e6023836111b7565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe06026836111b7565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061204c601f836111b7565b915061205782612016565b602082019050919050565b6000602082019050818103600083015261207b8161203f565b905091905056fea264697066735822122059f9a9c3530495cc2544e6be48e5bf54c6017d0c912e8ebfb920cd573df82e9b64736f6c63430008130033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

MOOND represents tokenized ownership of MoonsDust and its derivatives. Our main mission is to build the ecosystem and infrastructure for Reddit Community Points and Arbitrum Nova.

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.