Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Add settlement contract buffers value monitoring test (#75)" #85

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 0 additions & 45 deletions src/apis/coingeckoapi.py

This file was deleted.

49 changes: 0 additions & 49 deletions src/apis/tokenlistapi.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
# cap parameter, per CIP-20, measured in ETH
CAP_PARAMETER = 0.01

# number of tx hashes before a new buffers check is ran
BUFFER_INTERVAL = 150

# threshold of value of buffers above which an alert is generated
BUFFERS_VALUE_USD_THRESHOLD = 200000

# threshold parameter to generate an alert when receiving kickbacks
KICKBACKS_ALERT_THRESHOLD = 0.03

Expand Down
4 changes: 0 additions & 4 deletions src/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
from src.monitoring_tests.mev_blocker_kickbacks_test import (
MEVBlockerRefundsMonitoringTest,
)
from src.monitoring_tests.buffers_monitoring_test import (
BuffersMonitoringTest,
)
from src.constants import SLEEP_TIME_IN_SEC


Expand All @@ -47,7 +44,6 @@ def main() -> None:
PartialFillCostCoverageTest(),
CostCoveragePerSolverTest(),
MEVBlockerRefundsMonitoringTest(),
BuffersMonitoringTest(),
]

start_block: Optional[int] = None
Expand Down
99 changes: 0 additions & 99 deletions src/monitoring_tests/buffers_monitoring_test.py

This file was deleted.

Loading