Nominal collateral ratio used for SortedTroves placement (price-independent): (collateral × 1e20) / entireDebt. Mirrors the contract's pure computeNominalCR byte-for-byte (cross-checked in the Phase-3 gate).
(collateral × 1e20) / entireDebt
computeNominalCR
if entireDebt <= 0 (no position has zero debt; the contract would return max-uint, which is meaningless for a hint).
entireDebt <= 0
Nominal collateral ratio used for SortedTroves placement (price-independent):
(collateral × 1e20) / entireDebt. Mirrors the contract's purecomputeNominalCRbyte-for-byte (cross-checked in the Phase-3 gate).