- If power exponent for the decay multiplier [here](https://github.com/rainlanguage/rain.strategies/blob/main/src/dynamic-spread.rain#L900) exceeds 192, the strat reverts with `PRBMath_UD60x18_Exp2_InputTooBig(uint256)`. - Eg : For these orders - https://v2.raindex.finance/orders/polygon-0xc5d046c436a771e6d3c43403e4cc74f9c60ef20ac81db9a2975de883425ae9e4 - https://v2.raindex.finance/orders/polygon-0xeda17cdf2c5db76bee7a585f678880f19a94e630e42eeb991e3ce10350a58089 ``` now : 1750847987 last-trade-time: 1734415294 duration : 16432689 epochs: 16432689 / 7200 = 2282.317916666666666666 decay-multiplier : 0.5 ^ (2282.3176 / 10) = 0.5 ^ 228 ``` - Can we edit the rainlang so that exponent is capped to 192. Eg : `min(192 div(epoch 10))`
If power exponent for the decay multiplier here exceeds 192, the strat reverts with
PRBMath_UD60x18_Exp2_InputTooBig(uint256).Eg : For these orders
https://v2.raindex.finance/orders/polygon-0xc5d046c436a771e6d3c43403e4cc74f9c60ef20ac81db9a2975de883425ae9e4
https://v2.raindex.finance/orders/polygon-0xeda17cdf2c5db76bee7a585f678880f19a94e630e42eeb991e3ce10350a58089
min(192 div(epoch 10))