We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a3826 commit 7267186Copy full SHA for 7267186
contracts/UFragmentsPolicy.sol
@@ -48,10 +48,12 @@ contract UFragmentsPolicy is Ownable {
48
// If the current exchange rate is within this fractional distance from the target, no supply
49
// update is performed. Fixed point number--same format as the rate.
50
// (ie) abs(rate - targetRate) / targetRate < deviationThreshold, then no supply change.
51
+ // 18 decimals.
52
uint256 public deviationThreshold;
53
54
// The rebase lag parameter, used to dampen the applied supply adjustment by 1 / rebaseLag
55
// Check setRebaseLag comments for more details.
56
+ // Natural number, no decimal places.
57
uint256 public rebaseLag;
58
59
// More than this much time must pass between rebase operations.
0 commit comments