-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4c252a
commit 4e6d4b9
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from great_ape_safe import GreatApeSafe | ||
from helpers.addresses import r | ||
|
||
|
||
def main(): | ||
safe = GreatApeSafe(r.badger_wallets.treasury_voter_multisig) | ||
trops = GreatApeSafe(r.badger_wallets.treasury_ops_multisig) | ||
|
||
# contracts | ||
escrow = safe.contract(r.liquis.liq_vested_escrow) | ||
|
||
# tokens | ||
liq = safe.contract(r.treasury_tokens.LIQ) | ||
|
||
trops.take_snapshot([liq]) | ||
|
||
escrow.claim(False) | ||
|
||
liq_balance = liq.balanceOf(safe.address) | ||
liq.transfer(r.badger_wallets.treasury_ops_multisig, liq_balance) | ||
|
||
trops.print_snapshot() | ||
safe.post_safe_tx() |