Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ConstantsHolder
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-only /* ConstantsHolder.sol - SKALE Manager Copyright (C) 2018-Present SKALE Labs @author Artem Payvin SKALE Manager is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity 0.8.11; import "@skalenetwork/skale-manager-interfaces/IConstantsHolder.sol"; import "./Permissions.sol"; /** * @title ConstantsHolder * @dev Contract contains constants and common variables for the SKALE Network. */ contract ConstantsHolder is Permissions, IConstantsHolder { // initial price for creating Node (100 SKL) uint public constant NODE_DEPOSIT = 100 * 1e18; uint8 public constant TOTAL_SPACE_ON_NODE = 128; // part of Node for Small Skale-chain (1/128 of Node) uint8 public constant SMALL_DIVISOR = 128; // part of Node for Medium Skale-chain (1/32 of Node) uint8 public constant MEDIUM_DIVISOR = 32; // part of Node for Large Skale-chain (full Node) uint8 public constant LARGE_DIVISOR = 1; // part of Node for Medium Test Skale-chain (1/4 of Node) uint8 public constant MEDIUM_TEST_DIVISOR = 4; // typically number of Nodes for Skale-chain (16 Nodes) uint public constant NUMBER_OF_NODES_FOR_SCHAIN = 16; // number of Nodes for Test Skale-chain (2 Nodes) uint public constant NUMBER_OF_NODES_FOR_TEST_SCHAIN = 2; // number of Nodes for Test Skale-chain (4 Nodes) uint public constant NUMBER_OF_NODES_FOR_MEDIUM_TEST_SCHAIN = 4; // number of seconds in one year uint32 public constant SECONDS_TO_YEAR = 31622400; // initial number of monitors uint public constant NUMBER_OF_MONITORS = 24; uint public constant OPTIMAL_LOAD_PERCENTAGE = 80; uint public constant ADJUSTMENT_SPEED = 1000; uint public constant COOLDOWN_TIME = 60; uint public constant MIN_PRICE = 10**6; uint public constant MSR_REDUCING_COEFFICIENT = 2; uint public constant DOWNTIME_THRESHOLD_PART = 30; uint public constant BOUNTY_LOCKUP_MONTHS = 2; uint public constant ALRIGHT_DELTA = 134161; uint public constant BROADCAST_DELTA = 177490; uint public constant COMPLAINT_BAD_DATA_DELTA = 80995; uint public constant PRE_RESPONSE_DELTA = 100061; uint public constant COMPLAINT_DELTA = 104611; uint public constant RESPONSE_DELTA = 49132; // MSR - Minimum staking requirement uint public msr; // Reward period - 30 days (each 30 days Node would be granted for bounty) uint32 public rewardPeriod; // Allowable latency - 150000 ms by default uint32 public allowableLatency; /** * Delta period - 1 hour (1 hour before Reward period became Monitors need * to send Verdicts and 1 hour after Reward period became Node need to come * and get Bounty) */ uint32 public deltaPeriod; /** * Check time - 2 minutes (every 2 minutes monitors should check metrics * from checked nodes) */ uint public checkTime; //Need to add minimal allowed parameters for verdicts uint public launchTimestamp; uint public rotationDelay; uint public proofOfUseLockUpPeriodDays; uint public proofOfUseDelegationPercentage; uint public limitValidatorsPerDelegator; uint256 public firstDelegationsMonth; // deprecated // date when schains will be allowed for creation uint public schainCreationTimeStamp; uint public minimalSchainLifetime; uint public complaintTimeLimit; bytes32 public constant CONSTANTS_HOLDER_MANAGER_ROLE = keccak256("CONSTANTS_HOLDER_MANAGER_ROLE"); modifier onlyConstantsHolderManager() { require(hasRole(CONSTANTS_HOLDER_MANAGER_ROLE, msg.sender), "CONSTANTS_HOLDER_MANAGER_ROLE is required"); _; } /** * @dev Allows the Owner to set new reward and delta periods * This function is only for tests. */ function setPeriods(uint32 newRewardPeriod, uint32 newDeltaPeriod) external override onlyConstantsHolderManager { require( newRewardPeriod >= newDeltaPeriod && newRewardPeriod - newDeltaPeriod >= checkTime, "Incorrect Periods" ); emit ConstantUpdated( keccak256(abi.encodePacked("RewardPeriod")), uint(rewardPeriod), uint(newRewardPeriod) ); rewardPeriod = newRewardPeriod; emit ConstantUpdated( keccak256(abi.encodePacked("DeltaPeriod")), uint(deltaPeriod), uint(newDeltaPeriod) ); deltaPeriod = newDeltaPeriod; } /** * @dev Allows the Owner to set the new check time. * This function is only for tests. */ function setCheckTime(uint newCheckTime) external override onlyConstantsHolderManager { require(rewardPeriod - deltaPeriod >= checkTime, "Incorrect check time"); emit ConstantUpdated( keccak256(abi.encodePacked("CheckTime")), uint(checkTime), uint(newCheckTime) ); checkTime = newCheckTime; } /** * @dev Allows the Owner to set the allowable latency in milliseconds. * This function is only for testing purposes. */ function setLatency(uint32 newAllowableLatency) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("AllowableLatency")), uint(allowableLatency), uint(newAllowableLatency) ); allowableLatency = newAllowableLatency; } /** * @dev Allows the Owner to set the minimum stake requirement. */ function setMSR(uint newMSR) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("MSR")), uint(msr), uint(newMSR) ); msr = newMSR; } /** * @dev Allows the Owner to set the launch timestamp. */ function setLaunchTimestamp(uint timestamp) external override onlyConstantsHolderManager { require( block.timestamp < launchTimestamp, "Cannot set network launch timestamp because network is already launched" ); emit ConstantUpdated( keccak256(abi.encodePacked("LaunchTimestamp")), uint(launchTimestamp), uint(timestamp) ); launchTimestamp = timestamp; } /** * @dev Allows the Owner to set the node rotation delay. */ function setRotationDelay(uint newDelay) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("RotationDelay")), uint(rotationDelay), uint(newDelay) ); rotationDelay = newDelay; } /** * @dev Allows the Owner to set the proof-of-use lockup period. */ function setProofOfUseLockUpPeriod(uint periodDays) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("ProofOfUseLockUpPeriodDays")), uint(proofOfUseLockUpPeriodDays), uint(periodDays) ); proofOfUseLockUpPeriodDays = periodDays; } /** * @dev Allows the Owner to set the proof-of-use delegation percentage * requirement. */ function setProofOfUseDelegationPercentage(uint percentage) external override onlyConstantsHolderManager { require(percentage <= 100, "Percentage value is incorrect"); emit ConstantUpdated( keccak256(abi.encodePacked("ProofOfUseDelegationPercentage")), uint(proofOfUseDelegationPercentage), uint(percentage) ); proofOfUseDelegationPercentage = percentage; } /** * @dev Allows the Owner to set the maximum number of validators that a * single delegator can delegate to. */ function setLimitValidatorsPerDelegator(uint newLimit) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("LimitValidatorsPerDelegator")), uint(limitValidatorsPerDelegator), uint(newLimit) ); limitValidatorsPerDelegator = newLimit; } function setSchainCreationTimeStamp(uint timestamp) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("SchainCreationTimeStamp")), uint(schainCreationTimeStamp), uint(timestamp) ); schainCreationTimeStamp = timestamp; } function setMinimalSchainLifetime(uint lifetime) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("MinimalSchainLifetime")), uint(minimalSchainLifetime), uint(lifetime) ); minimalSchainLifetime = lifetime; } function setComplaintTimeLimit(uint timeLimit) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("ComplaintTimeLimit")), uint(complaintTimeLimit), uint(timeLimit) ); complaintTimeLimit = timeLimit; } function initialize(address contractsAddress) public override initializer { Permissions.initialize(contractsAddress); msr = 0; rewardPeriod = 2592000; allowableLatency = 150000; deltaPeriod = 3600; checkTime = 300; launchTimestamp = type(uint).max; rotationDelay = 12 hours; proofOfUseLockUpPeriodDays = 90; proofOfUseDelegationPercentage = 50; limitValidatorsPerDelegator = 20; firstDelegationsMonth = 0; complaintTimeLimit = 1800; } }
// SPDX-License-Identifier: AGPL-3.0-only /* IConstantsHolder.sol - SKALE Manager Interfaces Copyright (C) 2021-Present SKALE Labs @author Artem Payvin SKALE Manager Interfaces is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager Interfaces is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager Interfaces. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity >=0.6.10 <0.9.0; interface IConstantsHolder { /** * @dev Emitted when constants updated. */ event ConstantUpdated( bytes32 indexed constantHash, uint previousValue, uint newValue ); function setPeriods(uint32 newRewardPeriod, uint32 newDeltaPeriod) external; function setCheckTime(uint newCheckTime) external; function setLatency(uint32 newAllowableLatency) external; function setMSR(uint newMSR) external; function setLaunchTimestamp(uint timestamp) external; function setRotationDelay(uint newDelay) external; function setProofOfUseLockUpPeriod(uint periodDays) external; function setProofOfUseDelegationPercentage(uint percentage) external; function setLimitValidatorsPerDelegator(uint newLimit) external; function setSchainCreationTimeStamp(uint timestamp) external; function setMinimalSchainLifetime(uint lifetime) external; function setComplaintTimeLimit(uint timeLimit) external; function msr() external view returns (uint); function launchTimestamp() external view returns (uint); function rotationDelay() external view returns (uint); function limitValidatorsPerDelegator() external view returns (uint); function schainCreationTimeStamp() external view returns (uint); function minimalSchainLifetime() external view returns (uint); function complaintTimeLimit() external view returns (uint); }
// SPDX-License-Identifier: AGPL-3.0-only /* Permissions.sol - SKALE Manager Copyright (C) 2018-Present SKALE Labs @author Artem Payvin SKALE Manager is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity 0.8.11; import "@skalenetwork/skale-manager-interfaces/IContractManager.sol"; import "@skalenetwork/skale-manager-interfaces/IPermissions.sol"; import "./thirdparty/openzeppelin/AccessControlUpgradeableLegacy.sol"; /** * @title Permissions * @dev Contract is connected module for Upgradeable approach, knows ContractManager */ contract Permissions is AccessControlUpgradeableLegacy, IPermissions { using AddressUpgradeable for address; IContractManager public contractManager; /** * @dev Modifier to make a function callable only when caller is the Owner. * * Requirements: * * - The caller must be the owner. */ modifier onlyOwner() { require(_isOwner(), "Caller is not the owner"); _; } /** * @dev Modifier to make a function callable only when caller is an Admin. * * Requirements: * * - The caller must be an admin. */ modifier onlyAdmin() { require(_isAdmin(msg.sender), "Caller is not an admin"); _; } /** * @dev Modifier to make a function callable only when caller is the Owner * or `contractName` contract. * * Requirements: * * - The caller must be the owner or `contractName`. */ modifier allow(string memory contractName) { require( contractManager.getContract(contractName) == msg.sender || _isOwner(), "Message sender is invalid"); _; } /** * @dev Modifier to make a function callable only when caller is the Owner * or `contractName1` or `contractName2` contract. * * Requirements: * * - The caller must be the owner, `contractName1`, or `contractName2`. */ modifier allowTwo(string memory contractName1, string memory contractName2) { require( contractManager.getContract(contractName1) == msg.sender || contractManager.getContract(contractName2) == msg.sender || _isOwner(), "Message sender is invalid"); _; } /** * @dev Modifier to make a function callable only when caller is the Owner * or `contractName1`, `contractName2`, or `contractName3` contract. * * Requirements: * * - The caller must be the owner, `contractName1`, `contractName2`, or * `contractName3`. */ modifier allowThree(string memory contractName1, string memory contractName2, string memory contractName3) { require( contractManager.getContract(contractName1) == msg.sender || contractManager.getContract(contractName2) == msg.sender || contractManager.getContract(contractName3) == msg.sender || _isOwner(), "Message sender is invalid"); _; } function initialize(address contractManagerAddress) public virtual override initializer { AccessControlUpgradeableLegacy.__AccessControl_init(); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setContractManager(contractManagerAddress); } function _isOwner() internal view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, msg.sender); } function _isAdmin(address account) internal view returns (bool) { address skaleManagerAddress = contractManager.contracts(keccak256(abi.encodePacked("SkaleManager"))); if (skaleManagerAddress != address(0)) { AccessControlUpgradeableLegacy skaleManager = AccessControlUpgradeableLegacy(skaleManagerAddress); return skaleManager.hasRole(keccak256("ADMIN_ROLE"), account) || _isOwner(); } else { return _isOwner(); } } function _setContractManager(address contractManagerAddress) private { require(contractManagerAddress != address(0), "ContractManager address is not set"); require(contractManagerAddress.isContract(), "Address is not contract"); contractManager = IContractManager(contractManagerAddress); } }
// SPDX-License-Identifier: AGPL-3.0-only /* IContractManager.sol - SKALE Manager Interfaces Copyright (C) 2021-Present SKALE Labs @author Dmytro Stebaeiv SKALE Manager Interfaces is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager Interfaces is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager Interfaces. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity >=0.6.10 <0.9.0; interface IContractManager { /** * @dev Emitted when contract is upgraded. */ event ContractUpgraded(string contractsName, address contractsAddress); function initialize() external; function setContractsAddress(string calldata contractsName, address newContractsAddress) external; function contracts(bytes32 nameHash) external view returns (address); function getDelegationPeriodManager() external view returns (address); function getBounty() external view returns (address); function getValidatorService() external view returns (address); function getTimeHelpers() external view returns (address); function getConstantsHolder() external view returns (address); function getSkaleToken() external view returns (address); function getTokenState() external view returns (address); function getPunisher() external view returns (address); function getContract(string calldata name) external view returns (address); }
// SPDX-License-Identifier: AGPL-3.0-only /* IPermissions.sol - SKALE Manager Copyright (C) 2018-Present SKALE Labs @author Artem Payvin SKALE Manager is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity >=0.6.10 <0.9.0; interface IPermissions { function initialize(address contractManagerAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@skalenetwork/skale-manager-interfaces/thirdparty/openzeppelin/IAccessControlUpgradeableLegacy.sol"; import "./InitializableWithGap.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, _msgSender())); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. */ abstract contract AccessControlUpgradeableLegacy is InitializableWithGap, ContextUpgradeable, IAccessControlUpgradeableLegacy { function __AccessControl_init() internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; struct RoleData { EnumerableSetUpgradeable.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: AGPL-3.0-only /* IAccessControlUpgradeableLegacy.sol - SKALE Manager Copyright (C) 2018-Present SKALE Labs @author Artem Payvin SKALE Manager is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SKALE Manager is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with SKALE Manager. If not, see <https://www.gnu.org/licenses/>. */ pragma solidity >=0.6.10 <0.9.0; interface IAccessControlUpgradeableLegacy { /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; function hasRole(bytes32 role, address account) external view returns (bool); function getRoleMemberCount(bytes32 role) external view returns (uint256); function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleAdmin(bytes32 role) external view returns (bytes32); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.7; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; contract InitializableWithGap is Initializable { uint256[50] private ______gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"constantHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"previousValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"ConstantUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"ADJUSTMENT_SPEED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ALRIGHT_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOUNTY_LOCKUP_MONTHS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BROADCAST_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMPLAINT_BAD_DATA_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMPLAINT_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONSTANTS_HOLDER_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOWNTIME_THRESHOLD_PART","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LARGE_DIVISOR","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEDIUM_DIVISOR","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEDIUM_TEST_DIVISOR","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MSR_REDUCING_COEFFICIENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NODE_DEPOSIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_MONITORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_NODES_FOR_MEDIUM_TEST_SCHAIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_NODES_FOR_SCHAIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_NODES_FOR_TEST_SCHAIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPTIMAL_LOAD_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_RESPONSE_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESPONSE_DELTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDS_TO_YEAR","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMALL_DIVISOR","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SPACE_ON_NODE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowableLatency","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"complaintTimeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractManager","outputs":[{"internalType":"contract IContractManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deltaPeriod","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstDelegationsMonth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractsAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitValidatorsPerDelegator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimalSchainLifetime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"msr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofOfUseDelegationPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofOfUseLockUpPeriodDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPeriod","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rotationDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"schainCreationTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCheckTime","type":"uint256"}],"name":"setCheckTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timeLimit","type":"uint256"}],"name":"setComplaintTimeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newAllowableLatency","type":"uint32"}],"name":"setLatency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setLaunchTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setLimitValidatorsPerDelegator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMSR","type":"uint256"}],"name":"setMSR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lifetime","type":"uint256"}],"name":"setMinimalSchainLifetime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newRewardPeriod","type":"uint32"},{"internalType":"uint32","name":"newDeltaPeriod","type":"uint32"}],"name":"setPeriods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setProofOfUseDelegationPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"periodDays","type":"uint256"}],"name":"setProofOfUseLockUpPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"setRotationDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setSchainCreationTimeStamp","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611b5f806100206000396000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c806391d14854116101f4578063c83ee0b31161011a578063da72d128116100ad578063e88dc5b71161007c578063e88dc5b714610701578063eb15ac8014610711578063ed089aa71461071b578063ff3d2fb81461072457600080fd5b8063da72d128146106d2578063e0342744146106e5578063e0c6190d146106ef578063e54a0a23146106f857600080fd5b8063d547741f116100e9578063d547741f146106b7578063d62d5bb8146106ca578063d7adbc08146106ca578063d9dd800d146106ca57600080fd5b8063c83ee0b31461050f578063c9fd716c14610692578063ca15c8731461069a578063cbdc9d6d146106ad57600080fd5b8063a8f3152b11610192578063b68297d711610161578063b68297d714610664578063b921f6e31461066e578063c4d66de814610676578063c647f8441461068957600080fd5b8063a8f3152b1461062c578063abceb19c1461063f578063ad9f20a614610647578063b39e12cf1461065157600080fd5b806394450e34116101ce57806394450e34146105f55780639c5cd5b4146106085780639dc37fcf14610611578063a217fddf1461062457600080fd5b806391d14854146105b75780639379c807146105da57806393abbbb2146105ed57600080fd5b80635ae8f2bd116102d957806379ea795e11610277578063869bdb3e11610246578063869bdb3e146105615780638906e86b146105795780638c4ff5fc146105845780639010d07c1461058c57600080fd5b806379ea795e146105295780637d2632451461053c5780638076fe7414610544578063860af2721461054e57600080fd5b806365cf7c9b116102b357806365cf7c9b146104e85780636e336a5d146104f15780637257c9a914610506578063786a46eb1461050f57600080fd5b80635ae8f2bd146104a05780635d266a54146104a95780635e200090146104d557600080fd5b80632f2ff15d1161035157806346ea74661161032057806346ea746614610472578063566ef7fd1461047b57806356d9741b1461048e5780635a92fa851461049757600080fd5b80632f2ff15d1461043157806336568abe146104445780633dcbe1f9146104575780633eb74fa31461045f57600080fd5b80630918992b1161038d5780630918992b146103e15780630927a78f146103f65780630b0d2173146103fe578063248a9ca31461040e57600080fd5b806303e3f687146103b4578063049e4177146103d057806306b98ad1146103d9575b600080fd5b6103bd60a15481565b6040519081526020015b60405180910390f35b6103bd609f5481565b6103bd601881565b6103f46103ef3660046118dd565b610737565b005b6103bd605081565b6103bd68056bc75e2d6310000081565b6103bd61041c3660046118dd565b60009081526065602052604090206002015490565b6103f461043f366004611912565b61085b565b6103f4610452366004611912565b6108e9565b6103bd600481565b6103f461046d3660046118dd565b610963565b6103bd60a25481565b6103f46104893660046118dd565b610a5b565b6103bd609d5481565b6103bd6103e881565b6103bd61bfec81565b6099546104c090600160401b900463ffffffff1681565b60405163ffffffff90911681526020016103c7565b6103f46104e33660046118dd565b610afd565b6103bd609b5481565b6103bd600080516020611aea83398151915281565b6103bd60a35481565b610517608081565b60405160ff90911681526020016103c7565b6103f46105373660046118dd565b610b9f565b6103bd603c81565b6103bd62013c6381565b6103f461055c3660046118dd565b610c36565b6099546104c090640100000000900463ffffffff1681565b6104c06301e2850081565b610517602081565b61059f61059a36600461193e565b610cbe565b6040516001600160a01b0390911681526020016103c7565b6105ca6105c5366004611912565b610cdf565b60405190151581526020016103c7565b6103f46105e83660046118dd565b610cf7565b6103bd601081565b6103f4610603366004611974565b610dea565b6103bd609e5481565b6103f461061f3660046118dd565b610f98565b6103bd600081565b6103f461063a36600461199e565b61103a565b610517600481565b6103bd620f424081565b60975461059f906001600160a01b031681565b6103bd62020c1181565b6103bd601e81565b6103f46106843660046119b9565b611105565b6103bd609c5481565b610517600181565b6103bd6106a83660046118dd565b6111d2565b6103bd6202b55281565b6103f46106c5366004611912565b6111e9565b6103bd600281565b6103f46106e03660046118dd565b61126a565b6103bd620186dd81565b6103bd609a5481565b6103bd60a05481565b6099546104c09063ffffffff1681565b6103bd620198a381565b6103bd60985481565b6103f46107323660046118dd565b611304565b61074f600080516020611aea83398151915233610cdf565b6107745760405162461bcd60e51b815260040161076b906119d4565b60405180910390fd5b609b5442106107fb5760405162461bcd60e51b815260206004820152604760248201527f43616e6e6f7420736574206e6574776f726b206c61756e63682074696d65737460448201527f616d702062656361757365206e6574776f726b20697320616c7265616479206c606482015266185d5b98da195960ca1b608482015260a40161076b565b6040516e04c61756e636854696d657374616d7608c1b6020820152602f0160408051601f198184030181528282528051602091820120609b54845290830184905291600080516020611b0a833981519152910160405180910390a2609b55565b6000828152606560205260409020600201546108779033610cdf565b6108db5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b606482015260840161076b565b6108e58282611396565b5050565b6001600160a01b03811633146109595760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161076b565b6108e582826113ef565b61097b600080516020611aea83398151915233610cdf565b6109975760405162461bcd60e51b815260040161076b906119d4565b609a546099546109b69063ffffffff600160401b820481169116611a33565b63ffffffff161015610a015760405162461bcd60e51b8152602060048201526014602482015273496e636f727265637420636865636b2074696d6560601b604482015260640161076b565b60405168436865636b54696d6560b81b602082015260290160408051601f198184030181528282528051602091820120609a54845290830184905291600080516020611b0a833981519152910160405180910390a2609a55565b610a73600080516020611aea83398151915233610cdf565b610a8f5760405162461bcd60e51b815260040161076b906119d4565b6040517f50726f6f664f665573654c6f636b5570506572696f64446179730000000000006020820152603a0160408051601f198184030181528282528051602091820120609d54845290830184905291600080516020611b0a833981519152910160405180910390a2609d55565b610b15600080516020611aea83398151915233610cdf565b610b315760405162461bcd60e51b815260040161076b906119d4565b6040517f4c696d697456616c696461746f727350657244656c656761746f7200000000006020820152603b0160408051601f198184030181528282528051602091820120609f54845290830184905291600080516020611b0a833981519152910160405180910390a2609f55565b610bb7600080516020611aea83398151915233610cdf565b610bd35760405162461bcd60e51b815260040161076b906119d4565b6040517110dbdb5c1b185a5b9d151a5b59531a5b5a5d60721b602082015260320160408051601f19818403018152828252805160209182012060a354845290830184905291600080516020611b0a833981519152910160405180910390a260a355565b610c4e600080516020611aea83398151915233610cdf565b610c6a5760405162461bcd60e51b815260040161076b906119d4565b6040516226a9a960e91b602082015260230160408051601f198184030181528282528051602091820120609854845290830184905291600080516020611b0a833981519152910160405180910390a2609855565b6000828152606560205260408120610cd69083611448565b90505b92915050565b6000828152606560205260408120610cd69083611454565b610d0f600080516020611aea83398151915233610cdf565b610d2b5760405162461bcd60e51b815260040161076b906119d4565b6064811115610d7c5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652076616c756520697320696e636f7272656374000000604482015260640161076b565b6040517f50726f6f664f6655736544656c65676174696f6e50657263656e7461676500006020820152603e0160408051601f198184030181528282528051602091820120609e54845290830184905291600080516020611b0a833981519152910160405180910390a2609e55565b610e02600080516020611aea83398151915233610cdf565b610e1e5760405162461bcd60e51b815260040161076b906119d4565b8063ffffffff168263ffffffff1610158015610e4b5750609a54610e428284611a33565b63ffffffff1610155b610e8b5760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420506572696f647360781b604482015260640161076b565b6040516b14995dd85c9914195c9a5bd960a21b6020820152602c0160408051808303601f19018152828252805160209182012060995463ffffffff908116855286169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff191663ffffffff84161790556040516a11195b1d1854195c9a5bd960aa1b6020820152602b0160408051808303601f190181528282528051602091820120609954600160401b900463ffffffff908116855285169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff909216600160401b026bffffffff00000000000000001990921691909117905550565b610fb0600080516020611aea83398151915233610cdf565b610fcc5760405162461bcd60e51b815260040161076b906119d4565b6040517f53636861696e4372656174696f6e54696d655374616d70000000000000000000602082015260370160408051601f19818403018152828252805160209182012060a154845290830184905291600080516020611b0a833981519152910160405180910390a260a155565b611052600080516020611aea83398151915233610cdf565b61106e5760405162461bcd60e51b815260040161076b906119d4565b6040516f416c6c6f7761626c654c6174656e637960801b602082015260300160408051808303601f190181528282528051602091820120609954640100000000900463ffffffff908116855285169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600054610100900460ff166111205760005460ff1615611124565b303b155b6111405760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff16158015611162576000805461ffff19166101011790555b61116b82611476565b60006098819055609980546bffffffffffffffffffffffff1916690e10000249f000278d0017905561012c609a55600019609b5561a8c0609c55605a609d556032609e556014609f5560a05561070860a35580156108e5576000805461ff00191690555050565b6000818152606560205260408120610cd990611504565b6000828152606560205260409020600201546112059033610cdf565b6109595760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b606482015260840161076b565b611282600080516020611aea83398151915233610cdf565b61129e5760405162461bcd60e51b815260040161076b906119d4565b604051744d696e696d616c53636861696e4c69666574696d6560581b602082015260350160408051601f19818403018152828252805160209182012060a254845290830184905291600080516020611b0a833981519152910160405180910390a260a255565b61131c600080516020611aea83398151915233610cdf565b6113385760405162461bcd60e51b815260040161076b906119d4565b6040516c526f746174696f6e44656c617960981b6020820152602d0160408051601f198184030181528282528051602091820120609c54845290830184905291600080516020611b0a833981519152910160405180910390a2609c55565b60008281526065602052604090206113ae908261150e565b156108e55760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526065602052604090206114079082611523565b156108e55760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b6000610cd68383611538565b6001600160a01b03811660009081526001830160205260408120541515610cd6565b600054610100900460ff166114915760005460ff1615611495565b303b155b6114b15760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156114d3576000805461ffff19166101011790555b6114db611562565b6114e66000336108db565b6114ef826115e4565b80156108e5576000805461ff00191690555050565b6000610cd9825490565b6000610cd6836001600160a01b0384166116be565b6000610cd6836001600160a01b03841661170d565b600082600001828154811061154f5761154f611aa6565b9060005260206000200154905092915050565b600054610100900460ff1661157d5760005460ff1615611581565b303b155b61159d5760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156115bf576000805461ffff19166101011790555b6115c7611800565b6115cf61186d565b80156115e1576000805461ff00191690555b50565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602260248201527f436f6e74726163744d616e616765722061646472657373206973206e6f742073604482015261195d60f21b606482015260840161076b565b6001600160a01b0381163b61169c5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206973206e6f7420636f6e7472616374000000000000000000604482015260640161076b565b609780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260018301602052604081205461170557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cd9565b506000610cd9565b600081815260018301602052604081205480156117f6576000611731600183611abc565b855490915060009061174590600190611abc565b90508181146117aa57600086600001828154811061176557611765611aa6565b906000526020600020015490508087600001848154811061178857611788611aa6565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806117bb576117bb611ad3565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cd9565b6000915050610cd9565b600054610100900460ff1661186b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161076b565b565b600054610100900460ff166118885760005460ff161561188c565b303b155b6118a85760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156115cf576000805461ffff191661010117905580156115e1576000805461ff001916905550565b6000602082840312156118ef57600080fd5b5035919050565b80356001600160a01b038116811461190d57600080fd5b919050565b6000806040838503121561192557600080fd5b82359150611935602084016118f6565b90509250929050565b6000806040838503121561195157600080fd5b50508035926020909101359150565b803563ffffffff8116811461190d57600080fd5b6000806040838503121561198757600080fd5b61199083611960565b915061193560208401611960565b6000602082840312156119b057600080fd5b610cd682611960565b6000602082840312156119cb57600080fd5b610cd6826118f6565b60208082526029908201527f434f4e5354414e54535f484f4c4445525f4d414e414745525f524f4c45206973604082015268081c995c5d5a5c995960ba1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff83811690831681811015611a5057611a50611a1d565b039392505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015611ace57611ace611a1d565b500390565b634e487b7160e01b600052603160045260246000fdfe901a4192020a5185129ea5dfd5d8e7c687626d09d2d74e45406202aef5ad43afd9f6bd2abae0f2a51b3f5ffb29e0e35ee9ad2e3921ede0d71bff21dc8609f6f1a26469706673582212202da33963c2569e2fda0e6ecdb8c7eea3db36506201b168a846a18b5d83d0f2f164736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103af5760003560e01c806391d14854116101f4578063c83ee0b31161011a578063da72d128116100ad578063e88dc5b71161007c578063e88dc5b714610701578063eb15ac8014610711578063ed089aa71461071b578063ff3d2fb81461072457600080fd5b8063da72d128146106d2578063e0342744146106e5578063e0c6190d146106ef578063e54a0a23146106f857600080fd5b8063d547741f116100e9578063d547741f146106b7578063d62d5bb8146106ca578063d7adbc08146106ca578063d9dd800d146106ca57600080fd5b8063c83ee0b31461050f578063c9fd716c14610692578063ca15c8731461069a578063cbdc9d6d146106ad57600080fd5b8063a8f3152b11610192578063b68297d711610161578063b68297d714610664578063b921f6e31461066e578063c4d66de814610676578063c647f8441461068957600080fd5b8063a8f3152b1461062c578063abceb19c1461063f578063ad9f20a614610647578063b39e12cf1461065157600080fd5b806394450e34116101ce57806394450e34146105f55780639c5cd5b4146106085780639dc37fcf14610611578063a217fddf1461062457600080fd5b806391d14854146105b75780639379c807146105da57806393abbbb2146105ed57600080fd5b80635ae8f2bd116102d957806379ea795e11610277578063869bdb3e11610246578063869bdb3e146105615780638906e86b146105795780638c4ff5fc146105845780639010d07c1461058c57600080fd5b806379ea795e146105295780637d2632451461053c5780638076fe7414610544578063860af2721461054e57600080fd5b806365cf7c9b116102b357806365cf7c9b146104e85780636e336a5d146104f15780637257c9a914610506578063786a46eb1461050f57600080fd5b80635ae8f2bd146104a05780635d266a54146104a95780635e200090146104d557600080fd5b80632f2ff15d1161035157806346ea74661161032057806346ea746614610472578063566ef7fd1461047b57806356d9741b1461048e5780635a92fa851461049757600080fd5b80632f2ff15d1461043157806336568abe146104445780633dcbe1f9146104575780633eb74fa31461045f57600080fd5b80630918992b1161038d5780630918992b146103e15780630927a78f146103f65780630b0d2173146103fe578063248a9ca31461040e57600080fd5b806303e3f687146103b4578063049e4177146103d057806306b98ad1146103d9575b600080fd5b6103bd60a15481565b6040519081526020015b60405180910390f35b6103bd609f5481565b6103bd601881565b6103f46103ef3660046118dd565b610737565b005b6103bd605081565b6103bd68056bc75e2d6310000081565b6103bd61041c3660046118dd565b60009081526065602052604090206002015490565b6103f461043f366004611912565b61085b565b6103f4610452366004611912565b6108e9565b6103bd600481565b6103f461046d3660046118dd565b610963565b6103bd60a25481565b6103f46104893660046118dd565b610a5b565b6103bd609d5481565b6103bd6103e881565b6103bd61bfec81565b6099546104c090600160401b900463ffffffff1681565b60405163ffffffff90911681526020016103c7565b6103f46104e33660046118dd565b610afd565b6103bd609b5481565b6103bd600080516020611aea83398151915281565b6103bd60a35481565b610517608081565b60405160ff90911681526020016103c7565b6103f46105373660046118dd565b610b9f565b6103bd603c81565b6103bd62013c6381565b6103f461055c3660046118dd565b610c36565b6099546104c090640100000000900463ffffffff1681565b6104c06301e2850081565b610517602081565b61059f61059a36600461193e565b610cbe565b6040516001600160a01b0390911681526020016103c7565b6105ca6105c5366004611912565b610cdf565b60405190151581526020016103c7565b6103f46105e83660046118dd565b610cf7565b6103bd601081565b6103f4610603366004611974565b610dea565b6103bd609e5481565b6103f461061f3660046118dd565b610f98565b6103bd600081565b6103f461063a36600461199e565b61103a565b610517600481565b6103bd620f424081565b60975461059f906001600160a01b031681565b6103bd62020c1181565b6103bd601e81565b6103f46106843660046119b9565b611105565b6103bd609c5481565b610517600181565b6103bd6106a83660046118dd565b6111d2565b6103bd6202b55281565b6103f46106c5366004611912565b6111e9565b6103bd600281565b6103f46106e03660046118dd565b61126a565b6103bd620186dd81565b6103bd609a5481565b6103bd60a05481565b6099546104c09063ffffffff1681565b6103bd620198a381565b6103bd60985481565b6103f46107323660046118dd565b611304565b61074f600080516020611aea83398151915233610cdf565b6107745760405162461bcd60e51b815260040161076b906119d4565b60405180910390fd5b609b5442106107fb5760405162461bcd60e51b815260206004820152604760248201527f43616e6e6f7420736574206e6574776f726b206c61756e63682074696d65737460448201527f616d702062656361757365206e6574776f726b20697320616c7265616479206c606482015266185d5b98da195960ca1b608482015260a40161076b565b6040516e04c61756e636854696d657374616d7608c1b6020820152602f0160408051601f198184030181528282528051602091820120609b54845290830184905291600080516020611b0a833981519152910160405180910390a2609b55565b6000828152606560205260409020600201546108779033610cdf565b6108db5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b606482015260840161076b565b6108e58282611396565b5050565b6001600160a01b03811633146109595760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161076b565b6108e582826113ef565b61097b600080516020611aea83398151915233610cdf565b6109975760405162461bcd60e51b815260040161076b906119d4565b609a546099546109b69063ffffffff600160401b820481169116611a33565b63ffffffff161015610a015760405162461bcd60e51b8152602060048201526014602482015273496e636f727265637420636865636b2074696d6560601b604482015260640161076b565b60405168436865636b54696d6560b81b602082015260290160408051601f198184030181528282528051602091820120609a54845290830184905291600080516020611b0a833981519152910160405180910390a2609a55565b610a73600080516020611aea83398151915233610cdf565b610a8f5760405162461bcd60e51b815260040161076b906119d4565b6040517f50726f6f664f665573654c6f636b5570506572696f64446179730000000000006020820152603a0160408051601f198184030181528282528051602091820120609d54845290830184905291600080516020611b0a833981519152910160405180910390a2609d55565b610b15600080516020611aea83398151915233610cdf565b610b315760405162461bcd60e51b815260040161076b906119d4565b6040517f4c696d697456616c696461746f727350657244656c656761746f7200000000006020820152603b0160408051601f198184030181528282528051602091820120609f54845290830184905291600080516020611b0a833981519152910160405180910390a2609f55565b610bb7600080516020611aea83398151915233610cdf565b610bd35760405162461bcd60e51b815260040161076b906119d4565b6040517110dbdb5c1b185a5b9d151a5b59531a5b5a5d60721b602082015260320160408051601f19818403018152828252805160209182012060a354845290830184905291600080516020611b0a833981519152910160405180910390a260a355565b610c4e600080516020611aea83398151915233610cdf565b610c6a5760405162461bcd60e51b815260040161076b906119d4565b6040516226a9a960e91b602082015260230160408051601f198184030181528282528051602091820120609854845290830184905291600080516020611b0a833981519152910160405180910390a2609855565b6000828152606560205260408120610cd69083611448565b90505b92915050565b6000828152606560205260408120610cd69083611454565b610d0f600080516020611aea83398151915233610cdf565b610d2b5760405162461bcd60e51b815260040161076b906119d4565b6064811115610d7c5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652076616c756520697320696e636f7272656374000000604482015260640161076b565b6040517f50726f6f664f6655736544656c65676174696f6e50657263656e7461676500006020820152603e0160408051601f198184030181528282528051602091820120609e54845290830184905291600080516020611b0a833981519152910160405180910390a2609e55565b610e02600080516020611aea83398151915233610cdf565b610e1e5760405162461bcd60e51b815260040161076b906119d4565b8063ffffffff168263ffffffff1610158015610e4b5750609a54610e428284611a33565b63ffffffff1610155b610e8b5760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420506572696f647360781b604482015260640161076b565b6040516b14995dd85c9914195c9a5bd960a21b6020820152602c0160408051808303601f19018152828252805160209182012060995463ffffffff908116855286169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff191663ffffffff84161790556040516a11195b1d1854195c9a5bd960aa1b6020820152602b0160408051808303601f190181528282528051602091820120609954600160401b900463ffffffff908116855285169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff909216600160401b026bffffffff00000000000000001990921691909117905550565b610fb0600080516020611aea83398151915233610cdf565b610fcc5760405162461bcd60e51b815260040161076b906119d4565b6040517f53636861696e4372656174696f6e54696d655374616d70000000000000000000602082015260370160408051601f19818403018152828252805160209182012060a154845290830184905291600080516020611b0a833981519152910160405180910390a260a155565b611052600080516020611aea83398151915233610cdf565b61106e5760405162461bcd60e51b815260040161076b906119d4565b6040516f416c6c6f7761626c654c6174656e637960801b602082015260300160408051808303601f190181528282528051602091820120609954640100000000900463ffffffff908116855285169184019190915291600080516020611b0a833981519152910160405180910390a26099805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600054610100900460ff166111205760005460ff1615611124565b303b155b6111405760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff16158015611162576000805461ffff19166101011790555b61116b82611476565b60006098819055609980546bffffffffffffffffffffffff1916690e10000249f000278d0017905561012c609a55600019609b5561a8c0609c55605a609d556032609e556014609f5560a05561070860a35580156108e5576000805461ff00191690555050565b6000818152606560205260408120610cd990611504565b6000828152606560205260409020600201546112059033610cdf565b6109595760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b606482015260840161076b565b611282600080516020611aea83398151915233610cdf565b61129e5760405162461bcd60e51b815260040161076b906119d4565b604051744d696e696d616c53636861696e4c69666574696d6560581b602082015260350160408051601f19818403018152828252805160209182012060a254845290830184905291600080516020611b0a833981519152910160405180910390a260a255565b61131c600080516020611aea83398151915233610cdf565b6113385760405162461bcd60e51b815260040161076b906119d4565b6040516c526f746174696f6e44656c617960981b6020820152602d0160408051601f198184030181528282528051602091820120609c54845290830184905291600080516020611b0a833981519152910160405180910390a2609c55565b60008281526065602052604090206113ae908261150e565b156108e55760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526065602052604090206114079082611523565b156108e55760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b6000610cd68383611538565b6001600160a01b03811660009081526001830160205260408120541515610cd6565b600054610100900460ff166114915760005460ff1615611495565b303b155b6114b15760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156114d3576000805461ffff19166101011790555b6114db611562565b6114e66000336108db565b6114ef826115e4565b80156108e5576000805461ff00191690555050565b6000610cd9825490565b6000610cd6836001600160a01b0384166116be565b6000610cd6836001600160a01b03841661170d565b600082600001828154811061154f5761154f611aa6565b9060005260206000200154905092915050565b600054610100900460ff1661157d5760005460ff1615611581565b303b155b61159d5760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156115bf576000805461ffff19166101011790555b6115c7611800565b6115cf61186d565b80156115e1576000805461ff00191690555b50565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602260248201527f436f6e74726163744d616e616765722061646472657373206973206e6f742073604482015261195d60f21b606482015260840161076b565b6001600160a01b0381163b61169c5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206973206e6f7420636f6e7472616374000000000000000000604482015260640161076b565b609780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260018301602052604081205461170557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cd9565b506000610cd9565b600081815260018301602052604081205480156117f6576000611731600183611abc565b855490915060009061174590600190611abc565b90508181146117aa57600086600001828154811061176557611765611aa6565b906000526020600020015490508087600001848154811061178857611788611aa6565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806117bb576117bb611ad3565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cd9565b6000915050610cd9565b600054610100900460ff1661186b5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161076b565b565b600054610100900460ff166118885760005460ff161561188c565b303b155b6118a85760405162461bcd60e51b815260040161076b90611a58565b600054610100900460ff161580156115cf576000805461ffff191661010117905580156115e1576000805461ff001916905550565b6000602082840312156118ef57600080fd5b5035919050565b80356001600160a01b038116811461190d57600080fd5b919050565b6000806040838503121561192557600080fd5b82359150611935602084016118f6565b90509250929050565b6000806040838503121561195157600080fd5b50508035926020909101359150565b803563ffffffff8116811461190d57600080fd5b6000806040838503121561198757600080fd5b61199083611960565b915061193560208401611960565b6000602082840312156119b057600080fd5b610cd682611960565b6000602082840312156119cb57600080fd5b610cd6826118f6565b60208082526029908201527f434f4e5354414e54535f484f4c4445525f4d414e414745525f524f4c45206973604082015268081c995c5d5a5c995960ba1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff83811690831681811015611a5057611a50611a1d565b039392505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600082821015611ace57611ace611a1d565b500390565b634e487b7160e01b600052603160045260246000fdfe901a4192020a5185129ea5dfd5d8e7c687626d09d2d74e45406202aef5ad43afd9f6bd2abae0f2a51b3f5ffb29e0e35ee9ad2e3921ede0d71bff21dc8609f6f1a26469706673582212202da33963c2569e2fda0e6ecdb8c7eea3db36506201b168a846a18b5d83d0f2f164736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.