Skip to content

Commit

Permalink
Update valuation hook
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Dec 3, 2024
1 parent fd3a694 commit 49f9b0b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions eth_defi/lagoon/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,17 @@ def transact_through_module(
)
return bound_func

def post_valuation_commitee(
self,
portfolio: VaultPortfolio,
):
"""Update the valuations of this vault.
- Lagoon vault does not currently track individual positions, but takes a "total value" number
- Updating this number also allows deposits and redemptions to proceed
"""
raise NotImplementedError()



0 comments on commit 49f9b0b

Please sign in to comment.