Contract
0xee376e38198E42f7fABf03856039805a45292014
8
Contract Overview
My Name Tag:
Not Available
[ Download CSV Export ]
Contract Name:
FlashBackLM
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract FlashBackLM is Ownable { using SafeERC20 for IERC20; address public immutable stakingTokenAddress; address public immutable rewardTokenAddress; uint256 public immutable minimumStakeDuration; uint256 public immutable maximumStakeDuration; uint256 public totalReservedRewards; uint256 public totalLockedAmount; address public forfeitRewardAddress = 0x8603FfE7B00CCd759f28aBfE448454A24cFba581; // We have opted to make the below manually updatable uint256 public maxAPR = 1; uint256 public flashInLP = 1; // The total number of Flash in the liquidity pool uint256 public lpTotalSupply = 1; // The total supply of LP tokens struct StakeStruct { address stakerAddress; uint256 stakedAmount; uint256 reservedReward; uint256 stakeStartTs; uint256 stakeDuration; bool active; } mapping(uint256 => StakeStruct) public stakes; uint256 public stakeCount = 0; event Staked(uint256 stakeId, uint256 _amount, uint256 _duration); event Unstaked(uint256 stakeId, uint256 _reward, uint256 _rewardForfeited); event ForfeitRewardAddressChange(address _forfeitRewardAddress); event ParameterChange(uint256 _newMaxAPR, uint256 _newFlashInLP, uint256 _newLpTotalSupply); constructor( address _stakingTokenAddress, address _rewardTokenAddress, uint256 _minimumStakeDuration, uint256 _maximumStakeDuration ) public { stakingTokenAddress = _stakingTokenAddress; rewardTokenAddress = _rewardTokenAddress; minimumStakeDuration = _minimumStakeDuration; maximumStakeDuration = _maximumStakeDuration; require(stakingTokenAddress != rewardTokenAddress); } function stake( uint256 _amount, uint256 _duration, uint256 _minimumReward ) external returns (uint256) { require(msg.sender != 0x5089722613C2cCEe071C39C59e9889641f435F15, "BLACKLISTED ADDRESS"); require(msg.sender != 0x8603FfE7B00CCd759f28aBfE448454A24cFba581, "BLACKLISTED ADDRESS"); uint256 reward = calculateReward(_amount, _duration); require(reward >= _minimumReward, "MINIMUM REWARD NOT MET"); // Transfer tokens from user into contract IERC20(stakingTokenAddress).safeTransferFrom(msg.sender, address(this), _amount); // Reserve the reward amount totalReservedRewards = totalReservedRewards + reward; totalLockedAmount = totalLockedAmount + _amount; // Store stake info stakeCount = stakeCount + 1; stakes[stakeCount] = StakeStruct(msg.sender, _amount, reward, block.timestamp, _duration, true); emit Staked(stakeCount, _amount, _duration); return stakeCount; } function unstake(uint256 _stakeId) external { StakeStruct memory p = stakes[_stakeId]; // Determine if the stake exists require(p.active == true, "INVALID STAKE"); require(p.stakerAddress == msg.sender, "NOT OWNER OF STAKE"); require(block.timestamp > (p.stakeStartTs + minimumStakeDuration), "DURATION < MINIMUM"); // Determine whether stake ended or user is unstaking early bool unstakedEarly = (p.stakeStartTs + p.stakeDuration) > block.timestamp; totalReservedRewards = totalReservedRewards - p.reservedReward; totalLockedAmount = totalLockedAmount - p.stakedAmount; // Transfer back originally staked tokens and reward (if duration ended) if (unstakedEarly) { IERC20(stakingTokenAddress).safeTransfer(msg.sender, p.stakedAmount); IERC20(rewardTokenAddress).safeTransfer(forfeitRewardAddress, p.reservedReward); emit Unstaked(_stakeId, 0, p.reservedReward); } else { IERC20(stakingTokenAddress).safeTransfer(msg.sender, p.stakedAmount); IERC20(rewardTokenAddress).safeTransfer(msg.sender, p.reservedReward); emit Unstaked(_stakeId, p.reservedReward, 0); } delete stakes[_stakeId]; } function calculateReward(uint256 _amount, uint256 _duration) public view returns (uint256) { require(_amount > 0, "INSUFFICIENT INPUT"); require(_duration >= minimumStakeDuration, "DURATION < MINIMUM"); require(_duration <= maximumStakeDuration, "DURATION > MAXIMUM"); uint256 reward = ((_duration**2) * (maxAPR * _amount)) / ((10000 * (31536000 * maximumStakeDuration))); reward = ((flashInLP * 2) * reward) / lpTotalSupply; uint256 rewardsAvailable = getAvailableRewards(); if (reward > rewardsAvailable) { reward = rewardsAvailable; } require(reward > 0, "INSUFFICIENT OUTPUT"); return reward; } function setForfeitRewardAddress(address _forfeitRewardAddress) external onlyOwner { forfeitRewardAddress = _forfeitRewardAddress; emit ForfeitRewardAddressChange(_forfeitRewardAddress); } function setParameters( uint256 _newMaxAPR, uint256 _newFlashInLP, uint256 _newLpTotalSupply ) external onlyOwner { maxAPR = _newMaxAPR; flashInLP = _newFlashInLP; lpTotalSupply = _newLpTotalSupply; emit ParameterChange(_newMaxAPR, _newFlashInLP, _newLpTotalSupply); } function getAvailableRewards() public view returns (uint256) { return IERC20(rewardTokenAddress).balanceOf(address(this)) - totalReservedRewards; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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.7.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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// 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 (last updated v4.7.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 functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev 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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"_stakingTokenAddress","type":"address"},{"internalType":"address","name":"_rewardTokenAddress","type":"address"},{"internalType":"uint256","name":"_minimumStakeDuration","type":"uint256"},{"internalType":"uint256","name":"_maximumStakeDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_forfeitRewardAddress","type":"address"}],"name":"ForfeitRewardAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMaxAPR","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newFlashInLP","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newLpTotalSupply","type":"uint256"}],"name":"ParameterChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_reward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rewardForfeited","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flashInLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forfeitRewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAPR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumStakeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumStakeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_forfeitRewardAddress","type":"address"}],"name":"setForfeitRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAPR","type":"uint256"},{"internalType":"uint256","name":"_newFlashInLP","type":"uint256"},{"internalType":"uint256","name":"_newLpTotalSupply","type":"uint256"}],"name":"setParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"uint256","name":"_minimumReward","type":"uint256"}],"name":"stake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakes","outputs":[{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"stakedAmount","type":"uint256"},{"internalType":"uint256","name":"reservedReward","type":"uint256"},{"internalType":"uint256","name":"stakeStartTs","type":"uint256"},{"internalType":"uint256","name":"stakeDuration","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReservedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stakeId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052600380546001600160a01b031916738603ffe7b00ccd759f28abfe448454a24cfba58117905560016004819055600581905560065560006008553480156200004c57600080fd5b50604051620016a3380380620016a38339810160408190526200006f916200011f565b6200007a33620000b2565b6001600160a01b03808516608081905290841660a081905260c084905260e08390521415620000a857600080fd5b5050505062000167565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200011a57600080fd5b919050565b600080600080608085870312156200013657600080fd5b620001418562000102565b9350620001516020860162000102565b6040860151606090960151949790965092505050565b60805160a05160c05160e0516114bc620001e7600039600081816103800152818161047201526104e70152600081816102980152818161040201526106f201526000818161019d01528181610809015281816108c90152610d6d015260008181610217015281816107cb0152818161088e0152610b2501526114bc6000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c80638da5cb5b116100d8578063d5a44f861161008c578063f4c79a7711610066578063f4c79a7714610372578063f76f9c271461037b578063fc9c99ac146103a257600080fd5b8063d5a44f86146102c3578063e6c128f01461034c578063f2fde38b1461035f57600080fd5b8063a638f2e2116100bd578063a638f2e214610280578063a8bd730014610293578063c4a9e116146102ba57600080fd5b80638da5cb5b14610266578063969247b21461027757600080fd5b80635298b8691161012f5780635f7f2a4c116101145780635f7f2a4c1461024257806366be232214610255578063715018a61461025e57600080fd5b80635298b8691461021257806353704f9a1461023957600080fd5b806313ed08461161016057806313ed0846146101d75780632e17de78146101ea57806334c5d2ce146101ff57600080fd5b806305a9f2741461017c578063125f9e3314610198575b600080fd5b61018560025481565b6040519081526020015b60405180910390f35b6101bf7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161018f565b6101856101e53660046111f0565b6103aa565b6101fd6101f8366004611212565b6105e6565b005b6101fd61020d36600461122b565b61097f565b6101bf7f000000000000000000000000000000000000000000000000000000000000000081565b61018560045481565b6003546101bf906001600160a01b031681565b61018560065481565b6101fd6109dc565b6000546001600160a01b03166101bf565b61018560015481565b61018561028e36600461122b565b6109f0565b6101857f000000000000000000000000000000000000000000000000000000000000000081565b61018560085481565b6103136102d1366004611212565b6007602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909160ff1686565b604080516001600160a01b03909716875260208701959095529385019290925260608401526080830152151560a082015260c00161018f565b6101fd61035a366004611257565b610c5d565b6101fd61036d366004611257565b610cb9565b61018560055481565b6101857f000000000000000000000000000000000000000000000000000000000000000081565b610185610d49565b60008083116104005760405162461bcd60e51b815260206004820152601260248201527f494e53554646494349454e5420494e505554000000000000000000000000000060448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008210156104705760405162461bcd60e51b815260206004820152601260248201527f4455524154494f4e203c204d494e494d554d000000000000000000000000000060448201526064016103f7565b7f00000000000000000000000000000000000000000000000000000000000000008211156104e05760405162461bcd60e51b815260206004820152601260248201527f4455524154494f4e203e204d4158494d554d000000000000000000000000000060448201526064016103f7565b60006105107f00000000000000000000000000000000000000000000000000000000000000006301e13380611296565b61051c90612710611296565b8460045461052a9190611296565b610535600286611399565b61053f9190611296565b61054991906113a8565b905060065481600554600261055e9190611296565b6105689190611296565b61057291906113a8565b9050600061057e610d49565b90508082111561058c578091505b600082116105dc5760405162461bcd60e51b815260206004820152601360248201527f494e53554646494349454e54204f55545055540000000000000000000000000060448201526064016103f7565b5090505b92915050565b600081815260076020908152604091829020825160c08101845281546001600160a01b031681526001808301549382019390935260028201549381019390935260038101546060840152600481015460808401526005015460ff16151560a08301819052146106975760405162461bcd60e51b815260206004820152600d60248201527f494e56414c4944205354414b450000000000000000000000000000000000000060448201526064016103f7565b80516001600160a01b031633146106f05760405162461bcd60e51b815260206004820152601260248201527f4e4f54204f574e4552204f46205354414b45000000000000000000000000000060448201526064016103f7565b7f0000000000000000000000000000000000000000000000000000000000000000816060015161072091906113ca565b421161076e5760405162461bcd60e51b815260206004820152601260248201527f4455524154494f4e203c204d494e494d554d000000000000000000000000000060448201526064016103f7565b6000428260800151836060015161078591906113ca565b119050816040015160015461079a91906113e2565b60015560208201516002546107af91906113e2565b600255801561087b5760208201516107f3906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016903390610df6565b6003546040830151610833916001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692911690610df6565b604080830151815185815260006020820152918201527f6d53ab8a75d9106d01c9ba0ac2e389ffb405989741a1a51c3791492b219fc80d9060600160405180910390a1610937565b60208201516108b6906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016903390610df6565b60408201516108f1906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016903390610df6565b6040828101518151858152602081019190915260008183015290517f6d53ab8a75d9106d01c9ba0ac2e389ffb405989741a1a51c3791492b219fc80d9181900360600190a15b5050600090815260076020526040812080546001600160a01b03191681556001810182905560028101829055600381018290556004810191909155600501805460ff19169055565b610987610e8b565b60048390556005829055600681905560408051848152602081018490529081018290527f80087b6addec5873f1077a72e8d9615c8fc6dde27fd20b64f55047f40e0f1c7a9060600160405180910390a1505050565b6109e4610e8b565b6109ee6000610ee5565b565b6000735089722613c2ccee071c39c59e9889641f435f15331415610a565760405162461bcd60e51b815260206004820152601360248201527f424c41434b4c495354454420414444524553530000000000000000000000000060448201526064016103f7565b738603ffe7b00ccd759f28abfe448454a24cfba581331415610aba5760405162461bcd60e51b815260206004820152601360248201527f424c41434b4c495354454420414444524553530000000000000000000000000060448201526064016103f7565b6000610ac685856103aa565b905082811015610b185760405162461bcd60e51b815260206004820152601660248201527f4d494e494d554d20524557415244204e4f54204d45540000000000000000000060448201526064016103f7565b610b4d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333088610f35565b80600154610b5b91906113ca565b600155600254610b6c9086906113ca565b600255600854610b7d9060016113ca565b60088181556040805160c08101825233815260208082018a8152828401878152426060808601918252608086018d8152600160a0880181815260009b8c52600788529a899020975188546001600160a01b0319166001600160a01b03909116178855945194870194909455915160028601555160038501559051600484015594516005909201805460ff1916921515929092179091559154815190815291820188905281018690527fc8acfabcfb3af3df23b7b8a1aa1371d042bee71e137eeedc881ffa8f3c446261910160405180910390a150506008545b9392505050565b610c65610e8b565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f81fb2e0eb7409d060f9d659957bd41e38cf531bb4a18f23034b0f53c0901ec1f9060200160405180910390a150565b610cc1610e8b565b6001600160a01b038116610d3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103f7565b610d4681610ee5565b50565b6001546040516370a0823160e01b8152306004820152600091906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610daf57600080fd5b505afa158015610dc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de791906113f9565b610df191906113e2565b905090565b6040516001600160a01b038316602482015260448101829052610e8690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610f73565b505050565b6000546001600160a01b031633146109ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b0380851660248301528316604482015260648101829052610f6d9085906323b872dd60e01b90608401610e22565b50505050565b6000610fc8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110589092919063ffffffff16565b805190915015610e865780806020019051810190610fe69190611412565b610e865760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103f7565b6060611067848460008561106f565b949350505050565b6060824710156110e75760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103f7565b6001600160a01b0385163b61113e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103f7565b600080866001600160a01b0316858760405161115a9190611460565b60006040518083038185875af1925050503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50915091506111ac8282866111b7565b979650505050505050565b606083156111c6575081610c56565b8251156111d65782518084602001fd5b8160405162461bcd60e51b81526004016103f7919061147c565b6000806040838503121561120357600080fd5b50508035926020909101359150565b60006020828403121561122457600080fd5b5035919050565b60008060006060848603121561124057600080fd5b505081359360208301359350604090920135919050565b60006020828403121561126957600080fd5b81356001600160a01b0381168114610c5657600080fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156112b0576112b0611280565b500290565b600181815b808511156112f05781600019048211156112d6576112d6611280565b808516156112e357918102915b93841c93908002906112ba565b509250929050565b600082611307575060016105e0565b81611314575060006105e0565b816001811461132a576002811461133457611350565b60019150506105e0565b60ff84111561134557611345611280565b50506001821b6105e0565b5060208310610133831016604e8410600b8410161715611373575081810a6105e0565b61137d83836112b5565b806000190482111561139157611391611280565b029392505050565b6000610c5660ff8416836112f8565b6000826113c557634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156113dd576113dd611280565b500190565b6000828210156113f4576113f4611280565b500390565b60006020828403121561140b57600080fd5b5051919050565b60006020828403121561142457600080fd5b81518015158114610c5657600080fd5b60005b8381101561144f578181015183820152602001611437565b83811115610f6d5750506000910152565b60008251611472818460208701611434565b9190910192915050565b602081526000825180602084015261149b816040850160208701611434565b601f01601f1916919091016040019291505056fea164736f6c6343000809000a000000000000000000000000bc57a6567a0655b1e2805961fc4f20e6a1ff55bd000000000000000000000000c628534100180582e43271448098cb2c185795bd0000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000278d00
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bc57a6567a0655b1e2805961fc4f20e6a1ff55bd000000000000000000000000c628534100180582e43271448098cb2c185795bd0000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000278d00
-----Decoded View---------------
Arg [0] : _stakingTokenAddress (address): 0xBC57A6567A0655B1e2805961FC4F20e6a1ff55BD
Arg [1] : _rewardTokenAddress (address): 0xc628534100180582E43271448098cb2c185795BD
Arg [2] : _minimumStakeDuration (uint256): 604800
Arg [3] : _maximumStakeDuration (uint256): 2592000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000bc57a6567a0655b1e2805961fc4f20e6a1ff55bd
Arg [1] : 000000000000000000000000c628534100180582e43271448098cb2c185795bd
Arg [2] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [3] : 0000000000000000000000000000000000000000000000000000000000278d00
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.