-
Notifications
You must be signed in to change notification settings - Fork 0
/
StakingService.sol
941 lines (840 loc) · 29 KB
/
StakingService.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
// SPDX-License-Identifier: Apache-2.0
// Copyright 2022 Enjinstarter
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./libraries/UnitConverter.sol";
import "./AdminPrivileges.sol";
import "./AdminWallet.sol";
import "./interfaces/IStakingPool.sol";
import "./interfaces/IStakingService.sol";
/**
* @title StakingService
* @author Tim Loh
*/
contract StakingService is
Pausable,
AdminPrivileges,
AdminWallet,
IStakingService
{
using SafeERC20 for IERC20;
using UnitConverter for uint256;
struct StakeInfo {
uint256 stakeAmountWei;
uint256 lastStakeAmountWei;
uint256 stakeTimestamp;
uint256 stakeMaturityTimestamp; // timestamp when stake matures
uint256 estimatedRewardAtMaturityWei; // estimated reward at maturity in wei
uint256 rewardClaimedWei; // reward claimed in wei
bool isActive; // true if allow claim rewards and unstake
bool isInitialized; // true if stake info has been initialized
}
struct StakingPoolStats {
uint256 totalRewardWei; // total pool reward in wei
uint256 totalStakedWei; // total staked inside pool in wei
uint256 rewardToBeDistributedWei; // allocated pool reward to be distributed in wei
uint256 totalRevokedStakeWei; // total revoked stake in wei
}
uint256 public constant DAYS_IN_YEAR = 365;
uint256 public constant PERCENT_100_WEI = 100 ether;
uint256 public constant SECONDS_IN_DAY = 86400;
uint256 public constant TOKEN_MAX_DECIMALS = 18;
address public stakingPoolContract;
mapping(bytes => StakeInfo) private _stakes;
mapping(bytes32 => StakingPoolStats) private _stakingPoolStats;
constructor(address stakingPoolContract_) {
require(stakingPoolContract_ != address(0), "SSvcs: staking pool");
stakingPoolContract = stakingPoolContract_;
}
/**
* @dev See {IStakingService-getClaimableRewardWei}.
*/
function getClaimableRewardWei(bytes32 poolId, address account)
external
view
virtual
override
returns (uint256)
{
bytes memory stakekey = _getStakeKey(poolId, account);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
bool isPoolActive
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
if (!isPoolActive) {
return 0;
}
return _getClaimableRewardWeiByStakekey(stakekey);
}
/**
* @dev See {IStakingService-getStakeInfo}.
*/
function getStakeInfo(bytes32 poolId, address account)
external
view
virtual
override
returns (
uint256 stakeAmountWei,
uint256 stakeTimestamp,
uint256 stakeMaturityTimestamp,
uint256 estimatedRewardAtMaturityWei,
uint256 rewardClaimedWei,
bool isActive
)
{
bytes memory stakekey = _getStakeKey(poolId, account);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
stakeAmountWei = _stakes[stakekey].stakeAmountWei;
stakeTimestamp = _stakes[stakekey].stakeTimestamp;
stakeMaturityTimestamp = _stakes[stakekey].stakeMaturityTimestamp;
estimatedRewardAtMaturityWei = _stakes[stakekey]
.estimatedRewardAtMaturityWei;
rewardClaimedWei = _stakes[stakekey].rewardClaimedWei;
isActive = _stakes[stakekey].isActive;
}
/**
* @dev See {IStakingService-getStakingPoolStats}.
*/
function getStakingPoolStats(bytes32 poolId)
external
view
virtual
override
returns (
uint256 totalRewardWei,
uint256 totalStakedWei,
uint256 rewardToBeDistributedWei,
uint256 totalRevokedStakeWei,
uint256 poolSizeWei,
bool isOpen,
bool isActive
)
{
uint256 stakeDurationDays;
uint256 stakeTokenDecimals;
uint256 poolAprWei;
(
stakeDurationDays,
,
stakeTokenDecimals,
,
,
poolAprWei,
isOpen,
isActive
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
poolSizeWei = _getPoolSizeWei(
stakeDurationDays,
poolAprWei,
_stakingPoolStats[poolId].totalRewardWei,
stakeTokenDecimals
);
totalRewardWei = _stakingPoolStats[poolId].totalRewardWei;
totalStakedWei = _stakingPoolStats[poolId].totalStakedWei;
rewardToBeDistributedWei = _stakingPoolStats[poolId]
.rewardToBeDistributedWei;
totalRevokedStakeWei = _stakingPoolStats[poolId].totalRevokedStakeWei;
}
/**
* @dev See {IStakingService-claimReward}.
*/
function claimReward(bytes32 poolId)
external
virtual
override
whenNotPaused
{
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
bool isPoolActive
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
require(isPoolActive, "SSvcs: pool suspended");
bytes memory stakekey = _getStakeKey(poolId, msg.sender);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
require(_stakes[stakekey].isActive, "SSvcs: stake suspended");
require(_isStakeMaturedByStakekey(stakekey), "SSvcs: not mature");
uint256 rewardAmountWei = _getClaimableRewardWeiByStakekey(stakekey);
require(rewardAmountWei > 0, "SSvcs: zero reward");
_stakingPoolStats[poolId].totalRewardWei -= rewardAmountWei;
_stakingPoolStats[poolId].rewardToBeDistributedWei -= rewardAmountWei;
_stakes[stakekey].rewardClaimedWei += rewardAmountWei;
emit RewardClaimed(
poolId,
msg.sender,
rewardTokenAddress,
rewardAmountWei
);
_transferTokensToAccount(
rewardTokenAddress,
rewardTokenDecimals,
rewardAmountWei,
msg.sender
);
}
/**
* @dev See {IStakingService-stake}.
*/
function stake(bytes32 poolId, uint256 stakeAmountWei)
external
virtual
override
whenNotPaused
{
require(stakeAmountWei > 0, "SSvcs: stake amount");
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
bool isPoolOpen,
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
require(isPoolOpen, "SSvcs: closed");
uint256 stakeMaturityTimestamp = _calculateStakeMaturityTimestamp(
stakeDurationDays,
block.timestamp
);
require(
stakeMaturityTimestamp > block.timestamp,
"SSvcs: maturity timestamp"
);
uint256 truncatedStakeAmountWei = _truncatedAmountWei(
stakeAmountWei,
stakeTokenDecimals
);
uint256 estimatedRewardAtMaturityWei = _truncatedAmountWei(
_estimateRewardAtMaturityWei(
stakeDurationDays,
poolAprWei,
truncatedStakeAmountWei
),
rewardTokenDecimals
);
require(
estimatedRewardAtMaturityWei <=
_calculatePoolRemainingRewardWei(poolId),
"SSvcs: insufficient"
);
bytes memory stakekey = _getStakeKey(poolId, msg.sender);
if (_stakes[stakekey].isInitialized) {
uint256 stakeDurationAtAddStakeDays = (block.timestamp -
_stakes[stakekey].stakeTimestamp) / SECONDS_IN_DAY;
uint256 earnedRewardAtAddStakeWei = _truncatedAmountWei(
_estimateRewardAtMaturityWei(
stakeDurationAtAddStakeDays,
poolAprWei,
_stakes[stakekey].lastStakeAmountWei
),
rewardTokenDecimals
);
estimatedRewardAtMaturityWei += earnedRewardAtAddStakeWei;
require(
estimatedRewardAtMaturityWei <=
_calculatePoolRemainingRewardWei(poolId),
"SSvcs: insufficient"
);
_stakes[stakekey].stakeAmountWei += truncatedStakeAmountWei;
_stakes[stakekey].lastStakeAmountWei = truncatedStakeAmountWei;
_stakes[stakekey].stakeTimestamp = block.timestamp;
_stakes[stakekey].stakeMaturityTimestamp = stakeMaturityTimestamp;
_stakes[stakekey]
.estimatedRewardAtMaturityWei += estimatedRewardAtMaturityWei;
} else {
_stakes[stakekey] = StakeInfo({
stakeAmountWei: truncatedStakeAmountWei,
lastStakeAmountWei: truncatedStakeAmountWei,
stakeTimestamp: block.timestamp,
stakeMaturityTimestamp: stakeMaturityTimestamp,
estimatedRewardAtMaturityWei: estimatedRewardAtMaturityWei,
rewardClaimedWei: 0,
isActive: true,
isInitialized: true
});
}
_stakingPoolStats[poolId].totalStakedWei += truncatedStakeAmountWei;
_stakingPoolStats[poolId]
.rewardToBeDistributedWei += estimatedRewardAtMaturityWei;
emit Staked(
poolId,
msg.sender,
stakeTokenAddress,
truncatedStakeAmountWei,
block.timestamp,
stakeMaturityTimestamp,
_stakes[stakekey].estimatedRewardAtMaturityWei
);
_transferTokensToContract(
stakeTokenAddress,
stakeTokenDecimals,
truncatedStakeAmountWei,
msg.sender
);
}
/**
* @dev See {IStakingService-unstake}.
*/
function unstake(bytes32 poolId) external virtual override whenNotPaused {
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
bool isPoolActive
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
require(isPoolActive, "SSvcs: pool suspended");
bytes memory stakekey = _getStakeKey(poolId, msg.sender);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
require(_stakes[stakekey].isActive, "SSvcs: stake suspended");
require(_isStakeMaturedByStakekey(stakekey), "SSvcs: not mature");
uint256 stakeAmountWei = _stakes[stakekey].stakeAmountWei;
require(stakeAmountWei > 0, "SSvcs: zero stake");
uint256 rewardAmountWei = _getClaimableRewardWeiByStakekey(stakekey);
_stakingPoolStats[poolId].totalStakedWei -= stakeAmountWei;
_stakingPoolStats[poolId].totalRewardWei -= rewardAmountWei;
_stakingPoolStats[poolId].rewardToBeDistributedWei -= rewardAmountWei;
_stakes[stakekey] = StakeInfo({
stakeAmountWei: 0,
lastStakeAmountWei: 0,
stakeTimestamp: 0,
stakeMaturityTimestamp: 0,
estimatedRewardAtMaturityWei: 0,
rewardClaimedWei: 0,
isActive: false,
isInitialized: false
});
emit Unstaked(
poolId,
msg.sender,
stakeTokenAddress,
stakeAmountWei,
rewardTokenAddress,
rewardAmountWei
);
if (
stakeTokenAddress == rewardTokenAddress &&
stakeTokenDecimals == rewardTokenDecimals
) {
_transferTokensToAccount(
stakeTokenAddress,
stakeTokenDecimals,
stakeAmountWei + rewardAmountWei,
msg.sender
);
} else {
_transferTokensToAccount(
stakeTokenAddress,
stakeTokenDecimals,
stakeAmountWei,
msg.sender
);
if (rewardAmountWei > 0) {
_transferTokensToAccount(
rewardTokenAddress,
rewardTokenDecimals,
rewardAmountWei,
msg.sender
);
}
}
}
/**
* @dev See {IStakingService-addStakingPoolReward}.
*/
function addStakingPoolReward(bytes32 poolId, uint256 rewardAmountWei)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
require(rewardAmountWei > 0, "SSvcs: reward amount");
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
uint256 truncatedRewardAmountWei = rewardTokenDecimals <
TOKEN_MAX_DECIMALS
? rewardAmountWei
.scaleWeiToDecimals(rewardTokenDecimals)
.scaleDecimalsToWei(rewardTokenDecimals)
: rewardAmountWei;
_stakingPoolStats[poolId].totalRewardWei += truncatedRewardAmountWei;
emit StakingPoolRewardAdded(
poolId,
msg.sender,
rewardTokenAddress,
truncatedRewardAmountWei
);
_transferTokensToContract(
rewardTokenAddress,
rewardTokenDecimals,
truncatedRewardAmountWei,
msg.sender
);
}
/**
* @dev See {IStakingService-removeRevokedStakes}.
*/
function removeRevokedStakes(bytes32 poolId)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
require(
_stakingPoolStats[poolId].totalRevokedStakeWei > 0,
"SSvcs: no revoked"
);
uint256 totalRevokedStakeWei = _stakingPoolStats[poolId]
.totalRevokedStakeWei;
_stakingPoolStats[poolId].totalRevokedStakeWei = 0;
emit RevokedStakesRemoved(
poolId,
msg.sender,
adminWallet(),
stakeTokenAddress,
totalRevokedStakeWei
);
_transferTokensToAccount(
stakeTokenAddress,
stakeTokenDecimals,
totalRevokedStakeWei,
adminWallet()
);
}
/**
* @dev See {IStakingService-removeUnallocatedStakingPoolReward}.
*/
function removeUnallocatedStakingPoolReward(bytes32 poolId)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
uint256 unallocatedRewardWei = _calculatePoolRemainingRewardWei(poolId);
require(unallocatedRewardWei > 0, "SSvcs: no unallocated");
_stakingPoolStats[poolId].totalRewardWei -= unallocatedRewardWei;
emit StakingPoolRewardRemoved(
poolId,
msg.sender,
adminWallet(),
rewardTokenAddress,
unallocatedRewardWei
);
_transferTokensToAccount(
rewardTokenAddress,
rewardTokenDecimals,
unallocatedRewardWei,
adminWallet()
);
}
/**
* @dev See {IStakingService-resumeStake}.
*/
function resumeStake(bytes32 poolId, address account)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
bytes memory stakekey = _getStakeKey(poolId, account);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
require(!_stakes[stakekey].isActive, "SSvcs: stake active");
_stakes[stakekey].isActive = true;
emit StakeResumed(poolId, msg.sender, account);
}
/**
* @dev See {IStakingService-revokeStake}.
*/
function revokeStake(bytes32 poolId, address account)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
bytes memory stakekey = _getStakeKey(poolId, account);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
uint256 stakeAmountWei = _stakes[stakekey].stakeAmountWei;
uint256 rewardAmountWei = _stakes[stakekey]
.estimatedRewardAtMaturityWei - _stakes[stakekey].rewardClaimedWei;
_stakingPoolStats[poolId].totalStakedWei -= stakeAmountWei;
_stakingPoolStats[poolId].totalRevokedStakeWei += stakeAmountWei;
_stakingPoolStats[poolId].rewardToBeDistributedWei -= rewardAmountWei;
_stakes[stakekey] = StakeInfo({
stakeAmountWei: 0,
lastStakeAmountWei: 0,
stakeTimestamp: 0,
stakeMaturityTimestamp: 0,
estimatedRewardAtMaturityWei: 0,
rewardClaimedWei: 0,
isActive: false,
isInitialized: false
});
(
uint256 stakeDurationDays,
address stakeTokenAddress,
uint256 stakeTokenDecimals,
address rewardTokenAddress,
uint256 rewardTokenDecimals,
uint256 poolAprWei,
,
) = IStakingPool(stakingPoolContract).getStakingPoolInfo(poolId);
require(stakeDurationDays > 0, "SSvcs: stake duration");
require(stakeTokenAddress != address(0), "SSvcs: stake token");
require(
stakeTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: stake decimals"
);
require(rewardTokenAddress != address(0), "SSvcs: reward token");
require(
rewardTokenDecimals <= TOKEN_MAX_DECIMALS,
"SSvcs: reward decimals"
);
require(poolAprWei > 0, "SSvcs: pool APR");
emit StakeRevoked(
poolId,
msg.sender,
account,
stakeTokenAddress,
stakeAmountWei,
rewardTokenAddress,
rewardAmountWei
);
}
/**
* @dev See {IStakingService-suspendStake}.
*/
function suspendStake(bytes32 poolId, address account)
external
virtual
override
onlyRole(CONTRACT_ADMIN_ROLE)
{
bytes memory stakekey = _getStakeKey(poolId, account);
require(_stakes[stakekey].isInitialized, "SSvcs: uninitialized");
require(_stakes[stakekey].isActive, "SSvcs: stake suspended");
_stakes[stakekey].isActive = false;
emit StakeSuspended(poolId, msg.sender, account);
}
/**
* @dev See {IStakingService-pauseContract}.
*/
function pauseContract()
external
virtual
override
onlyRole(GOVERNANCE_ROLE)
{
_pause();
}
/**
* @dev See {IStakingService-setAdminWallet}.
*/
function setAdminWallet(address newWallet)
external
virtual
override
onlyRole(GOVERNANCE_ROLE)
{
_setAdminWallet(newWallet);
}
/**
* @dev See {IStakingService-setStakingPoolContract}.
*/
function setStakingPoolContract(address newStakingPool)
external
virtual
override
onlyRole(GOVERNANCE_ROLE)
{
require(newStakingPool != address(0), "SSvcs: new staking pool");
address oldStakingPool = stakingPoolContract;
stakingPoolContract = newStakingPool;
emit StakingPoolContractChanged(
oldStakingPool,
newStakingPool,
msg.sender
);
}
/**
* @dev See {IStakingService-unpauseContract}.
*/
function unpauseContract()
external
virtual
override
onlyRole(GOVERNANCE_ROLE)
{
_unpause();
}
function _getStakeKey(bytes32 poolId, address account)
internal
pure
virtual
returns (bytes memory stakekey)
{
require(account != address(0), "SSvcs: account");
stakekey = abi.encode(account, poolId);
}
function _truncatedAmountWei(uint256 amountWei, uint256 tokenDecimals)
internal
pure
virtual
returns (uint256 truncatedAmountWei)
{
truncatedAmountWei = tokenDecimals < TOKEN_MAX_DECIMALS
? amountWei.scaleWeiToDecimals(tokenDecimals).scaleDecimalsToWei(
tokenDecimals
)
: amountWei;
}
/**
* @dev calculate remaining reward for pool in wei.
*/
function _calculatePoolRemainingRewardWei(bytes32 poolId)
internal
view
virtual
returns (uint256 calculatedRemainingRewardWei)
{
calculatedRemainingRewardWei =
_stakingPoolStats[poolId].totalRewardWei -
_stakingPoolStats[poolId].rewardToBeDistributedWei;
}
function _calculateStakeMaturityTimestamp(
uint256 stakeDurationDays,
uint256 stakeTimestamp
) internal view virtual returns (uint256 calculatedStakeMaturityTimestamp) {
calculatedStakeMaturityTimestamp =
stakeTimestamp +
stakeDurationDays *
SECONDS_IN_DAY;
}
/**
* @dev estimate reward at maturity in wei.
*/
function _estimateRewardAtMaturityWei(
uint256 stakeDurationDays,
uint256 poolAprWei,
uint256 stakeAmountWei
) internal view virtual returns (uint256 estimatedRewardAtMaturityWei) {
estimatedRewardAtMaturityWei =
(poolAprWei * stakeDurationDays * stakeAmountWei) /
(DAYS_IN_YEAR * PERCENT_100_WEI);
}
/**
* @dev get claimable reward in wei by stake key.
*/
function _getClaimableRewardWeiByStakekey(bytes memory stakekey)
internal
view
virtual
returns (uint256 claimableRewardWei)
{
if (!_stakes[stakekey].isActive) {
return 0;
}
if (_isStakeMaturedByStakekey(stakekey)) {
claimableRewardWei =
_stakes[stakekey].estimatedRewardAtMaturityWei -
_stakes[stakekey].rewardClaimedWei;
} else {
claimableRewardWei = 0;
}
}
/**
* @dev get pool size in wei.
*/
function _getPoolSizeWei(
uint256 stakeDurationDays,
uint256 poolAprWei,
uint256 totalRewardWei,
uint256 stakeTokenDecimals
) internal view virtual returns (uint256 poolSizeWei) {
poolSizeWei = _truncatedAmountWei(
(DAYS_IN_YEAR * PERCENT_100_WEI * totalRewardWei) /
(stakeDurationDays * poolAprWei),
stakeTokenDecimals
);
}
/**
* @dev is stake matured by stake key.
*/
function _isStakeMaturedByStakekey(bytes memory stakekey)
internal
view
virtual
returns (bool)
{
return
_stakes[stakekey].stakeMaturityTimestamp > 0 &&
block.timestamp >= _stakes[stakekey].stakeMaturityTimestamp;
}
/**
* @dev transfer tokens from this contract to specified account
*/
function _transferTokensToAccount(
address tokenAddress,
uint256 tokenDecimals,
uint256 amountWei,
address account
) internal virtual {
require(tokenAddress != address(0), "SSvcs: token address");
require(tokenDecimals <= TOKEN_MAX_DECIMALS, "SSvcs: token decimals");
require(amountWei > 0, "SSvcs: amount");
require(account != address(0), "SSvcs: account");
uint256 amountDecimals = amountWei.scaleWeiToDecimals(tokenDecimals);
IERC20(tokenAddress).safeTransfer(account, amountDecimals);
}
/**
* @dev transfer tokens from account to this contract.
*/
function _transferTokensToContract(
address tokenAddress,
uint256 tokenDecimals,
uint256 amountWei,
address account
) internal virtual {
require(tokenAddress != address(0), "SSvcs: token address");
require(tokenDecimals <= TOKEN_MAX_DECIMALS, "SSvcs: token decimals");
require(amountWei > 0, "SSvcs: amount");
require(account != address(0), "SSvcs: account");
uint256 amountDecimals = amountWei.scaleWeiToDecimals(tokenDecimals);
IERC20(tokenAddress).safeTransferFrom(
account,
address(this),
amountDecimals
);
}
}