Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x3b61c2a68ea6fffe3afe1a9b111e18e5c052d8fa2a7a88d5d35a7c30273538ed | 37843696 | 266 days 14 hrs ago | 0xb1690cc68de3557e8c7f5083617076d705be19de | Contract Creation | 0 FTM |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
HermesGenesisRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-05-08 */ /** *Submitted for verification at FtmScan.com on 2022-04-14 */ /** *Submitted for verification at FtmScan.com on 2022-04-14 */ /** *Submitted for verification at FtmScan.com on 2022-04-14 */ /** *Submitted for verification at FtmScan.com on 2022-04-12 */ /** *Submitted for verification at FtmScan.com on 2022-04-07 */ // 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); } pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } 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); } } } } pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity 0.6.12; // Note that this pool has no minter key of HERMES (rewards). // Instead, the governance will call HERMES distributeReward method and send reward to this pool at the beginning. contract HermesGenesisRewardPool { using SafeMath for uint256; using SafeERC20 for IERC20; // governance address public operator; // Info of each user. struct UserInfo { uint256 amount; // How many tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IERC20 token; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. HERMES to distribute. uint256 lastRewardTime; // Last time that HERMES distribution occurs. uint256 accHermesPerShare; // Accumulated HERMES per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed uint256 depositFeeBP; } IERC20 public hermes; address public feeAddress; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The time when HERMES mining starts. uint256 public poolStartTime; // The time when HERMES mining ends. uint256 public poolEndTime; // TESTNET // uint256 public hermesPerSecond = 3.0555555 ether; // 24000 HERMES / (1h * 60min * 60s) // uint256 public runningTime = 48 hours; // 1 hours // uint256 public constant TOTAL_REWARDS = 24000 ether; // END TESTNET // MAINNET uint256 public hermesPerSecond = 0.1388148 ether; // 24000 HERMES / (24h * 60min * 60s) uint256 public runningTime = 2 days; // 2 days uint256 public constant TOTAL_REWARDS = 24000 ether; // END MAINNET event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event RewardPaid(address indexed user, uint256 amount); constructor( address _hermes, uint256 _poolStartTime ) public { require(block.timestamp < _poolStartTime, "late"); if (_hermes != address(0)) hermes = IERC20(_hermes); poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; operator = msg.sender; feeAddress = msg.sender; } modifier onlyOperator() { require(operator == msg.sender, "HermesGenesisPool: caller is not the operator"); _; } function checkPoolDuplicate(IERC20 _token) internal view { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { require(poolInfo[pid].token != _token, "HermesGenesisPool: existing pool?"); } } // Add a new token to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IERC20 _token, bool _withUpdate, uint256 _lastRewardTime, uint256 _depositFeeBP ) public onlyOperator { require(_depositFeeBP <= 100, "add: invalid deposit fee basis points"); // 1% checkPoolDuplicate(_token); if (_withUpdate) { massUpdatePools(); } if (block.timestamp < poolStartTime) { // chef is sleeping if (_lastRewardTime == 0) { _lastRewardTime = poolStartTime; } else { if (_lastRewardTime < poolStartTime) { _lastRewardTime = poolStartTime; } } } else { // chef is cooking if (_lastRewardTime == 0 || _lastRewardTime < block.timestamp) { _lastRewardTime = block.timestamp; } } bool _isStarted = (_lastRewardTime <= poolStartTime) || (_lastRewardTime <= block.timestamp); poolInfo.push(PoolInfo({ token : _token, allocPoint : _allocPoint, lastRewardTime : _lastRewardTime, accHermesPerShare : 0, isStarted : _isStarted, depositFeeBP: _depositFeeBP })); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's HERMES allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint256 _depositFeeBP) public onlyOperator { require(_depositFeeBP <= 100, "set: invalid deposit fee basis points"); //// 1% massUpdatePools(); PoolInfo storage pool = poolInfo[_pid]; if (pool.isStarted) { totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add( _allocPoint ); } poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; } // Return accumulate rewards over the given _from to _to block. function getGeneratedReward(uint256 _fromTime, uint256 _toTime) public view returns (uint256) { if (_fromTime >= _toTime) return 0; if (_toTime >= poolEndTime) { if (_fromTime >= poolEndTime) return 0; if (_fromTime <= poolStartTime) return poolEndTime.sub(poolStartTime).mul(hermesPerSecond); return poolEndTime.sub(_fromTime).mul(hermesPerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(hermesPerSecond); return _toTime.sub(_fromTime).mul(hermesPerSecond); } } // View function to see pending HERMES on frontend. function pendingHERMES(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accHermesPerShare = pool.accHermesPerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _hermesReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accHermesPerShare = accHermesPerShare.add(_hermesReward.mul(1e18).div(tokenSupply)); } return user.amount.mul(accHermesPerShare).div(1e18).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.timestamp <= pool.lastRewardTime) { return; } uint256 tokenSupply = pool.token.balanceOf(address(this)); if (tokenSupply == 0) { pool.lastRewardTime = block.timestamp; return; } if (!pool.isStarted) { pool.isStarted = true; totalAllocPoint = totalAllocPoint.add(pool.allocPoint); } if (totalAllocPoint > 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _hermesReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accHermesPerShare = pool.accHermesPerShare.add(_hermesReward.mul(1e18).div(tokenSupply)); } pool.lastRewardTime = block.timestamp; } // Deposit LP tokens. function deposit(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; updatePool(_pid); if (user.amount > 0) { uint256 _pending = user.amount.mul(pool.accHermesPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeHermesTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { pool.token.safeTransferFrom(_sender, address(this), _amount); user.amount = user.amount.add(_amount); if(pool.depositFeeBP > 0){ uint256 depositFee = 0; depositFee = _amount.mul(pool.depositFeeBP).div(10000); pool.token.safeTransfer(feeAddress, depositFee); user.amount = user.amount.sub(depositFee); } } user.rewardDebt = user.amount.mul(pool.accHermesPerShare).div(1e18); emit Deposit(_sender, _pid, _amount); } // Withdraw LP tokens. function withdraw(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 _pending = user.amount.mul(pool.accHermesPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeHermesTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.token.safeTransfer(_sender, _amount); } user.rewardDebt = user.amount.mul(pool.accHermesPerShare).div(1e18); emit Withdraw(_sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 _amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.token.safeTransfer(msg.sender, _amount); emit EmergencyWithdraw(msg.sender, _pid, _amount); } // Safe HERMES transfer function, just in case if rounding error causes pool to not have enough HERMESs. function safeHermesTransfer(address _to, uint256 _amount) internal { uint256 _hermesBalance = hermes.balanceOf(address(this)); if (_hermesBalance > 0) { if (_amount > _hermesBalance) { hermes.safeTransfer(_to, _hermesBalance); } else { hermes.safeTransfer(_to, _amount); } } } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setFeeAddress(address _feeAddress) public{ require(msg.sender == feeAddress, "setFeeAddress: FORBIDDEN"); require(_feeAddress != address(0), "setFeeAddress: ZERO"); feeAddress = _feeAddress; } function governanceRecoverUnsupported(IERC20 _token, uint256 amount, address to) external onlyOperator { if (block.timestamp < poolEndTime + 90 days) { // do not allow to drain core token (HERMES or lps) if less than 90 days after pool ends require(_token != hermes, "hermes"); uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { PoolInfo storage pool = poolInfo[pid]; require(_token != pool.token, "pool.token"); } } _token.safeTransfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_hermes","type":"address"},{"internalType":"uint256","name":"_poolStartTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"TOTAL_REWARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"uint256","name":"_lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"_depositFeeBP","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fromTime","type":"uint256"},{"internalType":"uint256","name":"_toTime","type":"uint256"}],"name":"getGeneratedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hermes","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hermesPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingHERMES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accHermesPerShare","type":"uint256"},{"internalType":"bool","name":"isStarted","type":"bool"},{"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"runningTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint256","name":"_depositFeeBP","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006005556701ed2b533b9120006008556202a30060095534801561002857600080fd5b50604051611b4d380380611b4d8339818101604052604081101561004b57600080fd5b508051602090910151428111610091576040805162461bcd60e51b815260206004808301919091526024820152636c61746560e01b604482015290519081900360640190fd5b6001600160a01b038216156100bc57600180546001600160a01b0319166001600160a01b0384161790555b6006819055600954016007555060008054336001600160a01b03199182168117835560028054909216179055611a559081906100f890396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063570ca735116100c357806393f1a40b1161007c57806393f1a40b14610387578063943f013d146103cc5780639a9f2fe7146103d4578063b3ab15fb146103dc578063d8092c9214610402578063e2bbb1581461040a5761014d565b8063570ca735146103015780635f96dc111461030957806362e006c714610311578063630b5ba1146103515780636e271dd5146103595780638705fcd4146103615761014d565b806343b0e8df1161011557806343b0e8df14610217578063441a3e7014610242578063443828721461026557806351eb05a6146102915780635312ea8e146102ae57806354575af4146102cb5761014d565b806309cf6091146101525780631526fe271461016c57806317caf6f1146101c8578063231f0c6a146101d057806341275358146101f3575b600080fd5b61015a61042d565b60408051918252519081900360200190f35b6101896004803603602081101561018257600080fd5b503561043b565b604080516001600160a01b03909716875260208701959095528585019390935260608501919091521515608084015260a0830152519081900360c00190f35b61015a61048e565b61015a600480360360408110156101e657600080fd5b5080359060200135610494565b6101fb610559565b604080516001600160a01b039092168252519081900360200190f35b6102406004803603606081101561022d57600080fd5b5080359060208101359060400135610568565b005b6102406004803603604081101561025857600080fd5b508035906020013561069b565b61015a6004803603604081101561027b57600080fd5b50803590602001356001600160a01b0316610858565b610240600480360360208110156102a757600080fd5b50356109b9565b610240600480360360208110156102c457600080fd5b5035610b17565b610240600480360360608110156102e157600080fd5b506001600160a01b03813581169160208101359160409091013516610bb3565b6101fb610cfb565b61015a610d0a565b610240600480360360a081101561032757600080fd5b508035906001600160a01b0360208201351690604081013515159060608101359060800135610d10565b610240610f7d565b61015a610fa0565b6102406004803603602081101561037757600080fd5b50356001600160a01b0316610fa6565b6103b36004803603604081101561039d57600080fd5b50803590602001356001600160a01b0316611078565b6040805192835260208301919091528051918290030190f35b61015a61109c565b61015a6110a2565b610240600480360360208110156103f257600080fd5b50356001600160a01b03166110a8565b6101fb611113565b6102406004803603604081101561042057600080fd5b5080359060200135611122565b6905150ae84a8cdf00000081565b6003818154811061044857fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501546001600160a01b0390941695509193909260ff9091169086565b60055481565b60008183106104a557506000610553565b600754821061050d5760075483106104bf57506000610553565b60065483116104f2576104eb6008546104e56006546007546112e990919063ffffffff16565b90611346565b9050610553565b6104eb6008546104e5856007546112e990919063ffffffff16565b600654821161051e57506000610553565b6006548311610542576104eb6008546104e5600654856112e990919063ffffffff16565b6008546104eb906104e584866112e9565b92915050565b6002546001600160a01b031681565b6000546001600160a01b031633146105b15760405162461bcd60e51b815260040180806020018281038252602d8152602001806119c9602d913960400191505060405180910390fd5b60648111156105f15760405162461bcd60e51b81526004018080602001828103825260258152602001806119a46025913960400191505060405180910390fd5b6105f9610f7d565b60006003848154811061060857fe5b60009182526020909120600690910201600481015490915060ff161561064f5761064b8361064583600101546005546112e990919063ffffffff16565b906113a6565b6005555b826003858154811061065d57fe5b906000526020600020906006020160010181905550816003858154811061068057fe5b90600052602060002090600602016005018190555050505050565b60003390506000600384815481106106af57fe5b600091825260208083208784526004825260408085206001600160a01b0388168652909252922080546006909202909201925084111561072b576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610734856109b9565b6000610771826001015461076b670de0b6b3a76400006107658760030154876000015461134690919063ffffffff16565b90611400565b906112e9565b905080156107c3576107838482611467565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b84156107ed5781546107d590866112e9565b825582546107ed906001600160a01b0316858761151d565b6003830154825461080b91670de0b6b3a76400009161076591611346565b600183015560408051868152905187916001600160a01b038716917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b6000806003848154811061086857fe5b60009182526020808320878452600480835260408086206001600160a01b038a811688529085528187206006969096029093016003810154815483516370a0823160e01b81523095810195909552925191985095969491909316926370a08231926024808201939291829003018186803b1580156108e557600080fd5b505afa1580156108f9573d6000803e3d6000fd5b505050506040513d602081101561090f57600080fd5b505160028501549091504211801561092657508015155b1561098357600061093b856002015442610494565b9050600061095c60055461076588600101548561134690919063ffffffff16565b905061097e6109778461076584670de0b6b3a7640000611346565b85906113a6565b935050505b6109ae836001015461076b670de0b6b3a764000061076586886000015461134690919063ffffffff16565b979650505050505050565b6000600382815481106109c857fe5b90600052602060002090600602019050806002015442116109e95750610b14565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610a3357600080fd5b505afa158015610a47573d6000803e3d6000fd5b505050506040513d6020811015610a5d57600080fd5b5051905080610a73575042600290910155610b14565b600482015460ff16610aa45760048201805460ff19166001908117909155820154600554610aa0916113a6565b6005555b60055415610b0b576000610abc836002015442610494565b90506000610add60055461076586600101548561134690919063ffffffff16565b9050610b03610af88461076584670de0b6b3a7640000611346565b6003860154906113a6565b600385015550505b50426002909101555b50565b600060038281548110610b2657fe5b600091825260208083208584526004825260408085203380875293528420805485825560018201959095556006909302018054909450919291610b76916001600160a01b0391909116908361151d565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b6000546001600160a01b03163314610bfc5760405162461bcd60e51b815260040180806020018281038252602d8152602001806119c9602d913960400191505060405180910390fd5b6007546276a70001421015610ce2576001546001600160a01b0384811691161415610c57576040805162461bcd60e51b81526020600482015260066024820152656865726d657360d01b604482015290519081900360640190fd5b60035460005b81811015610cdf57600060038281548110610c7457fe5b6000918252602090912060069091020180549091506001600160a01b0387811691161415610cd6576040805162461bcd60e51b815260206004820152600a6024820152693837b7b6173a37b5b2b760b11b604482015290519081900360640190fd5b50600101610c5d565b50505b610cf66001600160a01b038416828461151d565b505050565b6000546001600160a01b031681565b60065481565b6000546001600160a01b03163314610d595760405162461bcd60e51b815260040180806020018281038252602d8152602001806119c9602d913960400191505060405180910390fd5b6064811115610d995760405162461bcd60e51b81526004018080602001828103825260258152602001806119176025913960400191505060405180910390fd5b610da28461156f565b8215610db057610db0610f7d565b600654421015610dde5781610dc9576006549150610dd9565b600654821015610dd95760065491505b610df3565b811580610dea57504282105b15610df3574291505b600060065483111580610e065750428311155b6040805160c0810182526001600160a01b038881168252602082018a8152928201878152600060608401818152861580156080870190815260a087018b815260038054600181018255955296517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b600690950294850180546001600160a01b031916919097161790955595517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c83015591517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e82015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f8201805460ff191691151591909117905590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f86090910155909150610f7557600554610f7190876113a6565b6005555b505050505050565b60035460005b81811015610f9c57610f94816109b9565b600101610f83565b5050565b60075481565b6002546001600160a01b03163314611005576040805162461bcd60e51b815260206004820152601860248201527f736574466565416464726573733a20464f5242494444454e0000000000000000604482015290519081900360640190fd5b6001600160a01b038116611056576040805162461bcd60e51b8152602060048201526013602482015272736574466565416464726573733a205a45524f60681b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60046020908152600092835260408084209091529082529020805460019091015482565b60095481565b60085481565b6000546001600160a01b031633146110f15760405162461bcd60e51b815260040180806020018281038252602d8152602001806119c9602d913960400191505060405180910390fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031681565b600033905060006003848154811061113657fe5b600091825260208083208784526004825260408085206001600160a01b0388168652909252922060069091029091019150611170856109b9565b8054156111fc5760006111a8826001015461076b670de0b6b3a76400006107658760030154876000015461134690919063ffffffff16565b905080156111fa576111ba8482611467565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505b831561127f578154611219906001600160a01b03168430876115f3565b805461122590856113a6565b815560058201541561127f57600061125061271061076585600501548861134690919063ffffffff16565b600254845491925061126f916001600160a01b0390811691168361151d565b815461127b90826112e9565b8255505b6003820154815461129d91670de0b6b3a76400009161076591611346565b600182015560408051858152905186916001600160a01b038616917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050505050565b600082821115611340576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261135557506000610553565b8282028284828161136257fe5b041461139f5760405162461bcd60e51b81526004018080602001828103825260218152602001806119836021913960400191505060405180910390fd5b9392505050565b60008282018381101561139f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000808211611456576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161145f57fe5b049392505050565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156114b257600080fd5b505afa1580156114c6573d6000803e3d6000fd5b505050506040513d60208110156114dc57600080fd5b505190508015610cf6578082111561150a57600154611505906001600160a01b0316848361151d565b610cf6565b600154610cf6906001600160a01b031684845b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cf6908490611653565b60035460005b81811015610cf657826001600160a01b03166003828154811061159457fe5b60009182526020909120600690910201546001600160a01b031614156115eb5760405162461bcd60e51b815260040180806020018281038252602181526020018061193c6021913960400191505060405180910390fd5b600101611575565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261164d908590611653565b50505050565b60606116a8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166117049092919063ffffffff16565b805190915015610cf6578080602001905160208110156116c757600080fd5b5051610cf65760405162461bcd60e51b815260040180806020018281038252602a8152602001806119f6602a913960400191505060405180910390fd5b6060611713848460008561171b565b949350505050565b60608247101561175c5760405162461bcd60e51b815260040180806020018281038252602681526020018061195d6026913960400191505060405180910390fd5b6117658561186c565b6117b6576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106117f55780518252601f1990920191602091820191016117d6565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611857576040519150601f19603f3d011682016040523d82523d6000602084013e61185c565b606091505b50915091506109ae828286611872565b3b151590565b6060831561188157508161139f565b8251156118915782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118db5781810151838201526020016118c3565b50505050905090810190601f1680156119085780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74734865726d657347656e65736973506f6f6c3a206578697374696e6720706f6f6c3f416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734865726d657347656e65736973506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122020b9904ff34c95a7cd861bdcb2d27525b5f0db79ddc78e44249b3e145f87abd364736f6c634300060c00330000000000000000000000000d7cc067ec64c28bac1f4f2459d8c2e2603ff78a00000000000000000000000000000000000000000000000000000000627d3d10
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000d7cc067ec64c28bac1f4f2459d8c2e2603ff78a00000000000000000000000000000000000000000000000000000000627d3d10
-----Decoded View---------------
Arg [0] : _hermes (address): 0x0d7cc067ec64c28bac1f4f2459d8c2e2603ff78a
Arg [1] : _poolStartTime (uint256): 1652374800
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000d7cc067ec64c28bac1f4f2459d8c2e2603ff78a
Arg [1] : 00000000000000000000000000000000000000000000000000000000627d3d10
Deployed ByteCode Sourcemap
22399:11891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24180:51;;;:::i;:::-;;;;;;;;;;;;;;;;23321:26;;;;;;;;;;;;;;;;-1:-1:-1;23321:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;23321:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23566:34;;;:::i;27588:661::-;;;;;;;;;;;;;;;;-1:-1:-1;27588:661:0;;;;;;;:::i;23260:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23260:25:0;;;;;;;;;;;;;;26984:527;;;;;;;;;;;;;;;;-1:-1:-1;26984:527:0;;;;;;;;;;;;:::i;:::-;;31556:816;;;;;;;;;;;;;;;;-1:-1:-1;31556:816:0;;;;;;;:::i;28314:787::-;;;;;;;;;;;;;;;;-1:-1:-1;28314:787:0;;;;;;-1:-1:-1;;;;;28314:787:0;;:::i;29440:916::-;;;;;;;;;;;;;;;;-1:-1:-1;29440:916:0;;:::i;32443:377::-;;;;;;;;;;;;;;;;-1:-1:-1;32443:377:0;;:::i;33677:610::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33677:610:0;;;;;;;;;;;;;;;;;:::i;22526:23::-;;;:::i;23653:28::-;;;:::i;25437:1449::-;;;;;;;;;;;;;;;;-1:-1:-1;25437:1449:0;;;-1:-1:-1;;;;;25437:1449:0;;;;;;;;;;;;;;;;;;;;;;:::i;29184:180::-;;;:::i;23732:26::-;;;:::i;33436:233::-;;;;;;;;;;;;;;;;-1:-1:-1;33436:233:0;-1:-1:-1;;;;;33436:233:0;;:::i;23405:64::-;;;;;;;;;;;;;;;;-1:-1:-1;23405:64:0;;;;;;-1:-1:-1;;;;;23405:64:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24128:35;;;:::i;24035:48::-;;;:::i;33327:101::-;;;;;;;;;;;;;;;;-1:-1:-1;33327:101:0;-1:-1:-1;;;;;33327:101:0;;:::i;23231:20::-;;;:::i;30391:1129::-;;;;;;;;;;;;;;;;-1:-1:-1;30391:1129:0;;;;;;;:::i;24180:51::-;24220:11;24180:51;:::o;23321:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23321:26:0;;;;-1:-1:-1;23321:26:0;;;;;;;;;;:::o;23566:34::-;;;;:::o;27588:661::-;27673:7;27710;27697:9;:20;27693:34;;-1:-1:-1;27726:1:0;27719:8;;27693:34;27753:11;;27742:7;:22;27738:504;;27798:11;;27785:9;:24;27781:38;;-1:-1:-1;27818:1:0;27811:8;;27781:38;27851:13;;27838:9;:26;27834:90;;27873:51;27908:15;;27873:30;27889:13;;27873:11;;:15;;:30;;;;:::i;:::-;:34;;:51::i;:::-;27866:58;;;;27834:90;27946:47;27977:15;;27946:26;27962:9;27946:11;;:15;;:26;;;;:::i;27738:504::-;28041:13;;28030:7;:24;28026:38;;-1:-1:-1;28063:1:0;28056:8;;28026:38;28096:13;;28083:9;:26;28079:86;;28118:47;28149:15;;28118:26;28130:13;;28118:7;:11;;:26;;;;:::i;28079:86::-;28214:15;;28187:43;;:22;:7;28199:9;28187:11;:22::i;27738:504::-;27588:661;;;;:::o;23260:25::-;;;-1:-1:-1;;;;;23260:25:0;;:::o;26984:527::-;24996:8;;-1:-1:-1;;;;;24996:8:0;25008:10;24996:22;24988:80;;;;-1:-1:-1;;;24988:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27111:3:::1;27094:13;:20;;27086:70;;;;-1:-1:-1::0;;;27086:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27177:17;:15;:17::i;:::-;27205:21;27229:8;27238:4;27229:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;27258;::::0;::::1;::::0;27229;;-1:-1:-1;27258:14:0::1;;27254:150;;;27307:85;27366:11;27307:36;27327:4;:15;;;27307;;:19;;:36;;;;:::i;:::-;:40:::0;::::1;:85::i;:::-;27289:15;:103:::0;27254:150:::1;27442:11;27414:8;27423:4;27414:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;27494:13;27464:8;27473:4;27464:14;;;;;;;;;;;;;;;;;;:27;;:43;;;;25079:1;26984:527:::0;;;:::o;31556:816::-;31623:15;31641:10;31623:28;;31662:21;31686:8;31695:4;31686:14;;;;;;;;;;;;;;;;31735;;;:8;:14;;;;;;-1:-1:-1;;;;;31735:23:0;;;;;;;;;31777:11;;31686:14;;;;;;;;-1:-1:-1;31777:22:0;-1:-1:-1;31777:22:0;31769:53;;;;;-1:-1:-1;;;31769:53:0;;;;;;;;;;;;-1:-1:-1;;;31769:53:0;;;;;;;;;;;;;;;31833:16;31844:4;31833:10;:16::i;:::-;31860;31879:70;31933:4;:15;;;31879:49;31923:4;31879:39;31895:4;:22;;;31879:4;:11;;;:15;;:39;;;;:::i;:::-;:43;;:49::i;:::-;:53;;:70::i;:::-;31860:89;-1:-1:-1;31964:12:0;;31960:131;;31993:37;32012:7;32021:8;31993:18;:37::i;:::-;32050:29;;;;;;;;-1:-1:-1;;;;;32050:29:0;;;;;;;;;;;;;31960:131;32105:11;;32101:138;;32147:11;;:24;;32163:7;32147:15;:24::i;:::-;32133:38;;32186:10;;:41;;-1:-1:-1;;;;;32186:10:0;32210:7;32219;32186:23;:41::i;:::-;32283:22;;;;32267:11;;:49;;32311:4;;32267:39;;:15;:39::i;:49::-;32249:15;;;:67;32332:32;;;;;;;;32350:4;;-1:-1:-1;;;;;32332:32:0;;;;;;;;;;;;31556:816;;;;;;:::o;28314:787::-;28389:7;28409:21;28433:8;28442:4;28433:14;;;;;;;;;;;;;;;;28482;;;:8;:14;;;;;;;-1:-1:-1;;;;;28482:21:0;;;;;;;;;;;28433:14;;;;;;;;28542:22;;;;28597:10;;:35;;-1:-1:-1;;;28597:35:0;;28626:4;28597:35;;;;;;;;;28433:14;;-1:-1:-1;28482:21:0;;28433:14;28597:10;;;;;:20;;:35;;;;;28433:14;28597:35;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28597:35:0;28665:19;;;;28597:35;;-1:-1:-1;28647:15:0;:37;:57;;;;-1:-1:-1;28688:16:0;;;28647:57;28643:368;;;28721:24;28748:56;28767:4;:19;;;28788:15;28748:18;:56::i;:::-;28721:83;;28819:21;28843:58;28885:15;;28843:37;28864:4;:15;;;28843:16;:20;;:37;;;;:::i;:58::-;28819:82;-1:-1:-1;28936:63:0;28958:40;28986:11;28958:23;28819:82;28976:4;28958:17;:23::i;:40::-;28936:17;;:21;:63::i;:::-;28916:83;;28643:368;;;29028:65;29077:4;:15;;;29028:44;29067:4;29028:34;29044:17;29028:4;:11;;;:15;;:34;;;;:::i;:65::-;29021:72;28314:787;-1:-1:-1;;;;;;;28314:787:0:o;29440:916::-;29492:21;29516:8;29525:4;29516:14;;;;;;;;;;;;;;;;;;29492:38;;29564:4;:19;;;29545:15;:38;29541:77;;29600:7;;;29541:77;29650:10;;:35;;;-1:-1:-1;;;29650:35:0;;29679:4;29650:35;;;;;;29628:19;;-1:-1:-1;;;;;29650:10:0;;:20;;:35;;;;;;;;;;;;;;:10;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29650:35:0;;-1:-1:-1;29700:16:0;29696:107;;-1:-1:-1;29755:15:0;29733:19;;;;:37;29785:7;;29696:107;29818:14;;;;;;29813:138;;29849:14;;;:21;;-1:-1:-1;;29849:21:0;29866:4;29849:21;;;;;;29923:15;;;29903;;:36;;:19;:36::i;:::-;29885:15;:54;29813:138;29965:15;;:19;29961:340;;30001:24;30028:56;30047:4;:19;;;30068:15;30028:18;:56::i;:::-;30001:83;;30099:21;30123:58;30165:15;;30123:37;30144:4;:15;;;30123:16;:20;;:37;;;;:::i;:58::-;30099:82;-1:-1:-1;30221:68:0;30248:40;30276:11;30248:23;30099:82;30266:4;30248:17;:23::i;:40::-;30221:22;;;;;:26;:68::i;:::-;30196:22;;;:93;-1:-1:-1;;29961:340:0;-1:-1:-1;30333:15:0;30311:19;;;;:37;29440:916;;:::o;32443:377::-;32502:21;32526:8;32535:4;32526:14;;;;;;;;;;;;;;;;32575;;;:8;:14;;;;;;32590:10;32575:26;;;;;;;32630:11;;32652:15;;;-1:-1:-1;32678:15:0;;:19;;;;32526:14;;;;;32708:10;;32526:14;;-1:-1:-1;32575:26:0;;32630:11;32708:44;;-1:-1:-1;;;;;32708:10:0;;;;;32630:11;32708:23;:44::i;:::-;32768;;;;;;;;32798:4;;32786:10;;32768:44;;;;;;;;;32443:377;;;;:::o;33677:610::-;24996:8;;-1:-1:-1;;;;;24996:8:0;25008:10;24996:22;24988:80;;;;-1:-1:-1;;;24988:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33813:11:::1;;33827:7;33813:21;33795:15;:39;33791:447;;;33971:6;::::0;-1:-1:-1;;;;;33961:16:0;;::::1;33971:6:::0;::::1;33961:16;;33953:35;;;::::0;;-1:-1:-1;;;33953:35:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33953:35:0;;;;;;;;;;;;;::::1;;34020:8;:15:::0;34003:14:::1;34050:177;34078:6;34072:3;:12;34050:177;;;34112:21;34136:8;34145:3;34136:13;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;34186:10:::0;;34136:13;;-1:-1:-1;;;;;;34176:20:0;;::::1;34186:10:::0;::::1;34176:20;;34168:43;;;::::0;;-1:-1:-1;;;34168:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34168:43:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;34086:5:0::1;;34050:177;;;;33791:447;;34248:31;-1:-1:-1::0;;;;;34248:19:0;::::1;34268:2:::0;34272:6;34248:19:::1;:31::i;:::-;33677:610:::0;;;:::o;22526:23::-;;;-1:-1:-1;;;;;22526:23:0;;:::o;23653:28::-;;;;:::o;25437:1449::-;24996:8;;-1:-1:-1;;;;;24996:8:0;25008:10;24996:22;24988:80;;;;-1:-1:-1;;;24988:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25660:3:::1;25643:13;:20;;25635:70;;;;-1:-1:-1::0;;;25635:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25732:26;25751:6;25732:18;:26::i;:::-;25773:11;25769:61;;;25801:17;:15;:17::i;:::-;25862:13;;25844:15;:31;25840:534;;;25929:20:::0;25925:243:::1;;25988:13;;25970:31;;25925:243;;;26064:13;;26046:15;:31;26042:111;;;26120:13;;26102:31;;26042:111;25840:534;;;26236:20:::0;;;:57:::1;;;26278:15;26260;:33;26236:57;26232:131;;;26332:15;26314:33;;26232:131;26384:15;26431:13;;26412:15;:32;;26411:83;;;;26478:15;26459;:34;;26411:83;26519:255;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;26519:255:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;26519:255:0;;;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;26505:8:::1;:270:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;26505:270:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26505:270:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;;;;;;;26519:255;;-1:-1:-1;26786:93:0::1;;26835:15;::::0;:32:::1;::::0;26855:11;26835:19:::1;:32::i;:::-;26817:15;:50:::0;26786:93:::1;25079:1;25437:1449:::0;;;;;:::o;29184:180::-;29246:8;:15;29229:14;29272:85;29300:6;29294:3;:12;29272:85;;;29330:15;29341:3;29330:10;:15::i;:::-;29308:5;;29272:85;;;;29184:180;:::o;23732:26::-;;;;:::o;33436:233::-;33519:10;;-1:-1:-1;;;;;33519:10:0;33505;:24;33497:61;;;;;-1:-1:-1;;;33497:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33577:25:0;;33569:57;;;;;-1:-1:-1;;;33569:57:0;;;;;;;;;;;;-1:-1:-1;;;33569:57:0;;;;;;;;;;;;;;;33637:10;:24;;-1:-1:-1;;;;;;33637:24:0;-1:-1:-1;;;;;33637:24:0;;;;;;;;;;33436:233::o;23405:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24128:35::-;;;;:::o;24035:48::-;;;;:::o;33327:101::-;24996:8;;-1:-1:-1;;;;;24996:8:0;25008:10;24996:22;24988:80;;;;-1:-1:-1;;;24988:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33400:8:::1;:20:::0;;-1:-1:-1;;;;;;33400:20:0::1;-1:-1:-1::0;;;;;33400:20:0;;;::::1;::::0;;;::::1;::::0;;33327:101::o;23231:20::-;;;-1:-1:-1;;;;;23231:20:0;;:::o;30391:1129::-;30457:15;30475:10;30457:28;;30496:21;30520:8;30529:4;30520:14;;;;;;;;;;;;;;;;30569;;;:8;:14;;;;;;-1:-1:-1;;;;;30569:23:0;;;;;;;;;30520:14;;;;;;;;-1:-1:-1;30603:16:0;30578:4;30603:10;:16::i;:::-;30634:11;;:15;30630:294;;30666:16;30685:70;30739:4;:15;;;30685:49;30729:4;30685:39;30701:4;:22;;;30685:4;:11;;;:15;;:39;;;;:::i;:70::-;30666:89;-1:-1:-1;30774:12:0;;30770:143;;30807:37;30826:7;30835:8;30807:18;:37::i;:::-;30868:29;;;;;;;;-1:-1:-1;;;;;30868:29:0;;;;;;;;;;;;;30770:143;30630:294;;30938:11;;30934:454;;30966:10;;:60;;-1:-1:-1;;;;;30966:10:0;30994:7;31011:4;31018:7;30966:27;:60::i;:::-;31055:11;;:24;;31071:7;31055:15;:24::i;:::-;31041:38;;31099:17;;;;:21;31096:281;;31140:18;31194:41;31229:5;31194:30;31206:4;:17;;;31194:7;:11;;:30;;;;:::i;:41::-;31278:10;;31254;;31181:54;;-1:-1:-1;31254:47:0;;-1:-1:-1;;;;;31254:10:0;;;;31278;31181:54;31254:23;:47::i;:::-;31334:11;;:27;;31350:10;31334:15;:27::i;:::-;31320:41;;-1:-1:-1;31096:281:0;31432:22;;;;31416:11;;:49;;31460:4;;31416:39;;:15;:39::i;:49::-;31398:15;;;:67;31481:31;;;;;;;;31498:4;;-1:-1:-1;;;;;31481:31:0;;;;;;;;;;;;30391:1129;;;;;:::o;6336:158::-;6394:7;6427:1;6422;:6;;6414:49;;;;;-1:-1:-1;;;6414:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6481:5:0;;;6336:158::o;6753:220::-;6811:7;6835:6;6831:20;;-1:-1:-1;6850:1:0;6843:8;;6831:20;6874:5;;;6878:1;6874;:5;:1;6898:5;;;;;:10;6890:56;;;;-1:-1:-1;;;6890:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6964:1;6753:220;-1:-1:-1;;;6753:220:0:o;5874:179::-;5932:7;5964:5;;;5988:6;;;;5980:46;;;;;-1:-1:-1;;;5980:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7451:153;7509:7;7541:1;7537;:5;7529:44;;;;;-1:-1:-1;;;7529:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7595:1;7591;:5;;;;;;;7451:153;-1:-1:-1;;;7451:153:0:o;32938:381::-;33041:6;;:31;;;-1:-1:-1;;;33041:31:0;;33066:4;33041:31;;;;;;33016:22;;-1:-1:-1;;;;;33041:6:0;;:16;;:31;;;;;;;;;;;;;;:6;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33041:31:0;;-1:-1:-1;33087:18:0;;33083:229;;33136:14;33126:7;:24;33122:179;;;33171:6;;:40;;-1:-1:-1;;;;;33171:6:0;33191:3;33196:14;33171:19;:40::i;:::-;33122:179;;;33252:6;;:33;;-1:-1:-1;;;;;33252:6:0;33272:3;33277:7;19116:177;19226:58;;;-1:-1:-1;;;;;19226:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19226:58:0;-1:-1:-1;;;19226:58:0;;;19199:86;;19219:5;;19199:19;:86::i;25096:263::-;25181:8;:15;25164:14;25207:145;25235:6;25229:3;:12;25207:145;;;25296:6;-1:-1:-1;;;;;25273:29:0;:8;25282:3;25273:13;;;;;;;;;;;;;;;;;;;;;:19;-1:-1:-1;;;;;25273:19:0;:29;;25265:75;;;;-1:-1:-1;;;25265:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25243:5;;25207:145;;19301:205;19429:68;;;-1:-1:-1;;;;;19429:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19429:68:0;-1:-1:-1;;;19429:68:0;;;19402:96;;19422:5;;19402:19;:96::i;:::-;19301:205;;;;:::o;21421:761::-;21845:23;21871:69;21899:4;21871:69;;;;;;;;;;;;;;;;;21879:5;-1:-1:-1;;;;;21871:27:0;;;:69;;;;;:::i;:::-;21955:17;;21845:95;;-1:-1:-1;21955:21:0;21951:224;;22097:10;22086:30;;;;;;;;;;;;;;;-1:-1:-1;22086:30:0;22078:85;;;;-1:-1:-1;;;22078:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14177:195;14280:12;14312:52;14334:6;14342:4;14348:1;14351:12;14312:21;:52::i;:::-;14305:59;14177:195;-1:-1:-1;;;;14177:195:0:o;15229:530::-;15356:12;15414:5;15389:21;:30;;15381:81;;;;-1:-1:-1;;;15381:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15481:18;15492:6;15481:10;:18::i;:::-;15473:60;;;;;-1:-1:-1;;;15473:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15607:12;15621:23;15648:6;-1:-1:-1;;;;;15648:11:0;15668:5;15676:4;15648:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15648:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15606:75;;;;15699:52;15717:7;15726:10;15738:12;15699:17;:52::i;11259:422::-;11626:20;11665:8;;;11259:422::o;17769:742::-;17884:12;17913:7;17909:595;;;-1:-1:-1;17944:10:0;17937:17;;17909:595;18058:17;;:21;18054:439;;18321:10;18315:17;18382:15;18369:10;18365:2;18361:19;18354:44;18269:148;18464:12;18457:20;;-1:-1:-1;;;18457:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://20b9904ff34c95a7cd861bdcb2d27525b5f0db79ddc78e44249b3e145f87abd3
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.