-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ import {IStakingRewardsIntegrator} from "./interfaces/IStakingRewardsIntegrator. | |
/// @title KWENTA Escrow Migrator | ||
/// Used to migrate escrow entries from RewardEscrowV1 to RewardEscrowV2 | ||
/// @author tommyrharper ([email protected]) | ||
/// @author Flocqst ([email protected]) | ||
contract EscrowMigrator is | ||
IEscrowMigrator, | ||
Ownable2StepUpgradeable, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ import {IEscrowMigrator} from "./interfaces/IEscrowMigrator.sol"; | |
/// @title KWENTA Reward Escrow V2 | ||
/// @author Originally inspired by SYNTHETIX RewardEscrow | ||
/// @author Kwenta's RewardEscrow V1 by JaredBorders ([email protected]), JChiaramonte7 ([email protected]) | ||
/// @author RewardEscrowV2 by tommyrharper ([email protected]) | ||
/// @author RewardEscrowV2 by tommyrharper ([email protected]), Flocqst ([email protected]) | ||
/// @notice Updated version of Synthetix's RewardEscrow with new features specific to Kwenta | ||
contract RewardEscrowV2 is | ||
IRewardEscrowV2, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ import {IRewardEscrowV2} from "./interfaces/IRewardEscrowV2.sol"; | |
/// @title KWENTA Staking Rewards V2 | ||
/// @author Originally inspired by SYNTHETIX StakingRewards | ||
/// @author Kwenta's StakingRewards V1 by JaredBorders ([email protected]), JChiaramonte7 ([email protected]) | ||
/// @author StakingRewardsV2 (this) by tommyrharper ([email protected]) | ||
/// @author StakingRewardsV2 (this) by tommyrharper ([email protected]), Flocqst ([email protected]) | ||
/// @notice Updated version of Synthetix's StakingRewards with new features specific to Kwenta | ||
contract StakingRewardsV2 is | ||
IStakingRewardsV2, | ||
|