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 Source Code Verified (Exact Match)
Contract Name:
ConstantsHolder
Compiler Version
v0.8.17+commit.8df45f5f
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.17; 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 = 106611; uint public constant RESPONSE_DELTA = 48132; // 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; uint public minNodeBalance; 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 setMinNodeBalance(uint newMinNodeBalance) external override onlyConstantsHolderManager { emit ConstantUpdated( keccak256(abi.encodePacked("MinNodeBalance")), uint(minNodeBalance), uint(newMinNodeBalance) ); minNodeBalance = newMinNodeBalance; } function reinitialize() external override reinitializer(2) { minNodeBalance = 1.5 ether; } 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; minNodeBalance = 1.5 ether; } }
// 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 setMinNodeBalance(uint newMinNodeBalance) external; function reinitialize() 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); function minNodeBalance() 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.17; 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 (last updated v4.7.0) (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. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ 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; /// @solidity memory-safe-assembly 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; /// @solidity memory-safe-assembly 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 { } 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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ 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 (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; 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 proxied contracts do not make use of 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. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * 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 prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"minNodeBalance","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":[],"name":"reinitialize","outputs":[],"stateMutability":"nonpayable","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":"newMinNodeBalance","type":"uint256"}],"name":"setMinNodeBalance","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
608060405234801561001057600080fd5b50611dd1806100206000396000f3fe608060405234801561001057600080fd5b50600436106103d05760003560e01c806391d14854116101ff578063c83ee0b31161011a578063da72d128116100ad578063e88dc5b71161007c578063e88dc5b714610746578063eb15ac8014610756578063ed089aa714610760578063ff3d2fb81461076957600080fd5b8063da72d12814610717578063e03427441461072a578063e0c6190d14610734578063e54a0a231461073d57600080fd5b8063d547741f116100e9578063d547741f146106fc578063d62d5bb81461070f578063d7adbc081461070f578063d9dd800d1461070f57600080fd5b8063c83ee0b31461054b578063c9fd716c146106d7578063ca15c873146106df578063cbdc9d6d146106f257600080fd5b8063a8f3152b11610192578063b68297d711610161578063b68297d7146106a9578063b921f6e3146106b3578063c4d66de8146106bb578063c647f844146106ce57600080fd5b8063a8f3152b14610671578063abceb19c14610684578063ad9f20a61461068c578063b39e12cf1461069657600080fd5b80639c5cd5b4116101ce5780639c5cd5b4146106445780639dc37fcf1461064d578063a217fddf14610660578063a58203df1461066857600080fd5b806391d14854146105f35780639379c8071461061657806393abbbb21461062957806394450e341461063157600080fd5b80635ae8f2bd116102ef57806379ea795e11610282578063869bdb3e11610251578063869bdb3e1461059d5780638906e86b146105b55780638c4ff5fc146105c05780639010d07c146105c857600080fd5b806379ea795e146105655780637d263245146105785780638076fe7414610580578063860af2721461058a57600080fd5b80636c2eb350116102be5780636c2eb350146105255780636e336a5d1461052d5780637257c9a914610542578063786a46eb1461054b57600080fd5b80635ae8f2bd146104d45780635d266a54146104dd5780635e2000901461050957806365cf7c9b1461051c57600080fd5b80632f2ff15d1161036757806346ea74661161033657806346ea7466146104a6578063566ef7fd146104af57806356d9741b146104c25780635a92fa85146104cb57600080fd5b80632f2ff15d1461046557806336568abe146104785780633dcbe1f91461048b5780633eb74fa31461049357600080fd5b80630927a78f116103a35780630927a78f146104175780630b0d21731461041f5780631ca8baaf1461042f578063248a9ca31461044257600080fd5b806303e3f687146103d5578063049e4177146103f157806306b98ad1146103fa5780630918992b14610402575b600080fd5b6103de60a15481565b6040519081526020015b60405180910390f35b6103de609f5481565b6103de601881565b610415610410366004611b3b565b61077c565b005b6103de605081565b6103de68056bc75e2d6310000081565b61041561043d366004611b3b565b6108a0565b6103de610450366004611b3b565b60009081526065602052604090206002015490565b610415610473366004611b70565b610933565b610415610486366004611b70565b6109c1565b6103de600481565b6104156104a1366004611b3b565b610a3b565b6103de60a25481565b6104156104bd366004611b3b565b610b33565b6103de609d5481565b6103de6103e881565b6103de61bc0481565b6099546104f490600160401b900463ffffffff1681565b60405163ffffffff90911681526020016103e8565b610415610517366004611b3b565b610bd5565b6103de609b5481565b610415610c77565b6103de600080516020611d3c83398151915281565b6103de60a35481565b610553608081565b60405160ff90911681526020016103e8565b610415610573366004611b3b565b610d02565b6103de603c81565b6103de62013c6381565b610415610598366004611b3b565b610d99565b6099546104f490640100000000900463ffffffff1681565b6104f46301e2850081565b610553602081565b6105db6105d6366004611b9c565b610e21565b6040516001600160a01b0390911681526020016103e8565b610606610601366004611b70565b610e42565b60405190151581526020016103e8565b610415610624366004611b3b565b610e5a565b6103de601081565b61041561063f366004611bd2565b610f4d565b6103de609e5481565b61041561065b366004611b3b565b6110fb565b6103de600081565b6103de60a45481565b61041561067f366004611bfc565b61119d565b610553600481565b6103de620f424081565b6097546105db906001600160a01b031681565b6103de62020c1181565b6103de601e81565b6104156106c9366004611c17565b611268565b6103de609c5481565b610553600181565b6103de6106ed366004611b3b565b611380565b6103de6202b55281565b61041561070a366004611b70565b611397565b6103de600281565b610415610725366004611b3b565b611418565b6103de620186dd81565b6103de609a5481565b6103de60a05481565b6099546104f49063ffffffff1681565b6103de6201a07381565b6103de60985481565b610415610777366004611b3b565b6114b2565b610794600080516020611d3c83398151915233610e42565b6107b95760405162461bcd60e51b81526004016107b090611c32565b60405180910390fd5b609b5442106108405760405162461bcd60e51b815260206004820152604760248201527f43616e6e6f7420736574206e6574776f726b206c61756e63682074696d65737460448201527f616d702062656361757365206e6574776f726b20697320616c7265616479206c606482015266185d5b98da195960ca1b608482015260a4016107b0565b6040516e04c61756e636854696d657374616d7608c1b6020820152602f0160408051601f198184030181528282528051602091820120609b54845290830184905291600080516020611d5c833981519152910160405180910390a2609b55565b6108b8600080516020611d3c83398151915233610e42565b6108d45760405162461bcd60e51b81526004016107b090611c32565b6040516d4d696e4e6f646542616c616e636560901b6020820152602e0160408051601f19818403018152828252805160209182012060a454845290830184905291600080516020611d5c833981519152910160405180910390a260a455565b60008281526065602052604090206002015461094f9033610e42565b6109b35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b60648201526084016107b0565b6109bd8282611544565b5050565b6001600160a01b0381163314610a315760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107b0565b6109bd828261159d565b610a53600080516020611d3c83398151915233610e42565b610a6f5760405162461bcd60e51b81526004016107b090611c32565b609a54609954610a8e9063ffffffff600160401b820481169116611c91565b63ffffffff161015610ad95760405162461bcd60e51b8152602060048201526014602482015273496e636f727265637420636865636b2074696d6560601b60448201526064016107b0565b60405168436865636b54696d6560b81b602082015260290160408051601f198184030181528282528051602091820120609a54845290830184905291600080516020611d5c833981519152910160405180910390a2609a55565b610b4b600080516020611d3c83398151915233610e42565b610b675760405162461bcd60e51b81526004016107b090611c32565b6040517f50726f6f664f665573654c6f636b5570506572696f64446179730000000000006020820152603a0160408051601f198184030181528282528051602091820120609d54845290830184905291600080516020611d5c833981519152910160405180910390a2609d55565b610bed600080516020611d3c83398151915233610e42565b610c095760405162461bcd60e51b81526004016107b090611c32565b6040517f4c696d697456616c696461746f727350657244656c656761746f7200000000006020820152603b0160408051601f198184030181528282528051602091820120609f54845290830184905291600080516020611d5c833981519152910160405180910390a2609f55565b600054600290610100900460ff16158015610c99575060005460ff8083169116105b610cb55760405162461bcd60e51b81526004016107b090611cae565b600080546714d1120d7b16000060a45561ffff191660ff83169081176101001761ff001916909155604051908152600080516020611d7c833981519152906020015b60405180910390a150565b610d1a600080516020611d3c83398151915233610e42565b610d365760405162461bcd60e51b81526004016107b090611c32565b6040517110dbdb5c1b185a5b9d151a5b59531a5b5a5d60721b602082015260320160408051601f19818403018152828252805160209182012060a354845290830184905291600080516020611d5c833981519152910160405180910390a260a355565b610db1600080516020611d3c83398151915233610e42565b610dcd5760405162461bcd60e51b81526004016107b090611c32565b6040516226a9a960e91b602082015260230160408051601f198184030181528282528051602091820120609854845290830184905291600080516020611d5c833981519152910160405180910390a2609855565b6000828152606560205260408120610e3990836115f6565b90505b92915050565b6000828152606560205260408120610e399083611602565b610e72600080516020611d3c83398151915233610e42565b610e8e5760405162461bcd60e51b81526004016107b090611c32565b6064811115610edf5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652076616c756520697320696e636f727265637400000060448201526064016107b0565b6040517f50726f6f664f6655736544656c65676174696f6e50657263656e7461676500006020820152603e0160408051601f198184030181528282528051602091820120609e54845290830184905291600080516020611d5c833981519152910160405180910390a2609e55565b610f65600080516020611d3c83398151915233610e42565b610f815760405162461bcd60e51b81526004016107b090611c32565b8063ffffffff168263ffffffff1610158015610fae5750609a54610fa58284611c91565b63ffffffff1610155b610fee5760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420506572696f647360781b60448201526064016107b0565b6040516b14995dd85c9914195c9a5bd960a21b6020820152602c0160408051808303601f19018152828252805160209182012060995463ffffffff908116855286169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff191663ffffffff84161790556040516a11195b1d1854195c9a5bd960aa1b6020820152602b0160408051808303601f190181528282528051602091820120609954600160401b900463ffffffff908116855285169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff909216600160401b026bffffffff00000000000000001990921691909117905550565b611113600080516020611d3c83398151915233610e42565b61112f5760405162461bcd60e51b81526004016107b090611c32565b6040517f53636861696e4372656174696f6e54696d655374616d70000000000000000000602082015260370160408051601f19818403018152828252805160209182012060a154845290830184905291600080516020611d5c833981519152910160405180910390a260a155565b6111b5600080516020611d3c83398151915233610e42565b6111d15760405162461bcd60e51b81526004016107b090611c32565b6040516f416c6c6f7761626c654c6174656e637960801b602082015260300160408051808303601f190181528282528051602091820120609954640100000000900463ffffffff908116855285169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600054610100900460ff16158080156112885750600054600160ff909116105b806112a25750303b1580156112a2575060005460ff166001145b6112be5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156112e1576000805461ff0019166101001790555b6112ea82611624565b60006098819055609980546bffffffffffffffffffffffff1916690e10000249f000278d0017905561012c609a55600019609b5561a8c0609c55605a609d556032609e556014609f5560a05561070860a3556714d1120d7b16000060a45580156109bd576000805461ff001916905560405160018152600080516020611d7c833981519152906020015b60405180910390a15050565b6000818152606560205260408120610e3c906116e9565b6000828152606560205260409020600201546113b39033610e42565b610a315760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b60648201526084016107b0565b611430600080516020611d3c83398151915233610e42565b61144c5760405162461bcd60e51b81526004016107b090611c32565b604051744d696e696d616c53636861696e4c69666574696d6560581b602082015260350160408051601f19818403018152828252805160209182012060a254845290830184905291600080516020611d5c833981519152910160405180910390a260a255565b6114ca600080516020611d3c83398151915233610e42565b6114e65760405162461bcd60e51b81526004016107b090611c32565b6040516c526f746174696f6e44656c617960981b6020820152602d0160408051601f198184030181528282528051602091820120609c54845290830184905291600080516020611d5c833981519152910160405180910390a2609c55565b600082815260656020526040902061155c90826116f3565b156109bd5760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526065602052604090206115b59082611708565b156109bd5760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b6000610e39838361171d565b6001600160a01b03811660009081526001830160205260408120541515610e39565b600054610100900460ff16158080156116445750600054600160ff909116105b8061165e5750303b15801561165e575060005460ff166001145b61167a5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff19166001179055801561169d576000805461ff0019166101001790555b6116a5611747565b6116b06000336109b3565b6116b982611803565b80156109bd576000805461ff001916905560405160018152600080516020611d7c83398151915290602001611374565b6000610e3c825490565b6000610e39836001600160a01b0384166118dd565b6000610e39836001600160a01b03841661192c565b600082600001828154811061173457611734611cfc565b9060005260206000200154905092915050565b600054610100900460ff16158080156117675750600054600160ff909116105b806117815750303b158015611781575060005460ff166001145b61179d5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156117c0576000805461ff0019166101001790555b6117c8611a26565b6117d0611a93565b8015611800576000805461ff001916905560405160018152600080516020611d7c83398151915290602001610cf7565b50565b6001600160a01b0381166118645760405162461bcd60e51b815260206004820152602260248201527f436f6e74726163744d616e616765722061646472657373206973206e6f742073604482015261195d60f21b60648201526084016107b0565b6001600160a01b0381163b6118bb5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206973206e6f7420636f6e747261637400000000000000000060448201526064016107b0565b609780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260018301602052604081205461192457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e3c565b506000610e3c565b60008181526001830160205260408120548015611a15576000611950600183611d12565b855490915060009061196490600190611d12565b90508181146119c957600086600001828154811061198457611984611cfc565b90600052602060002001549050808760000184815481106119a7576119a7611cfc565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806119da576119da611d25565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610e3c565b6000915050610e3c565b5092915050565b600054610100900460ff16611a915760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016107b0565b565b600054610100900460ff1615808015611ab35750600054600160ff909116105b80611acd5750303b158015611acd575060005460ff166001145b611ae95760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156117d0576000805461ff0019166101001790558015611800576000805461ff001916905560405160018152600080516020611d7c83398151915290602001610cf7565b600060208284031215611b4d57600080fd5b5035919050565b80356001600160a01b0381168114611b6b57600080fd5b919050565b60008060408385031215611b8357600080fd5b82359150611b9360208401611b54565b90509250929050565b60008060408385031215611baf57600080fd5b50508035926020909101359150565b803563ffffffff81168114611b6b57600080fd5b60008060408385031215611be557600080fd5b611bee83611bbe565b9150611b9360208401611bbe565b600060208284031215611c0e57600080fd5b610e3982611bbe565b600060208284031215611c2957600080fd5b610e3982611b54565b60208082526029908201527f434f4e5354414e54535f484f4c4445525f4d414e414745525f524f4c45206973604082015268081c995c5d5a5c995960ba1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b63ffffffff828116828216039080821115611a1f57611a1f611c7b565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b81810381811115610e3c57610e3c611c7b565b634e487b7160e01b600052603160045260246000fdfe901a4192020a5185129ea5dfd5d8e7c687626d09d2d74e45406202aef5ad43afd9f6bd2abae0f2a51b3f5ffb29e0e35ee9ad2e3921ede0d71bff21dc8609f6f17f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498a26469706673582212208f5fa2da7123e06d4b87c793dd7d18971df29cb104d7a348f05acbb647207d0d64736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103d05760003560e01c806391d14854116101ff578063c83ee0b31161011a578063da72d128116100ad578063e88dc5b71161007c578063e88dc5b714610746578063eb15ac8014610756578063ed089aa714610760578063ff3d2fb81461076957600080fd5b8063da72d12814610717578063e03427441461072a578063e0c6190d14610734578063e54a0a231461073d57600080fd5b8063d547741f116100e9578063d547741f146106fc578063d62d5bb81461070f578063d7adbc081461070f578063d9dd800d1461070f57600080fd5b8063c83ee0b31461054b578063c9fd716c146106d7578063ca15c873146106df578063cbdc9d6d146106f257600080fd5b8063a8f3152b11610192578063b68297d711610161578063b68297d7146106a9578063b921f6e3146106b3578063c4d66de8146106bb578063c647f844146106ce57600080fd5b8063a8f3152b14610671578063abceb19c14610684578063ad9f20a61461068c578063b39e12cf1461069657600080fd5b80639c5cd5b4116101ce5780639c5cd5b4146106445780639dc37fcf1461064d578063a217fddf14610660578063a58203df1461066857600080fd5b806391d14854146105f35780639379c8071461061657806393abbbb21461062957806394450e341461063157600080fd5b80635ae8f2bd116102ef57806379ea795e11610282578063869bdb3e11610251578063869bdb3e1461059d5780638906e86b146105b55780638c4ff5fc146105c05780639010d07c146105c857600080fd5b806379ea795e146105655780637d263245146105785780638076fe7414610580578063860af2721461058a57600080fd5b80636c2eb350116102be5780636c2eb350146105255780636e336a5d1461052d5780637257c9a914610542578063786a46eb1461054b57600080fd5b80635ae8f2bd146104d45780635d266a54146104dd5780635e2000901461050957806365cf7c9b1461051c57600080fd5b80632f2ff15d1161036757806346ea74661161033657806346ea7466146104a6578063566ef7fd146104af57806356d9741b146104c25780635a92fa85146104cb57600080fd5b80632f2ff15d1461046557806336568abe146104785780633dcbe1f91461048b5780633eb74fa31461049357600080fd5b80630927a78f116103a35780630927a78f146104175780630b0d21731461041f5780631ca8baaf1461042f578063248a9ca31461044257600080fd5b806303e3f687146103d5578063049e4177146103f157806306b98ad1146103fa5780630918992b14610402575b600080fd5b6103de60a15481565b6040519081526020015b60405180910390f35b6103de609f5481565b6103de601881565b610415610410366004611b3b565b61077c565b005b6103de605081565b6103de68056bc75e2d6310000081565b61041561043d366004611b3b565b6108a0565b6103de610450366004611b3b565b60009081526065602052604090206002015490565b610415610473366004611b70565b610933565b610415610486366004611b70565b6109c1565b6103de600481565b6104156104a1366004611b3b565b610a3b565b6103de60a25481565b6104156104bd366004611b3b565b610b33565b6103de609d5481565b6103de6103e881565b6103de61bc0481565b6099546104f490600160401b900463ffffffff1681565b60405163ffffffff90911681526020016103e8565b610415610517366004611b3b565b610bd5565b6103de609b5481565b610415610c77565b6103de600080516020611d3c83398151915281565b6103de60a35481565b610553608081565b60405160ff90911681526020016103e8565b610415610573366004611b3b565b610d02565b6103de603c81565b6103de62013c6381565b610415610598366004611b3b565b610d99565b6099546104f490640100000000900463ffffffff1681565b6104f46301e2850081565b610553602081565b6105db6105d6366004611b9c565b610e21565b6040516001600160a01b0390911681526020016103e8565b610606610601366004611b70565b610e42565b60405190151581526020016103e8565b610415610624366004611b3b565b610e5a565b6103de601081565b61041561063f366004611bd2565b610f4d565b6103de609e5481565b61041561065b366004611b3b565b6110fb565b6103de600081565b6103de60a45481565b61041561067f366004611bfc565b61119d565b610553600481565b6103de620f424081565b6097546105db906001600160a01b031681565b6103de62020c1181565b6103de601e81565b6104156106c9366004611c17565b611268565b6103de609c5481565b610553600181565b6103de6106ed366004611b3b565b611380565b6103de6202b55281565b61041561070a366004611b70565b611397565b6103de600281565b610415610725366004611b3b565b611418565b6103de620186dd81565b6103de609a5481565b6103de60a05481565b6099546104f49063ffffffff1681565b6103de6201a07381565b6103de60985481565b610415610777366004611b3b565b6114b2565b610794600080516020611d3c83398151915233610e42565b6107b95760405162461bcd60e51b81526004016107b090611c32565b60405180910390fd5b609b5442106108405760405162461bcd60e51b815260206004820152604760248201527f43616e6e6f7420736574206e6574776f726b206c61756e63682074696d65737460448201527f616d702062656361757365206e6574776f726b20697320616c7265616479206c606482015266185d5b98da195960ca1b608482015260a4016107b0565b6040516e04c61756e636854696d657374616d7608c1b6020820152602f0160408051601f198184030181528282528051602091820120609b54845290830184905291600080516020611d5c833981519152910160405180910390a2609b55565b6108b8600080516020611d3c83398151915233610e42565b6108d45760405162461bcd60e51b81526004016107b090611c32565b6040516d4d696e4e6f646542616c616e636560901b6020820152602e0160408051601f19818403018152828252805160209182012060a454845290830184905291600080516020611d5c833981519152910160405180910390a260a455565b60008281526065602052604090206002015461094f9033610e42565b6109b35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b60648201526084016107b0565b6109bd8282611544565b5050565b6001600160a01b0381163314610a315760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107b0565b6109bd828261159d565b610a53600080516020611d3c83398151915233610e42565b610a6f5760405162461bcd60e51b81526004016107b090611c32565b609a54609954610a8e9063ffffffff600160401b820481169116611c91565b63ffffffff161015610ad95760405162461bcd60e51b8152602060048201526014602482015273496e636f727265637420636865636b2074696d6560601b60448201526064016107b0565b60405168436865636b54696d6560b81b602082015260290160408051601f198184030181528282528051602091820120609a54845290830184905291600080516020611d5c833981519152910160405180910390a2609a55565b610b4b600080516020611d3c83398151915233610e42565b610b675760405162461bcd60e51b81526004016107b090611c32565b6040517f50726f6f664f665573654c6f636b5570506572696f64446179730000000000006020820152603a0160408051601f198184030181528282528051602091820120609d54845290830184905291600080516020611d5c833981519152910160405180910390a2609d55565b610bed600080516020611d3c83398151915233610e42565b610c095760405162461bcd60e51b81526004016107b090611c32565b6040517f4c696d697456616c696461746f727350657244656c656761746f7200000000006020820152603b0160408051601f198184030181528282528051602091820120609f54845290830184905291600080516020611d5c833981519152910160405180910390a2609f55565b600054600290610100900460ff16158015610c99575060005460ff8083169116105b610cb55760405162461bcd60e51b81526004016107b090611cae565b600080546714d1120d7b16000060a45561ffff191660ff83169081176101001761ff001916909155604051908152600080516020611d7c833981519152906020015b60405180910390a150565b610d1a600080516020611d3c83398151915233610e42565b610d365760405162461bcd60e51b81526004016107b090611c32565b6040517110dbdb5c1b185a5b9d151a5b59531a5b5a5d60721b602082015260320160408051601f19818403018152828252805160209182012060a354845290830184905291600080516020611d5c833981519152910160405180910390a260a355565b610db1600080516020611d3c83398151915233610e42565b610dcd5760405162461bcd60e51b81526004016107b090611c32565b6040516226a9a960e91b602082015260230160408051601f198184030181528282528051602091820120609854845290830184905291600080516020611d5c833981519152910160405180910390a2609855565b6000828152606560205260408120610e3990836115f6565b90505b92915050565b6000828152606560205260408120610e399083611602565b610e72600080516020611d3c83398151915233610e42565b610e8e5760405162461bcd60e51b81526004016107b090611c32565b6064811115610edf5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652076616c756520697320696e636f727265637400000060448201526064016107b0565b6040517f50726f6f664f6655736544656c65676174696f6e50657263656e7461676500006020820152603e0160408051601f198184030181528282528051602091820120609e54845290830184905291600080516020611d5c833981519152910160405180910390a2609e55565b610f65600080516020611d3c83398151915233610e42565b610f815760405162461bcd60e51b81526004016107b090611c32565b8063ffffffff168263ffffffff1610158015610fae5750609a54610fa58284611c91565b63ffffffff1610155b610fee5760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420506572696f647360781b60448201526064016107b0565b6040516b14995dd85c9914195c9a5bd960a21b6020820152602c0160408051808303601f19018152828252805160209182012060995463ffffffff908116855286169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff191663ffffffff84161790556040516a11195b1d1854195c9a5bd960aa1b6020820152602b0160408051808303601f190181528282528051602091820120609954600160401b900463ffffffff908116855285169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff909216600160401b026bffffffff00000000000000001990921691909117905550565b611113600080516020611d3c83398151915233610e42565b61112f5760405162461bcd60e51b81526004016107b090611c32565b6040517f53636861696e4372656174696f6e54696d655374616d70000000000000000000602082015260370160408051601f19818403018152828252805160209182012060a154845290830184905291600080516020611d5c833981519152910160405180910390a260a155565b6111b5600080516020611d3c83398151915233610e42565b6111d15760405162461bcd60e51b81526004016107b090611c32565b6040516f416c6c6f7761626c654c6174656e637960801b602082015260300160408051808303601f190181528282528051602091820120609954640100000000900463ffffffff908116855285169184019190915291600080516020611d5c833981519152910160405180910390a26099805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b600054610100900460ff16158080156112885750600054600160ff909116105b806112a25750303b1580156112a2575060005460ff166001145b6112be5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156112e1576000805461ff0019166101001790555b6112ea82611624565b60006098819055609980546bffffffffffffffffffffffff1916690e10000249f000278d0017905561012c609a55600019609b5561a8c0609c55605a609d556032609e556014609f5560a05561070860a3556714d1120d7b16000060a45580156109bd576000805461ff001916905560405160018152600080516020611d7c833981519152906020015b60405180910390a15050565b6000818152606560205260408120610e3c906116e9565b6000828152606560205260409020600201546113b39033610e42565b610a315760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b60648201526084016107b0565b611430600080516020611d3c83398151915233610e42565b61144c5760405162461bcd60e51b81526004016107b090611c32565b604051744d696e696d616c53636861696e4c69666574696d6560581b602082015260350160408051601f19818403018152828252805160209182012060a254845290830184905291600080516020611d5c833981519152910160405180910390a260a255565b6114ca600080516020611d3c83398151915233610e42565b6114e65760405162461bcd60e51b81526004016107b090611c32565b6040516c526f746174696f6e44656c617960981b6020820152602d0160408051601f198184030181528282528051602091820120609c54845290830184905291600080516020611d5c833981519152910160405180910390a2609c55565b600082815260656020526040902061155c90826116f3565b156109bd5760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b60008281526065602052604090206115b59082611708565b156109bd5760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b6000610e39838361171d565b6001600160a01b03811660009081526001830160205260408120541515610e39565b600054610100900460ff16158080156116445750600054600160ff909116105b8061165e5750303b15801561165e575060005460ff166001145b61167a5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff19166001179055801561169d576000805461ff0019166101001790555b6116a5611747565b6116b06000336109b3565b6116b982611803565b80156109bd576000805461ff001916905560405160018152600080516020611d7c83398151915290602001611374565b6000610e3c825490565b6000610e39836001600160a01b0384166118dd565b6000610e39836001600160a01b03841661192c565b600082600001828154811061173457611734611cfc565b9060005260206000200154905092915050565b600054610100900460ff16158080156117675750600054600160ff909116105b806117815750303b158015611781575060005460ff166001145b61179d5760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156117c0576000805461ff0019166101001790555b6117c8611a26565b6117d0611a93565b8015611800576000805461ff001916905560405160018152600080516020611d7c83398151915290602001610cf7565b50565b6001600160a01b0381166118645760405162461bcd60e51b815260206004820152602260248201527f436f6e74726163744d616e616765722061646472657373206973206e6f742073604482015261195d60f21b60648201526084016107b0565b6001600160a01b0381163b6118bb5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206973206e6f7420636f6e747261637400000000000000000060448201526064016107b0565b609780546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260018301602052604081205461192457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e3c565b506000610e3c565b60008181526001830160205260408120548015611a15576000611950600183611d12565b855490915060009061196490600190611d12565b90508181146119c957600086600001828154811061198457611984611cfc565b90600052602060002001549050808760000184815481106119a7576119a7611cfc565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806119da576119da611d25565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610e3c565b6000915050610e3c565b5092915050565b600054610100900460ff16611a915760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016107b0565b565b600054610100900460ff1615808015611ab35750600054600160ff909116105b80611acd5750303b158015611acd575060005460ff166001145b611ae95760405162461bcd60e51b81526004016107b090611cae565b6000805460ff1916600117905580156117d0576000805461ff0019166101001790558015611800576000805461ff001916905560405160018152600080516020611d7c83398151915290602001610cf7565b600060208284031215611b4d57600080fd5b5035919050565b80356001600160a01b0381168114611b6b57600080fd5b919050565b60008060408385031215611b8357600080fd5b82359150611b9360208401611b54565b90509250929050565b60008060408385031215611baf57600080fd5b50508035926020909101359150565b803563ffffffff81168114611b6b57600080fd5b60008060408385031215611be557600080fd5b611bee83611bbe565b9150611b9360208401611bbe565b600060208284031215611c0e57600080fd5b610e3982611bbe565b600060208284031215611c2957600080fd5b610e3982611b54565b60208082526029908201527f434f4e5354414e54535f484f4c4445525f4d414e414745525f524f4c45206973604082015268081c995c5d5a5c995960ba1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b63ffffffff828116828216039080821115611a1f57611a1f611c7b565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b81810381811115610e3c57610e3c611c7b565b634e487b7160e01b600052603160045260246000fdfe901a4192020a5185129ea5dfd5d8e7c687626d09d2d74e45406202aef5ad43afd9f6bd2abae0f2a51b3f5ffb29e0e35ee9ad2e3921ede0d71bff21dc8609f6f17f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498a26469706673582212208f5fa2da7123e06d4b87c793dd7d18971df29cb104d7a348f05acbb647207d0d64736f6c63430008110033
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.