@defisaver/positions-sdk 0.0.91 → 0.0.94

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.
Files changed (63) hide show
  1. package/README.md +63 -63
  2. package/cjs/markets/morphoBlue/index.js +3 -3
  3. package/cjs/staking/staking.js +3 -1
  4. package/esm/markets/morphoBlue/index.js +3 -3
  5. package/esm/staking/staking.js +3 -1
  6. package/package.json +40 -40
  7. package/src/aaveV2/index.ts +227 -227
  8. package/src/aaveV3/index.ts +558 -558
  9. package/src/assets/index.ts +60 -60
  10. package/src/chickenBonds/index.ts +123 -123
  11. package/src/compoundV2/index.ts +219 -219
  12. package/src/compoundV3/index.ts +266 -266
  13. package/src/config/contracts.js +848 -848
  14. package/src/constants/index.ts +5 -5
  15. package/src/contracts.ts +128 -128
  16. package/src/curveUsd/index.ts +229 -229
  17. package/src/exchange/index.ts +17 -17
  18. package/src/helpers/aaveHelpers/index.ts +134 -134
  19. package/src/helpers/chickenBondsHelpers/index.ts +23 -23
  20. package/src/helpers/compoundHelpers/index.ts +181 -181
  21. package/src/helpers/curveUsdHelpers/index.ts +40 -40
  22. package/src/helpers/index.ts +7 -7
  23. package/src/helpers/llamaLendHelpers/index.ts +45 -45
  24. package/src/helpers/makerHelpers/index.ts +94 -94
  25. package/src/helpers/morphoBlueHelpers/index.ts +56 -56
  26. package/src/helpers/sparkHelpers/index.ts +106 -106
  27. package/src/index.ts +46 -46
  28. package/src/liquity/index.ts +116 -116
  29. package/src/llamaLend/index.ts +268 -268
  30. package/src/maker/index.ts +117 -117
  31. package/src/markets/aave/index.ts +80 -80
  32. package/src/markets/aave/marketAssets.ts +24 -24
  33. package/src/markets/compound/index.ts +142 -142
  34. package/src/markets/compound/marketsAssets.ts +50 -50
  35. package/src/markets/curveUsd/index.ts +69 -69
  36. package/src/markets/index.ts +5 -5
  37. package/src/markets/llamaLend/contractAddresses.ts +95 -95
  38. package/src/markets/llamaLend/index.ts +150 -150
  39. package/src/markets/morphoBlue/index.ts +611 -611
  40. package/src/markets/spark/index.ts +29 -29
  41. package/src/markets/spark/marketAssets.ts +10 -10
  42. package/src/moneymarket/moneymarketCommonService.ts +76 -76
  43. package/src/morphoAaveV2/index.ts +256 -256
  44. package/src/morphoAaveV3/index.ts +612 -612
  45. package/src/morphoBlue/index.ts +162 -162
  46. package/src/multicall/index.ts +22 -22
  47. package/src/services/dsrService.ts +15 -15
  48. package/src/services/priceService.ts +21 -21
  49. package/src/services/utils.ts +51 -51
  50. package/src/setup.ts +8 -8
  51. package/src/spark/index.ts +424 -424
  52. package/src/staking/staking.ts +187 -186
  53. package/src/types/aave.ts +256 -256
  54. package/src/types/chickenBonds.ts +45 -45
  55. package/src/types/common.ts +84 -84
  56. package/src/types/compound.ts +128 -128
  57. package/src/types/curveUsd.ts +118 -118
  58. package/src/types/index.ts +8 -8
  59. package/src/types/liquity.ts +30 -30
  60. package/src/types/llamaLend.ts +143 -143
  61. package/src/types/maker.ts +50 -50
  62. package/src/types/morphoBlue.ts +139 -139
  63. package/src/types/spark.ts +106 -106
