Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Commit add84de

Browse files
fix: dao fees should go to treasury
1 parent d76b286 commit add84de

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

fee_allocator/fee_allocator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def generate_bribe_csv(
304304
noncore_total_to_beets_usd = sum(chain.noncore_to_beets_usd + chain.alliance_noncore_to_beets_usd + chain.partner_noncore_to_beets_usd for chain in self.run_config.all_chains)
305305
output.append(
306306
{
307-
"target": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", # DAO msig
307+
"target": "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89", # DAO msig
308308
"platform": "payment",
309309
"amount": self.run_config.total_to_dao_usd + noncore_total_to_dao_usd,
310310
}

fee_allocator/payload_visualizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def group_transactions(self, transactions: List[Dict]) -> Dict[str, List[Dict]]:
136136
recipient = tx.get("contractInputsValues", {}).get("_to", "").lower()
137137
if recipient == self.book.get("maxiKeepers/veBalFeeInjector", "").lower():
138138
groups["veBAL Transfers"].append(tx)
139-
elif recipient == self.book.get("multisigs/dao", "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f").lower():
139+
elif recipient == self.book.get("multisigs/kpk_managed", "0x0EFcCBb9E2C09Ea29551879bd9Da32362b32fc89").lower():
140140
groups["DAO Transfers"].append(tx)
141141
elif recipient == self.book.get("multisigs/beets_treasury").lower():
142142
groups["Beets Transfers"].append(tx)

0 commit comments

Comments
 (0)