@0xarchive/sdk 1.3.0 → 1.4.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.mjs CHANGED
@@ -230,7 +230,13 @@ var TradeSchema = z.object({
230
230
  startPosition: z.string().optional(),
231
231
  userAddress: z.string().optional(),
232
232
  makerAddress: z.string().optional(),
233
- takerAddress: z.string().optional()
233
+ takerAddress: z.string().optional(),
234
+ builderAddress: z.string().optional(),
235
+ builderFee: z.string().optional(),
236
+ deployerFee: z.string().optional(),
237
+ priorityGas: z.number().optional(),
238
+ cloid: z.string().optional(),
239
+ twapId: z.number().optional()
234
240
  });
235
241
  var InstrumentTypeSchema = z.enum(["perp", "spot"]);
236
242
  var InstrumentSchema = z.object({