@chainflip/rpc 1.11.2 → 1.11.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
@@ -629,22 +629,24 @@ var cfLendingPools = _zod.z.array(
629
629
  );
630
630
  var cfLendingConfig = _zod.z.object({
631
631
  ltv_thresholds: _zod.z.object({
632
- minimum: numberOrHex,
633
632
  target: numberOrHex,
634
633
  topup: numberOrHex,
635
634
  soft_liquidation: numberOrHex,
636
635
  soft_liquidation_abort: numberOrHex,
637
636
  hard_liquidation: numberOrHex,
638
- hard_liquidation_abort: numberOrHex
637
+ hard_liquidation_abort: numberOrHex,
638
+ low_ltv: numberOrHex
639
639
  }),
640
640
  network_fee_contributions: _zod.z.object({
641
- from_interest: _zod.z.number(),
641
+ extra_interest: _zod.z.number(),
642
+ interest_on_collateral_max: _zod.z.number(),
642
643
  from_origination_fee: _zod.z.number(),
643
644
  from_liquidation_fee: _zod.z.number()
644
645
  }),
645
646
  fee_swap_interval_blocks: _zod.z.number(),
646
647
  interest_payment_interval_blocks: _zod.z.number(),
647
648
  fee_swap_threshold_usd: numberOrHex,
649
+ interest_collection_threshold_usd: numberOrHex,
648
650
  liquidation_swap_chunk_size_usd: numberOrHex,
649
651
  soft_liquidation_max_oracle_slippage: _zod.z.number(),
650
652
  hard_liquidation_max_oracle_slippage: _zod.z.number(),