@chainflip/rpc 2.2.0-alpha.1 → 2.2.0-alpha.2

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
@@ -729,7 +729,7 @@ const cfLendingPools = zod.z.array(zod.z.object({
729
729
  const cfLendingConfig = zod.z.object({
730
730
  ltv_thresholds: zod.z.object({
731
731
  target: zod.z.number(),
732
- topup: zod.z.number().nullable(),
732
+ topup: zod.z.number().nullish(),
733
733
  soft_liquidation: zod.z.number(),
734
734
  soft_liquidation_abort: zod.z.number(),
735
735
  hard_liquidation: zod.z.number(),
@@ -758,7 +758,7 @@ const cfLendingConfig = zod.z.object({
758
758
  });
759
759
  const cfLoanAccount = zod.z.object({
760
760
  account: accountId,
761
- collateral_topup_asset: rpcAssetSchema.nullable(),
761
+ collateral_topup_asset: rpcAssetSchema.nullish(),
762
762
  ltv_ratio: numberOrHex.nullable(),
763
763
  collateral: zod.z.array(zod.z.intersection(rpcAssetSchema, zod.z.object({ amount: numberOrHex }))),
764
764
  loans: zod.z.array(zod.z.object({