@chainflip/rpc 2.0.2 → 2.0.4
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 +626 -623
- package/dist/common.d.ts +626 -623
- package/dist/parsers.cjs +4 -3
- package/dist/parsers.d.cts +754 -751
- package/dist/parsers.d.ts +754 -751
- package/dist/parsers.mjs +4 -3
- package/package.json +1 -1
package/dist/parsers.cjs
CHANGED
|
@@ -610,16 +610,16 @@ var cfLendingPools = _zod.z.array(
|
|
|
610
610
|
var cfLendingConfig = _zod.z.object({
|
|
611
611
|
ltv_thresholds: _zod.z.object({
|
|
612
612
|
target: _zod.z.number(),
|
|
613
|
-
topup: _zod.z.number(),
|
|
613
|
+
topup: _zod.z.number().nullable(),
|
|
614
614
|
soft_liquidation: _zod.z.number(),
|
|
615
615
|
soft_liquidation_abort: _zod.z.number(),
|
|
616
616
|
hard_liquidation: _zod.z.number(),
|
|
617
617
|
hard_liquidation_abort: _zod.z.number(),
|
|
618
|
-
low_ltv: _zod.z.number()
|
|
618
|
+
low_ltv: _zod.z.number().nullable()
|
|
619
619
|
}),
|
|
620
620
|
network_fee_contributions: _zod.z.object({
|
|
621
621
|
extra_interest: _zod.z.number(),
|
|
622
|
-
low_ltv_penalty_max: _zod.z.number(),
|
|
622
|
+
low_ltv_penalty_max: _zod.z.number().nullable(),
|
|
623
623
|
from_origination_fee: _zod.z.number(),
|
|
624
624
|
from_liquidation_fee: _zod.z.number()
|
|
625
625
|
}),
|
|
@@ -633,6 +633,7 @@ var cfLendingConfig = _zod.z.object({
|
|
|
633
633
|
hard_liquidation_max_oracle_slippage: _zod.z.number(),
|
|
634
634
|
fee_swap_max_oracle_slippage: _zod.z.number(),
|
|
635
635
|
minimum_loan_amount_usd: numberOrHex,
|
|
636
|
+
minimum_supply_amount_usd: numberOrHex,
|
|
636
637
|
minimum_update_loan_amount_usd: numberOrHex,
|
|
637
638
|
minimum_update_collateral_amount_usd: numberOrHex
|
|
638
639
|
});
|