S Price: $0.409048 (-0.69%)

Contract

0xe8876189A80B2079D8C0a7867e46c50361D972c1

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve69240022025-02-07 17:24:1631 hrs ago1738949056IN
0xe8876189...361D972c1
0 S0.0025248153
Approve64187442025-02-03 16:00:485 days ago1738598448IN
0xe8876189...361D972c1
0 S0.0015010851
Approve64187312025-02-03 16:00:425 days ago1738598442IN
0xe8876189...361D972c1
0 S0.002367850
Approve64187252025-02-03 16:00:395 days ago1738598439IN
0xe8876189...361D972c1
0 S0.0015017451
Approve64185622025-02-03 15:59:275 days ago1738598367IN
0xe8876189...361D972c1
0 S0.0024144951
Approve64185522025-02-03 15:59:225 days ago1738598362IN
0xe8876189...361D972c1
0 S0.0024151551
Approve61323012025-02-01 12:11:317 days ago1738411891IN
0xe8876189...361D972c1
0 S0.0023556351
Transfer57918302025-01-29 16:01:3010 days ago1738166490IN
0xe8876189...361D972c1
0 S0.0030978255
Transfer57917432025-01-29 16:00:0010 days ago1738166400IN
0xe8876189...361D972c1
0 S0.0030978255
Transfer57914432025-01-29 15:54:4910 days ago1738166089IN
0xe8876189...361D972c1
0 S0.003097155
Approve51827062025-01-23 21:51:4116 days ago1737669101IN
0xe8876189...361D972c1
0 S0.0023100550
Approve51826992025-01-23 21:51:3716 days ago1737669097IN
0xe8876189...361D972c1
0 S0.0023562551
Transfer39195032025-01-14 21:43:0025 days ago1736890980IN
0xe8876189...361D972c1
0 S0.0012657433
Transfer39192752025-01-14 21:40:1025 days ago1736890810IN
0xe8876189...361D972c1
0 S0.0018582633
Approve23360882025-01-03 8:26:0436 days ago1735892764IN
0xe8876189...361D972c1
0 S0.00005241.1
Add Minter22750572025-01-02 17:07:4437 days ago1735837664IN
0xe8876189...361D972c1
0 S0.000050721.1
Add Minter22750222025-01-02 17:07:0937 days ago1735837629IN
0xe8876189...361D972c1
0 S0.000050721.1
Add Minter22067052025-01-01 23:35:2838 days ago1735774528IN
0xe8876189...361D972c1
0 S0.000050721.1
Add Minter22066472025-01-01 23:34:2738 days ago1735774467IN
0xe8876189...361D972c1
0 S0.000050721.1

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Arc

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 10000 runs

Other Settings:
paris EvmVersion
File 1 of 5 : Arc.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.22;

import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";

