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

Commit c780c4b

Browse files
authored
Merge pull request #945 from keep-network/LPRewardsTBTCv2SaddleV2
Add LPRewardsTBTCv2SaddleV2 contract The new contract will be used with the new version of Saddle contracts.
2 parents d210e1e + 2cc8e0b commit c780c4b

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

solidity/contracts/LPRewards.sol

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,11 +262,21 @@ contract LPRewardsTBTCSaddle is LPRewards {
262262
}
263263

264264
/// @title KEEP rewards for the tBTC V2 Saddle liquidity pool.
265-
/// @dev LP token: https://etherscan.io/address/0x122Eca07139EB368245A29FB702c9ff11E9693B7
266-
/// Pool: https://saddle.exchange/#/pools/tbtc/deposit
265+
/// @dev LP token: 0x122Eca07139EB368245A29FB702c9ff11E9693B7
266+
/// Pool: 0xf74ebe6e5586275dc4CeD78F5DBEF31B1EfbE7a5
267267
contract LPRewardsTBTCv2Saddle is LPRewardsTBTCSaddle {
268268
constructor(KeepToken keepToken, IERC20 tbtcV2SaddleLPToken)
269269
public
270270
LPRewardsTBTCSaddle(keepToken, tbtcV2SaddleLPToken)
271271
{}
272272
}
273+
274+
/// @title KEEP rewards for the tBTC V2 Saddle V2 liquidity pool.
275+
/// @dev LP token: 0x3f2f811605bC6D701c3Ad6E501be13461c560320
276+
/// Pool: 0xA0b4a2667dD60d5CdD7EcFF1084F0CeB8dD84326
277+
contract LPRewardsTBTCv2SaddleV2 is LPRewardsTBTCSaddle {
278+
constructor(KeepToken keepToken, IERC20 tbtcV2SaddleLPToken)
279+
public
280+
LPRewardsTBTCSaddle(keepToken, tbtcV2SaddleLPToken)
281+
{}
282+
}

0 commit comments

Comments
 (0)