From 0d7e3ad3fae48c13dfa03d6f3b1d474406ef10c0 Mon Sep 17 00:00:00 2001 From: Felix Henneke Date: Thu, 25 Apr 2024 10:09:51 -0400 Subject: [PATCH] Increase MEV Blocker kickback threshold (#106) This PR changes the threshold for alerst on slack to `0.5 ETH` (up from `0.1 ETH`). Alerts for the old threshold are quite frequent and are not immediately actionable. They can now be recovered in aggregate from [this dune query](https://dune.com/queries/3668122). --- src/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.py b/src/constants.py index 1dc7363..9da41d3 100644 --- a/src/constants.py +++ b/src/constants.py @@ -29,7 +29,7 @@ BUFFERS_VALUE_USD_THRESHOLD = 200000 # threshold parameter to generate an alert when receiving kickbacks -KICKBACKS_ALERT_THRESHOLD = 0.1 +KICKBACKS_ALERT_THRESHOLD = 0.5 # threshold to generate an alert for violating UDP UDP_SENSITIVITY_THRESHOLD = 0.005