@kodiak-finance/orderly-react-app 2.9.2 → 2.10.0-alpha.0
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +22 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -142,7 +142,7 @@ declare function useCanTrade(): boolean;
|
|
|
142
142
|
/**
|
|
143
143
|
* SDK Version - BUMP THIS WHEN RELEASING
|
|
144
144
|
*/
|
|
145
|
-
declare const SDK_VERSION = "2.
|
|
145
|
+
declare const SDK_VERSION = "2.10.0";
|
|
146
146
|
type ChangesetEntry = {
|
|
147
147
|
date: string;
|
|
148
148
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ declare function useCanTrade(): boolean;
|
|
|
142
142
|
/**
|
|
143
143
|
* SDK Version - BUMP THIS WHEN RELEASING
|
|
144
144
|
*/
|
|
145
|
-
declare const SDK_VERSION = "2.
|
|
145
|
+
declare const SDK_VERSION = "2.10.0";
|
|
146
146
|
type ChangesetEntry = {
|
|
147
147
|
date: string;
|
|
148
148
|
title: string;
|
package/dist/index.js
CHANGED
|
@@ -1264,8 +1264,29 @@ function useCanTrade() {
|
|
|
1264
1264
|
}
|
|
1265
1265
|
|
|
1266
1266
|
// src/constants/changesets.ts
|
|
1267
|
-
var SDK_VERSION = "2.
|
|
1267
|
+
var SDK_VERSION = "2.10.0";
|
|
1268
1268
|
var CHANGESETS = {
|
|
1269
|
+
"2.10.0": {
|
|
1270
|
+
date: "2026-05-12",
|
|
1271
|
+
title: "Grid bot trading",
|
|
1272
|
+
summary: "New grid bot package for running automated grid strategies on perpetual markets, with a deploy form, bot list, per-bot detail view, and lifecycle controls.",
|
|
1273
|
+
highlights: [
|
|
1274
|
+
"Deploy a grid bot on any perp market with arithmetic or geometric spacing",
|
|
1275
|
+
"Auto-fill \xB15% range from mark price, validate levels and per-level notional, preview buys vs sells before deploying",
|
|
1276
|
+
"My Bots list with per-bot PnL, volume, fills, range, and status",
|
|
1277
|
+
"Bot detail view with Overview, Config, and Fills tabs",
|
|
1278
|
+
"Pause, resume, stop (with optional keep-position), and remove individual bots",
|
|
1279
|
+
"Portfolio summary card showing total PnL, running bot count, and total volume across bots",
|
|
1280
|
+
"Tradingview onWidgetReady callback for drawing grid lines, fill markers, and position overlays once the chart is ready",
|
|
1281
|
+
"Translations for all new grid bot strings across 19 locales"
|
|
1282
|
+
],
|
|
1283
|
+
packages: [
|
|
1284
|
+
"kodiak-orderly-grid-bot",
|
|
1285
|
+
"kodiak-orderly-ui-tradingview",
|
|
1286
|
+
"kodiak-orderly-i18n"
|
|
1287
|
+
],
|
|
1288
|
+
type: "feature"
|
|
1289
|
+
},
|
|
1269
1290
|
"2.9.2": {
|
|
1270
1291
|
date: "2026-05-06",
|
|
1271
1292
|
title: "Orderly SDK 3.0.2 sync",
|