@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/common.d.cts +1084 -1081
- package/dist/common.d.ts +1084 -1081
- package/dist/parsers.cjs +2 -1
- package/dist/parsers.d.cts +1244 -1238
- package/dist/parsers.d.ts +1244 -1238
- package/dist/parsers.mjs +2 -1
- package/package.json +1 -1
package/dist/parsers.mjs
CHANGED
|
@@ -221,12 +221,13 @@ var broker = z.object({
|
|
|
221
221
|
).optional().default([])
|
|
222
222
|
});
|
|
223
223
|
var operator = z.object({
|
|
224
|
+
flip_balance: numberOrHex,
|
|
224
225
|
role: z.literal("operator"),
|
|
225
226
|
managed_validators: z.record(z.string(), numberOrHex),
|
|
226
227
|
delegators: z.record(z.string(), numberOrHex),
|
|
227
228
|
settings: z.object({
|
|
228
229
|
fee_bps: z.number(),
|
|
229
|
-
delegation_acceptance: z.
|
|
230
|
+
delegation_acceptance: z.enum(["Allow", "Deny"])
|
|
230
231
|
}),
|
|
231
232
|
allowed: z.array(z.string()).optional().default([]),
|
|
232
233
|
blocked: z.array(z.string()).optional().default([])
|