Contract Overview
Balance:
0 CLV
CLV Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xef9beef4e8f5fdf6327f24eeeea7f72ad0757e9fcd78fa40175a0a81815a4760 | 0x61185161 | 2711675 | 12 days 13 hrs ago | 0xd134a7d9485c1aac0cbf82718cf6d6e3fd130945 | IN | Create: ERC20FriendlyRewardModuleInfo | 0 CLV | 0.01393824 |
[ Download CSV Export ]
Contract Name:
ERC20FriendlyRewardModuleInfo
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @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 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
/* ERC20BaseRewardModule https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./interfaces/IRewardModule.sol"; /** * @title ERC20 base reward module * * @notice this abstract class implements common ERC20 funding and unlocking * logic, which is inherited by other reward modules. */ abstract contract ERC20BaseRewardModule is IRewardModule { using SafeERC20 for IERC20; // single funding/reward schedule struct Funding { uint256 amount; uint256 shares; uint256 locked; uint256 updated; uint256 start; uint256 duration; } // constants uint256 public constant INITIAL_SHARES_PER_TOKEN = 10**6; uint256 public constant MAX_ACTIVE_FUNDINGS = 16; // funding/reward state fields mapping(address => Funding[]) private _fundings; mapping(address => uint256) private _shares; mapping(address => uint256) private _locked; /** * @notice getter for total token shares */ function totalShares(address token) public view returns (uint256) { return _shares[token]; } /** * @notice getter for total locked token shares */ function lockedShares(address token) public view returns (uint256) { return _locked[token]; } /** * @notice getter for funding schedule struct */ function fundings(address token, uint256 index) public view returns ( uint256 amount, uint256 shares, uint256 locked, uint256 updated, uint256 start, uint256 duration ) { Funding storage f = _fundings[token][index]; return (f.amount, f.shares, f.locked, f.updated, f.start, f.duration); } /** * @param token contract address of reward token * @return number of active funding schedules */ function fundingCount(address token) public view returns (uint256) { return _fundings[token].length; } /** * @notice compute number of unlockable shares for a specific funding schedule * @param token contract address of reward token * @param idx index of the funding * @return the number of unlockable shares */ function unlockable(address token, uint256 idx) public view returns (uint256) { Funding storage funding = _fundings[token][idx]; // funding schedule is in future if (block.timestamp < funding.start) { return 0; } // empty if (funding.locked == 0) { return 0; } // handle zero-duration period or leftover dust from integer division if (block.timestamp >= funding.start + funding.duration) { return funding.locked; } return ((block.timestamp - funding.updated) * funding.shares) / funding.duration; } /** * @notice fund pool by locking up reward tokens for future distribution * @param token contract address of reward token * @param amount number of reward tokens to lock up as funding * @param duration period (seconds) over which funding will be unlocked * @param start time (seconds) at which funding begins to unlock */ function _fund( address token, uint256 amount, uint256 duration, uint256 start ) internal { requireController(); // validate require(amount > 0, "Funding amount must be greater than 0"); require(start >= block.timestamp, "Invalid funding start time"); require(_fundings[token].length < MAX_ACTIVE_FUNDINGS, "Exceeds max funding rounds"); IERC20 rewardToken = IERC20(token); // do transfer of funding uint256 total = rewardToken.balanceOf(address(this)); rewardToken.safeTransferFrom(msg.sender, address(this), amount); uint256 actual = rewardToken.balanceOf(address(this)) - total; // mint shares at current rate uint256 minted = (total > 0) ? (_shares[token] * actual) / total : actual * INITIAL_SHARES_PER_TOKEN; _locked[token] += minted; _shares[token] += minted; // create new funding _fundings[token].push( Funding({ amount: amount, shares: minted, locked: minted, updated: start, start: start, duration: duration }) ); emit RewardsFunded(token, amount, minted, start); } /** * @dev internal function to clean up stale funding schedules * @param token contract address of reward token to clean up */ function _clean(address token) internal { // check for stale funding schedules to expire uint256 removed = 0; uint256 originalSize = _fundings[token].length; for (uint256 i = 0; i < originalSize; i++) { Funding storage funding = _fundings[token][i - removed]; uint256 idx = i - removed; if ( unlockable(token, idx) == 0 && block.timestamp >= funding.start + funding.duration ) { emit RewardsExpired( token, funding.amount, funding.shares, funding.start ); // remove at idx by copying last element here, then popping off last // (we don't care about order) _fundings[token][idx] = _fundings[token][ _fundings[token].length - 1 ]; _fundings[token].pop(); removed++; } } } /** * @dev unlocks reward tokens based on funding schedules * @param token contract addres of reward token * @return shares number of shares unlocked */ function _unlockTokens(address token) internal returns (uint256 shares) { // get unlockable shares for each funding schedule for (uint256 i = 0; i < _fundings[token].length; i++) { uint256 s = unlockable(token, i); Funding storage funding = _fundings[token][i]; if (s > 0) { funding.locked -= s; funding.updated = block.timestamp; shares += s; } } // do unlocking if (shares > 0) { _locked[token] -= shares; emit RewardsUnlocked(token, shares); } } /** * @dev distribute reward tokens to user * @param user address of user receiving rweard * @param token contract address of reward token * @param shares number of shares to be distributed * @return amount number of reward tokens distributed */ function _distribute( address user, address token, uint256 shares ) internal returns (uint256 amount) { // compute reward amount in tokens IERC20 rewardToken = IERC20(token); amount = (rewardToken.balanceOf(address(this)) * shares) / _shares[token]; // update overall reward shares _shares[token] -= shares; // do reward rewardToken.safeTransfer(user, amount); emit RewardsDistributed(user, token, amount, shares); } }
/* ERC20FriendlyRewardModule https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; import "./interfaces/IRewardModule.sol"; import "./interfaces/IEvents.sol"; import "./ERC20BaseRewardModule.sol"; import "./GysrUtils.sol"; /** * @title ERC20 friendly reward module * * @notice this reward module distributes a single ERC20 token as the staking reward. * It is designed to offer simple and predictable reward mechanics. * * @dev rewards are immutable once earned, and can be claimed by the user at * any time. The module can be configured with a linear vesting schedule to * incentivize longer term staking. The user can spend GYSR at the time of * staking to receive a multiplier on their earning rate. */ contract ERC20FriendlyRewardModule is ERC20BaseRewardModule { using GysrUtils for uint256; // constants uint256 public constant FULL_VESTING = 10**DECIMALS; // single stake by user struct Stake { uint256 shares; uint256 gysr; uint256 bonus; uint256 rewardTally; uint256 timestamp; } // mapping of user to all of their stakes mapping(address => Stake[]) public stakes; // total shares without GYSR multiplier applied uint256 public totalRawStakingShares; // total shares with GYSR multiplier applied uint256 public totalStakingShares; // counter representing the current rate of rewards per share uint256 public rewardsPerStakedShare; // value to keep track of earnings to be put back into the pool uint256 public rewardDust; // timestamp of last update uint256 public lastUpdated; // minimum ratio of earned rewards measured against FULL_VESTING (i.e. 2.5 * 10^17 would be 25%) uint256 public immutable vestingStart; // length of time in seconds until the user receives a FULL_VESTING (1x) multiplier on rewards uint256 public immutable vestingPeriod; IERC20 private immutable _token; address private immutable _factory; /** * @param token_ the token that will be rewarded * @param vestingStart_ minimum ratio earned * @param vestingPeriod_ period (in seconds) over which investors vest to 100% * @param factory_ address of module factory */ constructor( address token_, uint256 vestingStart_, uint256 vestingPeriod_, address factory_ ) { require(vestingStart_ <= FULL_VESTING, "Invalid vesting start value"); _token = IERC20(token_); _factory = factory_; vestingStart = vestingStart_; vestingPeriod = vestingPeriod_; lastUpdated = block.timestamp; } /** * @inheritdoc IRewardModule */ function tokens() external view override returns (address[] memory tokens_) { tokens_ = new address[](1); tokens_[0] = address(_token); } /** * @inheritdoc IRewardModule */ function factory() external view override returns (address) { return _factory; } /** * @inheritdoc IRewardModule */ function balances() external view override returns (uint256[] memory balances_) { balances_ = new uint256[](1); balances_[0] = totalLocked(); } /** * @inheritdoc IRewardModule */ function usage() external view override returns (uint256) { return _usage(); } /** * @inheritdoc IRewardModule */ function stake( address account, address user, uint256 shares, bytes calldata data ) external override onlyOwner returns (uint256, uint256) { _update(); return _stake(account, user, shares, data); } /** * @notice internal implementation of stake method * @param account address of staking account * @param user address of user * @param shares number of new shares minted * @param data addtional data * @return amount of gysr spent * @return amount of gysr vested */ function _stake( address account, address user, uint256 shares, bytes calldata data ) internal returns (uint256, uint256) { require(data.length == 0 || data.length == 32, "Invalid calldata"); uint256 gysr; if (data.length == 32) { assembly { gysr := calldataload(164) } } uint256 bonus = gysr.gysrBonus(shares, totalRawStakingShares + shares, _usage()); if (gysr > 0) { emit GysrSpent(user, gysr); } // update user staking info stakes[account].push( Stake(shares, gysr, bonus, rewardsPerStakedShare, block.timestamp) ); // add new shares to global totals totalRawStakingShares += shares; totalStakingShares += (shares * bonus) / 10**DECIMALS; return (gysr, 0); } /** * @inheritdoc IRewardModule */ function unstake( address account, address user, uint256 shares, bytes calldata ) external override onlyOwner returns (uint256, uint256) { _update(); return _unstake(account, user, shares); } /** * @notice internal implementation of unstake * @param account address of staking account * @param user address of user * @param shares number of shares burned * @return amount of gysr spent * @return amount of gysr vested */ function _unstake( address account, address user, uint256 shares ) internal returns (uint256, uint256) { // redeem first-in-last-out uint256 sharesLeftToBurn = shares; Stake[] storage userStakes = stakes[account]; uint256 rewardAmount; uint256 gysrVested; uint256 preVestingRewards; uint256 timeVestingCoeff; while (sharesLeftToBurn > 0) { Stake storage lastStake = userStakes[userStakes.length - 1]; require(lastStake.timestamp < block.timestamp, "Unstaking can't be done in same block with staking"); if (lastStake.shares <= sharesLeftToBurn) { // fully redeem a past stake preVestingRewards = _rewardForStakedShares( lastStake.shares, lastStake.bonus, lastStake.rewardTally ); timeVestingCoeff = timeVestingCoefficient(lastStake.timestamp); rewardAmount += (preVestingRewards * timeVestingCoeff) / 10**DECIMALS; rewardDust += (preVestingRewards * (FULL_VESTING - timeVestingCoeff)) / 10**DECIMALS; totalStakingShares -= (lastStake.shares * lastStake.bonus) / 10**DECIMALS; sharesLeftToBurn -= lastStake.shares; gysrVested += lastStake.gysr; userStakes.pop(); } else { // partially redeem a past stake preVestingRewards = _rewardForStakedShares( sharesLeftToBurn, lastStake.bonus, lastStake.rewardTally ); timeVestingCoeff = timeVestingCoefficient(lastStake.timestamp); rewardAmount += (preVestingRewards * timeVestingCoeff) / 10**DECIMALS; rewardDust += (preVestingRewards * (FULL_VESTING - timeVestingCoeff)) / 10**DECIMALS; totalStakingShares -= (sharesLeftToBurn * lastStake.bonus) / 10**DECIMALS; uint256 partialVested = (sharesLeftToBurn * lastStake.gysr) / lastStake.shares; gysrVested += partialVested; lastStake.shares -= sharesLeftToBurn; lastStake.gysr -= partialVested; sharesLeftToBurn = 0; } } // update global totals totalRawStakingShares -= shares; if (rewardAmount > 0) { _distribute(user, address(_token), rewardAmount); } if (gysrVested > 0) { emit GysrVested(user, gysrVested); } return (0, gysrVested); } /** * @inheritdoc IRewardModule */ function claim( address account, address user, uint256 shares, bytes calldata data ) external override onlyOwner returns (uint256 spent, uint256 vested) { _update(); (, vested) = _unstake(account, user, shares); (spent, ) = _stake(account, user, shares, data); } /** * @dev compute rewards owed for a specific stake * @param shares number of shares to calculate rewards for * @param bonus associated bonus for this stake * @param rewardTally associated rewardTally for this stake * @return reward for these staked shares */ function _rewardForStakedShares( uint256 shares, uint256 bonus, uint256 rewardTally ) internal view returns (uint256) { return ((((rewardsPerStakedShare - rewardTally) * shares) / 10**DECIMALS) * // counteract rewardsPerStakedShare coefficient bonus) / 10**DECIMALS; // counteract bonus coefficient } /** * @notice compute vesting multiplier as function of staking time * @param time epoch time at which the tokens were staked * @return vesting multiplier rewards */ function timeVestingCoefficient(uint256 time) public view returns (uint256) { if (vestingPeriod == 0) return FULL_VESTING; uint256 stakeTime = block.timestamp - time; if (stakeTime > vestingPeriod) return FULL_VESTING; return vestingStart + (stakeTime * (FULL_VESTING - vestingStart)) / vestingPeriod; } /** * @inheritdoc IRewardModule */ function update(address) external override { requireOwner(); _update(); } /** * @notice method called ad hoc to clean up and perform additional accounting * @dev will only be called manually, and should not contain any essential logic */ function clean() external override { requireOwner(); _update(); _clean(address(_token)); } /** * @notice fund Geyser by locking up reward tokens for distribution * @param amount number of reward tokens to lock up as funding * @param duration period (seconds) over which funding will be unlocked */ function fund(uint256 amount, uint256 duration) external { _update(); _fund(address(_token), amount, duration, block.timestamp); } /** * @notice fund Geyser by locking up reward tokens for distribution * @param amount number of reward tokens to lock up as funding * @param duration period (seconds) over which funding will be unlocked * @param start time (seconds) at which funding begins to unlock */ function fund( uint256 amount, uint256 duration, uint256 start ) external { _update(); _fund(address(_token), amount, duration, start); } /** * @dev updates the internal accounting for rewards per staked share * retrieves unlocked tokens and adds on any unvested rewards from the last unstake operation */ function _update() private { lastUpdated = block.timestamp; if (totalStakingShares == 0) { rewardsPerStakedShare = 0; return; } uint256 rewardsToUnlock = _unlockTokens(address(_token)) + rewardDust; rewardDust = 0; // global accounting rewardsPerStakedShare += (rewardsToUnlock * 10**DECIMALS) / totalStakingShares; } /** * @return total number of locked reward tokens */ function totalLocked() public view returns (uint256) { if (lockedShares(address(_token)) == 0) { return 0; } return (_token.balanceOf(address(this)) * lockedShares(address(_token))) / totalShares(address(_token)); } /** * @return total number of unlocked reward tokens */ function totalUnlocked() public view returns (uint256) { uint256 unlockedShares = totalShares(address(_token)) - lockedShares(address(_token)); if (unlockedShares == 0) { return 0; } return (_token.balanceOf(address(this)) * unlockedShares) / totalShares(address(_token)); } /** * @dev internal helper to get current usage ratio * @return GYSR usage ratio */ function _usage() private view returns (uint256) { if (totalStakingShares == 0) { return 0; } return ((totalStakingShares - totalRawStakingShares) * 10**DECIMALS) / totalStakingShares; } /** * @param addr address of interest * @return number of active stakes for user */ function stakeCount(address addr) public view returns (uint256) { return stakes[addr].length; } }
/* GYSRUtils https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; import "./MathUtils.sol"; /** * @title GYSR utilities * * @notice this library implements utility methods for the GYSR multiplier * and spending mechanics */ library GysrUtils { using MathUtils for int128; // constants uint256 public constant DECIMALS = 18; uint256 public constant GYSR_PROPORTION = 10**(DECIMALS - 2); // 1% /** * @notice compute GYSR bonus as a function of usage ratio, stake amount, * and GYSR spent * @param gysr number of GYSR token applied to bonus * @param amount number of tokens or shares to unstake * @param total number of tokens or shares in overall pool * @param ratio usage ratio from 0 to 1 * @return multiplier value */ function gysrBonus( uint256 gysr, uint256 amount, uint256 total, uint256 ratio ) internal pure returns (uint256) { if (amount == 0) { return 0; } if (total == 0) { return 0; } if (gysr == 0) { return 10**DECIMALS; } // scale GYSR amount with respect to proportion uint256 portion = (GYSR_PROPORTION * total) / 10**DECIMALS; if (amount > portion) { gysr = (gysr * portion) / amount; } // 1 + gysr / (0.01 + ratio) uint256 x = 2**64 + (2**64 * gysr) / (10**(DECIMALS - 2) + ratio); return 10**DECIMALS + (uint256(int256(int128(uint128(x)).logbase10())) * 10**DECIMALS) / 2**64; } }
/* ERC20FriendlyRewardModuleInfo https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "../interfaces/IRewardModule.sol"; import "../ERC20FriendlyRewardModule.sol"; import "../GysrUtils.sol"; /** * @title ERC20 friendly reward module info library * * @notice this library provides read-only convenience functions to query * additional information about the ERC20FriendlyRewardModule contract. */ library ERC20FriendlyRewardModuleInfo { using GysrUtils for uint256; /** * @notice convenience function to get token metadata in a single call * @param module address of reward module * @return address * @return name * @return symbol * @return decimals */ function token(address module) public view returns ( address, string memory, string memory, uint8 ) { IRewardModule m = IRewardModule(module); IERC20Metadata tkn = IERC20Metadata(m.tokens()[0]); return (address(tkn), tkn.name(), tkn.symbol(), tkn.decimals()); } /** * @notice preview estimated rewards * @param module address of reward module * @param addr account address of interest for preview * @param shares number of shares that would be unstaked * @return estimated reward * @return estimated time multiplier weighted by rewards * @return estimated gysr multiplier weighted by rewards */ function rewards( address module, address addr, uint256 shares ) public view returns ( uint256, uint256, uint256 ) { require(shares > 0, "frmi1"); ERC20FriendlyRewardModule m = ERC20FriendlyRewardModule(module); uint256 reward; uint256 rawSum; uint256 bonusSum; uint256 i = m.stakeCount(addr); // redeem first-in-last-out while (shares > 0) { require(i > 0, "frmi2"); i -= 1; (uint256 s, , , , ) = m.stakes(addr, i); // only redeem partial stake if more shares left than needed to burn s = s <= shares ? s : shares; uint256 r; { r = rewardsPerStakedShare(module); } { (, , , uint256 tally, ) = m.stakes(addr, i); r = ((r - tally) * s) / 1e18; rawSum += r; } { (, , uint256 bonus, , ) = m.stakes(addr, i); r = (r * bonus) / 1e18; bonusSum += r; } { (, , , , uint256 time) = m.stakes(addr, i); r = (r * m.timeVestingCoefficient(time)) / 1e18; } reward += r; shares -= s; } return ( reward / 1e6, reward > 0 ? (reward * 1e18) / bonusSum : 0, reward > 0 ? (bonusSum * 1e18) / rawSum : 0 ); } /** * @notice compute reward shares to be unlocked on the next update * @param module address of reward module * @return estimated unlockable rewards */ function unlockable(address module) public view returns (uint256) { ERC20FriendlyRewardModule m = ERC20FriendlyRewardModule(module); address tkn = m.tokens()[0]; if (m.lockedShares(tkn) == 0) { return 0; } uint256 sharesToUnlock = 0; for (uint256 i = 0; i < m.fundingCount(tkn); i++) { sharesToUnlock = sharesToUnlock + m.unlockable(tkn, i); } return sharesToUnlock; } /** * @notice compute effective unlocked rewards * @param module address of reward module * @return estimated current unlocked rewards */ function unlocked(address module) public view returns (uint256) { ERC20FriendlyRewardModule m = ERC20FriendlyRewardModule(module); IERC20Metadata tkn = IERC20Metadata(m.tokens()[0]); uint256 totalShares = m.totalShares(address(tkn)); if (totalShares == 0) { return 0; } uint256 shares = unlockable(module); uint256 tokens = (shares * tkn.balanceOf(module)) / totalShares; return m.totalUnlocked() + tokens; } /** * @notice compute effective rewards per staked share * @param module module contract address * @return estimated rewards per staked share */ function rewardsPerStakedShare(address module) public view returns (uint256) { ERC20FriendlyRewardModule m = ERC20FriendlyRewardModule(module); if (m.totalStakingShares() == 0) { return 0; } uint256 rewardsToUnlock = unlockable(module) + m.rewardDust(); return m.rewardsPerStakedShare() + (rewardsToUnlock * 1e18) / m.totalStakingShares(); } /** * @notice compute estimated GYSR bonus for stake * @param module module contract address * @param shares number of shares that would be staked * @param gysr number of GYSR tokens that would be applied to stake * @return estimated GYSR multiplier */ function gysrBonus( address module, uint256 shares, uint256 gysr ) public view returns (uint256) { ERC20FriendlyRewardModule m = ERC20FriendlyRewardModule(module); return gysr.gysrBonus( shares, m.totalRawStakingShares() + shares, m.usage() ); } }
/* IEvents https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; /** * @title GYSR event system * * @notice common interface to define GYSR event system */ interface IEvents { // staking event Staked( address indexed user, address indexed token, uint256 amount, uint256 shares ); event Unstaked( address indexed user, address indexed token, uint256 amount, uint256 shares ); event Claimed( address indexed user, address indexed token, uint256 amount, uint256 shares ); // rewards event RewardsDistributed( address indexed user, address indexed token, uint256 amount, uint256 shares ); event RewardsFunded( address indexed token, uint256 amount, uint256 shares, uint256 timestamp ); event RewardsUnlocked(address indexed token, uint256 shares); event RewardsExpired( address indexed token, uint256 amount, uint256 shares, uint256 timestamp ); // gysr event GysrSpent(address indexed user, uint256 amount); event GysrVested(address indexed user, uint256 amount); event GysrWithdrawn(uint256 amount); }
/* IRewardModule https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IEvents.sol"; import "../OwnerController.sol"; /** * @title Reward module interface * * @notice this contract defines the common interface that any reward module * must implement to be compatible with the modular Pool architecture. */ abstract contract IRewardModule is OwnerController, IEvents { // constants uint256 public constant DECIMALS = 18; /** * @return array of reward tokens */ function tokens() external view virtual returns (address[] memory); /** * @return array of reward token balances */ function balances() external view virtual returns (uint256[] memory); /** * @return GYSR usage ratio for reward module */ function usage() external view virtual returns (uint256); /** * @return address of module factory */ function factory() external view virtual returns (address); /** * @notice perform any necessary accounting for new stake * @param account address of staking account * @param user address of user * @param shares number of new shares minted * @param data addtional data * @return amount of gysr spent * @return amount of gysr vested */ function stake( address account, address user, uint256 shares, bytes calldata data ) external virtual returns (uint256, uint256); /** * @notice reward user and perform any necessary accounting for unstake * @param account address of staking account * @param user address of user * @param shares number of shares burned * @param data additional data * @return amount of gysr spent * @return amount of gysr vested */ function unstake( address account, address user, uint256 shares, bytes calldata data ) external virtual returns (uint256, uint256); /** * @notice reward user and perform and necessary accounting for existing stake * @param account address of staking account * @param user address of user * @param shares number of shares being claimed against * @param data addtional data * @return amount of gysr spent * @return amount of gysr vested */ function claim( address account, address user, uint256 shares, bytes calldata data ) external virtual returns (uint256, uint256); /** * @notice method called by anyone to update accounting * @param user address of user for update * @dev will only be called ad hoc and should not contain essential logic */ function update(address user) external virtual; /** * @notice method called by owner to clean up and perform additional accounting * @dev will only be called ad hoc and should not contain any essential logic */ function clean() external virtual; }
/* MathUtils https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: BSD-4-Clause */ pragma solidity 0.8.4; /** * @title Math utilities * * @notice this library implements various logarithmic math utilies which support * other contracts and specifically the GYSR multiplier calculation * * @dev h/t https://github.com/abdk-consulting/abdk-libraries-solidity */ library MathUtils { /** * @notice calculate binary logarithm of x * * @param x signed 64.64-bit fixed point number, require x > 0 * @return signed 64.64-bit fixed point number */ function logbase2(int128 x) internal pure returns (int128) { unchecked { require(x > 0); int256 msb = 0; int256 xc = x; if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; } if (xc >= 0x100000000) { xc >>= 32; msb += 32; } if (xc >= 0x10000) { xc >>= 16; msb += 16; } if (xc >= 0x100) { xc >>= 8; msb += 8; } if (xc >= 0x10) { xc >>= 4; msb += 4; } if (xc >= 0x4) { xc >>= 2; msb += 2; } if (xc >= 0x2) msb += 1; // No need to shift xc anymore int256 result = (msb - 64) << 64; uint256 ux = uint256(int256(x)) << uint256(127 - msb); for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) { ux *= ux; uint256 b = ux >> 255; ux >>= 127 + b; result += bit * int256(b); } return int128(result); } } /** * @notice calculate natural logarithm of x * @dev magic constant comes from ln(2) * 2^128 -> hex * @param x signed 64.64-bit fixed point number, require x > 0 * @return signed 64.64-bit fixed point number */ function ln(int128 x) internal pure returns (int128) { unchecked { require(x > 0); return int128( int256( (uint256(int256(logbase2(x))) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF) >> 128 ) ); } } /** * @notice calculate logarithm base 10 of x * @dev magic constant comes from log10(2) * 2^128 -> hex * @param x signed 64.64-bit fixed point number, require x > 0 * @return signed 64.64-bit fixed point number */ function logbase10(int128 x) internal pure returns (int128) { require(x > 0); return int128( int256( (uint256(int256(logbase2(x))) * 0x4d104d427de7fce20a6e420e02236748) >> 128 ) ); } // wrapper functions to allow testing function testlogbase2(int128 x) public pure returns (int128) { return logbase2(x); } function testlogbase10(int128 x) public pure returns (int128) { return logbase10(x); } }
/* OwnerController https://github.com/FanbaseEU/Staking_Ethereum_SmartContracts SPDX-License-Identifier: MIT */ pragma solidity 0.8.4; /** * @title Owner controller * * @notice this base contract implements an owner-controller access model. * * @dev the contract is an adapted version of the OpenZeppelin Ownable contract. * It allows the owner to designate an additional account as the controller to * perform restricted operations. * * Other changes include supporting role verification with a require method * in addition to the modifier option, and removing some unneeded functionality. * * Original contract here: * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol */ contract OwnerController { address private _owner; address private _controller; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); event ControlTransferred( address indexed previousController, address indexed newController ); constructor() { _owner = msg.sender; _controller = msg.sender; emit OwnershipTransferred(address(0), _owner); emit ControlTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Returns the address of the current controller. */ function controller() public view returns (address) { return _controller; } /** * @dev Modifier that throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == msg.sender, "Only owner can perform this action"); _; } /** * @dev Modifier that throws if called by any account other than the controller. */ modifier onlyController() { require(_controller == msg.sender, "Only controller can perform this action"); _; } /** * @dev Throws if called by any account other than the owner. */ function requireOwner() internal view { require(_owner == msg.sender, "Only owner can perform this action"); } /** * @dev Throws if called by any account other than the controller. */ function requireController() internal view { require(_controller == msg.sender, "Only controller can perform this action"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). This can * include renouncing ownership by transferring to the zero address. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual { requireOwner(); require(newOwner != address(0), "New owner address can't be zero"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Transfers control of the contract to a new account (`newController`). * Can only be called by the owner. */ function transferControl(address newController) public virtual { requireOwner(); require(newController != address(0), "New controller address can't be zero"); emit ControlTransferred(_controller, newController); _controller = newController; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"module","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"gysr","type":"uint256"}],"name":"gysrBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"rewardsPerStakedShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"unlockable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"module","type":"address"}],"name":"unlocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61185161003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061007c5760003560e01c8063979129c51161005a578063979129c5146100f8578063d1846d0c1461010b578063e97f80eb1461011e57600080fd5b8063325f733f1461008157806363497dc7146100a75780636d46a1db146100d5575b600080fd5b61009461008f366004611341565b610131565b6040519081526020015b60405180910390f35b6100ba6100b5366004611364565b61034d565b6040805193845260208401929092529082015260600161009e565b6100e86100e3366004611341565b610891565b60405161009e94939291906115b7565b610094610106366004611341565b610aaa565b610094610119366004611341565b610d53565b61009461012c3660046113a4565b610fe8565b600080829050806001600160a01b03166370c6a17e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561017057600080fd5b505afa158015610184573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101a89190611513565b6101b55750600092915050565b6000816001600160a01b0316631054b6706040518163ffffffff1660e01b815260040160206040518083038186803b1580156101f057600080fd5b505afa158015610204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102289190611513565b61023185610aaa565b61023b9190611631565b9050816001600160a01b03166370c6a17e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561027657600080fd5b505afa15801561028a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ae9190611513565b6102c082670de0b6b3a7640000611756565b6102ca9190611649565b826001600160a01b031663a049820a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561030357600080fd5b505afa158015610317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033b9190611513565b6103459190611631565b949350505050565b60008060008084116103a65760405162461bcd60e51b815260206004820152600560248201527f66726d693100000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f33060d900000000000000000000000000000000000000000000000000000000081526001600160a01b0386811660048301528791600091829182918291908616906333060d909060240160206040518083038186803b15801561040c57600080fd5b505afa158015610420573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104449190611513565b90505b8815610818576000811161049d5760405162461bcd60e51b815260206004820152600560248201527f66726d6932000000000000000000000000000000000000000000000000000000604482015260640161039d565b6104a8600182611775565b60405163584b62a160e01b81526001600160a01b038c811660048301526024820183905291925060009187169063584b62a19060440160a06040518083038186803b1580156104f657600080fd5b505afa15801561050a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052e919061152b565b505050509050898111156105425789610544565b805b905060006105518d610131565b60405163584b62a160e01b81526001600160a01b038e811660048301526024820186905291925060009189169063584b62a19060440160a06040518083038186803b15801561059f57600080fd5b505afa1580156105b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d7919061152b565b509350505050670de0b6b3a76400008382846105f39190611775565b6105fd9190611756565b6106079190611649565b91506106138287611631565b60405163584b62a160e01b81526001600160a01b038f8116600483015260248201879052919750600092509089169063584b62a19060440160a06040518083038186803b15801561066357600080fd5b505afa158015610677573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069b919061152b565b505092505050670de0b6b3a764000081836106b69190611756565b6106c09190611649565b91506106cc8286611631565b60405163584b62a160e01b81526001600160a01b038f8116600483015260248201879052919650600092509089169063584b62a19060440160a06040518083038186803b15801561071c57600080fd5b505afa158015610730573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610754919061152b565b945050505050670de0b6b3a7640000886001600160a01b031663cecc46c8836040518263ffffffff1660e01b815260040161079191815260200190565b60206040518083038186803b1580156107a957600080fd5b505afa1580156107bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e19190611513565b6107eb9084611756565b6107f59190611649565b915061080390508187611631565b955061080f828c611775565b9a505050610447565b610825620f424085611649565b60008511610834576000610851565b8261084786670de0b6b3a7640000611756565b6108519190611649565b6000861161086057600061087d565b8461087385670de0b6b3a7640000611756565b61087d9190611649565b975097509750505050505093509350939050565b60006060806000808590506000816001600160a01b0316639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b1580156108d757600080fd5b505afa1580156108eb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091391908101906113d8565b60008151811061093357634e487b7160e01b600052603260045260246000fd5b6020026020010151905080816001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b15801561097757600080fd5b505afa15801561098b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109b3919081019061148c565b826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156109ec57600080fd5b505afa158015610a00573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a28919081019061148c565b836001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610a6157600080fd5b505afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a99919061156a565b955095509550955050509193509193565b6000808290506000816001600160a01b0316639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610aeb57600080fd5b505afa158015610aff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b2791908101906113d8565b600081518110610b4757634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fe336ac440000000000000000000000000000000000000000000000000000000081526001600160a01b0380831660048301529192509083169063e336ac449060240160206040518083038186803b158015610bb057600080fd5b505afa158015610bc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be89190611513565b610bf6575060009392505050565b6000805b6040517f04003d5b0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301528516906304003d5b9060240160206040518083038186803b158015610c5457600080fd5b505afa158015610c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8c9190611513565b811015610d4a576040517f3f265ddb0000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201839052851690633f265ddb9060440160206040518083038186803b158015610cf457600080fd5b505afa158015610d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2c9190611513565b610d369083611631565b915080610d42816117bc565b915050610bfa565b50949350505050565b6000808290506000816001600160a01b0316639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610d9457600080fd5b505afa158015610da8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dd091908101906113d8565b600081518110610df057634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fbf6b874e0000000000000000000000000000000000000000000000000000000081526001600160a01b03808316600483015291925060009184169063bf6b874e9060240160206040518083038186803b158015610e5b57600080fd5b505afa158015610e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e939190611513565b905080610ea557506000949350505050565b6000610eb086610aaa565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301529192506000918491908616906370a082319060240160206040518083038186803b158015610f1357600080fd5b505afa158015610f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4b9190611513565b610f559084611756565b610f5f9190611649565b905080856001600160a01b031663a779d0806040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9b57600080fd5b505afa158015610faf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd39190611513565b610fdd9190611631565b979650505050505050565b6000808490506110e88485836001600160a01b031663221826986040518163ffffffff1660e01b815260040160206040518083038186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110649190611513565b61106e9190611631565b836001600160a01b0316636d811e716040518163ffffffff1660e01b815260040160206040518083038186803b1580156110a757600080fd5b505afa1580156110bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110df9190611513565b869291906110f1565b95945050505050565b60008361110057506000610345565b8261110d57506000610345565b846111255761111e6012600a6116ac565b9050610345565b60006111336012600a6116ac565b8461114060026012611775565b61114b90600a6116ac565b6111559190611756565b61115f9190611649565b90508085111561118157846111748288611756565b61117e9190611649565b95505b60008361119060026012611775565b61119b90600a6116ac565b6111a59190611631565b6111b88868010000000000000000611756565b6111c29190611649565b6111d59068010000000000000000611631565b9050680100000000000000006111ed6012600a6116ac565b6111f983600f0b61121c565b600f0b6112069190611756565b6112109190611649565b610fd36012600a6116ac565b60008082600f0b1361122d57600080fd5b60806112388361125d565b61125590600f0b6f4d104d427de7fce20a6e420e02236748611756565b901c92915050565b60008082600f0b1361126e57600080fd5b6000600f83900b68010000000000000000811261128d576040918201911d5b64010000000081126112a1576020918201911d5b6201000081126112b3576010918201911d5b61010081126112c4576008918201911d5b601081126112d4576004918201911d5b600481126112e4576002918201911d5b600281126112f3576001820191505b603f19820160401b600f85900b607f8490031b6780000000000000005b60008113156113365790800260ff81901c8281029390930192607f011c9060011d611310565b509095945050505050565b600060208284031215611352578081fd5b813561135d81611803565b9392505050565b600080600060608486031215611378578182fd5b833561138381611803565b9250602084013561139381611803565b929592945050506040919091013590565b6000806000606084860312156113b8578283fd5b83356113c381611803565b95602085013595506040909401359392505050565b600060208083850312156113ea578182fd5b825167ffffffffffffffff80821115611401578384fd5b818501915085601f830112611414578384fd5b815181811115611426576114266117ed565b8060051b9150611437848301611600565b8181528481019084860184860187018a1015611451578788fd5b8795505b8386101561147f578051945061146a85611803565b84835260019590950194918601918601611455565b5098975050505050505050565b60006020828403121561149d578081fd5b815167ffffffffffffffff808211156114b4578283fd5b818401915084601f8301126114c7578283fd5b8151818111156114d9576114d96117ed565b6114ec601f8201601f1916602001611600565b9150808252856020828501011115611502578384fd5b610d4a81602084016020860161178c565b600060208284031215611524578081fd5b5051919050565b600080600080600060a08688031215611542578081fd5b5050835160208501516040860151606087015160809097015192989197509594509092509050565b60006020828403121561157b578081fd5b815160ff8116811461135d578182fd5b600081518084526115a381602086016020860161178c565b601f01601f19169290920160200192915050565b6001600160a01b03851681526080602082015260006115d9608083018661158b565b82810360408401526115eb818661158b565b91505060ff8316606083015295945050505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611629576116296117ed565b604052919050565b60008219821115611644576116446117d7565b500190565b60008261166457634e487b7160e01b81526012600452602481fd5b500490565b600181815b808511156116a457816000190482111561168a5761168a6117d7565b8085161561169757918102915b93841c939080029061166e565b509250929050565b600061135d83836000826116c257506001611750565b816116cf57506000611750565b81600181146116e557600281146116ef5761170b565b6001915050611750565b60ff841115611700576117006117d7565b50506001821b611750565b5060208310610133831016604e8410600b841016171561172e575081810a611750565b6117388383611669565b806000190482111561174c5761174c6117d7565b0290505b92915050565b6000816000190483118215151615611770576117706117d7565b500290565b600082821015611787576117876117d7565b500390565b60005b838110156117a757818101518382015260200161178f565b838111156117b6576000848401525b50505050565b60006000198214156117d0576117d06117d7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461181857600080fd5b5056fea264697066735822122008756a5c4d2c9854039a2cf66bb9618c4280f54a0bdb14241c48975649e561a564736f6c63430008040033
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.