@chainflip/rpc 1.11.0-beta.6 → 1.11.0-beta.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/common.d.cts +1445 -1444
- package/dist/common.d.ts +1445 -1444
- package/dist/parsers.cjs +3 -2
- package/dist/parsers.d.cts +2944 -2942
- package/dist/parsers.d.ts +2944 -2942
- package/dist/parsers.mjs +3 -2
- package/package.json +1 -1
package/dist/parsers.cjs
CHANGED
|
@@ -260,7 +260,7 @@ var operator = _zod.z.object({
|
|
|
260
260
|
validators: _zod.z.record(accountId, numberOrHex),
|
|
261
261
|
delegators: _zod.z.record(accountId, numberOrHex),
|
|
262
262
|
delegation_fee_bps: _zod.z.number()
|
|
263
|
-
})
|
|
263
|
+
}).optional()
|
|
264
264
|
});
|
|
265
265
|
var boostBalances = _zod.z.array(
|
|
266
266
|
_zod.z.object({
|
|
@@ -331,7 +331,8 @@ var newCfAccountInfo = _zod.z.discriminatedUnion("role", [unregistered, broker,
|
|
|
331
331
|
upcoming_delegation: {
|
|
332
332
|
validators: managed_validators,
|
|
333
333
|
delegators,
|
|
334
|
-
delegation_fee_bps: settings.fee_bps
|
|
334
|
+
delegation_fee_bps: settings.fee_bps,
|
|
335
|
+
delegation_acceptance: settings.delegation_acceptance
|
|
335
336
|
}
|
|
336
337
|
};
|
|
337
338
|
}
|