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

Commit c4f6206

Browse files
Merge pull request #237 from BalancerMaxis/fix/dao-fees-treasury
fix: dao fees should go to treasury
2 parents 4d1291b + 9557e31 commit c4f6206

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

fee_allocator/fee_allocator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def generate_bribe_csv(
305305
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)
306306
output.append(
307307
{
308-
"target": "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", # DAO msig
308+
"target": "0x16b0056636Fcc85f92C49cD49a24bc519d4A1941", # Balancer Onchain Ltd msig
309309
"platform": "payment",
310310
"amount": self.run_config.total_to_dao_usd + noncore_total_to_dao_usd,
311311
}
@@ -750,4 +750,4 @@ def generate_report(self, payload_path: Path, fee_files: List[Path] = None) -> P
750750
if not gauge_issues_path.exists():
751751
gauge_issues_path = None
752752

753-
return save_markdown_report(payload_path, fee_files, output_path=report_path, gauge_issues_path=gauge_issues_path)
753+
return save_markdown_report(payload_path, fee_files, output_path=report_path, gauge_issues_path=gauge_issues_path)

fee_allocator/payload_visualizer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def group_transactions(self, transactions: List[Dict]) -> Dict[str, List[Dict]]:
147147
recipient = tx.get("contractInputsValues", {}).get("_to", "").lower()
148148
if recipient == self.book.get("maxiKeepers/veBalFeeInjector", "").lower():
149149
groups["veBAL Transfers"].append(tx)
150-
elif recipient == self.book.get("multisigs/dao", "0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f").lower():
150+
elif recipient == self.book.get("multisigs/balancer_onchain_ltd", "0x16b0056636Fcc85f92C49cD49a24bc519d4A1941").lower():
151151
groups["DAO Transfers"].append(tx)
152152
elif recipient == self.book.get("multisigs/beets_treasury").lower():
153153
groups["Beets Transfers"].append(tx)
@@ -882,4 +882,4 @@ def save_combined_report(payload_path: Path, v2_fees_file: Path = None, v3_fees_
882882
else:
883883
print(markdown_content)
884884
else:
885-
visualize_combined_payload(args.payload_file, args.v2_fees, args.v3_fees, args.gauge_issues)
885+
visualize_combined_payload(args.payload_file, args.v2_fees, args.v3_fees, args.gauge_issues)

0 commit comments

Comments
 (0)