More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 110 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 17654551 | 533 days ago | IN | 0 ETH | 0.00224232 | ||||
Vote | 17509729 | 553 days ago | IN | 0 ETH | 0.00380323 | ||||
Vote | 17508937 | 553 days ago | IN | 0 ETH | 0.00279239 | ||||
Vote | 17507750 | 553 days ago | IN | 0 ETH | 0.00359233 | ||||
Vote | 17506498 | 553 days ago | IN | 0 ETH | 0.00333399 | ||||
0x4dae8070 | 17503287 | 554 days ago | IN | 0 ETH | 0.03878998 | ||||
Deposit | 17502865 | 554 days ago | IN | 0 ETH | 0.00226107 | ||||
Deposit | 17482474 | 557 days ago | IN | 0 ETH | 0.00260996 | ||||
Deposit | 17472562 | 558 days ago | IN | 0 ETH | 0.00255405 | ||||
Deposit | 17469984 | 559 days ago | IN | 0 ETH | 0.00240545 | ||||
Deposit | 17467077 | 559 days ago | IN | 0 ETH | 0.00228372 | ||||
Vote | 17463572 | 559 days ago | IN | 0 ETH | 0.00482124 | ||||
Vote | 17462405 | 560 days ago | IN | 0 ETH | 0.00313025 | ||||
Vote | 17461994 | 560 days ago | IN | 0 ETH | 0.00292632 | ||||
Vote | 17459701 | 560 days ago | IN | 0 ETH | 0.00297851 | ||||
Withdraw | 17459659 | 560 days ago | IN | 0 ETH | 0.00208391 | ||||
Vote | 17458987 | 560 days ago | IN | 0 ETH | 0.00287213 | ||||
Vote | 17458906 | 560 days ago | IN | 0 ETH | 0.00335584 | ||||
Vote | 17458682 | 560 days ago | IN | 0 ETH | 0.00352884 | ||||
Vote | 17458542 | 560 days ago | IN | 0 ETH | 0.00507498 | ||||
Vote | 17457899 | 560 days ago | IN | 0 ETH | 0.00324654 | ||||
Vote | 17457577 | 560 days ago | IN | 0 ETH | 0.00320786 | ||||
Vote | 17457186 | 560 days ago | IN | 0 ETH | 0.00397919 | ||||
Deposit | 17457182 | 560 days ago | IN | 0 ETH | 0.00277311 | ||||
0x4dae8070 | 17457144 | 560 days ago | IN | 0 ETH | 0.04772593 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16032113 | 761 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Committee
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "../proxy/TitanProxy.sol"; import "../storage/CommitteStorage.sol"; contract Committee is TitanProxy, CommitteStorage { constructor(address _SAVIOR, address _implementationContract) public TitanProxy(_SAVIOR, _implementationContract) {} }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "../criteria/ChainSchema.sol"; import "./UpgradeabilityProxy.sol"; /// @notice Top level proxy for delegate contract TitanProxy is ChainSchema, UpgradeabilityProxy { event Upgraded(uint256 indexed version, address indexed implementation); constructor(address _SAVIOR, address implementationContract) public ChainSchema(_SAVIOR) UpgradeabilityProxy(implementationContract) {} function version() public view returns (uint256) { return _version(); } function implementation() external view returns (address) { return _implementation(); } function upgradeTo(uint256 newVersion, address newImplementation) external isSavior { _upgradeTo(newVersion, newImplementation); emit Upgraded(newVersion, newImplementation); } function setSecondsPerBlock(uint256 newSecondsPerBlock) external isKeeper { _secondsPerBlock = newSecondsPerBlock; } receive() external payable {} }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/utils/EnumerableSet.sol"; import "../interfaces/governance/IIpistrToken.sol"; import "./TitanCoreStorage.sol"; contract CommitteStorage is TitanCoreStorage { // Proposal status enum enum ProposalStatus { Active, Passed, Failed, Queued, Executed } struct RulerData { uint256 stakedAmount; uint256 voteShareLocked; } struct Proposal { uint32 id; // Unique id for looking up a proposal address proposer; // Creator of the proposal uint32 catagory; // 1 = pool 2 = community uint64 startBlock; // The block voting starts from uint64 endBlock; // The block voting ends at uint256 forShares; // Current number of votes in favor of this proposal uint256 againstShares; // Current number of votes in opposition to this proposal ProposalStatus status; bool displayable; } struct CommunityProposal { address[] targets; uint256[] values; string[] signatures; bytes[] calldatas; } struct PoolMeters { address tokenContract; // Address of token contract uint32 leverage; uint32 durationDays; } struct VoteSlot { address account; uint32 direction; uint256 share; } struct VoteShares { uint256 forShares; uint256 againstShares; } /// @notice Count of whole proposals uint256 public proposalCount; uint256[] public proposalIds; /// @notice Active days for voting uint256 public maxVotingDays; /// @notice Number of deposit required in order for a user to become a ruler, 1e9/1e12 uint256 public rulerThreshold; /// @notice All staked IPISTR amount uint256 public totalIpistrStakedShare; /// @notice Contract address of the IPISTR token IIpistrToken public ipistrToken; /// @notice Charge from ruler who submit a proposal, counted at IPISTR uint256 public proposalFee; address public stableToken; uint256 public poolProposalThreshold; uint256 public committeeProposalThreshold; EnumerableSet.UintSet internal queuedProposals; // Vote weight = (staked share of user / all staked share) % mapping(address => RulerData) internal _rulerDataMap; mapping(address => uint256) public ipistrStakedAmount; mapping(uint256 => Proposal) public proposalGallery; mapping(uint256 => CommunityProposal) internal communityProposalGallery; /// @notice (ProposalId = > PoolMeters) mapping(uint256 => PoolMeters) public poolMetersMap; // proposalId => ruler address => share mapping(uint256 => mapping(address => VoteShares)) public userLockedShare; mapping(uint256 => EnumerableSet.AddressSet) internal proposalVoters; mapping(address => EnumerableSet.UintSet) internal forVoteProposals; mapping(address => EnumerableSet.UintSet) internal againstVoteProposals; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/utils/Pausable.sol"; import "./Affinity.sol"; /// @notice Configuration meters for various chain deployment /// @author IPI Labs contract ChainSchema is Affinity, Pausable { bool private _initialized; string internal _chainShortName; string internal _chainFullName; uint256 internal _blocksPerDay; uint256 internal _secondsPerBlock; constructor(address _SAVIOR) public Affinity(_SAVIOR) {} event ChainConfigured(address indexed self, string indexed shortName, string fullName, uint256 secondsPerBlock); modifier chainReady() { require(_initialized, "ChainSchema: To be configured"); _; } function configChain( string memory shortName, string memory fullName, uint256 secondsPerBlock ) external isSavior { require(!_initialized, "ChainSchema: Reconfiguration is not allowed"); require(secondsPerBlock > 0, "ChainSchema: Invalid secondsPerBlock"); _chainShortName = shortName; _chainFullName = fullName; _blocksPerDay = uint256(24 * 60 * 60) / secondsPerBlock; _secondsPerBlock = secondsPerBlock; _initialized = true; emit ChainConfigured(address(this), shortName, fullName, secondsPerBlock); } function chainShortName() external view returns (string memory) { return _chainShortName; } function chainFullName() external view returns (string memory) { return _chainFullName; } function blocksPerDay() public view returns (uint256) { return _blocksPerDay; } function secondsPerBlock() public view returns (uint256) { return _secondsPerBlock; } function pause() external isKeeper { _pause(); } function unpause() external isKeeper { _unpause(); } function getChainId() public pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {Proxy} from "./Proxy.sol"; contract UpgradeabilityProxy is Proxy { bytes32 internal constant IMPLEMENTATION_SLOT = 0xb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f38; bytes32 internal constant VERSION_SLOT = 0xf62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d534; constructor(address implementationContract) public { assert(IMPLEMENTATION_SLOT == keccak256("com.ipilabs.proxy.implementation")); assert(VERSION_SLOT == keccak256("com.ipilabs.proxy.version")); _upgradeTo(1, implementationContract); } function _implementation() internal view override returns (address impl) { bytes32 slot = IMPLEMENTATION_SLOT; assembly { impl := sload(slot) } } function _version() internal view returns (uint256 version) { bytes32 slot = VERSION_SLOT; assembly { version := sload(slot) } } function _upgradeTo(uint256 newVersion, address newImplementation) internal { require(Address.isContract(newImplementation), "Non-contract address"); _setImplementation(newImplementation); _setVersion(newVersion); } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), "Non-contract address"); bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot, newImplementation) } } function _setVersion(uint256 newVersion) internal { bytes32 slot = VERSION_SLOT; assembly { sstore(slot, newVersion) } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/access/AccessControl.sol"; import "../interfaces/ISRC20.sol"; import "../interfaces/IUSDT.sol"; import "./IAffinity.sol"; /// @notice Arch design for roles and privileges management contract Affinity is AccessControl, IAffinity { address public SAVIOR; /// @notice Initial bunch of roles bytes32 public constant ROOT_GROUP = keccak256("ROOT_GROUP"); bytes32 public constant KEEPER_ROLE = keccak256("KEEPER_ROLE"); bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); bytes32 public constant ALLY_ROLE = keccak256("ALLY_ROLE"); modifier isSavior() { require(msg.sender == SAVIOR, "Affinity: Caller is not the Savior"); _; } modifier isKeeper() { require(hasRole(KEEPER_ROLE, msg.sender), "Affinity: Caller is not keeper"); _; } modifier isManager() { require(hasRole(MANAGER_ROLE, msg.sender), "Affinity: Caller is not manager"); _; } modifier onlyEOA() { require(msg.sender == tx.origin, "Affinity: EOA required"); _; } constructor(address _SAVIOR) public { SAVIOR = _SAVIOR; _setupRole(ROOT_GROUP, _SAVIOR); _setRoleAdmin(KEEPER_ROLE, ROOT_GROUP); _setRoleAdmin(MANAGER_ROLE, ROOT_GROUP); _setRoleAdmin(ALLY_ROLE, ROOT_GROUP); } function transferSavior(address multiSigWallet) external isSavior { require(multiSigWallet != address(0), "Affinity: Account is zero address"); require(Address.isContract(multiSigWallet), "Affinity: EOA is not allowed"); require(SAVIOR != multiSigWallet, "Affinity: Nonsense"); SAVIOR = multiSigWallet; _setupRole(ROOT_GROUP, multiSigWallet); renounceRole(ROOT_GROUP, msg.sender); } function allow( address token, address spender, uint256 amount ) external override isSavior { ISRC20(token).approve(spender, amount); } function allowTetherToken( address token, address spender, uint256 amount ) external override isSavior { _allowTetherToken(token, spender, amount); } function _allowTetherToken( address token, address spender, uint256 amount ) internal { IUSDT USDT = IUSDT(token); uint256 _allowance = USDT.allowance(address(this), spender); if (_allowance >= amount) { return; } if (_allowance > 0) { USDT.approve(spender, 0); } USDT.approve(spender, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @dev Enhanced IERC20 interface interface ISRC20 is IERC20 { /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; /// @dev Enhanced IERC20 interface interface IUSDT { function approve(address spender, uint256 amount) external; function transferFrom( address sender, address recipient, uint256 amount ) external; function allowance(address owner, address spender) external view returns (uint256); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; /// @notice Interface of Affinity interface IAffinity { function allow( address token, address spender, uint256 amount ) external; function allowTetherToken( address token, address spender, uint256 amount ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../utils/Context.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, msg.sender)); * ... * } * ``` * * 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}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @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); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view 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 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 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 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 { 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 { 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 { 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. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _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()); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // 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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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] = toDeleteIndex + 1; // All indexes are 1-based // 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
/** * SPDX-License-Identifier: MIT * * Copyright (c) 2018 zOS Global Limited. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; /** * @notice Implements delegation of calls to other contracts, with proper * forwarding of return values and bubbling of failures. * It defines a fallback function that delegates all calls to the address * returned by the abstract _implementation() internal function. * @dev Forked from https://github.com/zeppelinos/zos-lib/blob/8a16ef3ad17ec7430e3a9d2b5e3f39b8204f8c8d/contracts/upgradeability/Proxy.sol * Modifications: * 1. Reformat and conform to Solidity 0.6 syntax (5/13/20) */ abstract contract Proxy { /** * @dev Fallback function. * Implemented entirely in `_fallback`. */ fallback() external payable { _fallback(); } /** * @return The Address of the implementation. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates execution to an implementation contract. * This is a low level function that doesn't return to its internal call site. * It will return to the external caller whatever the implementation returns. * @param implementation Address to delegate. */ function _delegate(address implementation) internal { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev Function that is run as the first thing in the fallback function. * Can be redefined in derived contracts to add functionality. * Redefinitions must call super._willFallback(). */ function _willFallback() internal virtual {} /** * @dev fallback implementation. * Extracted to enable manual triggering. */ function _fallback() internal { _willFallback(); _delegate(_implementation()); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; import "../interfaces/IShorterBone.sol"; /// @notice Storage for TitanProxy with update information contract TitanCoreStorage { IShorterBone internal shorterBone; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; interface IIpistrToken { function mint(address to, uint256 amount) external; function setLocked(address user, uint256 amount) external; function spendableBalanceOf(address account) external view returns (uint256); function lockedBalanceOf(address account) external view returns (uint256); function unlockBalance(address account, uint256 amount) external; event Unlock(address indexed staker, uint256 claimedAmount); event Burn(address indexed blackHoleAddr, uint256 burnAmount); event Mint(address indexed account, uint256 mintAmount); event SetLocked(address user, uint256 amount); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.6.12; interface IShorterBone { enum IncomeType { TRADING_FEE, FUNDING_FEE, PROPOSAL_FEE, PRIORITY_FEE, WITHDRAW_FEE } function poolTillIn( uint256 poolId, address token, address user, uint256 amount ) external; function poolTillOut( uint256 poolId, address token, address user, uint256 amount ) external; function poolRevenue( uint256 poolId, address user, address token, uint256 amount, IncomeType _type ) external; function tillIn( address tokenAddr, address caller, bytes32 toAllyId, uint256 amount ) external; function tillOut( address tokenAddr, bytes32 fromAllyId, address caller, uint256 amount ) external; function revenue( address tokenAddr, address from, uint256 amount, IncomeType _type ) external; function getAddress(bytes32 _allyId) external view returns (address); function mintByAlly( bytes32 sendAllyId, address user, uint256 amount ) external; function getTokenInfo(address token) external view returns ( bool inWhiteList, address swapRouter, uint256 tokenRatingScore ); function TetherToken() external view returns (address); /// @notice Emitted when keeper reset the ally contract event ResetAlly(bytes32 indexed allyId, address indexed contractAddr); /// @notice Emitted when keeper unregister an ally contract event AllyKilled(bytes32 indexed allyId); /// @notice Emitted when transfer fund from user to an ally contract event TillIn(bytes32 indexed allyId, address indexed user, address indexed tokenAddr, uint256 amount); /// @notice Emitted when transfer fund from an ally contract to user event TillOut(bytes32 indexed allyId, address indexed user, address indexed tokenAddr, uint256 amount); /// @notice Emitted when funds reallocated between allies event Revenue(address indexed tokenAddr, address indexed user, uint256 amount, IncomeType indexed _type); event PoolTillIn(uint256 indexed poolId, address indexed user, uint256 amount); event PoolTillOut(uint256 indexed poolId, address indexed user, uint256 amount); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_SAVIOR","type":"address"},{"internalType":"address","name":"_implementationContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"self","type":"address"},{"indexed":true,"internalType":"string","name":"shortName","type":"string"},{"indexed":false,"internalType":"string","name":"fullName","type":"string"},{"indexed":false,"internalType":"uint256","name":"secondsPerBlock","type":"uint256"}],"name":"ChainConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"version","type":"uint256"},{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ALLY_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KEEPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROOT_GROUP","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SAVIOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allowTetherToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blocksPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainFullName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainShortName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"committeeProposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"shortName","type":"string"},{"internalType":"string","name":"fullName","type":"string"},{"internalType":"uint256","name":"secondsPerBlock","type":"uint256"}],"name":"configChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ipistrStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipistrToken","outputs":[{"internalType":"contract IIpistrToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVotingDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolMetersMap","outputs":[{"internalType":"address","name":"tokenContract","type":"address"},{"internalType":"uint32","name":"leverage","type":"uint32"},{"internalType":"uint32","name":"durationDays","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolProposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalGallery","outputs":[{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint32","name":"catagory","type":"uint32"},{"internalType":"uint64","name":"startBlock","type":"uint64"},{"internalType":"uint64","name":"endBlock","type":"uint64"},{"internalType":"uint256","name":"forShares","type":"uint256"},{"internalType":"uint256","name":"againstShares","type":"uint256"},{"internalType":"enum CommitteStorage.ProposalStatus","name":"status","type":"uint8"},{"internalType":"bool","name":"displayable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rulerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondsPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSecondsPerBlock","type":"uint256"}],"name":"setSecondsPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stableToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalIpistrStakedShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"multiSigWallet","type":"address"}],"name":"transferSavior","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVersion","type":"uint256"},{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userLockedShare","outputs":[{"internalType":"uint256","name":"forShares","type":"uint256"},{"internalType":"uint256","name":"againstShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200235638038062002356833981810160405260408110156200003757600080fd5b508051602090910151600180546001600160a01b0319166001600160a01b03841617905581818082806200007b600080516020620023368339815191528262000153565b620000b67ffc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab6000805160206200233683398151915262000163565b620000f17f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086000805160206200233683398151915262000163565b6200012c7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac6000805160206200233683398151915262000163565b50506001805460ff60a01b1916905562000148600182620001b5565b5050505050620003ed565b6200015f828262000233565b5050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b620001cb81620002ac60201b620016411760201c565b6200021d576040805162461bcd60e51b815260206004820152601460248201527f4e6f6e2d636f6e74726163742061646472657373000000000000000000000000604482015290519081900360640190fd5b6200022881620002b2565b6200015f826200033e565b600082815260208181526040909120620002589183906200164762000362821b17901c565b156200015f576200026862000382565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b3b151590565b620002c881620002ac60201b620016411760201c565b6200031a576040805162461bcd60e51b815260206004820152601460248201527f4e6f6e2d636f6e74726163742061646472657373000000000000000000000000604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b600062000379836001600160a01b03841662000386565b90505b92915050565b3390565b6000620003948383620003d5565b620003cc575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200037c565b5060006200037c565b60009081526001919091016020526040902054151590565b611f3980620003fd6000396000f3fe6080604052600436106102605760003560e01c80638456cb5911610144578063bd681059116100b6578063da35c6641161007a578063da35c664146109ff578063e2224b5614610a14578063e74621b414610a29578063ec87621c14610a6c578063f5a7b8a914610a81578063ff71491c14610a9657610267565b8063bd681059146108c4578063c27cabb5146108d9578063ca15c873146108ee578063cd81dba114610918578063d547741f146109c657610267565b80639b644a23116101085780639b644a2314610803578063a217fddf1461082d578063a5bcadbe14610842578063a79fafa414610857578063a9d75b2b1461089a578063ab6180cd146108af57610267565b80638456cb59146106f9578063885fd4171461070e5780638b86163c146107675780639010d07c1461079a57806391d14854146107ca57610267565b80633f4ba83a116101dd5780635c60da1b116101a15780635c60da1b146105405780635c975abb146105555780636c72c59c1461057e5780636ee37b28146105935780637a7d4937146106cf57806380d20bc7146106e457610267565b80633f4ba83a146104a65780634cfea68a146104bb5780634fad8872146104d057806354fd4d50146105015780635663896e1461051657610267565b80632f2ff15d116102245780632f2ff15d146103d15780633408e4701461040a578063364bc15a1461041f57806336568abe146104345780633ad06d161461046d57610267565b806305b0ee781461027157806321aa9608146102fb578063248a9ca31461034d57806329f6f1ff146103895780632de5cbc41461039e57610267565b3661026757005b61026f610aab565b005b34801561027d57600080fd5b50610286610ac5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c05781810151838201526020016102a8565b50505050905090810190601f1680156102ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030757600080fd5b506103346004803603604081101561031e57600080fd5b50803590602001356001600160a01b0316610b5b565b6040805192835260208301919091528051918290030190f35b34801561035957600080fd5b506103776004803603602081101561037057600080fd5b5035610b7f565b60408051918252519081900360200190f35b34801561039557600080fd5b50610377610b94565b3480156103aa57600080fd5b50610377600480360360208110156103c157600080fd5b50356001600160a01b0316610bb8565b3480156103dd57600080fd5b5061026f600480360360408110156103f457600080fd5b50803590602001356001600160a01b0316610bca565b34801561041657600080fd5b50610377610c36565b34801561042b57600080fd5b50610377610c3a565b34801561044057600080fd5b5061026f6004803603604081101561045757600080fd5b50803590602001356001600160a01b0316610c4c565b34801561047957600080fd5b5061026f6004803603604081101561049057600080fd5b50803590602001356001600160a01b0316610cad565b3480156104b257600080fd5b5061026f610d3a565b3480156104c757600080fd5b50610377610dab565b3480156104dc57600080fd5b506104e5610db1565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b50610377610dc0565b34801561052257600080fd5b5061026f6004803603602081101561053957600080fd5b5035610dcf565b34801561054c57600080fd5b506104e5610e3d565b34801561056157600080fd5b5061056a610e47565b604080519115158252519081900360200190f35b34801561058a57600080fd5b50610377610e57565b34801561059f57600080fd5b5061026f600480360360608110156105b657600080fd5b8101906020810181356401000000008111156105d157600080fd5b8201836020820111156105e357600080fd5b8035906020019184600183028401116401000000008311171561060557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561065857600080fd5b82018360208201111561066a57600080fd5b8035906020019184600183028401116401000000008311171561068c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610e5d915050565b3480156106db57600080fd5b5061037761108d565b3480156106f057600080fd5b50610377611093565b34801561070557600080fd5b5061026f611099565b34801561071a57600080fd5b506107386004803603602081101561073157600080fd5b503561110a565b604080516001600160a01b03909416845263ffffffff9283166020850152911682820152519081900360600190f35b34801561077357600080fd5b5061026f6004803603602081101561078a57600080fd5b50356001600160a01b031661113e565b3480156107a657600080fd5b506104e5600480360360408110156107bd57600080fd5b50803590602001356112f0565b3480156107d657600080fd5b5061056a600480360360408110156107ed57600080fd5b50803590602001356001600160a01b0316611311565b34801561080f57600080fd5b506103776004803603602081101561082657600080fd5b5035611329565b34801561083957600080fd5b50610377611347565b34801561084e57600080fd5b506104e561134c565b34801561086357600080fd5b5061026f6004803603606081101561087a57600080fd5b506001600160a01b0381358116916020810135909116906040013561135b565b3480156108a657600080fd5b506104e561142c565b3480156108bb57600080fd5b5061037761143b565b3480156108d057600080fd5b5061028661145f565b3480156108e557600080fd5b506103776114bd565b3480156108fa57600080fd5b506103776004803603602081101561091157600080fd5b50356114c3565b34801561092457600080fd5b506109426004803603602081101561093b57600080fd5b50356114da565b604051808a63ffffffff168152602001896001600160a01b031681526020018863ffffffff1681526020018767ffffffffffffffff1681526020018667ffffffffffffffff1681526020018581526020018481526020018360048111156109a557fe5b81526020018215158152602001995050505050505050505060405180910390f35b3480156109d257600080fd5b5061026f600480360360408110156109e957600080fd5b50803590602001356001600160a01b0316611553565b348015610a0b57600080fd5b506103776115ac565b348015610a2057600080fd5b506103776115b2565b348015610a3557600080fd5b5061026f60048036036060811015610a4c57600080fd5b506001600160a01b038135811691602081013590911690604001356115b8565b348015610a7857600080fd5b50610377611611565b348015610a8d57600080fd5b50610377611635565b348015610aa257600080fd5b5061037761163b565b610ab3610ac3565b610ac3610abe61165c565b611681565b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b60186020908152600092835260408084209091529082529020805460019091015482565b60009081526020819052604090206002015490565b7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84581565b60146020526000908152604090205481565b600082815260208190526040902060020154610bed90610be86116a5565b611311565b610c285760405162461bcd60e51b815260040180806020018281038252602f815260200180611dc4602f913960400191505060405180910390fd5b610c3282826116a9565b5050565b4690565b600080516020611df383398151915281565b610c546116a5565b6001600160a01b0316816001600160a01b031614610ca35760405162461bcd60e51b815260040180806020018281038252602f815260200180611ed5602f913960400191505060405180910390fd5b610c328282611712565b6001546001600160a01b03163314610cf65760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b610d00828261177b565b6040516001600160a01b0382169083907f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e90600090a35050565b610d52600080516020611df383398151915233611311565b610da3576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610ac36117de565b60045490565b6001546001600160a01b031681565b6000610dca611881565b905090565b610de7600080516020611df383398151915233611311565b610e38576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b600555565b6000610dca61165c565b600154600160a01b900460ff1690565b600a5481565b6001546001600160a01b03163314610ea65760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b600154600160a81b900460ff1615610eef5760405162461bcd60e51b815260040180806020018281038252602b815260200180611e88602b913960400191505060405180910390fd5b60008111610f2e5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e646024913960400191505060405180910390fd5b8251610f41906002906020860190611d0e565b508151610f55906003906020850190611d0e565b50806201518081610f6257fe5b0460045560058190556001805460ff60a81b1916600160a81b1790556040518351849190819060208401908083835b60208310610fb05780518252601f199092019160209182019101610f91565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020306001600160a01b03167f1bce38d1a1b2061b5d1286afec57dd1291496ed5a00b341d6535c50b836307ef84846040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561104d578181015183820152602001611035565b50505050905090810190601f16801561107a5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b60055490565b600f5481565b6110b1600080516020611df383398151915233611311565b611102576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610ac36118a6565b6017602052600090815260409020546001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b6001546001600160a01b031633146111875760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b6001600160a01b0381166111cc5760405162461bcd60e51b8152600401808060200182810382526021815260200180611e436021913960400191505060405180910390fd5b6111d581611641565b611226576040805162461bcd60e51b815260206004820152601c60248201527f416666696e6974793a20454f41206973206e6f7420616c6c6f77656400000000604482015290519081900360640190fd5b6001546001600160a01b038281169116141561127e576040805162461bcd60e51b8152602060048201526012602482015271416666696e6974793a204e6f6e73656e736560701b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383161790556112c37f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84582610c28565b6112ed7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84533610c4c565b50565b6000828152602081905260408120611308908361192f565b90505b92915050565b6000828152602081905260408120611308908361193b565b6008818154811061133657fe5b600091825260209091200154905081565b600081565b600c546001600160a01b031681565b6001546001600160a01b031633146113a45760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b826001600160a01b031663095ea7b383836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156113fb57600080fd5b505af115801561140f573d6000803e3d6000fd5b505050506040513d602081101561142557600080fd5b5050505050565b600e546001600160a01b031681565b7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac81565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b600d5481565b600081815260208190526040812061130b90611950565b6015602052600090815260409020805460018201546002830154600384015460049094015463ffffffff808516956001600160a01b0364010000000087041695600160c01b90049091169367ffffffffffffffff8082169468010000000000000000909204169290919060ff8082169161010090041689565b60008281526020819052604090206002015461157190610be86116a5565b610ca35760405162461bcd60e51b8152600401808060200182810382526030815260200180611e136030913960400191505060405180910390fd5b60075481565b600b5481565b6001546001600160a01b031633146116015760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b61160c83838361195b565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b60095481565b60105481565b3b151590565b6000611308836001600160a01b038416611ad0565b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f385490565b3660008037600080366000845af43d6000803e8080156116a0573d6000f35b3d6000fd5b3390565b60008281526020819052604090206116c19082611647565b15610c32576116ce6116a5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260208190526040902061172a9082611b1a565b15610c32576117376116a5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61178481611641565b6117cc576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b6117d581611b2f565b610c3282611ba4565b6117e6610e47565b61182e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118646116a5565b604080516001600160a01b039092168252519081900360200190a1565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d5345490565b6118ae610e47565b156118f3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118646116a5565b60006113088383611bc8565b6000611308836001600160a01b038416611c2c565b600061130b82611c44565b60408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915185926000929084169163dd62ed3e91604480820192602092909190829003018186803b1580156119b057600080fd5b505afa1580156119c4573d6000803e3d6000fd5b505050506040513d60208110156119da57600080fd5b505190508281106119ec57505061160c565b8015611a5a576040805163095ea7b360e01b81526001600160a01b03868116600483015260006024830181905292519085169263095ea7b3926044808201939182900301818387803b158015611a4157600080fd5b505af1158015611a55573d6000803e3d6000fd5b505050505b816001600160a01b031663095ea7b385856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015611ab157600080fd5b505af1158015611ac5573d6000803e3d6000fd5b505050505050505050565b6000611adc8383611c2c565b611b125750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561130b565b50600061130b565b6000611308836001600160a01b038416611c48565b611b3881611641565b611b80576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b81546000908210611c0a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611da26022913960400191505060405180910390fd5b826000018281548110611c1957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015611d045783546000198083019190810190600090879083908110611c7b57fe5b9060005260206000200154905080876000018481548110611c9857fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611cc857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061130b565b600091505061130b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611d4f57805160ff1916838001178555611d7c565b82800160010185558215611d7c579182015b82811115611d7c578251825591602001919060010190611d61565b50611d88929150611d8c565b5090565b5b80821115611d885760008155600101611d8d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74fc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416666696e6974793a204163636f756e74206973207a65726f2061646472657373436861696e536368656d613a20496e76616c6964207365636f6e6473506572426c6f636b436861696e536368656d613a205265636f6e66696775726174696f6e206973206e6f7420616c6c6f776564416666696e6974793a2043616c6c6572206973206e6f742074686520536176696f72416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220b19e004872dd3c340fa40391b4ab304003867fe55e729ea05f7a61981a35b54764736f6c634300060c003308228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf8450000000000000000000000008000000000003fa1629e9fe472db00a9adb247e900000000000000000000000093a02eef9862e2967cbec074059e82ea1a522734
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638456cb5911610144578063bd681059116100b6578063da35c6641161007a578063da35c664146109ff578063e2224b5614610a14578063e74621b414610a29578063ec87621c14610a6c578063f5a7b8a914610a81578063ff71491c14610a9657610267565b8063bd681059146108c4578063c27cabb5146108d9578063ca15c873146108ee578063cd81dba114610918578063d547741f146109c657610267565b80639b644a23116101085780639b644a2314610803578063a217fddf1461082d578063a5bcadbe14610842578063a79fafa414610857578063a9d75b2b1461089a578063ab6180cd146108af57610267565b80638456cb59146106f9578063885fd4171461070e5780638b86163c146107675780639010d07c1461079a57806391d14854146107ca57610267565b80633f4ba83a116101dd5780635c60da1b116101a15780635c60da1b146105405780635c975abb146105555780636c72c59c1461057e5780636ee37b28146105935780637a7d4937146106cf57806380d20bc7146106e457610267565b80633f4ba83a146104a65780634cfea68a146104bb5780634fad8872146104d057806354fd4d50146105015780635663896e1461051657610267565b80632f2ff15d116102245780632f2ff15d146103d15780633408e4701461040a578063364bc15a1461041f57806336568abe146104345780633ad06d161461046d57610267565b806305b0ee781461027157806321aa9608146102fb578063248a9ca31461034d57806329f6f1ff146103895780632de5cbc41461039e57610267565b3661026757005b61026f610aab565b005b34801561027d57600080fd5b50610286610ac5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c05781810151838201526020016102a8565b50505050905090810190601f1680156102ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030757600080fd5b506103346004803603604081101561031e57600080fd5b50803590602001356001600160a01b0316610b5b565b6040805192835260208301919091528051918290030190f35b34801561035957600080fd5b506103776004803603602081101561037057600080fd5b5035610b7f565b60408051918252519081900360200190f35b34801561039557600080fd5b50610377610b94565b3480156103aa57600080fd5b50610377600480360360208110156103c157600080fd5b50356001600160a01b0316610bb8565b3480156103dd57600080fd5b5061026f600480360360408110156103f457600080fd5b50803590602001356001600160a01b0316610bca565b34801561041657600080fd5b50610377610c36565b34801561042b57600080fd5b50610377610c3a565b34801561044057600080fd5b5061026f6004803603604081101561045757600080fd5b50803590602001356001600160a01b0316610c4c565b34801561047957600080fd5b5061026f6004803603604081101561049057600080fd5b50803590602001356001600160a01b0316610cad565b3480156104b257600080fd5b5061026f610d3a565b3480156104c757600080fd5b50610377610dab565b3480156104dc57600080fd5b506104e5610db1565b604080516001600160a01b039092168252519081900360200190f35b34801561050d57600080fd5b50610377610dc0565b34801561052257600080fd5b5061026f6004803603602081101561053957600080fd5b5035610dcf565b34801561054c57600080fd5b506104e5610e3d565b34801561056157600080fd5b5061056a610e47565b604080519115158252519081900360200190f35b34801561058a57600080fd5b50610377610e57565b34801561059f57600080fd5b5061026f600480360360608110156105b657600080fd5b8101906020810181356401000000008111156105d157600080fd5b8201836020820111156105e357600080fd5b8035906020019184600183028401116401000000008311171561060557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561065857600080fd5b82018360208201111561066a57600080fd5b8035906020019184600183028401116401000000008311171561068c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610e5d915050565b3480156106db57600080fd5b5061037761108d565b3480156106f057600080fd5b50610377611093565b34801561070557600080fd5b5061026f611099565b34801561071a57600080fd5b506107386004803603602081101561073157600080fd5b503561110a565b604080516001600160a01b03909416845263ffffffff9283166020850152911682820152519081900360600190f35b34801561077357600080fd5b5061026f6004803603602081101561078a57600080fd5b50356001600160a01b031661113e565b3480156107a657600080fd5b506104e5600480360360408110156107bd57600080fd5b50803590602001356112f0565b3480156107d657600080fd5b5061056a600480360360408110156107ed57600080fd5b50803590602001356001600160a01b0316611311565b34801561080f57600080fd5b506103776004803603602081101561082657600080fd5b5035611329565b34801561083957600080fd5b50610377611347565b34801561084e57600080fd5b506104e561134c565b34801561086357600080fd5b5061026f6004803603606081101561087a57600080fd5b506001600160a01b0381358116916020810135909116906040013561135b565b3480156108a657600080fd5b506104e561142c565b3480156108bb57600080fd5b5061037761143b565b3480156108d057600080fd5b5061028661145f565b3480156108e557600080fd5b506103776114bd565b3480156108fa57600080fd5b506103776004803603602081101561091157600080fd5b50356114c3565b34801561092457600080fd5b506109426004803603602081101561093b57600080fd5b50356114da565b604051808a63ffffffff168152602001896001600160a01b031681526020018863ffffffff1681526020018767ffffffffffffffff1681526020018667ffffffffffffffff1681526020018581526020018481526020018360048111156109a557fe5b81526020018215158152602001995050505050505050505060405180910390f35b3480156109d257600080fd5b5061026f600480360360408110156109e957600080fd5b50803590602001356001600160a01b0316611553565b348015610a0b57600080fd5b506103776115ac565b348015610a2057600080fd5b506103776115b2565b348015610a3557600080fd5b5061026f60048036036060811015610a4c57600080fd5b506001600160a01b038135811691602081013590911690604001356115b8565b348015610a7857600080fd5b50610377611611565b348015610a8d57600080fd5b50610377611635565b348015610aa257600080fd5b5061037761163b565b610ab3610ac3565b610ac3610abe61165c565b611681565b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b820191906000526020600020905b815481529060010190602001808311610b3457829003601f168201915b5050505050905090565b60186020908152600092835260408084209091529082529020805460019091015482565b60009081526020819052604090206002015490565b7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84581565b60146020526000908152604090205481565b600082815260208190526040902060020154610bed90610be86116a5565b611311565b610c285760405162461bcd60e51b815260040180806020018281038252602f815260200180611dc4602f913960400191505060405180910390fd5b610c3282826116a9565b5050565b4690565b600080516020611df383398151915281565b610c546116a5565b6001600160a01b0316816001600160a01b031614610ca35760405162461bcd60e51b815260040180806020018281038252602f815260200180611ed5602f913960400191505060405180910390fd5b610c328282611712565b6001546001600160a01b03163314610cf65760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b610d00828261177b565b6040516001600160a01b0382169083907f4289d6195cf3c2d2174adf98d0e19d4d2d08887995b99cb7b100e7ffe795820e90600090a35050565b610d52600080516020611df383398151915233611311565b610da3576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610ac36117de565b60045490565b6001546001600160a01b031681565b6000610dca611881565b905090565b610de7600080516020611df383398151915233611311565b610e38576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b600555565b6000610dca61165c565b600154600160a01b900460ff1690565b600a5481565b6001546001600160a01b03163314610ea65760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b600154600160a81b900460ff1615610eef5760405162461bcd60e51b815260040180806020018281038252602b815260200180611e88602b913960400191505060405180910390fd5b60008111610f2e5760405162461bcd60e51b8152600401808060200182810382526024815260200180611e646024913960400191505060405180910390fd5b8251610f41906002906020860190611d0e565b508151610f55906003906020850190611d0e565b50806201518081610f6257fe5b0460045560058190556001805460ff60a81b1916600160a81b1790556040518351849190819060208401908083835b60208310610fb05780518252601f199092019160209182019101610f91565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020306001600160a01b03167f1bce38d1a1b2061b5d1286afec57dd1291496ed5a00b341d6535c50b836307ef84846040518080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561104d578181015183820152602001611035565b50505050905090810190601f16801561107a5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3505050565b60055490565b600f5481565b6110b1600080516020611df383398151915233611311565b611102576040805162461bcd60e51b815260206004820152601e60248201527f416666696e6974793a2043616c6c6572206973206e6f74206b65657065720000604482015290519081900360640190fd5b610ac36118a6565b6017602052600090815260409020546001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b6001546001600160a01b031633146111875760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b6001600160a01b0381166111cc5760405162461bcd60e51b8152600401808060200182810382526021815260200180611e436021913960400191505060405180910390fd5b6111d581611641565b611226576040805162461bcd60e51b815260206004820152601c60248201527f416666696e6974793a20454f41206973206e6f7420616c6c6f77656400000000604482015290519081900360640190fd5b6001546001600160a01b038281169116141561127e576040805162461bcd60e51b8152602060048201526012602482015271416666696e6974793a204e6f6e73656e736560701b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383161790556112c37f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84582610c28565b6112ed7f08228e6653a7f63b9f7994f3c602d59e00c633542c7e39ac49d55343584bf84533610c4c565b50565b6000828152602081905260408120611308908361192f565b90505b92915050565b6000828152602081905260408120611308908361193b565b6008818154811061133657fe5b600091825260209091200154905081565b600081565b600c546001600160a01b031681565b6001546001600160a01b031633146113a45760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b826001600160a01b031663095ea7b383836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156113fb57600080fd5b505af115801561140f573d6000803e3d6000fd5b505050506040513d602081101561142557600080fd5b5050505050565b600e546001600160a01b031681565b7fe86976c4e602c63ead69d25aa0d168b0e6e7ea1bb4597e6222f3e80061ff31ac81565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b515780601f10610b2657610100808354040283529160200191610b51565b600d5481565b600081815260208190526040812061130b90611950565b6015602052600090815260409020805460018201546002830154600384015460049094015463ffffffff808516956001600160a01b0364010000000087041695600160c01b90049091169367ffffffffffffffff8082169468010000000000000000909204169290919060ff8082169161010090041689565b60008281526020819052604090206002015461157190610be86116a5565b610ca35760405162461bcd60e51b8152600401808060200182810382526030815260200180611e136030913960400191505060405180910390fd5b60075481565b600b5481565b6001546001600160a01b031633146116015760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb36022913960400191505060405180910390fd5b61160c83838361195b565b505050565b7f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b60095481565b60105481565b3b151590565b6000611308836001600160a01b038416611ad0565b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f385490565b3660008037600080366000845af43d6000803e8080156116a0573d6000f35b3d6000fd5b3390565b60008281526020819052604090206116c19082611647565b15610c32576116ce6116a5565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260208190526040902061172a9082611b1a565b15610c32576117376116a5565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b61178481611641565b6117cc576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b6117d581611b2f565b610c3282611ba4565b6117e6610e47565b61182e576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6001805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118646116a5565b604080516001600160a01b039092168252519081900360200190a1565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d5345490565b6118ae610e47565b156118f3576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118646116a5565b60006113088383611bc8565b6000611308836001600160a01b038416611c2c565b600061130b82611c44565b60408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915185926000929084169163dd62ed3e91604480820192602092909190829003018186803b1580156119b057600080fd5b505afa1580156119c4573d6000803e3d6000fd5b505050506040513d60208110156119da57600080fd5b505190508281106119ec57505061160c565b8015611a5a576040805163095ea7b360e01b81526001600160a01b03868116600483015260006024830181905292519085169263095ea7b3926044808201939182900301818387803b158015611a4157600080fd5b505af1158015611a55573d6000803e3d6000fd5b505050505b816001600160a01b031663095ea7b385856040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015611ab157600080fd5b505af1158015611ac5573d6000803e3d6000fd5b505050505050505050565b6000611adc8383611c2c565b611b125750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561130b565b50600061130b565b6000611308836001600160a01b038416611c48565b611b3881611641565b611b80576040805162461bcd60e51b81526020600482015260146024820152734e6f6e2d636f6e7472616374206164647265737360601b604482015290519081900360640190fd5b7fb4cff3ccade8876c60e81b90f014ea636f99d530646ec67090e1cc8a04636f3855565b7ff62412ce1bd823aa31864380419f787378380edf34602844461eeadf8416d53455565b81546000908210611c0a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611da26022913960400191505060405180910390fd5b826000018281548110611c1957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015611d045783546000198083019190810190600090879083908110611c7b57fe5b9060005260206000200154905080876000018481548110611c9857fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611cc857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061130b565b600091505061130b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611d4f57805160ff1916838001178555611d7c565b82800160010185558215611d7c579182015b82811115611d7c578251825591602001919060010190611d61565b50611d88929150611d8c565b5090565b5b80821115611d885760008155600101611d8d56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e74fc8737ab85eb45125971625a9ebdb75cc78e01d5c1fa80c4c6e5203f47bc4fab416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65416666696e6974793a204163636f756e74206973207a65726f2061646472657373436861696e536368656d613a20496e76616c6964207365636f6e6473506572426c6f636b436861696e536368656d613a205265636f6e66696775726174696f6e206973206e6f7420616c6c6f776564416666696e6974793a2043616c6c6572206973206e6f742074686520536176696f72416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220b19e004872dd3c340fa40391b4ab304003867fe55e729ea05f7a61981a35b54764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008000000000003fa1629e9fe472db00a9adb247e900000000000000000000000093a02eef9862e2967cbec074059e82ea1a522734
-----Decoded View---------------
Arg [0] : _SAVIOR (address): 0x8000000000003Fa1629e9FE472db00a9adb247E9
Arg [1] : _implementationContract (address): 0x93A02eef9862e2967CBEc074059e82eA1a522734
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008000000000003fa1629e9fe472db00a9adb247e9
Arg [1] : 00000000000000000000000093a02eef9862e2967cbec074059e82ea1a522734
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.