@chainflip/rpc 2.1.7 → 2.1.8

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/parsers.cjs CHANGED
@@ -567,6 +567,14 @@ const cfTradingStrategy = zod.z.object({
567
567
  min_sell_tick: zod.z.number(),
568
568
  max_sell_tick: zod.z.number(),
569
569
  base_asset: rpcAssetSchema
570
+ }) }),
571
+ zod.z.object({ OracleTracking: zod.z.object({
572
+ min_buy_offset_tick: zod.z.number(),
573
+ max_buy_offset_tick: zod.z.number(),
574
+ min_sell_offset_tick: zod.z.number(),
575
+ max_sell_offset_tick: zod.z.number(),
576
+ base_asset: rpcAssetSchema,
577
+ quote_asset: rpcAssetSchema
570
578
  }) })
571
579
  ]),
572
580
  balance: zod.z.array(zod.z.tuple([rpcAssetSchema, numberOrHex]))