@bulletxyz/bullet-sdk 0.16.1-rc.0 → 0.16.1-rc.2
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/browser/index.js
CHANGED
|
@@ -7196,7 +7196,7 @@ var ExchangeConnection = class extends BaseConnection {
|
|
|
7196
7196
|
return parsed.data.value;
|
|
7197
7197
|
}
|
|
7198
7198
|
async getOrder(order_id) {
|
|
7199
|
-
const path = `/modules/exchange/state/orders/items/${order_id}`;
|
|
7199
|
+
const path = `/modules/exchange/state/orders/items/${order_id.toString()}`;
|
|
7200
7200
|
const response = await this.fetchApiResource(path);
|
|
7201
7201
|
const parsed = ResponseSchemas.Order.parse(response);
|
|
7202
7202
|
return parsed.data.value;
|