Skip to content

Commit

Permalink
Add Copium Capital MEV Blocker kickbacks (#112)
Browse files Browse the repository at this point in the history
This PR adds the current address where Copium receives kickbacks, for
monitoring purposes.

---------

Co-authored-by: Felix Henneke <[email protected]>
  • Loading branch information
harisang and fhenneke authored Aug 21, 2024
1 parent 783bf5d commit d11cfe7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
6 changes: 5 additions & 1 deletion src/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@

# relevant addresses
SETTLEMENT_CONTRACT_ADDRESS = "0x9008D19f58AAbD9eD0D60971565AA8510560ab41"
MEV_BLOCKER_KICKBACKS_ADDRESS = "0xCe91228789B57DEb45e66Ca10Ff648385fE7093b"
MEV_BLOCKER_KICKBACKS_ADDRESSES = [
"0xCe91228789B57DEb45e66Ca10Ff648385fE7093b", # CoW DAO
"0x008300082C3000009e63680088f8c7f4D3ff2E87", # Copium Capital
"0xbAda55BaBEE5D2B7F3B551f9da846838760E068C", # Project Blanc
]

# requests
REQUEST_TIMEOUT = 5
Expand Down
20 changes: 13 additions & 7 deletions src/monitoring_tests/mev_blocker_kickbacks_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from src.monitoring_tests.base_test import BaseTest
from src.apis.web3api import Web3API
from src.constants import (
MEV_BLOCKER_KICKBACKS_ADDRESS,
MEV_BLOCKER_KICKBACKS_ADDRESSES,
KICKBACKS_ALERT_THRESHOLD,
)

Expand All @@ -32,19 +32,25 @@ def run(self, tx_hash: str) -> bool:
if block_number is None:
return False

total_eth_kickbacks = self.web3_api.get_eth_transfers_by_block_range(
block_number, block_number, MEV_BLOCKER_KICKBACKS_ADDRESS
)
if total_eth_kickbacks is None:
eth_kickbacks = None
for address in MEV_BLOCKER_KICKBACKS_ADDRESSES:
kickback = self.web3_api.get_eth_transfers_by_block_range(
block_number, block_number, address
)
if kickback is not None:
eth_kickbacks = kickback
break

if eth_kickbacks is None:
return False
log_output = "\t".join(
[
"MEV Blocker kickbacks test:",
f"Tx Hash: {tx_hash}",
f"Kickback: {total_eth_kickbacks:.5f}ETH",
f"Kickback: {eth_kickbacks:.5f}ETH",
]
)
if total_eth_kickbacks >= KICKBACKS_ALERT_THRESHOLD:
if eth_kickbacks >= KICKBACKS_ALERT_THRESHOLD:
self.alert(log_output)
else:
self.logger.info(log_output)
Expand Down

0 comments on commit d11cfe7

Please sign in to comment.