ETH Price: $1,862.89 (-4.10%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Verify Availabil...245204802026-02-23 15:27:592 hrs ago1771860479IN
0x4E0e46FC...eDE7de611
0 ETH0.000012310.21051766
Verify Availabil...245187652026-02-23 9:42:598 hrs ago1771839779IN
0x4E0e46FC...eDE7de611
0 ETH0.000010280.17577297
Verify Availabil...245166092026-02-23 2:30:5915 hrs ago1771813859IN
0x4E0e46FC...eDE7de611
0 ETH0.000009130.15616636
Verify Availabil...245153162026-02-22 22:10:4720 hrs ago1771798247IN
0x4E0e46FC...eDE7de611
0 ETH0.000007770.13285031
Verify Availabil...245141542026-02-22 18:18:2324 hrs ago1771784303IN
0x4E0e46FC...eDE7de611
0 ETH0.000008310.14207043
Verify Availabil...245124562026-02-22 12:37:3529 hrs ago1771763855IN
0x4E0e46FC...eDE7de611
0 ETH0.000008310.1421813
Verify Availabil...245096032026-02-22 3:04:5939 hrs ago1771729499IN
0x4E0e46FC...eDE7de611
0 ETH0.000007820.13380465
Verify Availabil...245084882026-02-21 23:20:5943 hrs ago1771716059IN
0x4E0e46FC...eDE7de611
0 ETH0.00000910.15556763
Verify Availabil...245073092026-02-21 19:23:3547 hrs ago1771701815IN
0x4E0e46FC...eDE7de611
0 ETH0.000008410.14385941
Verify Availabil...245057942026-02-21 14:19:352 days ago1771683575IN
0x4E0e46FC...eDE7de611
0 ETH0.000008710.14903263
Verify Availabil...245045172026-02-21 10:03:232 days ago1771668203IN
0x4E0e46FC...eDE7de611
0 ETH0.000008320.14218404
Verify Availabil...245021462026-02-21 2:07:352 days ago1771639655IN
0x4E0e46FC...eDE7de611
0 ETH0.000008380.14320587
Verify Availabil...245013062026-02-20 23:18:472 days ago1771629527IN
0x4E0e46FC...eDE7de611
0 ETH0.000008920.15255161
Verify Availabil...244993072026-02-20 16:38:113 days ago1771605491IN
0x4E0e46FC...eDE7de611
0 ETH0.000015150.25894074
Verify Availabil...244981302026-02-20 12:41:473 days ago1771591307IN
0x4E0e46FC...eDE7de611
0 ETH0.000008490.14522853
Verify Availabil...244972382026-02-20 9:42:353 days ago1771580555IN
0x4E0e46FC...eDE7de611
0 ETH0.000010040.17171127
Verify Availabil...244957952026-02-20 4:52:473 days ago1771563167IN
0x4E0e46FC...eDE7de611
0 ETH0.000007790.13324418
Verify Availabil...244940872026-02-19 23:10:233 days ago1771542623IN
0x4E0e46FC...eDE7de611
0 ETH0.000008430.14408886
Verify Availabil...244923532026-02-19 17:21:354 days ago1771521695IN
0x4E0e46FC...eDE7de611
0 ETH0.000018170.31054686
Verify Availabil...244912002026-02-19 13:29:474 days ago1771507787IN
0x4E0e46FC...eDE7de611
0 ETH0.000013240.22630086
Verify Availabil...244901082026-02-19 9:50:474 days ago1771494647IN
0x4E0e46FC...eDE7de611
0 ETH0.000009620.16445237
Verify Availabil...244883812026-02-19 4:04:114 days ago1771473851IN
0x4E0e46FC...eDE7de611
0 ETH0.000007580.12962092
Verify Availabil...244872172026-02-19 0:10:114 days ago1771459811IN
0x4E0e46FC...eDE7de611
0 ETH0.00000860.14700523
Verify Availabil...244855132026-02-18 18:27:594 days ago1771439279IN
0x4E0e46FC...eDE7de611
0 ETH0.000017780.30414177
Verify Availabil...244844892026-02-18 15:02:475 days ago1771426967IN
0x4E0e46FC...eDE7de611
0 ETH0.000013590.23242245
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
FinalizableCommittee

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity Standard Json-Input format)

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "../components/Finalizable.sol";
import "./Committee.sol";

