@defisaver/positions-sdk 2.0.15-dev → 2.0.15-dev-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mocharc.json +4 -4
- package/.nvmrc +1 -1
- package/README.md +64 -64
- package/cjs/aaveV2/index.js +9 -5
- package/cjs/aaveV3/index.js +50 -40
- package/cjs/aaveV3/merit.d.ts +17 -0
- package/cjs/aaveV3/merit.js +95 -0
- package/cjs/aaveV3/{rewards.d.ts → merkl.d.ts} +7 -2
- package/cjs/aaveV3/{rewards.js → merkl.js} +30 -14
- package/cjs/compoundV2/index.js +13 -7
- package/cjs/compoundV3/index.js +7 -2
- package/cjs/config/contracts.d.ts +6510 -1851
- package/cjs/config/contracts.js +33 -12
- package/cjs/contracts.d.ts +178 -0
- package/cjs/eulerV2/index.js +11 -2
- package/cjs/fluid/index.js +105 -34
- package/cjs/helpers/aaveHelpers/index.js +0 -1
- package/cjs/helpers/compoundHelpers/index.d.ts +3 -5
- package/cjs/helpers/compoundHelpers/index.js +15 -11
- package/cjs/helpers/eulerHelpers/index.d.ts +0 -5
- package/cjs/helpers/eulerHelpers/index.js +2 -31
- package/cjs/helpers/fluidHelpers/index.js +2 -0
- package/cjs/helpers/liquityV2Helpers/index.js +3 -2
- package/cjs/helpers/morphoBlueHelpers/index.js +66 -66
- package/cjs/liquityV2/index.js +10 -2
- package/cjs/llamaLend/index.js +10 -2
- package/cjs/morphoBlue/index.js +20 -6
- package/cjs/spark/index.js +20 -30
- package/cjs/staking/eligibility.d.ts +11 -0
- package/cjs/staking/eligibility.js +43 -0
- package/cjs/staking/index.d.ts +1 -0
- package/cjs/staking/index.js +1 -0
- package/cjs/staking/staking.d.ts +1 -7
- package/cjs/staking/staking.js +29 -55
- package/cjs/types/aave.d.ts +1 -7
- package/cjs/types/common.d.ts +16 -4
- package/cjs/types/common.js +10 -1
- package/cjs/types/euler.d.ts +3 -3
- package/cjs/types/fluid.d.ts +3 -5
- package/cjs/types/liquityV2.d.ts +3 -3
- package/cjs/types/llamaLend.d.ts +3 -1
- package/cjs/types/morphoBlue.d.ts +3 -5
- package/cjs/types/spark.d.ts +0 -3
- package/esm/aaveV2/index.js +9 -5
- package/esm/aaveV3/index.js +48 -38
- package/esm/aaveV3/merit.d.ts +17 -0
- package/esm/aaveV3/merit.js +90 -0
- package/esm/aaveV3/{rewards.d.ts → merkl.d.ts} +7 -2
- package/esm/aaveV3/{rewards.js → merkl.js} +28 -13
- package/esm/compoundV2/index.js +13 -7
- package/esm/compoundV3/index.js +7 -2
- package/esm/config/contracts.d.ts +6510 -1851
- package/esm/config/contracts.js +33 -12
- package/esm/contracts.d.ts +178 -0
- package/esm/eulerV2/index.js +11 -2
- package/esm/fluid/index.js +106 -35
- package/esm/helpers/aaveHelpers/index.js +0 -1
- package/esm/helpers/compoundHelpers/index.d.ts +3 -5
- package/esm/helpers/compoundHelpers/index.js +16 -12
- package/esm/helpers/eulerHelpers/index.d.ts +0 -5
- package/esm/helpers/eulerHelpers/index.js +2 -30
- package/esm/helpers/fluidHelpers/index.js +2 -0
- package/esm/helpers/liquityV2Helpers/index.js +3 -2
- package/esm/helpers/morphoBlueHelpers/index.js +66 -66
- package/esm/liquityV2/index.js +11 -3
- package/esm/llamaLend/index.js +11 -3
- package/esm/morphoBlue/index.js +21 -7
- package/esm/spark/index.js +21 -31
- package/esm/staking/eligibility.d.ts +11 -0
- package/esm/staking/eligibility.js +36 -0
- package/esm/staking/index.d.ts +1 -0
- package/esm/staking/index.js +1 -0
- package/esm/staking/staking.d.ts +1 -7
- package/esm/staking/staking.js +28 -53
- package/esm/types/aave.d.ts +1 -7
- package/esm/types/common.d.ts +16 -4
- package/esm/types/common.js +9 -0
- package/esm/types/euler.d.ts +3 -3
- package/esm/types/fluid.d.ts +3 -5
- package/esm/types/liquityV2.d.ts +3 -3
- package/esm/types/llamaLend.d.ts +3 -1
- package/esm/types/morphoBlue.d.ts +3 -5
- package/esm/types/spark.d.ts +0 -3
- package/package.json +47 -47
- package/src/aaveV2/index.ts +239 -236
- package/src/aaveV3/index.ts +511 -493
- package/src/aaveV3/merit.ts +98 -0
- package/src/aaveV3/{rewards.ts → merkl.ts} +141 -125
- package/src/compoundV2/index.ts +244 -240
- package/src/compoundV3/index.ts +274 -270
- package/src/config/contracts.ts +1129 -1108
- package/src/constants/index.ts +6 -6
- package/src/contracts.ts +107 -107
- package/src/curveUsd/index.ts +250 -250
- package/src/eulerV2/index.ts +324 -314
- package/src/exchange/index.ts +25 -25
- package/src/fluid/index.ts +1636 -1568
- package/src/helpers/aaveHelpers/index.ts +169 -170
- package/src/helpers/compoundHelpers/index.ts +267 -261
- package/src/helpers/curveUsdHelpers/index.ts +40 -40
- package/src/helpers/eulerHelpers/index.ts +222 -259
- package/src/helpers/fluidHelpers/index.ts +326 -324
- package/src/helpers/index.ts +10 -10
- package/src/helpers/liquityV2Helpers/index.ts +82 -80
- package/src/helpers/llamaLendHelpers/index.ts +53 -53
- package/src/helpers/makerHelpers/index.ts +52 -52
- package/src/helpers/morphoBlueHelpers/index.ts +390 -390
- package/src/helpers/sparkHelpers/index.ts +155 -155
- package/src/index.ts +45 -45
- package/src/liquity/index.ts +104 -104
- package/src/liquityV2/index.ts +418 -408
- package/src/llamaLend/index.ts +305 -296
- package/src/maker/index.ts +223 -223
- package/src/markets/aave/index.ts +116 -116
- package/src/markets/aave/marketAssets.ts +49 -49
- package/src/markets/compound/index.ts +227 -227
- package/src/markets/compound/marketsAssets.ts +90 -90
- package/src/markets/curveUsd/index.ts +69 -69
- package/src/markets/euler/index.ts +26 -26
- package/src/markets/fluid/index.ts +2456 -2456
- package/src/markets/index.ts +25 -25
- package/src/markets/liquityV2/index.ts +102 -102
- package/src/markets/llamaLend/contractAddresses.ts +141 -141
- package/src/markets/llamaLend/index.ts +235 -235
- package/src/markets/morphoBlue/index.ts +895 -895
- package/src/markets/spark/index.ts +29 -29
- package/src/markets/spark/marketAssets.ts +11 -11
- package/src/moneymarket/moneymarketCommonService.ts +80 -80
- package/src/morphoBlue/index.ts +236 -222
- package/src/portfolio/index.ts +285 -285
- package/src/services/priceService.ts +159 -159
- package/src/services/utils.ts +63 -63
- package/src/services/viem.ts +32 -32
- package/src/setup.ts +8 -8
- package/src/spark/index.ts +444 -456
- package/src/staking/eligibility.ts +37 -0
- package/src/staking/index.ts +2 -1
- package/src/staking/staking.ts +169 -194
- package/src/types/aave.ts +189 -195
- package/src/types/common.ts +103 -88
- package/src/types/compound.ts +136 -136
- package/src/types/curveUsd.ts +121 -121
- package/src/types/euler.ts +175 -174
- package/src/types/fluid.ts +448 -450
- package/src/types/index.ts +11 -11
- package/src/types/liquity.ts +30 -30
- package/src/types/liquityV2.ts +126 -126
- package/src/types/llamaLend.ts +159 -157
- package/src/types/maker.ts +63 -63
- package/src/types/morphoBlue.ts +194 -194
- package/src/types/portfolio.ts +60 -60
- package/src/types/spark.ts +135 -137
package/src/compoundV2/index.ts
CHANGED
|
@@ -1,240 +1,244 @@
|
|
|
1
|
-
import { assetAmountInEth, getAssetInfo, getAssetInfoByAddress } from '@defisaver/tokens';
|
|
2
|
-
import Dec from 'decimal.js';
|
|
3
|
-
import { Client } from 'viem';
|
|
4
|
-
import { BLOCKS_IN_A_YEAR } from '../constants';
|
|
5
|
-
import { aprToApy } from '../moneymarket';
|
|
6
|
-
import { compareAddresses, handleWbtcLegacy, wethToEth } from '../services/utils';
|
|
7
|
-
import {
|
|
8
|
-
Blockish, EthAddress, EthereumProvider, NetworkNumber, PositionBalances,
|
|
9
|
-
} from '../types/common';
|
|
10
|
-
import { CompoundLoanInfoContractViem, ComptrollerContractViem } from '../contracts';
|
|
11
|
-
import { compoundV2CollateralAssets } from '../markets';
|
|
12
|
-
import {
|
|
13
|
-
CompoundV2AssetsData, CompoundV2MarketsData, CompoundV2PositionData, CompoundV2UsedAsset, CompoundV2UsedAssets,
|
|
14
|
-
} from '../types';
|
|
15
|
-
import { getCompoundV2AggregatedData } from '../helpers/compoundHelpers';
|
|
16
|
-
import { getViemProvider, setViemBlockNumber } from '../services/viem';
|
|
17
|
-
|
|
18
|
-
const compAddress = '0xc00e94cb662c3520282e6f5717214004a7f26888';
|
|
19
|
-
|
|
20
|
-
export const _getCompoundV2MarketsData = async (provider: Client, network: NetworkNumber): Promise<CompoundV2MarketsData> => {
|
|
21
|
-
const cAddresses = compoundV2CollateralAssets.map(a => a.address);
|
|
22
|
-
|
|
23
|
-
const loanInfoContract = CompoundLoanInfoContractViem(provider, network);
|
|
24
|
-
const loanInfo = await loanInfoContract.read.getFullTokensInfo([cAddresses as EthAddress[]]);
|
|
25
|
-
|
|
26
|
-
const compPrice = loanInfo.find(m => compareAddresses(m.underlyingTokenAddress, compAddress))!.price.toString();
|
|
27
|
-
|
|
28
|
-
const assetsData = loanInfo
|
|
29
|
-
.map((market, i) => {
|
|
30
|
-
let symbol = getAssetInfoByAddress(cAddresses[i]).underlyingAsset;
|
|
31
|
-
let isWbtcLegacy = false;
|
|
32
|
-
const totalSupply = new Dec(market.totalSupply.toString()).div(1e18).times(market.exchangeRate.toString());
|
|
33
|
-
const totalBorrow = market.totalBorrow.toString();
|
|
34
|
-
const borrowCap = market.borrowCap.toString();
|
|
35
|
-
const compSupplySpeeds = market.compSupplySpeeds.toString();
|
|
36
|
-
const compBorrowSpeeds = market.compBorrowSpeeds.toString();
|
|
37
|
-
const assetPrice = market.price.toString();
|
|
38
|
-
|
|
39
|
-
const pricePrecisionDiff = 18 - getAssetInfo(getAssetInfoByAddress(cAddresses[i]).underlyingAsset).decimals;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
symbol
|
|
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
|
-
const
|
|
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
|
-
|
|
1
|
+
import { assetAmountInEth, getAssetInfo, getAssetInfoByAddress } from '@defisaver/tokens';
|
|
2
|
+
import Dec from 'decimal.js';
|
|
3
|
+
import { Client } from 'viem';
|
|
4
|
+
import { BLOCKS_IN_A_YEAR } from '../constants';
|
|
5
|
+
import { aprToApy } from '../moneymarket';
|
|
6
|
+
import { compareAddresses, handleWbtcLegacy, wethToEth } from '../services/utils';
|
|
7
|
+
import {
|
|
8
|
+
Blockish, EthAddress, EthereumProvider, IncentiveKind, NetworkNumber, PositionBalances,
|
|
9
|
+
} from '../types/common';
|
|
10
|
+
import { CompoundLoanInfoContractViem, ComptrollerContractViem } from '../contracts';
|
|
11
|
+
import { compoundV2CollateralAssets } from '../markets';
|
|
12
|
+
import {
|
|
13
|
+
CompoundV2AssetsData, CompoundV2MarketsData, CompoundV2PositionData, CompoundV2UsedAsset, CompoundV2UsedAssets,
|
|
14
|
+
} from '../types';
|
|
15
|
+
import { getCompoundV2AggregatedData } from '../helpers/compoundHelpers';
|
|
16
|
+
import { getViemProvider, setViemBlockNumber } from '../services/viem';
|
|
17
|
+
|
|
18
|
+
const compAddress = '0xc00e94cb662c3520282e6f5717214004a7f26888';
|
|
19
|
+
|
|
20
|
+
export const _getCompoundV2MarketsData = async (provider: Client, network: NetworkNumber): Promise<CompoundV2MarketsData> => {
|
|
21
|
+
const cAddresses = compoundV2CollateralAssets.map(a => a.address);
|
|
22
|
+
|
|
23
|
+
const loanInfoContract = CompoundLoanInfoContractViem(provider, network);
|
|
24
|
+
const loanInfo = await loanInfoContract.read.getFullTokensInfo([cAddresses as EthAddress[]]);
|
|
25
|
+
|
|
26
|
+
const compPrice = loanInfo.find(m => compareAddresses(m.underlyingTokenAddress, compAddress))!.price.toString();
|
|
27
|
+
|
|
28
|
+
const assetsData = loanInfo
|
|
29
|
+
.map((market, i) => {
|
|
30
|
+
let symbol = getAssetInfoByAddress(cAddresses[i]).underlyingAsset;
|
|
31
|
+
let isWbtcLegacy = false;
|
|
32
|
+
const totalSupply = new Dec(market.totalSupply.toString()).div(1e18).times(market.exchangeRate.toString());
|
|
33
|
+
const totalBorrow = market.totalBorrow.toString();
|
|
34
|
+
const borrowCap = market.borrowCap.toString();
|
|
35
|
+
const compSupplySpeeds = market.compSupplySpeeds.toString();
|
|
36
|
+
const compBorrowSpeeds = market.compBorrowSpeeds.toString();
|
|
37
|
+
const assetPrice = market.price.toString();
|
|
38
|
+
|
|
39
|
+
const pricePrecisionDiff = 18 - getAssetInfo(getAssetInfoByAddress(cAddresses[i]).underlyingAsset).decimals;
|
|
40
|
+
|
|
41
|
+
if (cAddresses[i].toLowerCase() === '0xc11b1268c1a384e55c48c2391d8d480264a3a7f4'.toLowerCase()) {
|
|
42
|
+
symbol = 'WBTC Legacy';
|
|
43
|
+
isWbtcLegacy = true;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
symbol,
|
|
47
|
+
underlyingTokenAddress: market.underlyingTokenAddress,
|
|
48
|
+
supplyRate: aprToApy(new Dec(BLOCKS_IN_A_YEAR).times(market.supplyRate.toString()).div(1e16).toString()).toString(),
|
|
49
|
+
borrowRate: aprToApy(new Dec(BLOCKS_IN_A_YEAR).times(market.borrowRate.toString()).div(1e16).toString()).toString(),
|
|
50
|
+
supplyIncentives: [{
|
|
51
|
+
token: 'COMP',
|
|
52
|
+
apy: aprToApy((100 * BLOCKS_IN_A_YEAR * +compSupplySpeeds * +compPrice) / +assetPrice / +totalSupply).toString(),
|
|
53
|
+
incentiveKind: IncentiveKind.Reward,
|
|
54
|
+
description: 'Eligible for protocol-level COMP incentives.',
|
|
55
|
+
}],
|
|
56
|
+
borrowIncentives: [{
|
|
57
|
+
token: 'COMP',
|
|
58
|
+
apy: aprToApy((100 * BLOCKS_IN_A_YEAR * +compBorrowSpeeds * +compPrice) / +assetPrice / +totalBorrow).toString(),
|
|
59
|
+
incentiveKind: IncentiveKind.Reward,
|
|
60
|
+
description: 'Eligible for protocol-level COMP incentives.',
|
|
61
|
+
}],
|
|
62
|
+
collateralFactor: new Dec(market.collateralFactor.toString()).div(1e18).toString(),
|
|
63
|
+
marketLiquidity: assetAmountInEth(market.marketLiquidity.toString(), handleWbtcLegacy(symbol)),
|
|
64
|
+
utilization: new Dec(market.totalBorrow.toString()).div(totalSupply).times(100).toString(),
|
|
65
|
+
totalSupply: assetAmountInEth(totalSupply, handleWbtcLegacy(symbol)),
|
|
66
|
+
totalBorrow: assetAmountInEth(totalBorrow, handleWbtcLegacy(symbol)),
|
|
67
|
+
exchangeRate: new Dec(market.exchangeRate.toString()).div(1e28).toString(),
|
|
68
|
+
borrowCap: assetAmountInEth(borrowCap, handleWbtcLegacy(symbol)),
|
|
69
|
+
canBeBorrowed: market.canBorrow,
|
|
70
|
+
canBeSupplied: market.canMint,
|
|
71
|
+
price: new Dec(market.price.toString()).div(10 ** (18 + pricePrecisionDiff)).toString(),
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
const payload = {} as CompoundV2AssetsData;
|
|
76
|
+
// Sort by market size
|
|
77
|
+
assetsData
|
|
78
|
+
.sort((a, b) => {
|
|
79
|
+
const aMarket = new Dec(a.price).times(a.totalSupply).toString();
|
|
80
|
+
const bMarket = new Dec(b.price).times(b.totalSupply).toString();
|
|
81
|
+
|
|
82
|
+
return new Dec(bMarket).minus(aMarket).toNumber();
|
|
83
|
+
})
|
|
84
|
+
.forEach((market, i) => { payload[market.symbol] = { ...market, sortIndex: i }; });
|
|
85
|
+
|
|
86
|
+
return { assetsData: payload };
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
export const getCompoundV2MarketsData = async (provider: EthereumProvider, network: NetworkNumber): Promise<CompoundV2MarketsData> => _getCompoundV2MarketsData(getViemProvider(provider, network), network);
|
|
90
|
+
|
|
91
|
+
export const EMPTY_COMPOUND_DATA = {
|
|
92
|
+
usedAssets: {},
|
|
93
|
+
suppliedUsd: '0',
|
|
94
|
+
borrowedUsd: '0',
|
|
95
|
+
borrowLimitUsd: '0',
|
|
96
|
+
leftToBorrowUsd: '0',
|
|
97
|
+
ratio: '0',
|
|
98
|
+
minRatio: '0',
|
|
99
|
+
netApy: '0',
|
|
100
|
+
incentiveUsd: '0',
|
|
101
|
+
totalInterestUsd: '0',
|
|
102
|
+
borrowStableSupplyUnstable: false,
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
const getCollateralAssetsAddresses = async (provider: Client, network: NetworkNumber, account: EthAddress) => {
|
|
106
|
+
const contract = ComptrollerContractViem(provider, network);
|
|
107
|
+
|
|
108
|
+
return contract.read.getAssetsIn([account]);
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
const getAllMarketAddresses = async (provider: Client, network: NetworkNumber, block: Blockish) => {
|
|
112
|
+
const contract = ComptrollerContractViem(provider, network);
|
|
113
|
+
|
|
114
|
+
return contract.read.getAllMarkets(setViemBlockNumber(block));
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
export const _getCompoundV2AccountBalances = async (provider: Client, network: NetworkNumber, block: Blockish, addressMapping: boolean, address: EthAddress): Promise<PositionBalances> => {
|
|
119
|
+
let balances: PositionBalances = {
|
|
120
|
+
collateral: {},
|
|
121
|
+
debt: {},
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
if (!address) {
|
|
125
|
+
return balances;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const assets = await getAllMarketAddresses(provider, network, block);
|
|
129
|
+
const assetInfo = assets.map(a => getAssetInfoByAddress(a, network));
|
|
130
|
+
const loanInfoContract = CompoundLoanInfoContractViem(provider, network, block);
|
|
131
|
+
const loanInfo = await loanInfoContract.read.getTokenBalances([address, assets], setViemBlockNumber(block));
|
|
132
|
+
|
|
133
|
+
loanInfo[0].forEach((weiAmount: any, i: number) => {
|
|
134
|
+
const asset = wethToEth(
|
|
135
|
+
assetInfo[i].symbol === 'cWBTC Legacy'
|
|
136
|
+
? `${assetInfo[i].underlyingAsset} Legacy`
|
|
137
|
+
: assetInfo[i].underlyingAsset,
|
|
138
|
+
);
|
|
139
|
+
|
|
140
|
+
balances = {
|
|
141
|
+
collateral: {
|
|
142
|
+
...balances.collateral,
|
|
143
|
+
[addressMapping ? getAssetInfo(asset, network).address.toLowerCase() : asset]: weiAmount.toString(),
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
});
|
|
147
|
+
loanInfo[1].forEach((weiAmount: any, i: number) => {
|
|
148
|
+
const asset = wethToEth(
|
|
149
|
+
assetInfo[i].symbol === 'cWBTC Legacy'
|
|
150
|
+
? `${assetInfo[i].underlyingAsset} Legacy`
|
|
151
|
+
: assetInfo[i].underlyingAsset,
|
|
152
|
+
);
|
|
153
|
+
|
|
154
|
+
balances = {
|
|
155
|
+
...balances,
|
|
156
|
+
debt: {
|
|
157
|
+
...balances.debt,
|
|
158
|
+
[addressMapping ? getAssetInfo(asset, network).address.toLowerCase() : asset]: weiAmount.toString(),
|
|
159
|
+
},
|
|
160
|
+
};
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
return balances;
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
export const getCompoundV2AccountBalances = async (
|
|
167
|
+
provider: EthereumProvider,
|
|
168
|
+
network: NetworkNumber,
|
|
169
|
+
block: Blockish,
|
|
170
|
+
addressMapping: boolean,
|
|
171
|
+
address: EthAddress,
|
|
172
|
+
): Promise<PositionBalances> => _getCompoundV2AccountBalances(getViemProvider(provider, network), network, block, addressMapping, address);
|
|
173
|
+
|
|
174
|
+
export const _getCompoundV2AccountData = async (provider: Client, network: NetworkNumber, address: EthAddress, assetsData: CompoundV2AssetsData): Promise<CompoundV2PositionData> => {
|
|
175
|
+
if (!address) throw new Error('No address provided');
|
|
176
|
+
|
|
177
|
+
let payload = { ...EMPTY_COMPOUND_DATA, lastUpdated: Date.now() };
|
|
178
|
+
|
|
179
|
+
const loanInfoContract = CompoundLoanInfoContractViem(provider, network);
|
|
180
|
+
const [loanInfo, collateralAssetsAddresses] = await Promise.all([
|
|
181
|
+
loanInfoContract.read.getTokenBalances([address, compoundV2CollateralAssets.map(a => a.address) as EthAddress[]]),
|
|
182
|
+
getCollateralAssetsAddresses(provider, network, address),
|
|
183
|
+
]);
|
|
184
|
+
|
|
185
|
+
const usedAssets = {} as CompoundV2UsedAssets;
|
|
186
|
+
|
|
187
|
+
loanInfo[0].forEach((weiAmount: BigInt, i: number) => {
|
|
188
|
+
const asset = compoundV2CollateralAssets[i].symbol === 'cWBTC Legacy'
|
|
189
|
+
? `${compoundV2CollateralAssets[i].underlyingAsset} Legacy`
|
|
190
|
+
: compoundV2CollateralAssets[i].underlyingAsset;
|
|
191
|
+
const amount = assetAmountInEth(weiAmount.toString(), asset);
|
|
192
|
+
const collateral = !!collateralAssetsAddresses.find(a => compareAddresses(a, compoundV2CollateralAssets[i].address));
|
|
193
|
+
if (weiAmount.toString() === '0' && !collateral) return;
|
|
194
|
+
if (!usedAssets[asset]) usedAssets[asset] = {} as CompoundV2UsedAsset;
|
|
195
|
+
usedAssets[asset] = {
|
|
196
|
+
...usedAssets[asset],
|
|
197
|
+
symbol: asset,
|
|
198
|
+
supplied: amount,
|
|
199
|
+
suppliedUsd: new Dec(amount).mul(assetsData[handleWbtcLegacy(asset)].price).toString(),
|
|
200
|
+
isSupplied: +amount > 0,
|
|
201
|
+
collateral,
|
|
202
|
+
};
|
|
203
|
+
});
|
|
204
|
+
|
|
205
|
+
loanInfo[1].forEach((weiAmount, i) => {
|
|
206
|
+
if (weiAmount.toString() === '0') return;
|
|
207
|
+
const asset = compoundV2CollateralAssets[i].symbol === 'cWBTC Legacy'
|
|
208
|
+
? `${compoundV2CollateralAssets[i].underlyingAsset} Legacy`
|
|
209
|
+
: compoundV2CollateralAssets[i].underlyingAsset;
|
|
210
|
+
const amount = assetAmountInEth(weiAmount.toString(), asset);
|
|
211
|
+
if (!usedAssets[asset]) usedAssets[asset] = {} as CompoundV2UsedAsset;
|
|
212
|
+
usedAssets[asset] = {
|
|
213
|
+
...usedAssets[asset],
|
|
214
|
+
symbol: asset,
|
|
215
|
+
borrowed: amount,
|
|
216
|
+
borrowedUsd: new Dec(amount).mul(assetsData[handleWbtcLegacy(asset)].price).toString(),
|
|
217
|
+
isBorrowed: true,
|
|
218
|
+
collateral: !!usedAssets[asset].collateral,
|
|
219
|
+
};
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
payload = {
|
|
223
|
+
...payload,
|
|
224
|
+
usedAssets,
|
|
225
|
+
...getCompoundV2AggregatedData({
|
|
226
|
+
usedAssets, assetsData,
|
|
227
|
+
}),
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
return payload;
|
|
231
|
+
};
|
|
232
|
+
|
|
233
|
+
export const getCompoundV2AccountData = async (
|
|
234
|
+
provider: EthereumProvider,
|
|
235
|
+
network: NetworkNumber,
|
|
236
|
+
address: EthAddress,
|
|
237
|
+
assetsData: CompoundV2AssetsData,
|
|
238
|
+
): Promise<CompoundV2PositionData> => _getCompoundV2AccountData(getViemProvider(provider, network), network, address, assetsData);
|
|
239
|
+
|
|
240
|
+
export const getCompoundV2FullPositionData = async (provider: EthereumProvider, network: NetworkNumber, address: EthAddress): Promise<CompoundV2PositionData> => {
|
|
241
|
+
const marketData = await getCompoundV2MarketsData(provider, network);
|
|
242
|
+
const positionData = await getCompoundV2AccountData(provider, network, address, marketData.assetsData);
|
|
243
|
+
return positionData;
|
|
244
|
+
};
|