contract Arc is Ownable2Step, Pausable {

    string public constant symbol = "Arc";
    string public constant name = "Archly";
    string constant public version = "2.0.0";
    uint8 public constant decimals = 18;
    uint public totalSupply = 0;

    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    mapping(address => bool) public minters;

    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);

    constructor() {
        minters[msg.sender] = true;
        _mint(msg.sender, 0);
    }
    
    function pause() public onlyOwner
    {
        _pause();
    }
    
    function unpause() public onlyOwner
    {
        _unpause();
    }

    function addMinter(address _minter) external onlyOwner {
        minters[_minter] = true;
    }
    
    function removeMinter(address _minter) external onlyOwner {
        minters[_minter] = false;
    }

    function approve(address _spender, uint _value) external returns (bool) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function _mint(address _to, uint _amount) internal returns (bool) {
        balanceOf[_to] += _amount;
        totalSupply += _amount;
        emit Transfer(address(0x0), _to, _amount);
        return true;
    }
    
    function _burn(address _from, uint _amount) internal returns (bool) {
        balanceOf[_from] -= _amount;
        totalSupply -= _amount;
        emit Transfer(_from, address(0x0), _amount);
        return true;
    }

    function _transfer(address _from, address _to, uint _value) internal returns (bool) {
        balanceOf[_from] -= _value;
        
        if(_to == address(0x0)) {
            totalSupply -= _value;
        } else {
            balanceOf[_to] += _value;
        }
        
        emit Transfer(_from, _to, _value);
        return true;
    }

    function transfer(address _to, uint _value) external whenNotPaused returns (bool) {
        return _transfer(msg.sender, _to, _value);
    }

    function transferFrom(address _from, address _to, uint _value) external whenNotPaused returns (bool) {
        uint allowed_from = allowance[_from][msg.sender];
        if (allowed_from != type(uint).max) {
            allowance[_from][msg.sender] -= _value;
        }
        return _transfer(_from, _to, _value);
    }

    function mint(address account, uint amount) external whenNotPaused returns (bool) {
        require(minters[msg.sender], 'Must be called by a minter');
        _mint(account, amount);
        return true;
    }
    
    function burn(uint amount) external whenNotPaused returns (bool) {
        require(balanceOf[msg.sender] >= amount);
        _burn(msg.sender, amount);
        return true;
    }
}

File 2 of 5 : 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 5 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

