impermax-sdk 2.1.426 → 2.1.428
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/lib/config/whitelist.js
CHANGED
|
@@ -626,7 +626,6 @@ exports.WHITELISTED_OLD = {
|
|
|
626
626
|
"0xDA4ca9030d4c037203F4cA2a1A191EfA209FA6f1",
|
|
627
627
|
"0xFA444f62379619BDa05842f70fE13c5469B238F6",
|
|
628
628
|
"0x88b5068c4ED14d69C7093011149E7d5E93a0a98e",
|
|
629
|
-
"0xC90073E1CaBCf5069E00c5a6cB10023c9e1D5c4f",
|
|
630
629
|
"0xD30eDb2f0CA35cba70d10bd3fcCe5Bbb317C88C7",
|
|
631
630
|
"0x8A16A1CA6c303122E5FA985150A2b742B3aA5FB7",
|
|
632
631
|
"0x2072119D41ba1288cEEc5Cc8FD7b31A0fC9734fc",
|
|
@@ -829,7 +828,8 @@ exports.BLACKLISTED = {
|
|
|
829
828
|
"0xE8f4895DF06a0c69A9BA87509EfdBBFBAFe86c2d",
|
|
830
829
|
"0x7c80Be56a6f23A3E598822648baaFD7524fe1239",
|
|
831
830
|
"0x185060149a0fA57aa93AFEBFaD052029129903b2",
|
|
832
|
-
"0xE3167f148F3C97dea3D42cb9d6848a7d28b3A296",
|
|
831
|
+
"0xE3167f148F3C97dea3D42cb9d6848a7d28b3A296",
|
|
832
|
+
"0xC90073E1CaBCf5069E00c5a6cB10023c9e1D5c4f", // wbtc/weth - stakedlp
|
|
833
833
|
],
|
|
834
834
|
[types_1.Factory.SOL_STABLE]: [
|
|
835
835
|
"0xDD14d0c651C63e1EeA5bd8b250cf99757425D68F", // chi/usdc stakedlp
|
|
@@ -845,7 +845,9 @@ exports.BLACKLISTED = {
|
|
|
845
845
|
[types_1.Factory.SOLV2]: [],
|
|
846
846
|
},
|
|
847
847
|
[types_1.Networks.Sonic]: {
|
|
848
|
-
[types_1.Factory.SOLV2]: [
|
|
848
|
+
[types_1.Factory.SOLV2]: [
|
|
849
|
+
"0xD9De9f15994182518a688933d09787A9a9fb5bc9", // ws/shadow stakedlp
|
|
850
|
+
],
|
|
849
851
|
},
|
|
850
852
|
[types_1.Networks.Linea]: {
|
|
851
853
|
[types_1.Factory.SOLV2]: [],
|
|
@@ -206,7 +206,7 @@ class OffchainNftlpUniswapV3 extends offchainNftlp_1.default {
|
|
|
206
206
|
async getTotalAPR() {
|
|
207
207
|
const fullRangeAPR = await this.getBestFullRangeRate() * utils_1.SECONDS_IN_YEAR;
|
|
208
208
|
const isStable = await this.getLendingPool().isStablePair();
|
|
209
|
-
const adjustment = isStable ? 1.
|
|
209
|
+
const adjustment = isStable ? 1.001 : 1.08;
|
|
210
210
|
return fullRangeAPR * (0, uniswapV3General_1.uniV3ConcentrationFactor)(1 / adjustment, adjustment);
|
|
211
211
|
}
|
|
212
212
|
}
|