Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
Latest 25 from a total of 2,017 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Verify Availabil... | 13164190 | 1257 days ago | IN | 0 ETH | 0.00707136 | ||||
Verify Availabil... | 13164189 | 1257 days ago | IN | 0 ETH | 0.00738989 | ||||
Verify Availabil... | 13164186 | 1257 days ago | IN | 0 ETH | 0.00739128 | ||||
Verify Availabil... | 13164173 | 1257 days ago | IN | 0 ETH | 0.00739128 | ||||
Verify Availabil... | 13164173 | 1257 days ago | IN | 0 ETH | 0.0073885 | ||||
Verify Availabil... | 13164173 | 1257 days ago | IN | 0 ETH | 0.00738711 | ||||
Verify Availabil... | 13164173 | 1257 days ago | IN | 0 ETH | 0.00739128 | ||||
Verify Availabil... | 13164173 | 1257 days ago | IN | 0 ETH | 0.00739128 | ||||
Verify Availabil... | 13161980 | 1257 days ago | IN | 0 ETH | 0.00936478 | ||||
Verify Availabil... | 13161975 | 1257 days ago | IN | 0 ETH | 0.00943026 | ||||
Verify Availabil... | 13161973 | 1257 days ago | IN | 0 ETH | 0.00936478 | ||||
Verify Availabil... | 13161971 | 1257 days ago | IN | 0 ETH | 0.00943026 | ||||
Verify Availabil... | 13161971 | 1257 days ago | IN | 0 ETH | 0.00942493 | ||||
Verify Availabil... | 13161971 | 1257 days ago | IN | 0 ETH | 0.00936654 | ||||
Verify Availabil... | 13161971 | 1257 days ago | IN | 0 ETH | 0.00942848 | ||||
Verify Availabil... | 13161964 | 1257 days ago | IN | 0 ETH | 0.00936478 | ||||
Verify Availabil... | 13159738 | 1258 days ago | IN | 0 ETH | 0.00649923 | ||||
Verify Availabil... | 13159738 | 1258 days ago | IN | 0 ETH | 0.00694526 | ||||
Verify Availabil... | 13159738 | 1258 days ago | IN | 0 ETH | 0.00649923 | ||||
Verify Availabil... | 13157493 | 1258 days ago | IN | 0 ETH | 0.0063718 | ||||
Verify Availabil... | 13157491 | 1258 days ago | IN | 0 ETH | 0.0063706 | ||||
Verify Availabil... | 13157486 | 1258 days ago | IN | 0 ETH | 0.00630808 | ||||
Verify Availabil... | 13157486 | 1258 days ago | IN | 0 ETH | 0.0063718 | ||||
Verify Availabil... | 13157486 | 1258 days ago | IN | 0 ETH | 0.0063057 | ||||
Verify Availabil... | 13157486 | 1258 days ago | IN | 0 ETH | 0.0063706 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x879cD579...f78BBbe32 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Committee
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity Multiple files format)
/* Copyright 2019-2022 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.11; import "FactRegistry.sol"; import "IAvailabilityVerifier.sol"; import "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 <= 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 override returns(string memory) { return "StarkWare_Committee_2019_1"; } /// @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( /// newVaultRoot, vaultTreeHeight, 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-2022 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.11; import "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; /* Checks if a fact has been verified. */ function isValid(bytes32 fact) external view override returns(bool) { return _factCheck(fact); } /* This is an internal method to check if the fact is already registered. In current implementation of FactRegistry it's identical to isValid(). But the check is against the local fact registry, So for a derived referral fact registry, it's not the same. */ function _factCheck(bytes32 fact) internal view 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-2022 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.11; interface IAvailabilityVerifier { /* Verifies the availability proof. Reverts if invalid. */ function verifyAvailabilityProof(bytes32 claimHash, bytes calldata availabilityProofs) external; }
/* Copyright 2019-2022 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.11; interface Identity { /* Allows a caller, typically another contract, to ensure that the provided address is of the expected type and version. */ function identify() external pure returns(string memory); }
/* Copyright 2019-2022 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.11; /* 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-2022 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.11; 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); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"committeeMembers","type":"address[]"},{"internalType":"uint256","name":"numSignaturesRequired","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"","type":"address"}],"name":"isMember","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":[],"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"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063504f7f6f146100675780636a938567146100e0578063a230c52414610111578063ce757d2914610137578063d6354e1514610151578063eeb7286614610159575b600080fd5b6100de6004803603604081101561007d57600080fd5b8135919081019060408101602082013564010000000081111561009f57600080fd5b8201836020820111156100b157600080fd5b803590602001918460018302840111640100000000831117156100d357600080fd5b5090925090506101d6565b005b6100fd600480360360208110156100f657600080fd5b5035610421565b604080519115158252519081900360200190f35b6100fd6004803603602081101561012757600080fd5b50356001600160a01b0316610432565b61013f610447565b60408051918252519081900360200190f35b6100fd61044d565b610161610456565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019b578181015183820152602001610183565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b60025460410281101561021a5760405162461bcd60e51b81526004018080602001828103825260218152602001806104df6021913960400191505060405180910390fd5b600080805b60025481101561041057600061026c86868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525088925061048d915050565b905060006102b387878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505060208801905061048d565b905060008787876040018181106102c657fe5b9050013560f81c60f81b60f81c9050604186019550600060018a83868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa15801561033a573d6000803e3d6000fd5b505060408051601f1901516001600160a01b03811660009081526003602052919091205490925060ff1690506103a15760405162461bcd60e51b81526004018080602001828103825260248152602001806105006024913960400191505060405180910390fd5b856001600160a01b0316816001600160a01b0316116103ff576040805162461bcd60e51b81526020600482015260156024820152744e4f4e5f534f525445445f5349474e41545552455360581b604482015290519081900360640190fd5b9450506001909201915061021f9050565b5061041a85610495565b5050505050565b600061042c826104c9565b92915050565b60036020526000908152604090205460ff1681565b60025481565b60015460ff1690565b60408051808201909152601a81527f537461726b576172655f436f6d6d69747465655f323031395f31000000000000602082015290565b016020015190565b6000818152602081905260409020805460ff191660019081179091555460ff166104c6576001805460ff1916811790555b50565b60009081526020819052604090205460ff169056fe494e56414c49445f415641494c4142494c4954595f50524f4f465f4c454e475448415641494c4142494c4954595f50524f5645525f4e4f545f494e5f434f4d4d4954544545a26469706673582212206ad3740970a911cd26c5cdff3814f9f1d2a8ba911992c38e95cd78c1f289c1c064736f6c634300060b0033
Deployed Bytecode Sourcemap
749:3603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2769:1217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2769:1217:0;;-1:-1:-1;2769:1217:0;-1:-1:-1;2769:1217:0;:::i;:::-;;1004:128:1;;;;;;;;;;;;;;;;-1:-1:-1;1004:128:1;;:::i;:::-;;;;;;;;;;;;;;;;;;941:41:0;;;;;;;;;;;;;;;;-1:-1:-1;941:41:0;-1:-1:-1;;;;;941:41:0;;:::i;902:33::-;;;:::i;:::-;;;;;;;;;;;;;;;;1939:127:1;;;:::i;1761:138:0:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2769:1217;2968:18;;860:10;2968:37;2939:66;;;2918:137;;;;-1:-1:-1;;;2918:137:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3066:14;;;3145:802;3183:18;;3172:8;:29;3145:802;;;3229:9;3241:42;3256:18;;3241:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3276:6:0;;-1:-1:-1;3241:14:0;;-1:-1:-1;;3241:42:0:i;:::-;3229:54;;3297:9;3309:47;3324:18;;3309:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3353:2:0;3344:11;;;-1:-1:-1;3309:14:0;:47::i;:::-;3297:59;;3370:7;3386:18;;3405:6;3414:2;3405:11;3386:31;;;;;;;;;;;;;;;3380:38;;3370:48;;860:10;3432:26;;;;3472:17;3492:107;3519:9;3546:1;3565;3584;3492:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3492:107:0;;;-1:-1:-1;;3492:107:0;;-1:-1:-1;;;;;3750:19:0;;;;;;:8;3492:107;3750:19;;;;;;3492:107;;-1:-1:-1;3750:19:0;;;-1:-1:-1;3742:68:0;;;;-1:-1:-1;;;3742:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3844:20;-1:-1:-1;;;;;3832:32:0;:9;-1:-1:-1;;;;;3832:32:0;;3824:66;;;;;-1:-1:-1;;;3824:66:0;;;;;;;;;;;;-1:-1:-1;;;3824:66:0;;;;;;;;;;;;;;;3927:9;-1:-1:-1;;3203:10:0;;;;;-1:-1:-1;3145:802:0;;-1:-1:-1;3145:802:0;;;3956:23;3969:9;3956:12;:23::i;:::-;2769:1217;;;;;:::o;1004:128:1:-;1082:4;1109:16;1120:4;1109:10;:16::i;:::-;1102:23;1004:128;-1:-1:-1;;1004:128:1:o;941:41:0:-;;;;;;;;;;;;;;;:::o;902:33::-;;;;:::o;1939:127:1:-;2042:17;;;;1939:127;:::o;1761:138:0:-;1857:35;;;;;;;;;;;;;;;;;1761:138;:::o;3992:358::-;4309:24;4210:2;4309:24;4303:31;;4279:65::o;1559:302:1:-;1710:12;:22;;;;;;;;;;:29;;-1:-1:-1;;1710:29:1;1735:4;1710:29;;;;;;1787:17;1710:29;1787:17;1782:73;;1840:4;1820:24;;-1:-1:-1;;1820:24:1;;;;;1782:73;1559:302;:::o;1429:124::-;1501:4;1528:18;;;;;;;;;;;;;;1429:124::o
Swarm Source
ipfs://6ad3740970a911cd26c5cdff3814f9f1d2a8ba911992c38e95cd78c1f289c1c0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.