File 4 of 5 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

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

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

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":"OwnershipTransferStarted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052600060025534801561001557600080fd5b5061001f33610056565b6001805460ff60a01b19168155336000818152600560205260408120805460ff191690931790925561005091610072565b50610176565b600180546001600160a01b031916905561006f81610105565b50565b6001600160a01b03821660009081526003602052604081208054839190839061009c908490610155565b9250508190555081600260008282546100b59190610155565b90915550506040518281526001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35060015b92915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b808201808211156100ff57634e487b7160e01b600052601160045260246000fd5b611017806101856000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c806370a08231116100e3578063983b2d561161008c578063e30c397811610066578063e30c3978146103f1578063f2fde38b1461040f578063f46eccc41461042257600080fd5b8063983b2d56146103a0578063a9059cbb146103b3578063dd62ed3e146103c657600080fd5b80638456cb59116100bd5780638456cb591461031d5780638da5cb5b1461032557806395d89b411461036457600080fd5b806370a08231146102ed578063715018a61461030d57806379ba50971461031557600080fd5b8063313ce5671161014557806342966c681161011f57806342966c681461027b57806354fd4d501461028e5780635c975abb146102ca57600080fd5b8063313ce567146102465780633f4ba83a1461026057806340c10f191461026857600080fd5b806318160ddd1161017657806318160ddd1461020757806323b872dd1461021e5780633092afd51461023157600080fd5b806306fdde0314610192578063095ea7b3146101e4575b600080fd5b6101ce6040518060400160405280600681526020017f417263686c79000000000000000000000000000000000000000000000000000081525081565b6040516101db9190610e2e565b60405180910390f35b6101f76101f2366004610ebf565b610445565b60405190151581526020016101db565b61021060025481565b6040519081526020016101db565b6101f761022c366004610ee9565b6104bf565b61024461023f366004610f25565b61057b565b005b61024e601281565b60405160ff90911681526020016101db565b6102446105cf565b6101f7610276366004610ebf565b6105e1565b6101f7610289366004610f40565b61067d565b6101ce6040518060400160405280600581526020017f322e302e3000000000000000000000000000000000000000000000000000000081525081565b60015474010000000000000000000000000000000000000000900460ff166101f7565b6102106102fb366004610f25565b60036020526000908152604090205481565b6102446106b8565b6102446106ca565b61024461077f565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101db565b6101ce6040518060400160405280600381526020017f417263000000000000000000000000000000000000000000000000000000000081525081565b6102446103ae366004610f25565b61078f565b6101f76103c1366004610ebf565b6107e6565b6102106103d4366004610f59565b600460209081526000928352604080842090915290825290205481565b60015473ffffffffffffffffffffffffffffffffffffffff1661033f565b61024461041d366004610f25565b610802565b6101f7610430366004610f25565b60056020526000908152604090205460ff1681565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104ad9086815260200190565b60405180910390a35060015b92915050565b60006104c96108b2565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602090815260408083203384529091529020547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105675773ffffffffffffffffffffffffffffffffffffffff8516600090815260046020908152604080832033845290915281208054859290610561908490610fbb565b90915550505b610572858585610937565b95945050505050565b610583610a57565b73ffffffffffffffffffffffffffffffffffffffff16600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6105d7610a57565b6105df610ad8565b565b60006105eb6108b2565b3360009081526005602052604090205460ff16610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d7573742062652063616c6c65642062792061206d696e74657200000000000060448201526064015b60405180910390fd5b6106738383610b55565b5060019392505050565b60006106876108b2565b336000908152600360205260409020548211156106a357600080fd5b6106ad3383610bf5565b50600190505b919050565b6106c0610a57565b6105df6000610c95565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610660565b61077c81610c95565b50565b610787610a57565b6105df610cc6565b610797610a57565b73ffffffffffffffffffffffffffffffffffffffff16600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006107f06108b2565b6107fb338484610937565b9392505050565b61080a610a57565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561086d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60015474010000000000000000000000000000000000000000900460ff16156105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610660565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054839190839061096e908490610fbb565b909155505073ffffffffffffffffffffffffffffffffffffffff83166109ab5781600260008282546109a09190610fbb565b909155506109e69050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080548492906109e0908490610fce565b90915550505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4591815260200190565b60405180910390a35060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610660565b610ae0610d35565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080548391908390610b8c908490610fce565b925050819055508160026000828254610ba59190610fce565b909155505060405182815273ffffffffffffffffffffffffffffffffffffffff8416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016104ad565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080548391908390610c2c908490610fbb565b925050819055508160026000828254610c459190610fbb565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016104ad565b600180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561077c81610db9565b610cce6108b2565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b2b3390565b60015474010000000000000000000000000000000000000000900460ff166105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610660565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020808352835180602085015260005b81811015610e5c57858101830151858201604001528201610e40565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106b357600080fd5b60008060408385031215610ed257600080fd5b610edb83610e9b565b946020939093013593505050565b600080600060608486031215610efe57600080fd5b610f0784610e9b565b9250610f1560208501610e9b565b9150604084013590509250925092565b600060208284031215610f3757600080fd5b6107fb82610e9b565b600060208284031215610f5257600080fd5b5035919050565b60008060408385031215610f6c57600080fd5b610f7583610e9b565b9150610f8360208401610e9b565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156104b9576104b9610f8c565b808201808211156104b9576104b9610f8c56fea2646970667358221220a1409748d6b9bcbd25c4dc3cc2ce7fdcd2de8b56a91064ade06bcc20327969fc64736f6c63430008160033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018d5760003560e01c806370a08231116100e3578063983b2d561161008c578063e30c397811610066578063e30c3978146103f1578063f2fde38b1461040f578063f46eccc41461042257600080fd5b8063983b2d56146103a0578063a9059cbb146103b3578063dd62ed3e146103c657600080fd5b80638456cb59116100bd5780638456cb591461031d5780638da5cb5b1461032557806395d89b411461036457600080fd5b806370a08231146102ed578063715018a61461030d57806379ba50971461031557600080fd5b8063313ce5671161014557806342966c681161011f57806342966c681461027b57806354fd4d501461028e5780635c975abb146102ca57600080fd5b8063313ce567146102465780633f4ba83a1461026057806340c10f191461026857600080fd5b806318160ddd1161017657806318160ddd1461020757806323b872dd1461021e5780633092afd51461023157600080fd5b806306fdde0314610192578063095ea7b3146101e4575b600080fd5b6101ce6040518060400160405280600681526020017f417263686c79000000000000000000000000000000000000000000000000000081525081565b6040516101db9190610e2e565b60405180910390f35b6101f76101f2366004610ebf565b610445565b60405190151581526020016101db565b61021060025481565b6040519081526020016101db565b6101f761022c366004610ee9565b6104bf565b61024461023f366004610f25565b61057b565b005b61024e601281565b60405160ff90911681526020016101db565b6102446105cf565b6101f7610276366004610ebf565b6105e1565b6101f7610289366004610f40565b61067d565b6101ce6040518060400160405280600581526020017f322e302e3000000000000000000000000000000000000000000000000000000081525081565b60015474010000000000000000000000000000000000000000900460ff166101f7565b6102106102fb366004610f25565b60036020526000908152604090205481565b6102446106b8565b6102446106ca565b61024461077f565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101db565b6101ce6040518060400160405280600381526020017f417263000000000000000000000000000000000000000000000000000000000081525081565b6102446103ae366004610f25565b61078f565b6101f76103c1366004610ebf565b6107e6565b6102106103d4366004610f59565b600460209081526000928352604080842090915290825290205481565b60015473ffffffffffffffffffffffffffffffffffffffff1661033f565b61024461041d366004610f25565b610802565b6101f7610430366004610f25565b60056020526000908152604090205460ff1681565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104ad9086815260200190565b60405180910390a35060015b92915050565b60006104c96108b2565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602090815260408083203384529091529020547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105675773ffffffffffffffffffffffffffffffffffffffff8516600090815260046020908152604080832033845290915281208054859290610561908490610fbb565b90915550505b610572858585610937565b95945050505050565b610583610a57565b73ffffffffffffffffffffffffffffffffffffffff16600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6105d7610a57565b6105df610ad8565b565b60006105eb6108b2565b3360009081526005602052604090205460ff16610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d7573742062652063616c6c65642062792061206d696e74657200000000000060448201526064015b60405180910390fd5b6106738383610b55565b5060019392505050565b60006106876108b2565b336000908152600360205260409020548211156106a357600080fd5b6106ad3383610bf5565b50600190505b919050565b6106c0610a57565b6105df6000610c95565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610660565b61077c81610c95565b50565b610787610a57565b6105df610cc6565b610797610a57565b73ffffffffffffffffffffffffffffffffffffffff16600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006107f06108b2565b6107fb338484610937565b9392505050565b61080a610a57565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561086d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60015474010000000000000000000000000000000000000000900460ff16156105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610660565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054839190839061096e908490610fbb565b909155505073ffffffffffffffffffffffffffffffffffffffff83166109ab5781600260008282546109a09190610fbb565b909155506109e69050565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080548492906109e0908490610fce565b90915550505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4591815260200190565b60405180910390a35060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610660565b610ae0610d35565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080548391908390610b8c908490610fce565b925050819055508160026000828254610ba59190610fce565b909155505060405182815273ffffffffffffffffffffffffffffffffffffffff8416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016104ad565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080548391908390610c2c908490610fbb565b925050819055508160026000828254610c459190610fbb565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016104ad565b600180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561077c81610db9565b610cce6108b2565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b2b3390565b60015474010000000000000000000000000000000000000000900460ff166105df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610660565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020808352835180602085015260005b81811015610e5c57858101830151858201604001528201610e40565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106b357600080fd5b60008060408385031215610ed257600080fd5b610edb83610e9b565b946020939093013593505050565b600080600060608486031215610efe57600080fd5b610f0784610e9b565b9250610f1560208501610e9b565b9150604084013590509250925092565b600060208284031215610f3757600080fd5b6107fb82610e9b565b600060208284031215610f5257600080fd5b5035919050565b60008060408385031215610f6c57600080fd5b610f7583610e9b565b9150610f8360208401610e9b565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156104b9576104b9610f8c565b808201808211156104b9576104b9610f8c56fea2646970667358221220a1409748d6b9bcbd25c4dc3cc2ce7fdcd2de8b56a91064ade06bcc20327969fc64736f6c63430008160033

Block Transaction 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
[ 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.