@chainflip/rpc 1.11.6 → 1.11.7

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
@@ -107,7 +107,11 @@ var cfIngressEgressEnvironment = _zod.z.object({
107
107
  egress_fees: chainAssetMapFactory(numberOrHex.nullable(), null),
108
108
  witness_safety_margins: chainMapFactory(_zod.z.number().nullable(), null),
109
109
  egress_dust_limits: chainAssetMapFactory(numberOrHex, 0),
110
- channel_opening_fees: chainMapFactory(numberOrHex, 0)
110
+ channel_opening_fees: chainMapFactory(numberOrHex, 0),
111
+ ingress_delays: chainMapFactory(_zod.z.number(), 0).optional(),
112
+ // TODO(1.12): remove after all networks upgraded
113
+ boost_delays: chainMapFactory(_zod.z.number(), 0).optional()
114
+ // TODO(1.12): remove after all networks upgraded
111
115
  }).transform(rename({ egress_dust_limits: "minimum_egress_amounts" }));
112
116
  var cfSwappingEnvironment = _zod.z.object({
113
117
  maximum_swap_amounts: chainAssetMapFactory(numberOrHex.nullable(), null),