@gbozee/ultimate 0.0.2-89 → 0.0.2-90
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/dist/frontend-index.js +3 -0
- package/dist/index.cjs +3 -0
- package/dist/index.js +3 -0
- package/dist/mcp-server.cjs +3 -0
- package/dist/mcp-server.js +3 -0
- package/package.json +1 -1
package/dist/frontend-index.js
CHANGED
|
@@ -1231,6 +1231,9 @@ function sortedBuildConfig(app_config, options) {
|
|
|
1231
1231
|
if (app_config.symbol === "BTCUSDT") {
|
|
1232
1232
|
return x.quantity <= 0.03;
|
|
1233
1233
|
}
|
|
1234
|
+
if (app_config.symbol?.toLowerCase().startsWith("sol")) {
|
|
1235
|
+
return x.quantity <= 2;
|
|
1236
|
+
}
|
|
1234
1237
|
return true;
|
|
1235
1238
|
});
|
|
1236
1239
|
return sorted.map((k, i) => {
|
package/dist/index.cjs
CHANGED
|
@@ -53310,6 +53310,9 @@ function sortedBuildConfig(app_config, options) {
|
|
|
53310
53310
|
if (app_config.symbol === "BTCUSDT") {
|
|
53311
53311
|
return x.quantity <= 0.03;
|
|
53312
53312
|
}
|
|
53313
|
+
if (app_config.symbol?.toLowerCase().startsWith("sol")) {
|
|
53314
|
+
return x.quantity <= 2;
|
|
53315
|
+
}
|
|
53313
53316
|
return true;
|
|
53314
53317
|
});
|
|
53315
53318
|
return sorted.map((k, i2) => {
|
package/dist/index.js
CHANGED
|
@@ -53265,6 +53265,9 @@ function sortedBuildConfig(app_config, options) {
|
|
|
53265
53265
|
if (app_config.symbol === "BTCUSDT") {
|
|
53266
53266
|
return x.quantity <= 0.03;
|
|
53267
53267
|
}
|
|
53268
|
+
if (app_config.symbol?.toLowerCase().startsWith("sol")) {
|
|
53269
|
+
return x.quantity <= 2;
|
|
53270
|
+
}
|
|
53268
53271
|
return true;
|
|
53269
53272
|
});
|
|
53270
53273
|
return sorted.map((k, i2) => {
|
package/dist/mcp-server.cjs
CHANGED
|
@@ -60001,6 +60001,9 @@ function sortedBuildConfig(app_config, options) {
|
|
|
60001
60001
|
if (app_config.symbol === "BTCUSDT") {
|
|
60002
60002
|
return x.quantity <= 0.03;
|
|
60003
60003
|
}
|
|
60004
|
+
if (app_config.symbol?.toLowerCase().startsWith("sol")) {
|
|
60005
|
+
return x.quantity <= 2;
|
|
60006
|
+
}
|
|
60004
60007
|
return true;
|
|
60005
60008
|
});
|
|
60006
60009
|
return sorted.map((k, i2) => {
|
package/dist/mcp-server.js
CHANGED
|
@@ -59978,6 +59978,9 @@ function sortedBuildConfig(app_config, options) {
|
|
|
59978
59978
|
if (app_config.symbol === "BTCUSDT") {
|
|
59979
59979
|
return x.quantity <= 0.03;
|
|
59980
59980
|
}
|
|
59981
|
+
if (app_config.symbol?.toLowerCase().startsWith("sol")) {
|
|
59982
|
+
return x.quantity <= 2;
|
|
59983
|
+
}
|
|
59981
59984
|
return true;
|
|
59982
59985
|
});
|
|
59983
59986
|
return sorted.map((k, i2) => {
|