// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./LPStakingPool.sol"; contract PropelQETHPool is LPStakingPool { function initialize(IPropelCore _core, address _lpToken, address _esPropel, uint256 _rewardPerSec, uint256 _duration) external initializer { __Init_Blast(_core); initLockSettings(); lpToken = IERC20(_lpToken); esPropel = IEsPropel(_esPropel); duration = _duration; rewardPerSec = _rewardPerSec; } }