@bulletxyz/bullet-sdk 0.49.2 → 0.49.4
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/bullet_wasm_bg.wasm +0 -0
- package/dist/browser/index.js +6 -4
- package/dist/browser/index.js.map +3 -3
- package/dist/node/bullet_wasm_bg.wasm +0 -0
- package/dist/node/index.js +6 -4
- package/dist/node/index.js.map +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/zod-types/rest.d.ts +44 -22
- package/dist/types/zod-types/rest.d.ts.map +1 -1
- package/package.json +1 -1
|
Binary file
|
package/dist/browser/index.js
CHANGED
|
@@ -2059,9 +2059,11 @@ var StateResponseSchemas = {
|
|
|
2059
2059
|
trigger_order_ids: z3.array(TriggerOrderId),
|
|
2060
2060
|
position: Position,
|
|
2061
2061
|
user_selected_max_leverage: U16Schema,
|
|
2062
|
-
|
|
2062
|
+
notional_open_bid_orders: DecimalSchema,
|
|
2063
|
+
notional_open_ask_orders: DecimalSchema,
|
|
2063
2064
|
twap_ids: z3.array(TwapId),
|
|
2064
|
-
|
|
2065
|
+
twap_open_bid_lots: DecimalSchema,
|
|
2066
|
+
twap_open_ask_lots: DecimalSchema
|
|
2065
2067
|
}), SpotLedger = z3.object({
|
|
2066
2068
|
order_ids: z3.array(OrderId),
|
|
2067
2069
|
trigger_order_ids: z3.array(TriggerOrderId),
|
|
@@ -2298,7 +2300,7 @@ var StateResponseSchemas = {
|
|
|
2298
2300
|
z3.object({ type: z3.literal("sub") }),
|
|
2299
2301
|
z3.object({ type: z3.literal("vault") }),
|
|
2300
2302
|
z3.object({ type: z3.literal("protocol_vault") }),
|
|
2301
|
-
z3.object({ type: z3.literal("master_v1"), sub_account_mask:
|
|
2303
|
+
z3.object({ type: z3.literal("master_v1"), sub_account_mask: U32Schema })
|
|
2302
2304
|
]),
|
|
2303
2305
|
address: Base58Address,
|
|
2304
2306
|
fee_tier: FeeTier,
|
|
@@ -4395,4 +4397,4 @@ export {
|
|
|
4395
4397
|
AbortError
|
|
4396
4398
|
};
|
|
4397
4399
|
|
|
4398
|
-
//# debugId=
|
|
4400
|
+
//# debugId=095FFDB47146803B64756E2164756E21
|