@chainflip/rpc 2.1.7 → 2.1.9

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]))
@@ -787,7 +795,7 @@ const ingressEgressVaultDeposit = zod.z.object({
787
795
  ss58Format: _chainflip_utils_consts.CHAINFLIP_SS58_PREFIX
788
796
  })),
789
797
  bps: zod.z.number()
790
- }).optional(),
798
+ }).nullable().optional(),
791
799
  affiliate_fees: zod.z.array(zod.z.object({
792
800
  account: zod.z.string().transform((v) => _chainflip_utils_ss58.encode({
793
801
  data: _chainflip_utils_ss58.decode(v).data,