/**
  A finalizable version of Committee.
  Until finalized, it allows adding new members and incrementing the number of required signers.
*/
contract FinalizableCommittee is Finalizable, Committee {
    event RequiredSignersIncrement(uint256 newRequiredSigners);
    event NewMemberAdded(address newMember);

    uint256 private _memberCount;

    constructor(address[] memory committeeMembers, uint256 numSignaturesRequired)
        public
        Committee(committeeMembers, numSignaturesRequired)
    {
        _memberCount = committeeMembers.length;
    }

    function incrementRequiredSigners() external notFinalized onlyAdmin {
        require(signaturesRequired < _memberCount, "TOO_MANY_REQUIRED_SIGNATURES");
        signaturesRequired += 1;
        emit RequiredSignersIncrement(signaturesRequired);
    }

    function addCommitteeMemeber(address newMember) external notFinalized onlyAdmin {
        require(newMember != address(0x0), "INVALID_MEMBER");
        require(!isMember[newMember], "ALREADY_MEMBER");
        isMember[newMember] = true;
        _memberCount += 1;
        emit NewMemberAdded(newMember);
    }

    function identify() external pure override returns (string memory) {
        return "StarkWare_FinalizableCommittee_2022_1";
    }
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "../components/FactRegistry.sol";
import "../interfaces/IAvailabilityVerifier.sol";
import "../interfaces/Identity.sol";

contract Committee is FactRegistry, IAvailabilityVerifier, Identity {
    uint256 constant SIGNATURE_LENGTH = 32 * 2 + 1; // r(32) + s(32) +  v(1).
    uint256 public signaturesRequired;
    mapping(address => bool) public isMember;

    /// @dev Contract constructor sets initial members and required number of signatures.
    /// @param committeeMembers List of committee members.
    /// @param numSignaturesRequired Number of required signatures.
    constructor(address[] memory committeeMembers, uint256 numSignaturesRequired) public {
        require(numSignaturesRequired > 0, "NO_REQUIRED_SIGNATURES");
        require(numSignaturesRequired <= committeeMembers.length, "TOO_MANY_REQUIRED_SIGNATURES");
        for (uint256 idx = 0; idx < committeeMembers.length; idx++) {
            require(
                !isMember[committeeMembers[idx]] && (committeeMembers[idx] != address(0)),
                "NON_UNIQUE_COMMITTEE_MEMBERS"
            );
            isMember[committeeMembers[idx]] = true;
        }
        signaturesRequired = numSignaturesRequired;
    }

    function identify() external pure virtual override returns (string memory) {
        return "StarkWare_Committee_2022_2";
    }

    /// @dev Verifies the availability proof. Reverts if invalid.
    /// An availability proof should have a form of a concatenation of ec-signatures by signatories.
    /// Signatures should be sorted by signatory address ascendingly.
    /// Signatures should be 65 bytes long. r(32) + s(32) + v(1).
    /// There should be at least the number of required signatures as defined in this contract
    /// and all signatures provided should be from signatories.
    ///
    /// See :sol:mod:`AvailabilityVerifiers` for more information on when this is used.
    ///
    /// @param claimHash The hash of the claim the committee is signing on.
    /// The format is keccak256(abi.encodePacked(
    ///    newValidiumVaultRoot, validiumTreeHeight, newOrderRoot, orderTreeHeight sequenceNumber))
    /// @param availabilityProofs Concatenated ec signatures by committee members.
    function verifyAvailabilityProof(bytes32 claimHash, bytes calldata availabilityProofs)
        external
        override
    {
        require(
            availabilityProofs.length >= signaturesRequired * SIGNATURE_LENGTH,
            "INVALID_AVAILABILITY_PROOF_LENGTH"
        );

        uint256 offset = 0;
        address prevRecoveredAddress = address(0);
        for (uint256 proofIdx = 0; proofIdx < signaturesRequired; proofIdx++) {
            bytes32 r = bytesToBytes32(availabilityProofs, offset);
            bytes32 s = bytesToBytes32(availabilityProofs, offset + 32);
            uint8 v = uint8(availabilityProofs[offset + 64]);
            offset += SIGNATURE_LENGTH;
            address recovered = ecrecover(claimHash, v, r, s);
            // Signatures should be sorted off-chain before submitting to enable cheap uniqueness
            // check on-chain.
            require(isMember[recovered], "AVAILABILITY_PROVER_NOT_IN_COMMITTEE");
            require(recovered > prevRecoveredAddress, "NON_SORTED_SIGNATURES");
            prevRecoveredAddress = recovered;
        }
        registerFact(claimHash);
    }

    function bytesToBytes32(bytes memory array, uint256 offset)
        private
        pure
        returns (bytes32 result)
    {
        // Arrays are prefixed by a 256 bit length parameter.
        uint256 actualOffset = offset + 32;

        // Read the bytes32 from array memory.
        assembly {
            result := mload(add(array, actualOffset))
        }
    }
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "../interfaces/IQueryableFactRegistry.sol";

contract FactRegistry is IQueryableFactRegistry {
    // Mapping: fact hash -> true.
    mapping(bytes32 => bool) private verifiedFact;

    // Indicates whether the Fact Registry has at least one fact registered.
    bool anyFactRegistered = false;

    /*
      Checks if a fact was registered.
    */
    function isValid(bytes32 fact) external view virtual override returns (bool) {
        return internalIsValid(fact);
    }

    /*
      The internal implementation that checks if the fact was registered.
    */
    function internalIsValid(bytes32 fact) internal view virtual returns (bool) {
        return verifiedFact[fact];
    }

    function registerFact(bytes32 factHash) internal {
        // This function stores the fact hash in the mapping.
        verifiedFact[factHash] = true;

        // Mark first time off.
        if (!anyFactRegistered) {
            anyFactRegistered = true;
        }
    }

    /*
      Indicates whether at least one fact was registered.
    */
    function hasRegisteredFact() external view override returns (bool) {
        return anyFactRegistered;
    }
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;
import "../interfaces/SimpleAdminable.sol";

/**
  A simple base class for finalizable contracts.
*/
abstract contract Finalizable is SimpleAdminable {
    event Finalized();

    bool finalized;

    function isFinalized() public view returns (bool) {
        return finalized;
    }

    modifier notFinalized() {
        require(!isFinalized(), "FINALIZED");
        _;
    }

    function finalize() external onlyAdmin notFinalized {
        finalized = true;
        emit Finalized();
    }
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

interface IAvailabilityVerifier {
    /*
      Verifies the availability proof. Reverts if invalid.
    */
    function verifyAvailabilityProof(bytes32 claimHash, bytes calldata availabilityProofs) external;
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity >=0.6.12;

/*
  The Fact Registry design pattern is a way to separate cryptographic verification from the
  business logic of the contract flow.

  A fact registry holds a hash table of verified "facts" which are represented by a hash of claims
  that the registry hash check and found valid. This table may be queried by accessing the
  isValid() function of the registry with a given hash.

  In addition, each fact registry exposes a registry specific function for submitting new claims
  together with their proofs. The information submitted varies from one registry to the other
  depending of the type of fact requiring verification.

  For further reading on the Fact Registry design pattern see this
  `StarkWare blog post <https://medium.com/starkware/the-fact-registry-a64aafb598b6>`_.
*/
interface IFactRegistry {
    /*
      Returns true if the given fact was previously registered in the contract.
    */
    function isValid(bytes32 fact) external view returns (bool);
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

import "./IFactRegistry.sol";

/*
  Extends the IFactRegistry interface with a query method that indicates
  whether the fact registry has successfully registered any fact or is still empty of such facts.
*/
interface IQueryableFactRegistry is IFactRegistry {
    /*
      Returns true if at least one fact has been registered.
    */
    function hasRegisteredFact() external view returns (bool);
}

File 8 of 9 : Identity.sol
/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity >=0.6.12;

interface Identity {
    /*
      Allows a caller to ensure that the provided address is of the expected type and version.
    */
    function identify() external pure returns (string memory);
}

/*
  Copyright 2019-2024 StarkWare Industries Ltd.

  Licensed under the Apache License, Version 2.0 (the "License").
  You may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  https://www.starkware.co/open-source-license/

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions
  and limitations under the License.
*/
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.6.12;

abstract contract SimpleAdminable {
    address owner;
    address ownerCandidate;
    mapping(address => bool) admins;

    constructor() internal {
        owner = msg.sender;
        admins[msg.sender] = true;
    }

    // Admin/Owner Modifiers.
    modifier onlyOwner() {
        require(isOwner(msg.sender), "ONLY_OWNER");
        _;
    }

    function isOwner(address testedAddress) public view returns (bool) {
        return owner == testedAddress;
    }

    modifier onlyAdmin() {
        require(isAdmin(msg.sender), "ONLY_ADMIN");
        _;
    }

    function isAdmin(address testedAddress) public view returns (bool) {
        return admins[testedAddress];
    }

    function registerAdmin(address newAdmin) external onlyOwner {
        if (!isAdmin(newAdmin)) {
            admins[newAdmin] = true;
        }
    }

    function removeAdmin(address removedAdmin) external onlyOwner {
        require(!isOwner(removedAdmin), "OWNER_CANNOT_BE_REMOVED_AS_ADMIN");
        delete admins[removedAdmin];
    }

    function nominateNewOwner(address newOwner) external onlyOwner {
        require(!isOwner(newOwner), "ALREADY_OWNER");
        ownerCandidate = newOwner;
    }

    function acceptOwnership() external {
        // Previous owner is still an admin.
        require(msg.sender == ownerCandidate, "NOT_A_CANDIDATE");
        owner = ownerCandidate;
        admins[ownerCandidate] = true;
        ownerCandidate = address(0x0);
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address[]","name":"committeeMembers","type":"address[]"},{"internalType":"uint256","name":"numSignaturesRequired","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newMember","type":"address"}],"name":"NewMemberAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newRequiredSigners","type":"uint256"}],"name":"RequiredSignersIncrement","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMember","type":"address"}],"name":"addCommitteeMemeber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasRegisteredFact","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"identify","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"incrementRequiredSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"testedAddress","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"testedAddress","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"fact","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"registerAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"removedAdmin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signaturesRequired","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"claimHash","type":"bytes32"},{"internalType":"bytes","name":"availabilityProofs","type":"bytes"}],"name":"verifyAvailabilityProof","outputs":[],"stateMutability":"nonpayable","type":"function"}]

0x60806040526005805460ff1916905534801561001a57600080fd5b5060405161101d38038061101d8339818101604052604081101561003d57600080fd5b810190808051604051939291908464010000000082111561005d57600080fd5b90830190602082018581111561007257600080fd5b825186602082028301116401000000008211171561008f57600080fd5b82525081516020918201928201910280838360005b838110156100bc5781810151838201526020016100a4565b50505050919091016040908152602092830151600080546001600160a01b031916339081178255815260029094529220805460ff191660011790555091508290508180610150576040805162461bcd60e51b815260206004820152601660248201527f4e4f5f52455155495245445f5349474e41545552455300000000000000000000604482015290519081900360640190fd5b81518111156101a6576040805162461bcd60e51b815260206004820152601c60248201527f544f4f5f4d414e595f52455155495245445f5349474e41545552455300000000604482015290519081900360640190fd5b60005b82518110156102b957600760008483815181106101c257fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615801561021c575060006001600160a01b031683828151811061020857fe5b60200260200101516001600160a01b031614155b61026d576040805162461bcd60e51b815260206004820152601c60248201527f4e4f4e5f554e495155455f434f4d4d49545445455f4d454d4245525300000000604482015290519081900360640190fd5b60016007600085848151811061027f57fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016101a9565b50600655505051600855610d4b806102d26000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806379ba509711610097578063c38c581311610066578063c38c5813146102b3578063ce757d29146102d9578063d6354e15146102f3578063eeb72866146102fb57610100565b806379ba5097146102755780638d4e40831461027d578063a230c52414610285578063ac457771146102ab57610100565b80632f54bf6e116100d35780632f54bf6e146101b35780634bb278f3146101d9578063504f7f6f146101e15780636a9385671461025857610100565b80631627540c14610105578063164636f91461012d5780631785f53c1461015357806324d7806c14610179575b600080fd5b61012b6004803603602081101561011b57600080fd5b50356001600160a01b0316610378565b005b61012b6004803603602081101561014357600080fd5b50356001600160a01b031661042c565b61012b6004803603602081101561016957600080fd5b50356001600160a01b03166105cb565b61019f6004803603602081101561018f57600080fd5b50356001600160a01b031661068e565b604080519115158252519081900360200190f35b61019f600480360360208110156101c957600080fd5b50356001600160a01b03166106ac565b61012b6106c0565b61012b600480360360408110156101f757600080fd5b8135919081019060408101602082013564010000000081111561021957600080fd5b82018360208201111561022b57600080fd5b8035906020019184600183028401116401000000008311171561024d57600080fd5b509092509050610785565b61019f6004803603602081101561026e57600080fd5b50356109ce565b61012b6109df565b61019f610a6f565b61019f6004803603602081101561029b57600080fd5b50356001600160a01b0316610a78565b61012b610a8d565b61012b600480360360208110156102c957600080fd5b50356001600160a01b0316610bb1565b6102e1610c2c565b60408051918252519081900360200190f35b61019f610c32565b610303610c3b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561033d578181015183820152602001610325565b50505050905090810190601f16801561036a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610381336106ac565b6103bf576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6103c8816106ac565b1561040a576040805162461bcd60e51b815260206004820152600d60248201526c20a62922a0a22cafa7aba722a960991b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610434610a6f565b15610472576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b61047b3361068e565b6104b9576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b6001600160a01b038116610505576040805162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa6a2a6a122a960911b604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610564576040805162461bcd60e51b815260206004820152600e60248201526d20a62922a0a22cafa6a2a6a122a960911b604482015290519081900360640190fd5b6001600160a01b038116600081815260076020908152604091829020805460ff19166001908117909155600880549091019055815192835290517fd35a6cc813c47c11ff9f41f7fe9d463b32db9be612b7f78e9ba6336deb4c59009281900390910190a150565b6105d4336106ac565b610612576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b61061b816106ac565b1561066d576040805162461bcd60e51b815260206004820181905260248201527f4f574e45525f43414e4e4f545f42455f52454d4f5645445f41535f41444d494e604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19169055565b6001600160a01b031660009081526002602052604090205460ff1690565b6000546001600160a01b0391821691161490565b6106c93361068e565b610707576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b61070f610a6f565b1561074d576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b6003805460ff191660011790556040517f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768190600090a1565b6006546041028110156107c95760405162461bcd60e51b8152600401808060200182810382526021815260200180610cd16021913960400191505060405180910390fd5b60008060005b6006548110156109bd57600061081c86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250889250610c5b915050565b9050600061086387878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050602088019050610c5b565b9050600087878760400181811061087657fe5b9050013560f81c60f81b60f81c9050604186019550600060018a83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156108e7573d6000803e3d6000fd5b505060408051601f1901516001600160a01b03811660009081526007602052919091205490925060ff16905061094e5760405162461bcd60e51b8152600401808060200182810382526024815260200180610cf26024913960400191505060405180910390fd5b856001600160a01b0316816001600160a01b0316116109ac576040805162461bcd60e51b81526020600482015260156024820152744e4f4e5f534f525445445f5349474e41545552455360581b604482015290519081900360640190fd5b945050600190920191506107cf9050565b506109c785610c63565b5050505050565b60006109d982610c96565b92915050565b6001546001600160a01b03163314610a30576040805162461bcd60e51b815260206004820152600f60248201526e4e4f545f415f43414e44494441544560881b604482015290519081900360640190fd5b60018054600080546001600160a01b039092166001600160a01b0319928316811782558152600260205260409020805460ff1916831790558154169055565b60035460ff1690565b60076020526000908152604090205460ff1681565b610a95610a6f565b15610ad3576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b610adc3361068e565b610b1a576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b60085460065410610b72576040805162461bcd60e51b815260206004820152601c60248201527f544f4f5f4d414e595f52455155495245445f5349474e41545552455300000000604482015290519081900360640190fd5b600680546001019081905560408051918252517fb340b320a255ba339d0b9e3f0682e884743efd5ef8f7b2c6601bb227cf3548429181900360200190a1565b610bba336106ac565b610bf8576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b610c018161068e565b610c29576001600160a01b0381166000908152600260205260409020805460ff191660011790555b50565b60065481565b60055460ff1690565b6060604051806060016040528060258152602001610cac60259139905090565b016020015190565b6000818152600460205260409020805460ff1916600117905560055460ff16610c29576005805460ff1916600117905550565b60009081526004602052604090205460ff169056fe537461726b576172655f46696e616c697a61626c65436f6d6d69747465655f323032325f31494e56414c49445f415641494c4142494c4954595f50524f4f465f4c454e475448415641494c4142494c4954595f50524f5645525f4e4f545f494e5f434f4d4d4954544545a2646970667358221220e5ae0c6de8e2294b6185a1c6d05ec68d0966b995c8f7b9ca713336a110c8a97264736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f8de7d390064973e39b7f8b67fcc2183aa930fae

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806379ba509711610097578063c38c581311610066578063c38c5813146102b3578063ce757d29146102d9578063d6354e15146102f3578063eeb72866146102fb57610100565b806379ba5097146102755780638d4e40831461027d578063a230c52414610285578063ac457771146102ab57610100565b80632f54bf6e116100d35780632f54bf6e146101b35780634bb278f3146101d9578063504f7f6f146101e15780636a9385671461025857610100565b80631627540c14610105578063164636f91461012d5780631785f53c1461015357806324d7806c14610179575b600080fd5b61012b6004803603602081101561011b57600080fd5b50356001600160a01b0316610378565b005b61012b6004803603602081101561014357600080fd5b50356001600160a01b031661042c565b61012b6004803603602081101561016957600080fd5b50356001600160a01b03166105cb565b61019f6004803603602081101561018f57600080fd5b50356001600160a01b031661068e565b604080519115158252519081900360200190f35b61019f600480360360208110156101c957600080fd5b50356001600160a01b03166106ac565b61012b6106c0565b61012b600480360360408110156101f757600080fd5b8135919081019060408101602082013564010000000081111561021957600080fd5b82018360208201111561022b57600080fd5b8035906020019184600183028401116401000000008311171561024d57600080fd5b509092509050610785565b61019f6004803603602081101561026e57600080fd5b50356109ce565b61012b6109df565b61019f610a6f565b61019f6004803603602081101561029b57600080fd5b50356001600160a01b0316610a78565b61012b610a8d565b61012b600480360360208110156102c957600080fd5b50356001600160a01b0316610bb1565b6102e1610c2c565b60408051918252519081900360200190f35b61019f610c32565b610303610c3b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561033d578181015183820152602001610325565b50505050905090810190601f16801561036a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610381336106ac565b6103bf576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b6103c8816106ac565b1561040a576040805162461bcd60e51b815260206004820152600d60248201526c20a62922a0a22cafa7aba722a960991b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610434610a6f565b15610472576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b61047b3361068e565b6104b9576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b6001600160a01b038116610505576040805162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa6a2a6a122a960911b604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610564576040805162461bcd60e51b815260206004820152600e60248201526d20a62922a0a22cafa6a2a6a122a960911b604482015290519081900360640190fd5b6001600160a01b038116600081815260076020908152604091829020805460ff19166001908117909155600880549091019055815192835290517fd35a6cc813c47c11ff9f41f7fe9d463b32db9be612b7f78e9ba6336deb4c59009281900390910190a150565b6105d4336106ac565b610612576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b61061b816106ac565b1561066d576040805162461bcd60e51b815260206004820181905260248201527f4f574e45525f43414e4e4f545f42455f52454d4f5645445f41535f41444d494e604482015290519081900360640190fd5b6001600160a01b03166000908152600260205260409020805460ff19169055565b6001600160a01b031660009081526002602052604090205460ff1690565b6000546001600160a01b0391821691161490565b6106c93361068e565b610707576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b61070f610a6f565b1561074d576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b6003805460ff191660011790556040517f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768190600090a1565b6006546041028110156107c95760405162461bcd60e51b8152600401808060200182810382526021815260200180610cd16021913960400191505060405180910390fd5b60008060005b6006548110156109bd57600061081c86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250889250610c5b915050565b9050600061086387878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050602088019050610c5b565b9050600087878760400181811061087657fe5b9050013560f81c60f81b60f81c9050604186019550600060018a83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156108e7573d6000803e3d6000fd5b505060408051601f1901516001600160a01b03811660009081526007602052919091205490925060ff16905061094e5760405162461bcd60e51b8152600401808060200182810382526024815260200180610cf26024913960400191505060405180910390fd5b856001600160a01b0316816001600160a01b0316116109ac576040805162461bcd60e51b81526020600482015260156024820152744e4f4e5f534f525445445f5349474e41545552455360581b604482015290519081900360640190fd5b945050600190920191506107cf9050565b506109c785610c63565b5050505050565b60006109d982610c96565b92915050565b6001546001600160a01b03163314610a30576040805162461bcd60e51b815260206004820152600f60248201526e4e4f545f415f43414e44494441544560881b604482015290519081900360640190fd5b60018054600080546001600160a01b039092166001600160a01b0319928316811782558152600260205260409020805460ff1916831790558154169055565b60035460ff1690565b60076020526000908152604090205460ff1681565b610a95610a6f565b15610ad3576040805162461bcd60e51b815260206004820152600960248201526811925390531256915160ba1b604482015290519081900360640190fd5b610adc3361068e565b610b1a576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa0a226a4a760b11b604482015290519081900360640190fd5b60085460065410610b72576040805162461bcd60e51b815260206004820152601c60248201527f544f4f5f4d414e595f52455155495245445f5349474e41545552455300000000604482015290519081900360640190fd5b600680546001019081905560408051918252517fb340b320a255ba339d0b9e3f0682e884743efd5ef8f7b2c6601bb227cf3548429181900360200190a1565b610bba336106ac565b610bf8576040805162461bcd60e51b815260206004820152600a60248201526927a7262cafa7aba722a960b11b604482015290519081900360640190fd5b610c018161068e565b610c29576001600160a01b0381166000908152600260205260409020805460ff191660011790555b50565b60065481565b60055460ff1690565b6060604051806060016040528060258152602001610cac60259139905090565b016020015190565b6000818152600460205260409020805460ff1916600117905560055460ff16610c29576005805460ff1916600117905550565b60009081526004602052604090205460ff169056fe537461726b576172655f46696e616c697a61626c65436f6d6d69747465655f323032325f31494e56414c49445f415641494c4142494c4954595f50524f4f465f4c454e475448415641494c4142494c4954595f50524f5645525f4e4f545f494e5f434f4d4d4954544545a2646970667358221220e5ae0c6de8e2294b6185a1c6d05ec68d0966b995c8f7b9ca713336a110c8a97264736f6c634300060c0033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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