Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #945 from keep-network/LPRewardsTBTCv2SaddleV2
Browse files Browse the repository at this point in the history
Add LPRewardsTBTCv2SaddleV2 contract

The new contract will be used with the new version of Saddle contracts.
  • Loading branch information
pdyraga authored Jan 5, 2022
2 parents d210e1e + 2cc8e0b commit c780c4b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions solidity/contracts/LPRewards.sol
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,21 @@ contract LPRewardsTBTCSaddle is LPRewards {
}

/// @title KEEP rewards for the tBTC V2 Saddle liquidity pool.
/// @dev LP token: https://etherscan.io/address/0x122Eca07139EB368245A29FB702c9ff11E9693B7
/// Pool: https://saddle.exchange/#/pools/tbtc/deposit
/// @dev LP token: 0x122Eca07139EB368245A29FB702c9ff11E9693B7
/// Pool: 0xf74ebe6e5586275dc4CeD78F5DBEF31B1EfbE7a5
contract LPRewardsTBTCv2Saddle is LPRewardsTBTCSaddle {
constructor(KeepToken keepToken, IERC20 tbtcV2SaddleLPToken)
public
LPRewardsTBTCSaddle(keepToken, tbtcV2SaddleLPToken)
{}
}

/// @title KEEP rewards for the tBTC V2 Saddle V2 liquidity pool.
/// @dev LP token: 0x3f2f811605bC6D701c3Ad6E501be13461c560320
/// Pool: 0xA0b4a2667dD60d5CdD7EcFF1084F0CeB8dD84326
contract LPRewardsTBTCv2SaddleV2 is LPRewardsTBTCSaddle {
constructor(KeepToken keepToken, IERC20 tbtcV2SaddleLPToken)
public
LPRewardsTBTCSaddle(keepToken, tbtcV2SaddleLPToken)
{}
}

0 comments on commit c780c4b

Please sign in to comment.