@@ -1,186 +1,187 @@
1
- import Dec from 'decimal.js';
2
- import Web3 from 'web3';
3
- import {
4
- CbEthContract, LidoContract, PotContract, REthContract, wstETHContract,
5
- } from '../contracts';
6
- import { MMAssetsData, MMUsedAssets, NetworkNumber } from '../types/common';
7
- import { ContractEventLog } from '../types/contracts/generated/types';
8
- import { BLOCKS_IN_A_YEAR, SECONDS_PER_YEAR, AVG_BLOCK_TIME } from '../constants';
9
- import { multicall } from '../multicall';
10
-
11
-
12
- export const getStETHApr = async (web3: Web3, fromBlock = 17900000, blockNumber: 'latest' | number = 'latest') => {
13
- try {
14
- const tokenRebasedEvents: ContractEventLog<{ [key: string]: any }>[] = await LidoContract(web3, NetworkNumber.Eth).getPastEvents('TokenRebased', { fromBlock, toBlock: blockNumber });
15
- tokenRebasedEvents.sort((a, b) => b.blockNumber - a.blockNumber); // sort from highest to lowest block number
16
- const movingAverage = 7;
17
- const aprs = tokenRebasedEvents.slice(0, movingAverage).map(({ returnValues: event }) => {
18
- const preShareRate = new Dec(event.preTotalEther.toString()).div(event.preTotalShares.toString());
19
- const postShareRate = new Dec(event.postTotalEther.toString()).div(event.postTotalShares.toString());
20
- return new Dec(SECONDS_PER_YEAR).mul(new Dec(postShareRate).sub(preShareRate).div(preShareRate))
21
- .div(event.timeElapsed.toString()).mul(100)
22
- .toNumber();
23
- });
24
- return aprs.reduce((a, b) => a + b, 0) / aprs.length;
25
- } catch (e) {
26
- console.warn('Failed to fetch stETH APY from events, falling back to Lido API');
27
- const res = await fetch('https://eth-api.lido.fi/v1/protocol/steth/apr/sma');
28
- const data = await res.json();
29
- return data.data.smaApr;
30
- }
31
- };
32
-
33
-
34
- export const getCbETHApr = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
35
- let currentBlock = blockNumber;
36
- if (blockNumber === 'latest') currentBlock = await web3.eth.getBlockNumber();
37
- const blockDiff = 6 * 24 * 60 * 60 / AVG_BLOCK_TIME;
38
- const pastBlock = (currentBlock as number) - blockDiff;
39
- const contract = CbEthContract(web3, NetworkNumber.Eth);
40
- const [pastRate, currentRate] = await Promise.all([
41
- contract.methods.exchangeRate().call({}, pastBlock),
42
- contract.methods.exchangeRate().call({}, currentBlock),
43
- ]);
44
- const apr = new Dec(currentRate.toString()).sub(pastRate.toString()).div(currentRate.toString())
45
- .mul(BLOCKS_IN_A_YEAR / blockDiff)
46
- .mul(100)
47
- .toString();
48
- return apr;
49
- };
50
-
51
-
52
- export const getREthApr = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
53
- let currentBlock = blockNumber;
54
- if (blockNumber === 'latest') currentBlock = await web3.eth.getBlockNumber();
55
- const blockDiff = 8 * 24 * 60 * 60 / AVG_BLOCK_TIME;
56
- const pastBlock = (currentBlock as number) - blockDiff;
57
- const contract = REthContract(web3, NetworkNumber.Eth);
58
- const [pastRate, currentRate] = await Promise.all([
59
- contract.methods.getExchangeRate().call({}, pastBlock),
60
- contract.methods.getExchangeRate().call({}, currentBlock),
61
- ]);
62
- const apr = new Dec(currentRate.toString()).sub(pastRate.toString()).div(currentRate.toString())
63
- .mul(BLOCKS_IN_A_YEAR / blockDiff)
64
- .mul(100)
65
- .toString();
66
-
67
- return apr;
68
- };
69
-
70
- export const getDsrApy = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
71
- const potContract = PotContract(web3, NetworkNumber.Eth);
72
- return new Dec(await potContract.methods.dsr().call())
73
- .div(new Dec(1e27))
74
- .pow(SECONDS_PER_YEAR)
75
- .sub(1)
76
- .mul(100)
77
- .toString();
78
- };
79
-
80
- const getApyFromDfsApi = async (asset: string) => {
81
- const res = await fetch(`https://app.defisaver.com/api/staking/apy?asset=${asset}`);
82
- const data = await res.json();
83
- return data.apy;
84
- }
85
-
86
- export const STAKING_ASSETS = ['cbETH', 'wstETH', 'cbETH', 'rETH', 'sDAI', 'weETH', 'sUSDe', 'osETH', 'ezETH'];
87
-
88
- export const getStakingApy = (asset: string, web3: Web3, blockNumber: 'latest' | number = 'latest', fromBlock: number | undefined = undefined) => {
89
- try {
90
- if (asset === 'stETH' || asset === 'wstETH') return getStETHApr(web3, fromBlock, blockNumber);
91
- if (asset === 'cbETH') return getCbETHApr(web3, blockNumber);
92
- if (asset === 'rETH') return getREthApr(web3, blockNumber);
93
- if (asset === 'sDAI') return getDsrApy(web3);
94
- if (asset === 'sUSDe') return getApyFromDfsApi('sUSDe');
95
- if (asset === 'weETH') return getApyFromDfsApi('weETH');
96
- if (asset === 'ezETH') return getApyFromDfsApi('ezETH')
97
- if (asset === 'osETH') return getApyFromDfsApi('osETH');
98
- } catch (e) {
99
- console.error(`Failed to fetch APY for ${asset}`);
100
- return '0';
101
- }
102
- };
103
-
104
- export const calculateInterestEarned = (principal: string, interest: string, type: string, apy = false) => {
105
- let interval = 1;
106
-
107
- if (+interest === 0) return 0;
108
-
109
- if (type === 'month') interval = 1 / 12;
110
- if (type === 'week') interval = 1 / 52.1429;
111
-
112
- if (apy) {
113
- // interest rate already compounded
114
- return (+principal * (1 + (+interest / 100 * interval))) - +principal;
115
- }
116
-
117
- return (+principal * (((1 + (+interest / 100) / BLOCKS_IN_A_YEAR)) ** (BLOCKS_IN_A_YEAR * interval))) - +principal; // eslint-disable-line
118
- };
119
-
120
- export const calculateNetApy = (usedAssets: MMUsedAssets, assetsData: MMAssetsData, isMorpho = false) => {
121
- const sumValues = Object.values(usedAssets).reduce((_acc, usedAsset) => {
122
- const acc = { ..._acc };
123
- const assetData = assetsData[usedAsset.symbol];
124
-
125
- if (usedAsset.isSupplied) {
126
- const amount = usedAsset.suppliedUsd;
127
- acc.suppliedUsd = new Dec(acc.suppliedUsd).add(amount).toString();
128
- const rate = isMorpho
129
- ? usedAsset.supplyRate === '0' ? assetData.supplyRateP2P : usedAsset.supplyRate
130
- : assetData.supplyRate;
131
- const supplyInterest = calculateInterestEarned(amount, rate as string, 'year', true);
132
- acc.supplyInterest = new Dec(acc.supplyInterest).add(supplyInterest.toString()).toString();
133
- if (assetData.incentiveSupplyApy) {
134
- // take COMP/AAVE yield into account
135
- const incentiveInterest = calculateInterestEarned(amount, assetData.incentiveSupplyApy, 'year', true);
136
- acc.incentiveUsd = new Dec(acc.incentiveUsd).add(incentiveInterest).toString();
137
- }
138
- }
139
-
140
- if (usedAsset.isBorrowed) {
141
- const amount = usedAsset.borrowedUsd;
142
- acc.borrowedUsd = new Dec(acc.borrowedUsd).add(amount).toString();
143
- const rate = isMorpho
144
- ? usedAsset.borrowRate === '0' ? assetData.borrowRateP2P : usedAsset.borrowRate
145
- : usedAsset.symbol === 'GHO'
146
- ? usedAsset.discountedBorrowRate
147
- : (usedAsset?.interestMode === '1' ? usedAsset.stableBorrowRate : assetData.borrowRate);
148
- const borrowInterest = calculateInterestEarned(amount, rate as string, 'year', true);
149
- acc.borrowInterest = new Dec(acc.borrowInterest).sub(borrowInterest.toString()).toString();
150
- if (assetData.incentiveBorrowApy) {
151
- // take COMP/AAVE yield into account
152
- const incentiveInterest = calculateInterestEarned(amount, assetData.incentiveBorrowApy, 'year', true);
153
- acc.incentiveUsd = new Dec(acc.incentiveUsd).add(incentiveInterest).toString();
154
- }
155
- }
156
-
157
- return acc;
158
- }, {
159
- borrowInterest: '0', supplyInterest: '0', incentiveUsd: '0', borrowedUsd: '0', suppliedUsd: '0',
160
- });
161
-
162
- const {
163
- borrowedUsd, suppliedUsd, borrowInterest, supplyInterest, incentiveUsd,
164
- } = sumValues;
165
-
166
- const totalInterestUsd = new Dec(borrowInterest).add(supplyInterest).add(incentiveUsd).toString();
167
- const balance = new Dec(suppliedUsd).sub(borrowedUsd);
168
- const netApy = new Dec(totalInterestUsd).div(balance).times(100).toString();
169
-
170
- return { netApy, totalInterestUsd, incentiveUsd };
171
- };
172
-
173
- export const getWstETHByStETH = async (stETHAmount: string | number, web3: Web3) => wstETHContract(web3, NetworkNumber.Eth).methods.getWstETHByStETH(stETHAmount).call();
174
-
175
- export const getStETHByWstETH = async (wstETHAmount: string | number, web3: Web3) => wstETHContract(web3, NetworkNumber.Eth).methods.getStETHByWstETH(wstETHAmount).call();
176
-
177
- export const getStETHByWstETHMultiple = async (wstEthAmounts: string[] | number[], web3: Web3) => {
178
- const contract = wstETHContract(web3, NetworkNumber.Eth);
179
- const calls = wstEthAmounts.map((amount) => ({
180
- target: contract.options.address,
181
- abiItem: contract.options.jsonInterface.find((i) => i.name === 'getStETHByWstETH'),
182
- params: [amount],
183
- }));
184
- const stEthAmounts = await multicall(calls, web3);
185
- return stEthAmounts.map((arr) => arr[0]);
186
- };
1
+ import Dec from 'decimal.js';
2
+ import Web3 from 'web3';
3
+ import {
4
+ CbEthContract, LidoContract, PotContract, REthContract, wstETHContract,
5
+ } from '../contracts';
6
+ import { MMAssetsData, MMUsedAssets, NetworkNumber } from '../types/common';
7
+ import { ContractEventLog } from '../types/contracts/generated/types';
8
+ import { BLOCKS_IN_A_YEAR, SECONDS_PER_YEAR, AVG_BLOCK_TIME } from '../constants';
9
+ import { multicall } from '../multicall';
10
+
11
+
12
+ export const getStETHApr = async (web3: Web3, fromBlock = 17900000, blockNumber: 'latest' | number = 'latest') => {
13
+ try {
14
+ const tokenRebasedEvents: ContractEventLog<{ [key: string]: any }>[] = await LidoContract(web3, NetworkNumber.Eth).getPastEvents('TokenRebased', { fromBlock, toBlock: blockNumber });
15
+ tokenRebasedEvents.sort((a, b) => b.blockNumber - a.blockNumber); // sort from highest to lowest block number
16
+ const movingAverage = 7;
17
+ const aprs = tokenRebasedEvents.slice(0, movingAverage).map(({ returnValues: event }) => {
18
+ const preShareRate = new Dec(event.preTotalEther.toString()).div(event.preTotalShares.toString());
19
+ const postShareRate = new Dec(event.postTotalEther.toString()).div(event.postTotalShares.toString());
20
+ return new Dec(SECONDS_PER_YEAR).mul(new Dec(postShareRate).sub(preShareRate).div(preShareRate))
21
+ .div(event.timeElapsed.toString()).mul(100)
22
+ .toNumber();
23
+ });
24
+ return aprs.reduce((a, b) => a + b, 0) / aprs.length;
25
+ } catch (e) {
26
+ console.warn('Failed to fetch stETH APY from events, falling back to Lido API');
27
+ const res = await fetch('https://eth-api.lido.fi/v1/protocol/steth/apr/sma');
28
+ const data = await res.json();
29
+ return data.data.smaApr;
30
+ }
31
+ };
32
+
33
+
34
+ export const getCbETHApr = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
35
+ let currentBlock = blockNumber;
36
+ if (blockNumber === 'latest') currentBlock = await web3.eth.getBlockNumber();
37
+ const blockDiff = 6 * 24 * 60 * 60 / AVG_BLOCK_TIME;
38
+ const pastBlock = (currentBlock as number) - blockDiff;
39
+ const contract = CbEthContract(web3, NetworkNumber.Eth);
40
+ const [pastRate, currentRate] = await Promise.all([
41
+ contract.methods.exchangeRate().call({}, pastBlock),
42
+ contract.methods.exchangeRate().call({}, currentBlock),
43
+ ]);
44
+ const apr = new Dec(currentRate.toString()).sub(pastRate.toString()).div(currentRate.toString())
45
+ .mul(BLOCKS_IN_A_YEAR / blockDiff)
46
+ .mul(100)
47
+ .toString();
48
+ return apr;
49
+ };
50
+
51
+
52
+ export const getREthApr = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
53
+ let currentBlock = blockNumber;
54
+ if (blockNumber === 'latest') currentBlock = await web3.eth.getBlockNumber();
55
+ const blockDiff = 8 * 24 * 60 * 60 / AVG_BLOCK_TIME;
56
+ const pastBlock = (currentBlock as number) - blockDiff;
57
+ const contract = REthContract(web3, NetworkNumber.Eth);
58
+ const [pastRate, currentRate] = await Promise.all([
59
+ contract.methods.getExchangeRate().call({}, pastBlock),
60
+ contract.methods.getExchangeRate().call({}, currentBlock),
61
+ ]);
62
+ const apr = new Dec(currentRate.toString()).sub(pastRate.toString()).div(currentRate.toString())
63
+ .mul(BLOCKS_IN_A_YEAR / blockDiff)
64
+ .mul(100)
65
+ .toString();
66
+
67
+ return apr;
68
+ };
69
+
70
+ export const getDsrApy = async (web3: Web3, blockNumber: 'latest' | number = 'latest') => {
71
+ const potContract = PotContract(web3, NetworkNumber.Eth);
72
+ return new Dec(await potContract.methods.dsr().call())
73
+ .div(new Dec(1e27))
74
+ .pow(SECONDS_PER_YEAR)
75
+ .sub(1)
76
+ .mul(100)
77
+ .toString();
78
+ };
79
+
80
+ const getApyFromDfsApi = async (asset: string) => {
81
+ const res = await fetch(`https://app.defisaver.com/api/staking/apy?asset=${asset}`);
82
+ const data = await res.json();
83
+ return data.apy;
84
+ }
85
+
86
+ export const STAKING_ASSETS = ['cbETH', 'wstETH', 'cbETH', 'rETH', 'sDAI', 'weETH', 'sUSDe', 'osETH', 'ezETH', 'ETHx'];
87
+
88
+ export const getStakingApy = (asset: string, web3: Web3, blockNumber: 'latest' | number = 'latest', fromBlock: number | undefined = undefined) => {
89
+ try {
90
+ if (asset === 'stETH' || asset === 'wstETH') return getStETHApr(web3, fromBlock, blockNumber);
91
+ if (asset === 'cbETH') return getCbETHApr(web3, blockNumber);
92
+ if (asset === 'rETH') return getREthApr(web3, blockNumber);
93
+ if (asset === 'sDAI') return getDsrApy(web3);
94
+ if (asset === 'sUSDe') return getApyFromDfsApi('sUSDe');
95
+ if (asset === 'weETH') return getApyFromDfsApi('weETH');
96
+ if (asset === 'ezETH') return getApyFromDfsApi('ezETH')
97
+ if (asset === 'osETH') return getApyFromDfsApi('osETH');
98
+ if (asset === 'ETHx') return getApyFromDfsApi('ETHx');
99
+ } catch (e) {
100
+ console.error(`Failed to fetch APY for ${asset}`);
101
+ return '0';
102
+ }
103
+ };
104
+
105
+ export const calculateInterestEarned = (principal: string, interest: string, type: string, apy = false) => {
106
+ let interval = 1;
107
+
108
+ if (+interest === 0) return 0;
109
+
110
+ if (type === 'month') interval = 1 / 12;
111
+ if (type === 'week') interval = 1 / 52.1429;
112
+
113
+ if (apy) {
114
+ // interest rate already compounded
115
+ return (+principal * (1 + (+interest / 100 * interval))) - +principal;
116
+ }
117
+
118
+ return (+principal * (((1 + (+interest / 100) / BLOCKS_IN_A_YEAR)) ** (BLOCKS_IN_A_YEAR * interval))) - +principal; // eslint-disable-line
119
+ };
120
+
121
+ export const calculateNetApy = (usedAssets: MMUsedAssets, assetsData: MMAssetsData, isMorpho = false) => {
122
+ const sumValues = Object.values(usedAssets).reduce((_acc, usedAsset) => {
123
+ const acc = { ..._acc };
124
+ const assetData = assetsData[usedAsset.symbol];
125
+
126
+ if (usedAsset.isSupplied) {
127
+ const amount = usedAsset.suppliedUsd;
128
+ acc.suppliedUsd = new Dec(acc.suppliedUsd).add(amount).toString();
129
+ const rate = isMorpho
130
+ ? usedAsset.supplyRate === '0' ? assetData.supplyRateP2P : usedAsset.supplyRate
131
+ : assetData.supplyRate;
132
+ const supplyInterest = calculateInterestEarned(amount, rate as string, 'year', true);
133
+ acc.supplyInterest = new Dec(acc.supplyInterest).add(supplyInterest.toString()).toString();
134
+ if (assetData.incentiveSupplyApy) {
135
+ // take COMP/AAVE yield into account
136
+ const incentiveInterest = calculateInterestEarned(amount, assetData.incentiveSupplyApy, 'year', true);
137
+ acc.incentiveUsd = new Dec(acc.incentiveUsd).add(incentiveInterest).toString();
138
+ }
139
+ }
140
+
141
+ if (usedAsset.isBorrowed) {
142
+ const amount = usedAsset.borrowedUsd;
143
+ acc.borrowedUsd = new Dec(acc.borrowedUsd).add(amount).toString();
144
+ const rate = isMorpho
145
+ ? usedAsset.borrowRate === '0' ? assetData.borrowRateP2P : usedAsset.borrowRate
146
+ : usedAsset.symbol === 'GHO'
147
+ ? usedAsset.discountedBorrowRate
148
+ : (usedAsset?.interestMode === '1' ? usedAsset.stableBorrowRate : assetData.borrowRate);
149
+ const borrowInterest = calculateInterestEarned(amount, rate as string, 'year', true);
150
+ acc.borrowInterest = new Dec(acc.borrowInterest).sub(borrowInterest.toString()).toString();
151
+ if (assetData.incentiveBorrowApy) {
152
+ // take COMP/AAVE yield into account
153
+ const incentiveInterest = calculateInterestEarned(amount, assetData.incentiveBorrowApy, 'year', true);
154
+ acc.incentiveUsd = new Dec(acc.incentiveUsd).add(incentiveInterest).toString();
155
+ }
156
+ }
157
+
158
+ return acc;
159
+ }, {
160
+ borrowInterest: '0', supplyInterest: '0', incentiveUsd: '0', borrowedUsd: '0', suppliedUsd: '0',
161
+ });
162
+
163
+ const {
164
+ borrowedUsd, suppliedUsd, borrowInterest, supplyInterest, incentiveUsd,
165
+ } = sumValues;
166
+
167
+ const totalInterestUsd = new Dec(borrowInterest).add(supplyInterest).add(incentiveUsd).toString();
168
+ const balance = new Dec(suppliedUsd).sub(borrowedUsd);
169
+ const netApy = new Dec(totalInterestUsd).div(balance).times(100).toString();
170
+
171
+ return { netApy, totalInterestUsd, incentiveUsd };
172
+ };
173
+
174
+ export const getWstETHByStETH = async (stETHAmount: string | number, web3: Web3) => wstETHContract(web3, NetworkNumber.Eth).methods.getWstETHByStETH(stETHAmount).call();
175
+
176
+ export const getStETHByWstETH = async (wstETHAmount: string | number, web3: Web3) => wstETHContract(web3, NetworkNumber.Eth).methods.getStETHByWstETH(wstETHAmount).call();
177
+
178
+ export const getStETHByWstETHMultiple = async (wstEthAmounts: string[] | number[], web3: Web3) => {
179
+ const contract = wstETHContract(web3, NetworkNumber.Eth);
180
+ const calls = wstEthAmounts.map((amount) => ({
181
+ target: contract.options.address,
182
+ abiItem: contract.options.jsonInterface.find((i) => i.name === 'getStETHByWstETH'),
183
+ params: [amount],
184
+ }));
185
+ const stEthAmounts = await multicall(calls, web3);
186
+ return stEthAmounts.map((arr) => arr[0]);
187
+ };