@chainflip/rpc 1.11.0-beta.2 → 1.11.0-beta.3

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
@@ -221,12 +221,13 @@ var broker = _zod.z.object({
221
221
  ).optional().default([])
222
222
  });
223
223
  var operator = _zod.z.object({
224
+ flip_balance: numberOrHex,
224
225
  role: _zod.z.literal("operator"),
225
226
  managed_validators: _zod.z.record(_zod.z.string(), numberOrHex),
226
227
  delegators: _zod.z.record(_zod.z.string(), numberOrHex),
227
228
  settings: _zod.z.object({
228
229
  fee_bps: _zod.z.number(),
229
- delegation_acceptance: _zod.z.union([_zod.z.literal("Allow"), _zod.z.literal("Deny")]).transform((value) => value === "Allow")
230
+ delegation_acceptance: _zod.z.enum(["Allow", "Deny"])
230
231
  }),
231
232
  allowed: _zod.z.array(_zod.z.string()).optional().default([]),
232
233
  blocked: _zod.z.array(_zod.z.string()).optional().default([])