We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f123568 commit e77a2afCopy full SHA for e77a2af
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@reserve-protocol/dtf-rebalance-lib",
3
- "version": "2.3.1",
+ "version": "2.3.2",
4
"description": "Rebalancing library for DTFs in typescript",
5
"main": "dist/index.js",
6
"module": "dist/index.js",
src/open-auction.ts
@@ -331,8 +331,7 @@ export const getOpenAuction = (
331
332
target = initialProgression.add(ONE.sub(initialProgression).mul(finalStageAt));
333
334
- // never leave more than 1 bps for next auction
335
- if (target.gt(ONE.sub(1e-4))) {
+ if (target.gt(ONE.sub(1e-5))) {
336
target = ONE;
337
}
338
0 commit comments