@defisaver/positions-sdk 2.1.35 → 2.1.37
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/config/contracts.d.ts +42 -0
- package/cjs/config/contracts.js +4 -1
- package/cjs/contracts.d.ts +205 -0
- package/cjs/contracts.js +11 -2
- package/cjs/helpers/morphoBlueHelpers/index.js +66 -66
- package/cjs/savings/index.d.ts +3 -2
- package/cjs/savings/index.js +3 -1
- package/cjs/savings/morphoVaults/index.js +17 -17
- package/cjs/savings/skyOptions/options.js +1 -0
- package/cjs/savings/yearnV3Vaults/index.d.ts +7 -0
- package/cjs/savings/yearnV3Vaults/index.js +97 -0
- package/cjs/savings/yearnV3Vaults/options.d.ts +8 -0
- package/cjs/savings/yearnV3Vaults/options.js +53 -0
- package/cjs/types/savings/index.d.ts +3 -1
- package/cjs/types/savings/index.js +1 -0
- package/cjs/types/savings/sky.d.ts +1 -0
- package/cjs/types/savings/yearnV3Vaults.d.ts +16 -0
- package/cjs/types/savings/yearnV3Vaults.js +11 -0
- package/esm/config/contracts.d.ts +42 -0
- package/esm/config/contracts.js +3 -0
- package/esm/contracts.d.ts +205 -0
- package/esm/contracts.js +8 -0
- package/esm/helpers/morphoBlueHelpers/index.js +66 -66
- package/esm/savings/index.d.ts +3 -2
- package/esm/savings/index.js +2 -1
- package/esm/savings/morphoVaults/index.js +17 -17
- package/esm/savings/skyOptions/options.js +1 -0
- package/esm/savings/yearnV3Vaults/index.d.ts +7 -0
- package/esm/savings/yearnV3Vaults/index.js +56 -0
- package/esm/savings/yearnV3Vaults/options.d.ts +8 -0
- package/esm/savings/yearnV3Vaults/options.js +49 -0
- package/esm/types/savings/index.d.ts +3 -1
- package/esm/types/savings/index.js +1 -0
- package/esm/types/savings/sky.d.ts +1 -0
- package/esm/types/savings/yearnV3Vaults.d.ts +16 -0
- package/esm/types/savings/yearnV3Vaults.js +8 -0
- package/package.json +48 -48
- package/src/aaveV2/index.ts +240 -240
- package/src/aaveV3/index.ts +625 -625
- package/src/aaveV3/merit.ts +97 -97
- package/src/aaveV3/merkl.ts +74 -74
- package/src/claiming/aaveV3.ts +154 -154
- package/src/claiming/compV3.ts +22 -22
- package/src/claiming/ethena.ts +61 -61
- package/src/claiming/index.ts +12 -12
- package/src/claiming/king.ts +66 -66
- package/src/claiming/morphoBlue.ts +118 -118
- package/src/claiming/spark.ts +225 -225
- package/src/compoundV2/index.ts +244 -244
- package/src/compoundV3/index.ts +274 -274
- package/src/config/contracts.ts +1295 -1292
- package/src/constants/index.ts +10 -10
- package/src/contracts.ts +171 -162
- package/src/curveUsd/index.ts +254 -254
- package/src/eulerV2/index.ts +324 -324
- package/src/exchange/index.ts +25 -25
- package/src/fluid/index.ts +1800 -1800
- package/src/helpers/aaveHelpers/index.ts +187 -187
- package/src/helpers/compoundHelpers/index.ts +283 -283
- package/src/helpers/curveUsdHelpers/index.ts +40 -40
- package/src/helpers/eulerHelpers/index.ts +222 -222
- package/src/helpers/fluidHelpers/index.ts +326 -326
- package/src/helpers/index.ts +10 -10
- package/src/helpers/liquityV2Helpers/index.ts +82 -82
- package/src/helpers/llamaLendHelpers/index.ts +53 -53
- package/src/helpers/makerHelpers/index.ts +52 -52
- package/src/helpers/morphoBlueHelpers/index.ts +396 -396
- package/src/helpers/sparkHelpers/index.ts +158 -158
- package/src/index.ts +49 -49
- package/src/liquity/index.ts +159 -159
- package/src/liquityV2/index.ts +703 -703
- package/src/llamaLend/index.ts +305 -305
- package/src/maker/index.ts +223 -223
- package/src/markets/aave/index.ts +118 -118
- package/src/markets/aave/marketAssets.ts +54 -54
- package/src/markets/compound/index.ts +243 -243
- package/src/markets/compound/marketsAssets.ts +97 -97
- package/src/markets/curveUsd/index.ts +69 -69
- package/src/markets/euler/index.ts +26 -26
- package/src/markets/fluid/index.ts +2900 -2900
- 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 +971 -971
- package/src/markets/spark/index.ts +29 -29
- package/src/markets/spark/marketAssets.ts +12 -12
- package/src/moneymarket/moneymarketCommonService.ts +85 -85
- package/src/morphoBlue/index.ts +274 -274
- package/src/portfolio/index.ts +598 -598
- package/src/savings/index.ts +84 -82
- package/src/savings/makerDsr/index.ts +53 -53
- package/src/savings/makerDsr/options.ts +9 -9
- package/src/savings/morphoVaults/index.ts +80 -80
- package/src/savings/morphoVaults/options.ts +203 -203
- package/src/savings/skyOptions/index.ts +95 -95
- package/src/savings/skyOptions/options.ts +10 -9
- package/src/savings/sparkSavingsVaults/index.ts +60 -60
- package/src/savings/sparkSavingsVaults/options.ts +35 -35
- package/src/savings/yearnV3Vaults/index.ts +61 -0
- package/src/savings/yearnV3Vaults/options.ts +56 -0
- package/src/savings/yearnVaults/index.ts +73 -73
- package/src/savings/yearnVaults/options.ts +32 -32
- package/src/services/priceService.ts +278 -278
- package/src/services/utils.ts +115 -115
- package/src/services/viem.ts +34 -34
- package/src/setup.ts +8 -8
- package/src/spark/index.ts +456 -456
- package/src/staking/eligibility.ts +53 -53
- package/src/staking/index.ts +1 -1
- package/src/staking/staking.ts +186 -186
- package/src/types/aave.ts +196 -196
- package/src/types/claiming.ts +114 -114
- package/src/types/common.ts +107 -107
- package/src/types/compound.ts +144 -144
- package/src/types/curveUsd.ts +123 -123
- package/src/types/euler.ts +175 -175
- package/src/types/fluid.ts +483 -483
- package/src/types/index.ts +14 -14
- package/src/types/liquity.ts +30 -30
- package/src/types/liquityV2.ts +126 -126
- package/src/types/llamaLend.ts +159 -159
- package/src/types/maker.ts +63 -63
- package/src/types/merit.ts +1 -1
- package/src/types/merkl.ts +70 -70
- package/src/types/morphoBlue.ts +200 -200
- package/src/types/portfolio.ts +60 -60
- package/src/types/savings/index.ts +24 -22
- package/src/types/savings/makerDsr.ts +13 -13
- package/src/types/savings/morphoVaults.ts +33 -33
- package/src/types/savings/sky.ts +14 -13
- package/src/types/savings/sparkSavingsVaults.ts +15 -15
- package/src/types/savings/yearnV3Vaults.ts +18 -0
- package/src/types/savings/yearnVaults.ts +14 -14
- package/src/types/spark.ts +133 -133
- package/src/umbrella/index.ts +69 -69
- package/src/umbrella/umbrellaUtils.ts +29 -29
package/esm/contracts.d.ts
CHANGED
|
@@ -47908,6 +47908,211 @@ export declare const getErc20ContractViem: (client: Client, address: HexString)
|
|
|
47908
47908
|
readonly type: "event";
|
|
47909
47909
|
}];
|
|
47910
47910
|
};
|
|
47911
|
+
export declare const getYearnV3VaultContractViem: (client: Client, address: HexString) => {
|
|
47912
|
+
read: {
|
|
47913
|
+
totalSupply: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
47914
|
+
readonly stateMutability: "view";
|
|
47915
|
+
readonly type: "function";
|
|
47916
|
+
readonly name: "balanceOf";
|
|
47917
|
+
readonly inputs: readonly [{
|
|
47918
|
+
readonly name: "addr";
|
|
47919
|
+
readonly type: "address";
|
|
47920
|
+
}];
|
|
47921
|
+
readonly outputs: readonly [{
|
|
47922
|
+
readonly name: "";
|
|
47923
|
+
readonly type: "uint256";
|
|
47924
|
+
}];
|
|
47925
|
+
}, {
|
|
47926
|
+
readonly stateMutability: "view";
|
|
47927
|
+
readonly type: "function";
|
|
47928
|
+
readonly name: "totalAssets";
|
|
47929
|
+
readonly inputs: readonly [];
|
|
47930
|
+
readonly outputs: readonly [{
|
|
47931
|
+
readonly name: "";
|
|
47932
|
+
readonly type: "uint256";
|
|
47933
|
+
}];
|
|
47934
|
+
}, {
|
|
47935
|
+
readonly stateMutability: "view";
|
|
47936
|
+
readonly type: "function";
|
|
47937
|
+
readonly name: "totalDebt";
|
|
47938
|
+
readonly inputs: readonly [];
|
|
47939
|
+
readonly outputs: readonly [{
|
|
47940
|
+
readonly name: "";
|
|
47941
|
+
readonly type: "uint256";
|
|
47942
|
+
}];
|
|
47943
|
+
}, {
|
|
47944
|
+
readonly stateMutability: "view";
|
|
47945
|
+
readonly type: "function";
|
|
47946
|
+
readonly name: "totalSupply";
|
|
47947
|
+
readonly inputs: readonly [];
|
|
47948
|
+
readonly outputs: readonly [{
|
|
47949
|
+
readonly name: "";
|
|
47950
|
+
readonly type: "uint256";
|
|
47951
|
+
}];
|
|
47952
|
+
}], "totalSupply", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
|
|
47953
|
+
totalDebt: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
47954
|
+
readonly stateMutability: "view";
|
|
47955
|
+
readonly type: "function";
|
|
47956
|
+
readonly name: "balanceOf";
|
|
47957
|
+
readonly inputs: readonly [{
|
|
47958
|
+
readonly name: "addr";
|
|
47959
|
+
readonly type: "address";
|
|
47960
|
+
}];
|
|
47961
|
+
readonly outputs: readonly [{
|
|
47962
|
+
readonly name: "";
|
|
47963
|
+
readonly type: "uint256";
|
|
47964
|
+
}];
|
|
47965
|
+
}, {
|
|
47966
|
+
readonly stateMutability: "view";
|
|
47967
|
+
readonly type: "function";
|
|
47968
|
+
readonly name: "totalAssets";
|
|
47969
|
+
readonly inputs: readonly [];
|
|
47970
|
+
readonly outputs: readonly [{
|
|
47971
|
+
readonly name: "";
|
|
47972
|
+
readonly type: "uint256";
|
|
47973
|
+
}];
|
|
47974
|
+
}, {
|
|
47975
|
+
readonly stateMutability: "view";
|
|
47976
|
+
readonly type: "function";
|
|
47977
|
+
readonly name: "totalDebt";
|
|
47978
|
+
readonly inputs: readonly [];
|
|
47979
|
+
readonly outputs: readonly [{
|
|
47980
|
+
readonly name: "";
|
|
47981
|
+
readonly type: "uint256";
|
|
47982
|
+
}];
|
|
47983
|
+
}, {
|
|
47984
|
+
readonly stateMutability: "view";
|
|
47985
|
+
readonly type: "function";
|
|
47986
|
+
readonly name: "totalSupply";
|
|
47987
|
+
readonly inputs: readonly [];
|
|
47988
|
+
readonly outputs: readonly [{
|
|
47989
|
+
readonly name: "";
|
|
47990
|
+
readonly type: "uint256";
|
|
47991
|
+
}];
|
|
47992
|
+
}], "totalDebt", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
|
|
47993
|
+
balanceOf: (args: readonly [`0x${string}`], options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
47994
|
+
readonly stateMutability: "view";
|
|
47995
|
+
readonly type: "function";
|
|
47996
|
+
readonly name: "balanceOf";
|
|
47997
|
+
readonly inputs: readonly [{
|
|
47998
|
+
readonly name: "addr";
|
|
47999
|
+
readonly type: "address";
|
|
48000
|
+
}];
|
|
48001
|
+
readonly outputs: readonly [{
|
|
48002
|
+
readonly name: "";
|
|
48003
|
+
readonly type: "uint256";
|
|
48004
|
+
}];
|
|
48005
|
+
}, {
|
|
48006
|
+
readonly stateMutability: "view";
|
|
48007
|
+
readonly type: "function";
|
|
48008
|
+
readonly name: "totalAssets";
|
|
48009
|
+
readonly inputs: readonly [];
|
|
48010
|
+
readonly outputs: readonly [{
|
|
48011
|
+
readonly name: "";
|
|
48012
|
+
readonly type: "uint256";
|
|
48013
|
+
}];
|
|
48014
|
+
}, {
|
|
48015
|
+
readonly stateMutability: "view";
|
|
48016
|
+
readonly type: "function";
|
|
48017
|
+
readonly name: "totalDebt";
|
|
48018
|
+
readonly inputs: readonly [];
|
|
48019
|
+
readonly outputs: readonly [{
|
|
48020
|
+
readonly name: "";
|
|
48021
|
+
readonly type: "uint256";
|
|
48022
|
+
}];
|
|
48023
|
+
}, {
|
|
48024
|
+
readonly stateMutability: "view";
|
|
48025
|
+
readonly type: "function";
|
|
48026
|
+
readonly name: "totalSupply";
|
|
48027
|
+
readonly inputs: readonly [];
|
|
48028
|
+
readonly outputs: readonly [{
|
|
48029
|
+
readonly name: "";
|
|
48030
|
+
readonly type: "uint256";
|
|
48031
|
+
}];
|
|
48032
|
+
}], "balanceOf", readonly [`0x${string}`]>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
|
|
48033
|
+
totalAssets: (options?: import("viem").Prettify<import("viem").UnionOmit<import("viem").ReadContractParameters<readonly [{
|
|
48034
|
+
readonly stateMutability: "view";
|
|
48035
|
+
readonly type: "function";
|
|
48036
|
+
readonly name: "balanceOf";
|
|
48037
|
+
readonly inputs: readonly [{
|
|
48038
|
+
readonly name: "addr";
|
|
48039
|
+
readonly type: "address";
|
|
48040
|
+
}];
|
|
48041
|
+
readonly outputs: readonly [{
|
|
48042
|
+
readonly name: "";
|
|
48043
|
+
readonly type: "uint256";
|
|
48044
|
+
}];
|
|
48045
|
+
}, {
|
|
48046
|
+
readonly stateMutability: "view";
|
|
48047
|
+
readonly type: "function";
|
|
48048
|
+
readonly name: "totalAssets";
|
|
48049
|
+
readonly inputs: readonly [];
|
|
48050
|
+
readonly outputs: readonly [{
|
|
48051
|
+
readonly name: "";
|
|
48052
|
+
readonly type: "uint256";
|
|
48053
|
+
}];
|
|
48054
|
+
}, {
|
|
48055
|
+
readonly stateMutability: "view";
|
|
48056
|
+
readonly type: "function";
|
|
48057
|
+
readonly name: "totalDebt";
|
|
48058
|
+
readonly inputs: readonly [];
|
|
48059
|
+
readonly outputs: readonly [{
|
|
48060
|
+
readonly name: "";
|
|
48061
|
+
readonly type: "uint256";
|
|
48062
|
+
}];
|
|
48063
|
+
}, {
|
|
48064
|
+
readonly stateMutability: "view";
|
|
48065
|
+
readonly type: "function";
|
|
48066
|
+
readonly name: "totalSupply";
|
|
48067
|
+
readonly inputs: readonly [];
|
|
48068
|
+
readonly outputs: readonly [{
|
|
48069
|
+
readonly name: "";
|
|
48070
|
+
readonly type: "uint256";
|
|
48071
|
+
}];
|
|
48072
|
+
}], "totalAssets", readonly []>, "address" | "args" | "abi" | "functionName">> | undefined) => Promise<bigint>;
|
|
48073
|
+
};
|
|
48074
|
+
address: `0x${string}`;
|
|
48075
|
+
abi: readonly [{
|
|
48076
|
+
readonly stateMutability: "view";
|
|
48077
|
+
readonly type: "function";
|
|
48078
|
+
readonly name: "balanceOf";
|
|
48079
|
+
readonly inputs: readonly [{
|
|
48080
|
+
readonly name: "addr";
|
|
48081
|
+
readonly type: "address";
|
|
48082
|
+
}];
|
|
48083
|
+
readonly outputs: readonly [{
|
|
48084
|
+
readonly name: "";
|
|
48085
|
+
readonly type: "uint256";
|
|
48086
|
+
}];
|
|
48087
|
+
}, {
|
|
48088
|
+
readonly stateMutability: "view";
|
|
48089
|
+
readonly type: "function";
|
|
48090
|
+
readonly name: "totalAssets";
|
|
48091
|
+
readonly inputs: readonly [];
|
|
48092
|
+
readonly outputs: readonly [{
|
|
48093
|
+
readonly name: "";
|
|
48094
|
+
readonly type: "uint256";
|
|
48095
|
+
}];
|
|
48096
|
+
}, {
|
|
48097
|
+
readonly stateMutability: "view";
|
|
48098
|
+
readonly type: "function";
|
|
48099
|
+
readonly name: "totalDebt";
|
|
48100
|
+
readonly inputs: readonly [];
|
|
48101
|
+
readonly outputs: readonly [{
|
|
48102
|
+
readonly name: "";
|
|
48103
|
+
readonly type: "uint256";
|
|
48104
|
+
}];
|
|
48105
|
+
}, {
|
|
48106
|
+
readonly stateMutability: "view";
|
|
48107
|
+
readonly type: "function";
|
|
48108
|
+
readonly name: "totalSupply";
|
|
48109
|
+
readonly inputs: readonly [];
|
|
48110
|
+
readonly outputs: readonly [{
|
|
48111
|
+
readonly name: "";
|
|
48112
|
+
readonly type: "uint256";
|
|
48113
|
+
}];
|
|
48114
|
+
}];
|
|
48115
|
+
};
|
|
47911
48116
|
export declare const MorphoBlueViewContractViem: (client: Client, network: NetworkNumber, block?: Blockish) => {
|
|
47912
48117
|
read: {
|
|
47913
48118
|
getApyAfterValuesEstimation: (args: readonly [{
|
package/esm/contracts.js
CHANGED
|
@@ -77,6 +77,14 @@ export const getErc20ContractViem = (client, address) => {
|
|
|
77
77
|
client,
|
|
78
78
|
});
|
|
79
79
|
};
|
|
80
|
+
export const getYearnV3VaultContractViem = (client, address) => {
|
|
81
|
+
const abi = getConfigContractAbi('YearnV3Vault');
|
|
82
|
+
return getContract({
|
|
83
|
+
address,
|
|
84
|
+
abi,
|
|
85
|
+
client,
|
|
86
|
+
});
|
|
87
|
+
};
|
|
80
88
|
export const MorphoBlueViewContractViem = createViemContractFromConfigFunc('MorphoBlueView');
|
|
81
89
|
export const AaveLoanInfoV2ContractViem = createViemContractFromConfigFunc('AaveLoanInfoV2');
|
|
82
90
|
export const AaveV3ViewContractViem = createViemContractFromConfigFunc('AaveV3View');
|
|
@@ -118,73 +118,73 @@ export const getApyAfterValuesEstimation = (selectedMarket, actions, provider, n
|
|
|
118
118
|
return { borrowRate, supplyRate };
|
|
119
119
|
});
|
|
120
120
|
const API_URL = 'https://blue-api.morpho.org/graphql';
|
|
121
|
-
const MARKET_QUERY = `
|
|
122
|
-
query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
|
|
123
|
-
marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
|
|
124
|
-
reallocatableLiquidityAssets
|
|
125
|
-
targetBorrowUtilization
|
|
126
|
-
loanAsset {
|
|
127
|
-
address
|
|
128
|
-
decimals
|
|
129
|
-
priceUsd
|
|
130
|
-
}
|
|
131
|
-
state {
|
|
132
|
-
liquidityAssets
|
|
133
|
-
borrowAssets
|
|
134
|
-
supplyAssets
|
|
135
|
-
}
|
|
136
|
-
publicAllocatorSharedLiquidity {
|
|
137
|
-
assets
|
|
138
|
-
vault {
|
|
139
|
-
address
|
|
140
|
-
name
|
|
141
|
-
}
|
|
142
|
-
allocationMarket {
|
|
143
|
-
uniqueKey
|
|
144
|
-
loanAsset {
|
|
145
|
-
address
|
|
146
|
-
}
|
|
147
|
-
collateralAsset {
|
|
148
|
-
address
|
|
149
|
-
}
|
|
150
|
-
irmAddress
|
|
151
|
-
oracle {
|
|
152
|
-
address
|
|
153
|
-
}
|
|
154
|
-
lltv
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
loanAsset {
|
|
158
|
-
address
|
|
159
|
-
}
|
|
160
|
-
collateralAsset {
|
|
161
|
-
address
|
|
162
|
-
}
|
|
163
|
-
oracle {
|
|
164
|
-
address
|
|
165
|
-
}
|
|
166
|
-
irmAddress
|
|
167
|
-
lltv
|
|
168
|
-
}
|
|
169
|
-
}
|
|
121
|
+
const MARKET_QUERY = `
|
|
122
|
+
query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
|
|
123
|
+
marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
|
|
124
|
+
reallocatableLiquidityAssets
|
|
125
|
+
targetBorrowUtilization
|
|
126
|
+
loanAsset {
|
|
127
|
+
address
|
|
128
|
+
decimals
|
|
129
|
+
priceUsd
|
|
130
|
+
}
|
|
131
|
+
state {
|
|
132
|
+
liquidityAssets
|
|
133
|
+
borrowAssets
|
|
134
|
+
supplyAssets
|
|
135
|
+
}
|
|
136
|
+
publicAllocatorSharedLiquidity {
|
|
137
|
+
assets
|
|
138
|
+
vault {
|
|
139
|
+
address
|
|
140
|
+
name
|
|
141
|
+
}
|
|
142
|
+
allocationMarket {
|
|
143
|
+
uniqueKey
|
|
144
|
+
loanAsset {
|
|
145
|
+
address
|
|
146
|
+
}
|
|
147
|
+
collateralAsset {
|
|
148
|
+
address
|
|
149
|
+
}
|
|
150
|
+
irmAddress
|
|
151
|
+
oracle {
|
|
152
|
+
address
|
|
153
|
+
}
|
|
154
|
+
lltv
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
loanAsset {
|
|
158
|
+
address
|
|
159
|
+
}
|
|
160
|
+
collateralAsset {
|
|
161
|
+
address
|
|
162
|
+
}
|
|
163
|
+
oracle {
|
|
164
|
+
address
|
|
165
|
+
}
|
|
166
|
+
irmAddress
|
|
167
|
+
lltv
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
170
|
`;
|
|
171
|
-
const REWARDS_QUERY = `
|
|
172
|
-
query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
|
|
173
|
-
marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
|
|
174
|
-
uniqueKey
|
|
175
|
-
state {
|
|
176
|
-
rewards {
|
|
177
|
-
amountPerSuppliedToken
|
|
178
|
-
supplyApr
|
|
179
|
-
amountPerBorrowedToken
|
|
180
|
-
borrowApr
|
|
181
|
-
asset {
|
|
182
|
-
address
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
}
|
|
171
|
+
const REWARDS_QUERY = `
|
|
172
|
+
query MarketByUniqueKey($uniqueKey: String!, $chainId: Int!) {
|
|
173
|
+
marketByUniqueKey(uniqueKey: $uniqueKey, chainId: $chainId) {
|
|
174
|
+
uniqueKey
|
|
175
|
+
state {
|
|
176
|
+
rewards {
|
|
177
|
+
amountPerSuppliedToken
|
|
178
|
+
supplyApr
|
|
179
|
+
amountPerBorrowedToken
|
|
180
|
+
borrowApr
|
|
181
|
+
asset {
|
|
182
|
+
address
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
188
|
`;
|
|
189
189
|
/**
|
|
190
190
|
* Get reallocatable liquidity to a given market and target borrow utilization
|
package/esm/savings/index.d.ts
CHANGED
|
@@ -5,5 +5,6 @@ import * as yearnVaults from './yearnVaults';
|
|
|
5
5
|
import * as makerDsr from './makerDsr';
|
|
6
6
|
import * as skyOptions from './skyOptions';
|
|
7
7
|
import * as sparkSavingsVaults from './sparkSavingsVaults';
|
|
8
|
-
|
|
9
|
-
export
|
|
8
|
+
import * as yearnV3Vaults from './yearnV3Vaults';
|
|
9
|
+
export { morphoVaults, yearnVaults, makerDsr, skyOptions, sparkSavingsVaults, yearnV3Vaults, };
|
|
10
|
+
export declare const getSavingsData: (provider: EthereumProvider, network: NetworkNumber, accounts: EthAddress[]) => Promise<Partial<Record<MakerDsrType | MorphoVaultType | SkySavingsType | SparkSavingsVaultType | import("../types").YearnV3VaultType | YearnVaultType, import("../types").SavingsVaultData>>>;
|
package/esm/savings/index.js
CHANGED
|
@@ -13,7 +13,8 @@ import * as yearnVaults from './yearnVaults';
|
|
|
13
13
|
import * as makerDsr from './makerDsr';
|
|
14
14
|
import * as skyOptions from './skyOptions';
|
|
15
15
|
import * as sparkSavingsVaults from './sparkSavingsVaults';
|
|
16
|
-
|
|
16
|
+
import * as yearnV3Vaults from './yearnV3Vaults';
|
|
17
|
+
export { morphoVaults, yearnVaults, makerDsr, skyOptions, sparkSavingsVaults, yearnV3Vaults, };
|
|
17
18
|
export const getSavingsData = (provider, network, accounts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
19
|
const morphoVaultsList = Object.keys(morphoVaults.morphoVaultsOptions.MORPHO_VAULTS);
|
|
19
20
|
const yearnVaultsList = Object.keys(yearnVaults.yearnVaultsOptions.YEARN_VAULTS);
|
|
@@ -14,23 +14,23 @@ import * as morphoVaultsOptions from './options';
|
|
|
14
14
|
import { getViemProvider } from '../../services/viem';
|
|
15
15
|
import { getMorphoVaultContractViem } from '../../contracts';
|
|
16
16
|
export { morphoVaultsOptions, };
|
|
17
|
-
const vaultDataQuery = (vaultAddress) => `query vaultByAddress {
|
|
18
|
-
vaultByAddress(chainId: 1, address: "${vaultAddress}") {
|
|
19
|
-
id,
|
|
20
|
-
dailyApy,
|
|
21
|
-
dailyApys {
|
|
22
|
-
apy, netApy
|
|
23
|
-
},
|
|
24
|
-
monthlyApys {
|
|
25
|
-
apy, netApy
|
|
26
|
-
},
|
|
27
|
-
liquidity {
|
|
28
|
-
underlying, usd,
|
|
29
|
-
},
|
|
30
|
-
asset {
|
|
31
|
-
priceUsd
|
|
32
|
-
}
|
|
33
|
-
}
|
|
17
|
+
const vaultDataQuery = (vaultAddress) => `query vaultByAddress {
|
|
18
|
+
vaultByAddress(chainId: 1, address: "${vaultAddress}") {
|
|
19
|
+
id,
|
|
20
|
+
dailyApy,
|
|
21
|
+
dailyApys {
|
|
22
|
+
apy, netApy
|
|
23
|
+
},
|
|
24
|
+
monthlyApys {
|
|
25
|
+
apy, netApy
|
|
26
|
+
},
|
|
27
|
+
liquidity {
|
|
28
|
+
underlying, usd,
|
|
29
|
+
},
|
|
30
|
+
asset {
|
|
31
|
+
priceUsd
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
34
|
}`;
|
|
35
35
|
const MORPHO_BLUE_API = 'https://blue-api.morpho.org/graphql';
|
|
36
36
|
export const _getMorphoVaultData = (provider, network, morphoVault, accounts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Client } from 'viem';
|
|
2
|
+
import { SavingsVaultData, YearnV3Vault } from '../../types';
|
|
3
|
+
import { EthAddress, EthereumProvider, NetworkNumber } from '../../types/common';
|
|
4
|
+
import * as yearnV3VaultsOptions from './options';
|
|
5
|
+
export { yearnV3VaultsOptions, };
|
|
6
|
+
export declare const _getYearnV3VaultData: (provider: Client, network: NetworkNumber, yearnV3Vault: YearnV3Vault, accounts: EthAddress[]) => Promise<SavingsVaultData>;
|
|
7
|
+
export declare function getYearnV3VaultData(provider: EthereumProvider, network: NetworkNumber, yearnV3Vault: YearnV3Vault, accounts: EthAddress[]): Promise<SavingsVaultData>;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import Dec from 'decimal.js';
|
|
11
|
+
import { assetAmountInEth } from '@defisaver/tokens';
|
|
12
|
+
import { getViemProvider } from '../../services/viem';
|
|
13
|
+
import * as yearnV3VaultsOptions from './options';
|
|
14
|
+
import { getYearnV3VaultContractViem } from '../../contracts';
|
|
15
|
+
export { yearnV3VaultsOptions, };
|
|
16
|
+
export const _getYearnV3VaultData = (provider, network, yearnV3Vault, accounts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
17
|
+
const yearnV3VaultContract = getYearnV3VaultContractViem(provider, yearnV3Vault.address);
|
|
18
|
+
const shares = {};
|
|
19
|
+
const [totalAssets, totalSupply, totalDebt] = yield Promise.all([
|
|
20
|
+
yearnV3VaultContract.read.totalAssets(),
|
|
21
|
+
yearnV3VaultContract.read.totalSupply(),
|
|
22
|
+
yearnV3VaultContract.read.totalDebt(),
|
|
23
|
+
...accounts.map((account) => __awaiter(void 0, void 0, void 0, function* () {
|
|
24
|
+
const share = yield yearnV3VaultContract.read.balanceOf([account]);
|
|
25
|
+
shares[account] = share;
|
|
26
|
+
})),
|
|
27
|
+
]);
|
|
28
|
+
const poolSize = assetAmountInEth(totalAssets.toString(), yearnV3Vault.asset);
|
|
29
|
+
const debt = assetAmountInEth(totalDebt.toString(), yearnV3Vault.asset);
|
|
30
|
+
// DEV: Check if true
|
|
31
|
+
const liquidity = poolSize;
|
|
32
|
+
const supplied = {};
|
|
33
|
+
accounts.forEach((account) => {
|
|
34
|
+
const share = shares[account] || BigInt(0);
|
|
35
|
+
supplied[account.toLowerCase()] = assetAmountInEth(new Dec(share).mul(totalAssets).div(totalSupply).toFixed()
|
|
36
|
+
.toString(), yearnV3Vault.asset);
|
|
37
|
+
});
|
|
38
|
+
return {
|
|
39
|
+
poolSize,
|
|
40
|
+
supplied,
|
|
41
|
+
liquidity,
|
|
42
|
+
asset: yearnV3Vault.asset,
|
|
43
|
+
optionType: yearnV3Vault.type,
|
|
44
|
+
};
|
|
45
|
+
});
|
|
46
|
+
export function getYearnV3VaultData(provider, network, yearnV3Vault, accounts) {
|
|
47
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
48
|
+
return _getYearnV3VaultData(getViemProvider(provider, network, {
|
|
49
|
+
batch: {
|
|
50
|
+
multicall: {
|
|
51
|
+
batchSize: 2500000,
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
}), network, yearnV3Vault, accounts);
|
|
55
|
+
});
|
|
56
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { YearnV3Vault, YearnV3VaultType } from '../../types';
|
|
2
|
+
export declare const YEARN_V3_VAULT_USDC: YearnV3Vault;
|
|
3
|
+
export declare const YEARN_V3_VAULT_USDS: YearnV3Vault;
|
|
4
|
+
export declare const YEARN_V3_VAULT_DAI: YearnV3Vault;
|
|
5
|
+
export declare const YEARN_V3_VAULT_USDT: YearnV3Vault;
|
|
6
|
+
export declare const YEARN_V3_VAULT_WETH_1: YearnV3Vault;
|
|
7
|
+
export declare const YEARN_V3_VAULTS: Record<YearnV3VaultType, YearnV3Vault>;
|
|
8
|
+
export declare const getYearnV3Vault: (type: YearnV3VaultType) => YearnV3Vault;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { YearnV3VaultType } from '../../types';
|
|
2
|
+
export const YEARN_V3_VAULT_USDC = {
|
|
3
|
+
type: YearnV3VaultType.YearnVaultV3USDC,
|
|
4
|
+
name: 'Yearn V3 USDC',
|
|
5
|
+
address: '0xBe53A109B494E5c9f97b9Cd39Fe969BE68BF6204',
|
|
6
|
+
asset: 'USDC',
|
|
7
|
+
deploymentBlock: 19419991,
|
|
8
|
+
isLegacy: false,
|
|
9
|
+
};
|
|
10
|
+
export const YEARN_V3_VAULT_USDS = {
|
|
11
|
+
type: YearnV3VaultType.YearnVaultV3USDS,
|
|
12
|
+
name: 'Yearn V3 USDS',
|
|
13
|
+
address: '0x182863131F9a4630fF9E27830d945B1413e347E8',
|
|
14
|
+
asset: 'USDS',
|
|
15
|
+
deploymentBlock: 20917639,
|
|
16
|
+
isLegacy: false,
|
|
17
|
+
};
|
|
18
|
+
export const YEARN_V3_VAULT_DAI = {
|
|
19
|
+
type: YearnV3VaultType.YearnVaultV3DAI,
|
|
20
|
+
name: 'Yearn V3 DAI',
|
|
21
|
+
address: '0x028eC7330ff87667b6dfb0D94b954c820195336c',
|
|
22
|
+
asset: 'DAI',
|
|
23
|
+
deploymentBlock: 19419991,
|
|
24
|
+
isLegacy: false,
|
|
25
|
+
};
|
|
26
|
+
export const YEARN_V3_VAULT_USDT = {
|
|
27
|
+
type: YearnV3VaultType.YearnVaultV3USDT,
|
|
28
|
+
name: 'Yearn V3 USDT',
|
|
29
|
+
address: '0x310B7Ea7475A0B449Cfd73bE81522F1B88eFAFaa',
|
|
30
|
+
asset: 'USDT',
|
|
31
|
+
deploymentBlock: 20369520,
|
|
32
|
+
isLegacy: false,
|
|
33
|
+
};
|
|
34
|
+
export const YEARN_V3_VAULT_WETH_1 = {
|
|
35
|
+
type: YearnV3VaultType.YearnVaultV3WETH_1,
|
|
36
|
+
name: 'Yearn V3 WETH',
|
|
37
|
+
address: '0xc56413869c6CDf96496f2b1eF801fEDBdFA7dDB0',
|
|
38
|
+
asset: 'WETH',
|
|
39
|
+
deploymentBlock: 19419991,
|
|
40
|
+
isLegacy: false,
|
|
41
|
+
};
|
|
42
|
+
export const YEARN_V3_VAULTS = {
|
|
43
|
+
[YearnV3VaultType.YearnVaultV3USDC]: YEARN_V3_VAULT_USDC,
|
|
44
|
+
[YearnV3VaultType.YearnVaultV3USDS]: YEARN_V3_VAULT_USDS,
|
|
45
|
+
[YearnV3VaultType.YearnVaultV3DAI]: YEARN_V3_VAULT_DAI,
|
|
46
|
+
[YearnV3VaultType.YearnVaultV3USDT]: YEARN_V3_VAULT_USDT,
|
|
47
|
+
[YearnV3VaultType.YearnVaultV3WETH_1]: YEARN_V3_VAULT_WETH_1,
|
|
48
|
+
};
|
|
49
|
+
export const getYearnV3Vault = (type) => YEARN_V3_VAULTS[type];
|
|
@@ -3,12 +3,14 @@ import { MakerDsrType } from './makerDsr';
|
|
|
3
3
|
import { MorphoVaultType } from './morphoVaults';
|
|
4
4
|
import { SkySavingsType } from './sky';
|
|
5
5
|
import { SparkSavingsVaultType } from './sparkSavingsVaults';
|
|
6
|
+
import { YearnV3VaultType } from './yearnV3Vaults';
|
|
6
7
|
import { YearnVaultType } from './yearnVaults';
|
|
7
8
|
export * from './morphoVaults';
|
|
8
9
|
export * from './yearnVaults';
|
|
9
10
|
export * from './makerDsr';
|
|
10
11
|
export * from './sky';
|
|
11
12
|
export * from './sparkSavingsVaults';
|
|
13
|
+
export * from './yearnV3Vaults';
|
|
12
14
|
export interface SavingsVaultData {
|
|
13
15
|
poolSize: string;
|
|
14
16
|
liquidity: string;
|
|
@@ -16,4 +18,4 @@ export interface SavingsVaultData {
|
|
|
16
18
|
asset: string;
|
|
17
19
|
optionType: string;
|
|
18
20
|
}
|
|
19
|
-
export type SavingsData = Partial<Record<MorphoVaultType | YearnVaultType | MakerDsrType | SkySavingsType | SparkSavingsVaultType, SavingsVaultData>>;
|
|
21
|
+
export type SavingsData = Partial<Record<MorphoVaultType | YearnVaultType | MakerDsrType | SkySavingsType | SparkSavingsVaultType | YearnV3VaultType, SavingsVaultData>>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EthAddress } from '../common';
|
|
2
|
+
export declare enum YearnV3VaultType {
|
|
3
|
+
YearnVaultV3USDC = "yearn_v3_vault_usdc",
|
|
4
|
+
YearnVaultV3USDS = "yearn_v3_vault_usds",
|
|
5
|
+
YearnVaultV3USDT = "yearn_v3_vault_usdt",
|
|
6
|
+
YearnVaultV3DAI = "yearn_v3_vault_dai",
|
|
7
|
+
YearnVaultV3WETH_1 = "yearn_v3_vault_weth_1"
|
|
8
|
+
}
|
|
9
|
+
export interface YearnV3Vault {
|
|
10
|
+
type: YearnV3VaultType;
|
|
11
|
+
address: EthAddress;
|
|
12
|
+
asset: string;
|
|
13
|
+
name: string;
|
|
14
|
+
deploymentBlock: number;
|
|
15
|
+
isLegacy: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export var YearnV3VaultType;
|
|
2
|
+
(function (YearnV3VaultType) {
|
|
3
|
+
YearnV3VaultType["YearnVaultV3USDC"] = "yearn_v3_vault_usdc";
|
|
4
|
+
YearnV3VaultType["YearnVaultV3USDS"] = "yearn_v3_vault_usds";
|
|
5
|
+
YearnV3VaultType["YearnVaultV3USDT"] = "yearn_v3_vault_usdt";
|
|
6
|
+
YearnV3VaultType["YearnVaultV3DAI"] = "yearn_v3_vault_dai";
|
|
7
|
+
YearnV3VaultType["YearnVaultV3WETH_1"] = "yearn_v3_vault_weth_1";
|
|
8
|
+
})(YearnV3VaultType || (YearnV3VaultType = {}));
|