You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,8 +100,8 @@ Due to LUP and HTP shifting dynamically with pool activity, the in-range boundar
100
100
*`Move(fromBucket, toBucket, amount)` - vault function and event that shifts liquidity directly between buckets. The keeper uses it when consolidating out-of-range buckets into the `optimalBucket` without touching the Buffer.
101
101
*`MoveFromBuffer(toBucket, amount)` - vault function and event that moves liquidity out of the Buffer into a bucket. The keeper calls this to drain Buffer surplus or to place funds into the `optimalBucket`.
102
102
*`MoveToBuffer(fromBucket, amount)` - vault function and event that withdraws liquidity from a bucket into the Buffer; the keeper uses it to top up the Buffer or cover a deficit.
103
-
* Off-chain logs (via keeper `log` and `handleTransaction`)
104
-
*Run-level:
103
+
* Off-chain logs (pino-formatted JSON; filterable by event field)
104
+
*Logger events:
105
105
*`keeper_run_succeeded` - final state with buffer total, buffer target, current price, and optimal bucket.
106
106
*`keeper_run_failed` - run aborted with error details.
107
107
*`keeper_stopping` - process shutdown (SIGINT/SIGTERM).
@@ -110,6 +110,11 @@ Due to LUP and HTP shifting dynamically with pool activity, the in-range boundar
110
110
*`tx_failed` - failed tx with phase (`send`, `fail`, `revert`), hash, receipt, and context.
111
111
* Warnings:
112
112
*`buffer_imbalance` - emitted when the Buffer total does not match the computed bufferTarget after rebalancing (indicating a residual surplus/deficit).
113
+
*`price_query_failed` - query failed for the first of the two configured price feeds.
114
+
* Other errors:
115
+
*`subgraph_query_failed` - query for open auctions via configured subgraph threw an error.
116
+
*`uncaught_exception` - an unhandled error crashed the keeper process.
117
+
*`unhandled_rejection` - an unhandled promise rejection crashed the keeper process.
0 commit comments