This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathapi.ts
1169 lines (1030 loc) · 37.9 KB
/
api.ts
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
import { JsonRpcProvider } from '@ethersproject/providers'
import { CHAIN_NAMESPACE, CHAIN_REFERENCE, ChainReference, toAssetId } from '@shapeshiftoss/caip'
import { ChainAdapter } from '@shapeshiftoss/chain-adapters'
import { KnownChainIds, WithdrawType } from '@shapeshiftoss/types'
import axios from 'axios'
import { BigNumber } from 'bignumber.js'
import { toLower } from 'lodash'
import Web3 from 'web3'
import { HttpProvider, TransactionReceipt } from 'web3-core/types'
import { Contract } from 'web3-eth-contract'
import { erc20Abi } from '../abi/erc20-abi'
import { foxyAbi } from '../abi/foxy-abi'
import { foxyStakingAbi } from '../abi/foxy-staking-abi'
import { liquidityReserveAbi } from '../abi/liquidity-reserve-abi'
import { tokeManagerAbi } from '../abi/toke-manager-abi'
import { tokePoolAbi } from '../abi/toke-pool-abi'
import { tokeRewardHashAbi } from '../abi/toke-reward-hash-abi'
import {
DefiType,
MAX_ALLOWANCE,
tokeManagerAddress,
tokePoolAddress,
tokeRewardHashAddress
} from '../constants'
import { bnOrZero, buildTxToSign } from '../utils'
import {
AllowanceInput,
ApproveInput,
BalanceInput,
CanClaimWithdrawParams,
ClaimWithdrawal,
ContractAddressInput,
EstimateGasApproveInput,
EstimateGasTxInput,
FoxyAddressesType,
FoxyOpportunityInputData,
GetTokeRewardAmount,
RebaseEvent,
RebaseHistory,
SignAndBroadcastTx,
StakingContract,
TokeClaimIpfs,
TokenAddressInput,
TxInput,
TxInputWithoutAmount,
TxInputWithoutAmountAndWallet,
TxReceipt,
WithdrawEstimateGasInput,
WithdrawInfo,
WithdrawInput
} from './foxy-types'
export * from './foxy-types'
type EthereumChainReference =
| typeof CHAIN_REFERENCE.EthereumMainnet
| typeof CHAIN_REFERENCE.EthereumRinkeby
| typeof CHAIN_REFERENCE.EthereumRopsten
export type ConstructorArgs = {
adapter: ChainAdapter<KnownChainIds.EthereumMainnet>
providerUrl: string
foxyAddresses: FoxyAddressesType
chainReference?: EthereumChainReference
}
export const transformData = ({ tvl, apy, expired, ...contractData }: FoxyOpportunityInputData) => {
return {
type: DefiType.TokenStaking,
provider: 'ShapeShift',
version: '1',
contractAddress: contractData.staking,
rewardToken: contractData.foxy,
stakingToken: contractData.fox,
chain: KnownChainIds.EthereumMainnet,
tvl,
apy,
expired
}
}
const TOKE_IPFS_URL = 'https://ipfs.tokemaklabs.xyz/ipfs'
export class FoxyApi {
public adapter: ChainAdapter<KnownChainIds.EthereumMainnet>
public provider: HttpProvider
private providerUrl: string
public jsonRpcProvider: JsonRpcProvider
public web3: Web3
private foxyStakingContracts: Contract[]
private liquidityReserveContracts: Contract[]
private readonly ethereumChainReference: ChainReference
private foxyAddresses: FoxyAddressesType
constructor({
adapter,
providerUrl,
foxyAddresses,
chainReference = CHAIN_REFERENCE.EthereumMainnet
}: ConstructorArgs) {
this.adapter = adapter
this.provider = new Web3.providers.HttpProvider(providerUrl)
this.jsonRpcProvider = new JsonRpcProvider(providerUrl)
this.web3 = new Web3(this.provider)
this.foxyStakingContracts = foxyAddresses.map(
(addresses) => new this.web3.eth.Contract(foxyStakingAbi, addresses.staking)
)
this.liquidityReserveContracts = foxyAddresses.map(
(addresses) => new this.web3.eth.Contract(liquidityReserveAbi, addresses.liquidityReserve)
)
this.ethereumChainReference = chainReference
this.providerUrl = providerUrl
this.foxyAddresses = foxyAddresses
}
/**
* Very large amounts like those found in ERC20s with a precision of 18 get converted
* to exponential notation ('1.6e+21') in javascript.
* @param amount
*/
private normalizeAmount(amount: BigNumber) {
return this.web3.utils.toBN(amount.toFixed())
}
private async signAndBroadcastTx(input: SignAndBroadcastTx): Promise<string> {
const { payload, wallet, dryRun } = input
const txToSign = buildTxToSign(payload)
if (wallet.supportsOfflineSigning()) {
const signedTx = await this.adapter.signTransaction({ txToSign, wallet })
if (dryRun) return signedTx
try {
if (this.providerUrl.includes('localhost') || this.providerUrl.includes('127.0.0.1')) {
const sendSignedTx = await this.web3.eth.sendSignedTransaction(signedTx)
return sendSignedTx?.blockHash
}
return this.adapter.broadcastTransaction(signedTx)
} catch (e) {
throw new Error(`Failed to broadcast: ${e}`)
}
} else if (wallet.supportsBroadcast() && this.adapter.signAndBroadcastTransaction) {
if (dryRun) {
throw new Error(`Cannot perform a dry run with wallet of type ${wallet.getVendor()}`)
}
return this.adapter.signAndBroadcastTransaction({ txToSign, wallet })
} else {
throw new Error('Invalid HDWallet configuration ')
}
}
checksumAddress(address: string): string {
return this.web3.utils.toChecksumAddress(address)
}
private verifyAddresses(addresses: string[]) {
try {
addresses.forEach((address) => {
this.checksumAddress(address)
})
} catch (e) {
throw new Error(`Verify Address: ${e}`)
}
}
private getStakingContract(contractAddress: string): Contract {
const stakingContract = this.foxyStakingContracts.find(
(item) => toLower(item.options.address) === toLower(contractAddress)
)
if (!stakingContract) throw new Error('Not a valid contract address')
return stakingContract
}
private getLiquidityReserveContract(liquidityReserveAddress: string): Contract {
const liquidityReserveContract = this.liquidityReserveContracts.find(
(item) => toLower(item.options.address) === toLower(liquidityReserveAddress)
)
if (!liquidityReserveContract) throw new Error('Not a valid reserve contract address')
return liquidityReserveContract
}
private async getGasPriceAndNonce(userAddress: string) {
let nonce: number
try {
nonce = await this.web3.eth.getTransactionCount(userAddress)
} catch (e) {
throw new Error(`Get nonce Error: ${e}`)
}
let gasPrice: string
try {
gasPrice = await this.web3.eth.getGasPrice()
} catch (e) {
throw new Error(`Get gasPrice Error: ${e}`)
}
return { nonce: String(nonce), gasPrice }
}
async getFoxyOpportunities() {
try {
const opportunities = await Promise.all(
this.foxyAddresses.map(async (addresses) => {
const stakingContract = this.foxyStakingContracts.find(
(item) => toLower(item.options.address) === toLower(addresses.staking)
)
try {
const expired = await stakingContract?.methods.pauseStaking().call()
const tvl = await this.tvl({ tokenContractAddress: addresses.foxy })
const apy = this.apy()
return transformData({ ...addresses, expired, tvl, apy })
} catch (e) {
throw new Error(`Failed to get contract data ${e}`)
}
})
)
return opportunities
} catch (e) {
throw new Error(`getFoxyOpportunities Error: ${e}`)
}
}
async getFoxyOpportunityByStakingAddress(stakingAddress: string) {
this.verifyAddresses([stakingAddress])
const addresses = this.foxyAddresses.find(async (item) => {
return item.staking === stakingAddress
})
if (!addresses) throw new Error('Not a valid address')
const stakingContract = this.getStakingContract(addresses.staking)
try {
const expired = await stakingContract.methods.pauseStaking().call()
const tvl = await this.tvl({ tokenContractAddress: addresses.foxy })
const apy = this.apy()
return transformData({ ...addresses, tvl, apy, expired })
} catch (e) {
throw new Error(`Failed to get contract data ${e}`)
}
}
async getGasPrice() {
const gasPrice = await this.web3.eth.getGasPrice()
return bnOrZero(gasPrice)
}
async getTxReceipt({ txid }: TxReceipt): Promise<TransactionReceipt> {
if (!txid) throw new Error('Must pass txid')
return this.web3.eth.getTransactionReceipt(txid)
}
async estimateClaimWithdrawGas(input: ClaimWithdrawal): Promise<BigNumber> {
const { claimAddress, userAddress, contractAddress } = input
const addressToClaim = claimAddress ?? userAddress
this.verifyAddresses([addressToClaim, userAddress, contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
try {
const estimatedGas = await stakingContract.methods.claimWithdraw(addressToClaim).estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateSendWithdrawalRequestsGas(
input: TxInputWithoutAmountAndWallet
): Promise<BigNumber> {
const { userAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
try {
const estimatedGas = await stakingContract.methods.sendWithdrawalRequests().estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateAddLiquidityGas(input: EstimateGasTxInput): Promise<BigNumber> {
const { amountDesired, userAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
const liquidityReserveContract = this.getLiquidityReserveContract(contractAddress)
try {
const estimatedGas = await liquidityReserveContract.methods
.addLiquidity(this.normalizeAmount(amountDesired))
.estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateRemoveLiquidityGas(input: EstimateGasTxInput): Promise<BigNumber> {
const { amountDesired, userAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
const liquidityReserveContract = this.getLiquidityReserveContract(contractAddress)
try {
const estimatedGas = await liquidityReserveContract.methods
.removeLiquidity(this.normalizeAmount(amountDesired))
.estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateWithdrawGas(input: WithdrawEstimateGasInput): Promise<BigNumber> {
const { amountDesired, userAddress, contractAddress, type } = input
this.verifyAddresses([userAddress, contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
const isDelayed = type === WithdrawType.DELAYED && amountDesired
if (isDelayed && !amountDesired.gt(0)) throw new Error('Must send valid amount')
try {
const estimatedGas = isDelayed
? await stakingContract.methods
.unstake(this.normalizeAmount(amountDesired), true)
.estimateGas({
from: userAddress
})
: await stakingContract.methods.instantUnstake(true).estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateApproveGas(input: EstimateGasApproveInput): Promise<BigNumber> {
const { userAddress, tokenContractAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress, tokenContractAddress])
const depositTokenContract = new this.web3.eth.Contract(erc20Abi, tokenContractAddress)
try {
const estimatedGas = await depositTokenContract.methods
.approve(contractAddress, MAX_ALLOWANCE)
.estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async estimateDepositGas(input: EstimateGasTxInput): Promise<BigNumber> {
const { amountDesired, userAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
const stakingContract = this.getStakingContract(contractAddress)
try {
const estimatedGas = await stakingContract.methods
.stake(this.normalizeAmount(amountDesired), userAddress)
.estimateGas({
from: userAddress
})
return bnOrZero(estimatedGas)
} catch (e) {
throw new Error(`Failed to get gas ${e}`)
}
}
async approve(input: ApproveInput): Promise<string> {
const {
accountNumber = 0,
dryRun = false,
tokenContractAddress,
userAddress,
wallet,
contractAddress
} = input
this.verifyAddresses([userAddress, contractAddress, tokenContractAddress])
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateApproveGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const depositTokenContract = new this.web3.eth.Contract(erc20Abi, tokenContractAddress)
const data: string = depositTokenContract.methods
.approve(contractAddress, MAX_ALLOWANCE)
.encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const estimatedGas = estimatedGasBN.toString()
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: tokenContractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
async allowance(input: AllowanceInput): Promise<string> {
const { userAddress, tokenContractAddress, contractAddress } = input
this.verifyAddresses([userAddress, contractAddress, tokenContractAddress])
const depositTokenContract: Contract = new this.web3.eth.Contract(
erc20Abi,
tokenContractAddress
)
let allowance
try {
allowance = await depositTokenContract.methods.allowance(userAddress, contractAddress).call()
} catch (e) {
throw new Error(`Failed to get allowance ${e}`)
}
return allowance
}
async deposit(input: TxInput): Promise<string> {
const {
amountDesired,
accountNumber = 0,
dryRun = false,
contractAddress,
userAddress,
wallet
} = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateDepositGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const stakingContract = this.getStakingContract(contractAddress)
const userChecksum = this.web3.utils.toChecksumAddress(userAddress)
const data: string = await stakingContract.methods
.stake(this.normalizeAmount(amountDesired), userAddress)
.encodeABI({
value: 0,
from: userChecksum
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
async withdraw(input: WithdrawInput): Promise<string> {
const {
amountDesired,
accountNumber = 0,
dryRun = false,
contractAddress,
userAddress,
type,
wallet
} = input
this.verifyAddresses([userAddress, contractAddress])
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateWithdrawGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const stakingContract = this.getStakingContract(contractAddress)
const isDelayed = type === WithdrawType.DELAYED && amountDesired
if (isDelayed && !amountDesired.gt(0)) throw new Error('Must send valid amount')
const data: string = isDelayed
? stakingContract.methods.unstake(this.normalizeAmount(amountDesired), true).encodeABI({
from: userAddress
})
: stakingContract.methods.instantUnstake(true).encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
async canClaimWithdraw(input: CanClaimWithdrawParams): Promise<boolean> {
const { userAddress, contractAddress } = input
const tokeManagerContract = new this.web3.eth.Contract(tokeManagerAbi, tokeManagerAddress)
const tokePoolContract = new this.web3.eth.Contract(tokePoolAbi, tokePoolAddress)
const stakingContract = this.getStakingContract(contractAddress)
const coolDownInfo = await (async () => {
try {
const coolDown = await stakingContract.methods.coolDownInfo(userAddress).call()
return {
...coolDown,
endEpoch: coolDown.expiry
}
} catch (e) {
console.error(`Failed to get coolDowninfo: ${e}`)
}
})()
const epoch = await (async () => {
try {
return stakingContract.methods.epoch().call()
} catch (e) {
console.error(`Failed to get epoch: ${e}`)
return {}
}
})()
const requestedWithdrawals = await (async () => {
try {
return tokePoolContract.methods.requestedWithdrawals(stakingContract.options.address).call()
} catch (e) {
console.error(`Failed to get requestedWithdrawals: ${e}`)
return {}
}
})()
const currentCycleIndex = await (async () => {
try {
return tokeManagerContract.methods.getCurrentCycleIndex().call()
} catch (e) {
console.error(`Failed to get currentCycleIndex: ${e}`)
return 0
}
})()
const withdrawalAmount = await (async () => {
try {
return stakingContract.methods.withdrawalAmount().call()
} catch (e) {
console.error(`Failed to get currentCycleIndex: ${e}`)
return 0
}
})()
const epochExpired = epoch.number >= coolDownInfo.endEpoch
const coolDownValid =
!bnOrZero(coolDownInfo.endEpoch).eq(0) && !bnOrZero(coolDownInfo.amount).eq(0)
const pastTokeCycleIndex = bnOrZero(requestedWithdrawals.minCycle).lte(currentCycleIndex)
const stakingTokenAvailableWithTokemak = bnOrZero(requestedWithdrawals.amount).plus(
withdrawalAmount
)
const stakingTokenAvailable = bnOrZero(withdrawalAmount).gte(coolDownInfo.amount)
const validCycleAndAmount =
(pastTokeCycleIndex && stakingTokenAvailableWithTokemak.gte(coolDownInfo.amount)) ||
stakingTokenAvailable
return epochExpired && coolDownValid && validCycleAndAmount
}
async claimWithdraw(input: ClaimWithdrawal): Promise<string> {
const {
accountNumber = 0,
dryRun = false,
contractAddress,
userAddress,
claimAddress,
wallet
} = input
const addressToClaim = claimAddress ?? userAddress
this.verifyAddresses([userAddress, contractAddress, addressToClaim])
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateClaimWithdrawGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const stakingContract = this.getStakingContract(contractAddress)
const canClaim = await this.canClaimWithdraw({ userAddress, contractAddress })
if (!canClaim) throw new Error('Not ready to claim')
const data: string = stakingContract.methods.claimWithdraw(addressToClaim).encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
async canSendWithdrawalRequest(input: StakingContract): Promise<boolean> {
const { stakingContract } = input
const tokeManagerContract = new this.web3.eth.Contract(tokeManagerAbi, tokeManagerAddress)
const requestWithdrawalAmount = await (async () => {
try {
return stakingContract.methods.requestWithdrawalAmount().call()
} catch (e) {
console.error(`Failed to get requestWithdrawalAmount: ${e}`)
return 0
}
})()
const timeLeftToRequestWithdrawal = await (async () => {
try {
return stakingContract.methods.timeLeftToRequestWithdrawal().call()
} catch (e) {
console.error(`Failed to get timeLeftToRequestWithdrawal: ${e}`)
return 0
}
})()
const lastTokeCycleIndex = await (async () => {
try {
return stakingContract.methods.lastTokeCycleIndex().call()
} catch (e) {
console.error(`Failed to get lastTokeCycleIndex: ${e}`)
return 0
}
})()
const duration = await (async () => {
try {
return tokeManagerContract.methods.getCycleDuration().call()
} catch (e) {
console.error(`Failed to get cycleDuration: ${e}`)
return 0
}
})()
const currentCycleIndex = await (async () => {
try {
return tokeManagerContract.methods.getCurrentCycleIndex().call()
} catch (e) {
console.error(`Failed to get currentCycleIndex: ${e}`)
return 0
}
})()
const currentCycleStart = await (async () => {
try {
return tokeManagerContract.methods.getCurrentCycle().call()
} catch (e) {
console.error(`Failed to get currentCycle: ${e}`)
return 0
}
})()
const nextCycleStart = bnOrZero(currentCycleStart).plus(duration)
const blockNumber = await this.web3.eth.getBlockNumber()
const timestamp = (await this.web3.eth.getBlock(blockNumber)).timestamp
const isTimeToRequest = bnOrZero(timestamp)
.plus(timeLeftToRequestWithdrawal)
.gte(nextCycleStart)
const isCorrectIndex = bnOrZero(currentCycleIndex).gt(lastTokeCycleIndex)
const hasAmount = bnOrZero(requestWithdrawalAmount).gt(0)
return isTimeToRequest && isCorrectIndex && hasAmount
}
async sendWithdrawalRequests(input: TxInputWithoutAmount): Promise<string> {
const { accountNumber = 0, dryRun = false, contractAddress, userAddress, wallet } = input
this.verifyAddresses([userAddress, contractAddress])
if (!wallet || !contractAddress) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateSendWithdrawalRequestsGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const stakingContract = this.getStakingContract(contractAddress)
const canSendRequest = await this.canSendWithdrawalRequest({ stakingContract })
if (!canSendRequest) throw new Error('Not ready to send request')
const data: string = stakingContract.methods.sendWithdrawalRequests().encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
// not a user facing function
// utility function for the dao to add liquidity to the lrContract for instantUnstaking
async addLiquidity(input: TxInput): Promise<string> {
const {
amountDesired,
accountNumber = 0,
dryRun = false,
contractAddress,
userAddress,
wallet
} = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateAddLiquidityGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const liquidityReserveContract = this.getLiquidityReserveContract(contractAddress)
const data: string = liquidityReserveContract.methods
.addLiquidity(this.normalizeAmount(amountDesired))
.encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
// not a user facing function
// utility function for the dao to remove liquidity to the lrContract for instantUnstaking
async removeLiquidity(input: TxInput): Promise<string> {
const {
amountDesired,
accountNumber = 0,
dryRun = false,
contractAddress,
userAddress,
wallet
} = input
this.verifyAddresses([userAddress, contractAddress])
if (!amountDesired.gt(0)) throw new Error('Must send valid amount')
if (!wallet) throw new Error('Missing inputs')
let estimatedGasBN: BigNumber
try {
estimatedGasBN = await this.estimateRemoveLiquidityGas(input)
} catch (e) {
throw new Error(`Estimate Gas Error: ${e}`)
}
const liquidityReserveContract = this.getLiquidityReserveContract(contractAddress)
const data: string = liquidityReserveContract.methods
.removeLiquidity(this.normalizeAmount(amountDesired))
.encodeABI({
from: userAddress
})
const { nonce, gasPrice } = await this.getGasPriceAndNonce(userAddress)
const estimatedGas = estimatedGasBN.toString()
const bip44Params = this.adapter.buildBIP44Params({ accountNumber })
const chainReferenceAsNumber = Number(this.ethereumChainReference)
const payload = {
bip44Params,
chainId: chainReferenceAsNumber,
data,
estimatedGas,
gasPrice,
nonce,
to: contractAddress,
value: '0'
}
return this.signAndBroadcastTx({ payload, wallet, dryRun })
}
// returns time when the users withdraw request is claimable
async getTimeUntilClaimable(input: TxInputWithoutAmountAndWallet): Promise<string> {
const { contractAddress, userAddress } = input
this.verifyAddresses([userAddress, contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
let coolDownInfo
try {
const coolDown = await stakingContract.methods.coolDownInfo(userAddress).call()
coolDownInfo = {
...coolDown,
endEpoch: coolDown.expiry
}
} catch (e) {
throw new Error(`Failed to get coolDowninfo: ${e}`)
}
let epoch
try {
epoch = await stakingContract.methods.epoch().call()
} catch (e) {
throw new Error(`Failed to get epoch: ${e}`)
}
let currentBlock
try {
currentBlock = await this.web3.eth.getBlockNumber()
} catch (e) {
throw new Error(`Failed to get block number: ${e}`)
}
const epochsLeft = bnOrZero(coolDownInfo.endEpoch).minus(epoch.number) // epochs left until can claim
const blocksLeftInCurrentEpoch =
epochsLeft.gt(0) && epoch.endBlock > currentBlock ? epoch.endBlock - currentBlock : 0 // calculate time remaining in current epoch
const blocksLeftInFutureEpochs = epochsLeft.minus(1).gt(0)
? epochsLeft.minus(1).times(epoch.length)
: 0 // don't count current epoch
const blocksUntilClaimable = bnOrZero(blocksLeftInCurrentEpoch).plus(blocksLeftInFutureEpochs) // total blocks left until can claim
const secondsUntilClaimable = blocksUntilClaimable.times(13) // average block time is 13 seconds to get total seconds
const currentDate = new Date()
currentDate.setSeconds(secondsUntilClaimable.plus(currentDate.getSeconds()).toNumber())
return currentDate.toString()
}
async balance(input: BalanceInput): Promise<BigNumber> {
const { tokenContractAddress, userAddress } = input
this.verifyAddresses([userAddress, tokenContractAddress])
const contract = new this.web3.eth.Contract(erc20Abi, tokenContractAddress)
try {
const balance = await contract.methods.balanceOf(userAddress).call()
return bnOrZero(balance)
} catch (e) {
throw new Error(`Failed to get balance: ${e}`)
}
}
async instantUnstakeFee(input: ContractAddressInput): Promise<BigNumber> {
const { contractAddress } = input
this.verifyAddresses([contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
let liquidityReserveAddress
try {
liquidityReserveAddress = await stakingContract.methods.LIQUIDITY_RESERVE().call()
} catch (e) {
throw new Error(`Failed to get liquidityReserve address ${e}`)
}
const liquidityReserveContract = this.getLiquidityReserveContract(liquidityReserveAddress)
try {
const feeInBasisPoints = await liquidityReserveContract.methods.fee().call()
return bnOrZero(feeInBasisPoints).div(10000) // convert from basis points to decimal percentage
} catch (e) {
throw new Error(`Failed to get instantUnstake fee ${e}`)
}
}
async totalSupply({ tokenContractAddress }: TokenAddressInput): Promise<BigNumber> {
this.verifyAddresses([tokenContractAddress])
const contract = new this.web3.eth.Contract(erc20Abi, tokenContractAddress)
try {
const totalSupply = await contract.methods.totalSupply().call()
return bnOrZero(totalSupply)
} catch (e) {
throw new Error(`Failed to get totalSupply: ${e}`)
}
}
pricePerShare(): BigNumber {
return bnOrZero(1).times('1e+18')
}
// TODO: use tokemak's api to get apy when they build it
apy(): string {
return '.15'
}
async tvl(input: TokenAddressInput): Promise<BigNumber> {
const { tokenContractAddress } = input
this.verifyAddresses([tokenContractAddress])
const contract = new this.web3.eth.Contract(foxyAbi, tokenContractAddress)
try {
const balance = await contract.methods.circulatingSupply().call()
return bnOrZero(balance)
} catch (e) {
throw new Error(`Failed to get tvl: ${e}`)
}
}
async getWithdrawInfo(input: TxInputWithoutAmountAndWallet): Promise<WithdrawInfo> {
const { contractAddress, userAddress } = input
this.verifyAddresses([userAddress, contractAddress])
const stakingContract = this.getStakingContract(contractAddress)
let coolDownInfo
try {
coolDownInfo = await stakingContract.methods.coolDownInfo(userAddress).call()
} catch (e) {
throw new Error(`Failed to get coolDowninfo: ${e}`)
}
let releaseTime
try {
releaseTime = await this.getTimeUntilClaimable(input)
} catch (e) {
throw new Error(`Failed to getTimeUntilClaimable: ${e}`)
}
return {
...coolDownInfo,
releaseTime
}
}
async getClaimFromTokemakArgs(input: ContractAddressInput): Promise<GetTokeRewardAmount> {
const { contractAddress } = input
const rewardHashContract = new this.web3.eth.Contract(tokeRewardHashAbi, tokeRewardHashAddress)
const latestCycleIndex = await (async () => {
try {
return rewardHashContract.methods.latestCycleIndex().call()