From 7ff1a0a2234b3a5b7102925bccab86212b6e6bd6 Mon Sep 17 00:00:00 2001 From: Flocqst Date: Wed, 17 Jul 2024 15:57:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20Add=20author=20handle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contracts/EscrowMigrator.sol | 1 + contracts/RewardEscrowV2.sol | 2 +- contracts/StakingRewardsV2.sol | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contracts/EscrowMigrator.sol b/contracts/EscrowMigrator.sol index 518d1e5b4..613a00e2b 100644 --- a/contracts/EscrowMigrator.sol +++ b/contracts/EscrowMigrator.sol @@ -33,6 +33,7 @@ import {IStakingRewardsIntegrator} from "./interfaces/IStakingRewardsIntegrator. /// @title KWENTA Escrow Migrator /// Used to migrate escrow entries from RewardEscrowV1 to RewardEscrowV2 /// @author tommyrharper (tom@zkconsulting.xyz) +/// @author Flocqst (florian@kwenta.io) contract EscrowMigrator is IEscrowMigrator, Ownable2StepUpgradeable, diff --git a/contracts/RewardEscrowV2.sol b/contracts/RewardEscrowV2.sol index 747507751..8387ca166 100644 --- a/contracts/RewardEscrowV2.sol +++ b/contracts/RewardEscrowV2.sol @@ -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 (jaredborders@proton.me), JChiaramonte7 (jeremy@bytecode.llc) -/// @author RewardEscrowV2 by tommyrharper (tom@zkconsulting.xyz) +/// @author RewardEscrowV2 by tommyrharper (tom@zkconsulting.xyz), Flocqst (florian@kwenta.io) /// @notice Updated version of Synthetix's RewardEscrow with new features specific to Kwenta contract RewardEscrowV2 is IRewardEscrowV2, diff --git a/contracts/StakingRewardsV2.sol b/contracts/StakingRewardsV2.sol index d0007e992..21f908a2a 100644 --- a/contracts/StakingRewardsV2.sol +++ b/contracts/StakingRewardsV2.sol @@ -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 (jaredborders@proton.me), JChiaramonte7 (jeremy@bytecode.llc) -/// @author StakingRewardsV2 (this) by tommyrharper (tom@zkconsulting.xyz) +/// @author StakingRewardsV2 (this) by tommyrharper (tom@zkconsulting.xyz), Flocqst (florian@kwenta.io) /// @notice Updated version of Synthetix's StakingRewards with new features specific to Kwenta contract StakingRewardsV2 is IStakingRewardsV2,