Skip to content

Commit

Permalink
Changed the withdrawal amount to 1k
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 committed Jan 6, 2025
1 parent 6b8f33d commit e9d9def
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions brownie/runlogs/2025_01_strategist.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ def main():
txs.append(vault_core.rebase(std))
txs.append(vault_value_checker.takeSnapshot(std))

# Remove 1 USDC from Morpho Gauntlet Strategy
# Remove 1k USDC from Morpho Gauntlet Strategy
txs.append(
vault_admin.withdrawFromStrategy(
MORPHO_GAUNTLET_PRIME_USDC_STRAT,
[usdc],
[10**6],
[1000 * 10**6],
{'from': STRATEGIST}
)
)

# Remove 1 USDT from Morpho Gauntlet Strategy
# Remove 1k USDT from Morpho Gauntlet Strategy
txs.append(
vault_admin.withdrawFromStrategy(
MORPHO_GAUNTLET_PRIME_USDT_STRAT,
[usdt],
[10**6],
[1000 * 10**6],
{'from': STRATEGIST}
)
)
Expand Down

0 comments on commit e9d9def

Please sign in to comment.