-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIglooMaster.sol
More file actions
1458 lines (1297 loc) · 61.2 KB
/
Copy pathIglooMaster.sol
File metadata and controls
1458 lines (1297 loc) · 61.2 KB
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
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: MIT
pragma solidity =0.8.6;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface PEFI is IERC20 {
function mint(address dest, uint256 amount) external;
function setMinter(address _minterAddress) external;
}
interface PenguinNests is IERC20 {
function enter(uint256 _amount) external;
function currentExchangeRate() external view returns(uint256);
}
interface IRewarder {
function onPefiReward(uint256 pid, address user, address recipient, uint256 pefiAmount, uint256 newShareAmount) external;
function pendingTokens(uint256 pid, address user, uint256 pefiAmount) external view returns (address[] memory, uint256[] memory);
}
//owned by the IglooMaster contract
interface IIglooStrategy {
// Deposit amount of tokens for 'caller' to address 'to'
function deposit(address caller, address to, uint256 tokenAmount, uint256 shareAmount) external;
// Transfer tokens from strategy for 'caller' to address 'to'
function withdraw(address caller, address to, uint256 tokenAmount, uint256 shareAmount) external;
function inCaseTokensGetStuck(IERC20 token, address to, uint256 amount) external;
function setAllowances() external;
function revokeAllowance(address token, address spender) external;
function migrate(address newStrategy) external;
function onMigration() external;
function pendingTokens(uint256 pid, address user, uint256 pefiAmount) external view returns (address[] memory, uint256[] memory);
function transferOwnership(address newOwner) external;
function setPerformanceFeeBips(uint256 newPerformanceFeeBips) external;
}
interface IStakingRewards {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function lastTimeRewardApplicable() external view returns (uint256);
function rewardPerToken() external view returns (uint256);
function earned(address account) external view returns (uint256);
function getRewardForDuration() external view returns (uint256);
function stake(uint256 amount) external;
function stakeWithPermit(uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
function withdraw(uint256 amount) external;
function getReward() external;
function exit() external;
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
event RewardsDurationUpdated(uint256 newDuration);
event Recovered(address token, uint256 amount);
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor () {
_owner = msg.sender;
emit OwnershipTransferred(address(0), msg.sender);
}
function owner() public view virtual returns (address) {
return _owner;
}
modifier onlyOwner() {
require(owner() == msg.sender, "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract IglooStrategyBase is IIglooStrategy, Ownable {
using SafeERC20 for IERC20;
IglooMaster public immutable iglooMaster;
IERC20 public immutable depositToken;
uint256 public performanceFeeBips;
uint256 internal constant MAX_UINT = 115792089237316195423570985008687907853269984665640564039457584007913129639935;
uint256 internal constant ACC_PEFI_PRECISION = 1e18;
uint256 internal constant MAX_BIPS = 10000;
constructor(
IglooMaster _iglooMaster,
IERC20 _depositToken
){
iglooMaster = _iglooMaster;
depositToken = _depositToken;
transferOwnership(address(_iglooMaster));
}
//returns zero address and zero tokens since base strategy does not distribute rewards
function pendingTokens(uint256, address, uint256) external view virtual override
returns (address[] memory, uint256[] memory) {
address[] memory _rewardTokens = new address[](1);
_rewardTokens[0] = address(0);
uint256[] memory _pendingAmounts = new uint256[](1);
_pendingAmounts[0] = 0;
return(_rewardTokens, _pendingAmounts);
}
function deposit(address, address, uint256, uint256) external virtual override onlyOwner {
}
function withdraw(address, address to, uint256 tokenAmount, uint256) external virtual override onlyOwner {
if (tokenAmount > 0) {
depositToken.safeTransfer(to, tokenAmount);
}
}
function inCaseTokensGetStuck(IERC20 token, address to, uint256 amount) external virtual override onlyOwner {
require(amount > 0, "cannot recover 0 tokens");
require(address(token) != address(depositToken), "cannot recover deposit token");
token.safeTransfer(to, amount);
}
function setAllowances() external virtual override onlyOwner {
}
/**
* @notice Revoke token allowance
* @param token address
* @param spender address
*/
function revokeAllowance(address token, address spender) external virtual override onlyOwner {
IERC20(token).safeApprove(spender, 0);
}
function migrate(address newStrategy) external virtual override onlyOwner {
uint256 toTransfer = depositToken.balanceOf(address(this));
depositToken.safeTransfer(newStrategy, toTransfer);
}
function onMigration() external virtual override onlyOwner {
}
function transferOwnership(address newOwner) public virtual override(Ownable, IIglooStrategy) onlyOwner {
Ownable.transferOwnership(newOwner);
}
function setPerformanceFeeBips(uint256 newPerformanceFeeBips) external virtual override onlyOwner {
require(newPerformanceFeeBips <= MAX_BIPS, "input too high");
performanceFeeBips = newPerformanceFeeBips;
}
}
//owned by an IglooStrategy contract
contract IglooStrategyStorage is Ownable {
//scaled up by ACC_PEFI_PRECISION
uint256 public rewardTokensPerShare;
uint256 internal constant ACC_PEFI_PRECISION = 1e18;
//pending reward = (user.amount * rewardTokensPerShare) / ACC_PEFI_PRECISION - user.rewardDebt
mapping(address => uint256) public rewardDebt;
function increaseRewardDebt(address user, uint256 shareAmount) external onlyOwner {
rewardDebt[user] += (rewardTokensPerShare * shareAmount) / ACC_PEFI_PRECISION;
}
function decreaseRewardDebt(address user, uint256 shareAmount) external onlyOwner {
rewardDebt[user] -= (rewardTokensPerShare * shareAmount) / ACC_PEFI_PRECISION;
}
function setRewardDebt(address user, uint256 userShares) external onlyOwner {
rewardDebt[user] = (rewardTokensPerShare * userShares) / ACC_PEFI_PRECISION;
}
function increaseRewardTokensPerShare(uint256 amount) external onlyOwner {
rewardTokensPerShare += amount;
}
}
contract IglooStrategyForPangolinStaking is IglooStrategyBase {
using SafeERC20 for IERC20;
IERC20 public constant rewardToken = IERC20(0x60781C2586D68229fde47564546784ab3fACA982); //PNG token
IStakingRewards public immutable stakingContract;
IglooStrategyStorage public immutable iglooStrategyStorage;
uint256 public immutable pid;
//total harvested by the contract all time
uint256 public totalHarvested;
//total amount harvested by each user
mapping(address => uint256) public harvested;
event Harvest(address indexed caller, address indexed to, uint256 harvestedAmount);
constructor(
IglooMaster _iglooMaster,
IERC20 _depositToken,
uint256 _pid,
IStakingRewards _stakingContract,
IglooStrategyStorage _iglooStrategyStorage
)
IglooStrategyBase(_iglooMaster, _depositToken)
{
pid = _pid;
stakingContract = _stakingContract;
iglooStrategyStorage = _iglooStrategyStorage;
_depositToken.safeApprove(address(_stakingContract), MAX_UINT);
}
//PUBLIC FUNCTIONS
/**
* @notice Reward token balance that can be claimed
* @dev Staking rewards accrue to contract on each deposit/withdrawal
* @return Unclaimed rewards
*/
function checkReward() public view returns (uint256) {
return stakingContract.earned(address(this));
}
function pendingRewards(address user) public view returns (uint256) {
uint256 userShares = iglooMaster.userShares(pid, user);
uint256 unclaimedRewards = checkReward();
uint256 rewardTokensPerShare = iglooStrategyStorage.rewardTokensPerShare();
uint256 totalShares = iglooMaster.totalShares(pid);
uint256 userRewardDebt = iglooStrategyStorage.rewardDebt(user);
uint256 multiplier = rewardTokensPerShare;
if(totalShares > 0) {
multiplier = multiplier + ((unclaimedRewards * ACC_PEFI_PRECISION) / totalShares);
}
uint256 totalRewards = (userShares * multiplier) / ACC_PEFI_PRECISION;
uint256 userPendingRewards = (totalRewards >= userRewardDebt) ? (totalRewards - userRewardDebt) : 0;
return userPendingRewards;
}
function rewardTokens() external view virtual returns(address[] memory) {
address[] memory _rewardTokens = new address[](1);
_rewardTokens[0] = address(rewardToken);
return(_rewardTokens);
}
function pendingTokens(uint256, address user, uint256) external view override
returns (address[] memory, uint256[] memory) {
address[] memory _rewardTokens = new address[](1);
_rewardTokens[0] = address(rewardToken);
uint256[] memory _pendingAmounts = new uint256[](1);
_pendingAmounts[0] = pendingRewards(user);
return(_rewardTokens, _pendingAmounts);
}
//EXTERNAL FUNCTIONS
function harvest() external {
_claimRewards();
_harvest(msg.sender, msg.sender);
}
//OWNER-ONlY FUNCTIONS
function deposit(address caller, address to, uint256 tokenAmount, uint256 shareAmount) external override onlyOwner {
_claimRewards();
_harvest(caller, to);
if (tokenAmount > 0) {
stakingContract.stake(tokenAmount);
}
if (shareAmount > 0) {
iglooStrategyStorage.increaseRewardDebt(to, shareAmount);
}
}
function withdraw(address caller, address to, uint256 tokenAmount, uint256 shareAmount) external override onlyOwner {
_claimRewards();
_harvest(caller, to);
if (tokenAmount > 0) {
stakingContract.withdraw(tokenAmount);
depositToken.safeTransfer(to, tokenAmount);
}
if (shareAmount > 0) {
iglooStrategyStorage.decreaseRewardDebt(to, shareAmount);
}
}
function migrate(address newStrategy) external override onlyOwner {
_claimRewards();
uint256 toWithdraw = stakingContract.balanceOf(address(this));
if (toWithdraw > 0) {
stakingContract.withdraw(toWithdraw);
depositToken.safeTransfer(newStrategy, toWithdraw);
}
uint256 rewardsToTransfer = rewardToken.balanceOf(address(this));
if (rewardsToTransfer > 0) {
rewardToken.safeTransfer(newStrategy, rewardsToTransfer);
}
iglooStrategyStorage.transferOwnership(newStrategy);
}
function onMigration() external override onlyOwner {
uint256 toStake = depositToken.balanceOf(address(this));
stakingContract.stake(toStake);
}
function setAllowances() external override onlyOwner {
depositToken.safeApprove(address(stakingContract), 0);
depositToken.safeApprove(address(stakingContract), MAX_UINT);
}
//INTERNAL FUNCTIONS
//claim any as-of-yet unclaimed rewards
function _claimRewards() internal {
uint256 unclaimedRewards = checkReward();
uint256 totalShares = iglooMaster.totalShares(pid);
if (unclaimedRewards > 0 && totalShares > 0) {
stakingContract.getReward();
iglooStrategyStorage.increaseRewardTokensPerShare((unclaimedRewards * ACC_PEFI_PRECISION) / totalShares);
}
}
function _harvest(address caller, address to) internal {
uint256 userShares = iglooMaster.userShares(pid, caller);
uint256 totalRewards = (userShares * iglooStrategyStorage.rewardTokensPerShare()) / ACC_PEFI_PRECISION;
uint256 userRewardDebt = iglooStrategyStorage.rewardDebt(caller);
uint256 userPendingRewards = (totalRewards >= userRewardDebt) ? (totalRewards - userRewardDebt) : 0;
iglooStrategyStorage.setRewardDebt(caller, userShares);
if (userPendingRewards > 0) {
totalHarvested += userPendingRewards;
if (performanceFeeBips > 0) {
uint256 performanceFee = (userPendingRewards * performanceFeeBips) / MAX_BIPS;
_safeRewardTokenTransfer(iglooMaster.performanceFeeAddress(), performanceFee);
userPendingRewards = userPendingRewards - performanceFee;
}
harvested[to] += userPendingRewards;
emit Harvest(caller, to, userPendingRewards);
_safeRewardTokenTransfer(to, userPendingRewards);
}
}
//internal wrapper function to avoid reverts due to rounding
function _safeRewardTokenTransfer(address user, uint256 amount) internal {
uint256 rewardTokenBal = rewardToken.balanceOf(address(this));
if (amount > rewardTokenBal) {
rewardToken.safeTransfer(user, rewardTokenBal);
} else {
rewardToken.safeTransfer(user, amount);
}
}
}
// The IglooMaster is the master of PEFI. He can make PEFI and he is a fair guy.
//
// Note that it's ownable and the owner wields tremendous power. The ownership
// will be transferred to a governance smart contract once PEFI is sufficiently
// distributed and the community can show to govern itself.
//
// Have fun reading it. Hopefully it's bug-free. God bless.
contract IglooMaster is Ownable {
using SafeERC20 for IERC20;
// Info of each user.
struct UserInfo {
uint256 amount; // How many shares the user currently has
uint256 rewardDebt; // Reward debt. See explanation below.
//
// We do some fancy math here. Basically, any point in time, the amount of PEFIs
// entitled to a user but is pending to be distributed is:
//
// pending reward = (user.amount * pool.accPEFIPerShare) / ACC_PEFI_PRECISION - user.rewardDebt
//
// Whenever a user harvest from a pool, here's what happens:
// 1. The pool's `accPEFIPerShare` gets updated.
// 2. User receives the pending reward sent to his/her address.
// 3. User's `amount` gets updated.
// 4. User's `rewardDebt` gets updated.
}
// Info of each pool.
struct PoolInfo {
IERC20 poolToken; // Address of LP token contract.
IRewarder rewarder; // Address of rewarder for pool
IIglooStrategy strategy; // Address of strategy for pool
uint256 allocPoint; // How many allocation points assigned to this pool. PEFIs to distribute per block.
uint256 lastRewardTime; // Last block number that PEFIs distribution occurs.
uint256 accPEFIPerShare; // Accumulated PEFIs per share, times ACC_PEFI_PRECISION. See below.
uint16 withdrawFeeBP; // Withdrawal fee in basis points
uint256 totalShares; //total number of shares in the pool
uint256 lpPerShare; //number of LP tokens per share, times ACC_PEFI_PRECISION
}
// The PEFI TOKEN!
PEFI public immutable pefi;
// The timestamp when PEFI mining starts.
uint256 public startTime;
//development endowment
address public dev;
//nest address
address public nest;
//nest allocator -- processes fees to go to nest
address public nestAllocatorAddress;
//performance fee address -- receives performance fees from strategies
address public performanceFeeAddress;
// amount of PEFI emitted per second
uint256 public pefiEmissionPerSecond;
// Total allocation points. Must be the sum of all allocation points in all pools.
uint256 public totalAllocPoint = 0;
//allocations to dev and nest addresses, expressed in BIPS
uint256 public devMintBips = 1000;
uint256 public nestMintBips = 500;
//when a withdrawal occurs and a nonzero fee is charged, nestSplitBips * fee / 10,000 goes to the nestAllocatorAddress
//the remainder of the fee is distributed to all the other penguins still in the igloo
uint256 public nestSplitBips = 5000;
//default value for ipefiDistributionBips, if the user has not manually set it
uint256 public defaultIpefiDistributionBips;
//whether the onlyApprovedContractOrEOA is turned on or off
bool public onlyApprovedContractOrEOAStatus;
uint256 public constant PEFI_MAX_SUPPLY = 23e6 * 1e18;
uint256 internal constant ACC_PEFI_PRECISION = 1e18;
uint256 internal constant MAX_BIPS = 10000;
// Info of each pool.
PoolInfo[] public poolInfo;
// Info of each user that stakes LP tokens.
mapping(uint256 => mapping(address => UserInfo)) public userInfo;
//mappping for tracking contracts approved to build on top of this one
mapping(address => bool) public approvedContracts;
//when a user harvests, ipefiDistributionBips / 10,000 of it is distributed as ipefi, with the remainder distributed as pefi
mapping(address => uint256) public ipefiDistributionBips;
//checks if a user has ever manually set their own ipefiDistributionBips. if not the default value is used.
mapping(address => bool) public ipefiDistributionBipsSet;
//tracks historic deposits of each address. deposits[pid][user] is the total deposits for that user to that igloo
mapping(uint256 => mapping(address => uint256)) public deposits;
//tracks historic withdrawals of each address. deposits[pid][user] is the total withdrawals for that user from that igloo
mapping(uint256 => mapping(address => uint256)) public withdrawals;
event Deposit(address indexed user, uint256 indexed pid, uint256 amount, address indexed to);
event Withdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to);
event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to);
event Harvest(address indexed user, uint256 indexed pid, uint256 amountIPEFI, uint256 amountPEFI);
event DevSet(address indexed oldAddress, address indexed newAddress);
event NestSet(address indexed oldAddress, address indexed newAddress);
event NestAllocatorAddressSet(address indexed oldAddress, address indexed newAddress);
event PerformanceFeeAddressSet(address indexed oldAddress, address indexed newAddress);
/**
* @notice Throws if called by smart contract
*/
modifier onlyApprovedContractOrEOA() {
if (onlyApprovedContractOrEOAStatus) {
require(tx.origin == msg.sender || approvedContracts[msg.sender], "IglooMaster::onlyApprovedContractOrEOA");
}
_;
}
constructor(
PEFI _pefi,
uint256 _startTime,
address _dev,
address _nest,
address _nestAllocatorAddress,
address _performanceFeeAddress,
uint256 _pefiEmissionPerSecond
) {
require(_startTime > block.timestamp, "must start in future");
pefi = _pefi;
startTime = _startTime;
dev = _dev;
nest = _nest;
nestAllocatorAddress = _nestAllocatorAddress;
pefiEmissionPerSecond = _pefiEmissionPerSecond;
emit DevSet(address(0), _dev);
emit NestSet(address(0), _nest);
emit NestAllocatorAddressSet(address(0), _nestAllocatorAddress);
emit PerformanceFeeAddressSet(address(0), _performanceFeeAddress);
}
//VIEW FUNCTIONS
function poolLength() public view returns (uint256) {
return poolInfo.length;
}
// View function to see total pending reward in PEFI on frontend.
function totalPendingPEFI(uint256 pid, address penguin) public view returns (uint256) {
PoolInfo storage pool = poolInfo[pid];
UserInfo storage user = userInfo[pid][penguin];
uint256 accPEFIPerShare = pool.accPEFIPerShare;
uint256 poolShares = pool.totalShares;
if (block.timestamp > pool.lastRewardTime && poolShares != 0) {
uint256 pefiReward = (reward(pool.lastRewardTime, block.timestamp) * pool.allocPoint) / totalAllocPoint;
uint256 toDev = (pefiReward * devMintBips) / MAX_BIPS;
uint256 toNest = (pefiReward * nestMintBips) / MAX_BIPS;
uint256 finalReward = pefiReward - (toDev + toNest);
accPEFIPerShare = accPEFIPerShare + (
(finalReward * ACC_PEFI_PRECISION) / poolShares
);
}
return ((user.amount * accPEFIPerShare) / ACC_PEFI_PRECISION) - user.rewardDebt;
}
// similar to totalPendingPEFI, but takes ipefiDistributionBips into account
function pendingPEFI(uint256 pid, address user) public view returns (uint256) {
uint256 totalPending = totalPendingPEFI(pid, user);
uint256 ipefiBips = ipefiDistributionBipsByUser(user);
uint256 pefiReward = (totalPending * (MAX_BIPS - ipefiBips)) / MAX_BIPS;
return pefiReward;
}
// similar to totalPendingPEFI, but takes ipefiDistributionBips and conversion to ipefi into account
function pendingIPEFI(uint256 pid, address user) public view returns (uint256) {
uint256 totalPending = totalPendingPEFI(pid, user);
uint256 ipefiBips = ipefiDistributionBipsByUser(user);
uint256 pefiAmount = (totalPending * ipefiBips) / MAX_BIPS;
uint256 ipefiReward = (pefiAmount * 1e18) / PenguinNests(nest).currentExchangeRate();
return ipefiReward;
}
// View function to see total pending reward in PEFI and IPEFI on frontend.
function pendingRewards(uint256 pid, address user) public view returns (uint256, uint256) {
return (pendingPEFI(pid, user), pendingIPEFI(pid, user));
}
// view function to get all pending rewards, from IglooMaster, Strategy, and Rewarder
function pendingTokens(uint256 pid, address user) external view
returns (address[] memory, uint256[] memory) {
uint256 pefiAmount = totalPendingPEFI(pid, user);
(address[] memory strategyTokens, uint256[] memory strategyRewards) =
poolInfo[pid].strategy.pendingTokens(pid, user, pefiAmount);
address[] memory rewarderTokens;
uint256[] memory rewarderRewards;
if (address(poolInfo[pid].rewarder) != address(0)) {
(rewarderTokens, rewarderRewards) =
poolInfo[pid].rewarder.pendingTokens(pid, user, pefiAmount);
}
//default number of rewards for just PEFI and IPEFI
uint256 rewardsLength = 2;
for (uint256 i = 0; i < rewarderTokens.length; i++) {
rewardsLength += 1;
}
for (uint256 j = 0; j < strategyTokens.length; j++) {
if (strategyTokens[j] != address(0)) {
rewardsLength += 1;
}
}
address[] memory _rewardTokens = new address[](rewardsLength);
uint256[] memory _pendingAmounts = new uint256[](rewardsLength);
_rewardTokens[0] = address(pefi);
_rewardTokens[1] = address(nest);
(_pendingAmounts[0], _pendingAmounts[1]) = pendingRewards(pid, user);
for (uint256 k = 0; k < rewarderTokens.length; k++) {
_rewardTokens[k + 2] = rewarderTokens[k];
_pendingAmounts[k + 2] = rewarderRewards[k];
}
for (uint256 m = 0; m < strategyTokens.length; m++) {
if (strategyTokens[m] != address(0)) {
_rewardTokens[m + 2 + rewarderTokens.length] = strategyTokens[m];
_pendingAmounts[m + 2 + rewarderRewards.length] = strategyRewards[m];
}
}
return(_rewardTokens, _pendingAmounts);
}
// Return reward over the period _from to _to.
function reward(uint256 _lastRewardTime, uint256 _currentTime) public view returns (uint256) {
return ((_currentTime - _lastRewardTime) * pefiEmissionPerSecond);
}
//convenience function to get the yearly emission of PEFI at the current emission rate
function pefiPerYear() public view returns(uint256) {
//31536000 = seconds per year = 365 * 24 * 60 * 60
return (pefiEmissionPerSecond * 31536000);
}
//convenience function to get the yearly emission of PEFI at the current emission rate, to a given igloo
function pefiPerYearToIgloo(uint256 pid) public view returns(uint256) {
return ((pefiPerYear() * poolInfo[pid].allocPoint) / totalAllocPoint);
}
//convenience function to get the yearly emission of PEFI at the current emission rate, to the nest
function pefiPerYearToNest() public view returns(uint256) {
return ((pefiPerYear() * nestMintBips) / MAX_BIPS);
}
//fetches nest simple APY at current PEFI emission rate. returned value is multiplier *scaled up by ACC_PEFI_PRECISION*
function nestAPY() public view returns(uint256) {
uint256 pefiInNest = pefi.balanceOf(nest);
return (pefiPerYearToNest() * ACC_PEFI_PRECISION) / pefiInNest;
}
//convenience function to get the total number of shares in an igloo
function totalShares(uint256 pid) public view returns(uint256) {
return poolInfo[pid].totalShares;
}
//convenience function to get the total amount of LP tokens in an igloo
function totalLP(uint256 pid) public view returns(uint256) {
return (poolInfo[pid].lpPerShare * totalShares(pid) / ACC_PEFI_PRECISION);
}
//convenience function to get the shares of a single user in an igloo
function userShares(uint256 pid, address user) public view returns(uint256) {
return userInfo[pid][user].amount;
}
//returns user profits in LP (returns zero in the event that user has losses due to previous withdrawal fees)
function profitInLP(uint256 pid, address userAddress) public view returns(uint256) {
UserInfo storage user = userInfo[pid][userAddress];
PoolInfo storage pool = poolInfo[pid];
uint256 userDeposits = deposits[pid][userAddress];
uint256 userWithdrawals = withdrawals[pid][userAddress];
uint256 lpFromShares = (user.amount * pool.lpPerShare) / ACC_PEFI_PRECISION;
uint256 totalAssets = userWithdrawals + lpFromShares;
if(totalAssets >= userDeposits) {
return (totalAssets - userDeposits);
} else {
return 0;
}
}
//function for fetching the current ipefiDistributionBips of a user
function ipefiDistributionBipsByUser(address user) public view returns (uint256) {
uint256 ipefiBips = ipefiDistributionBipsSet[user] ? ipefiDistributionBips[user] : defaultIpefiDistributionBips;
return ipefiBips;
}
//WRITE FUNCTIONS
/// @notice Update reward variables of the given pool.
/// @param pid The index of the pool. See `poolInfo`.
function updatePool(uint256 pid) public {
PoolInfo storage pool = poolInfo[pid];
if (block.timestamp > pool.lastRewardTime) {
uint256 poolShares = pool.totalShares;
if (poolShares == 0 || pool.allocPoint == 0) {
pool.lastRewardTime = block.timestamp;
return;
}
uint256 pefiReward = (reward(pool.lastRewardTime, block.timestamp) * pool.allocPoint) / totalAllocPoint;
pool.lastRewardTime = block.timestamp;
if (pefiReward > 0) {
uint256 toDev = (pefiReward * devMintBips) / MAX_BIPS;
uint256 toNest = (pefiReward * nestMintBips) / MAX_BIPS;
uint256 finalReward = pefiReward - (toDev + toNest);
pool.accPEFIPerShare = pool.accPEFIPerShare + (
(finalReward * ACC_PEFI_PRECISION) / poolShares
);
require((pefi.totalSupply() + pefiReward) <= PEFI_MAX_SUPPLY, "mint would exceed max supply");
pefi.mint(dev, toDev);
pefi.mint(nest, toNest);
pefi.mint(address(this), finalReward);
}
}
}
// Update reward variables for all pools. Be careful of gas spending!
function massUpdatePools() public {
uint256 length = poolInfo.length;
for (uint256 pid = 0; pid < length; ++pid) {
updatePool(pid);
}
}
/// @notice Deposit LP tokens to IglooMaster for PEFI allocation.
/// @param pid The index of the pool. See `poolInfo`.
/// @param amount LP token amount to deposit.
/// @param to The receiver of `amount` deposit benefit.
function deposit(uint256 pid, uint256 amount, address to) external onlyApprovedContractOrEOA {
updatePool(pid);
PoolInfo storage pool = poolInfo[pid];
if (amount > 0) {
UserInfo storage user = userInfo[pid][to];
//find number of new shares from amount
uint256 newShares = (amount * ACC_PEFI_PRECISION) / pool.lpPerShare;
//transfer tokens directly to strategy
pool.poolToken.safeTransferFrom(
address(msg.sender),
address(pool.strategy),
amount