Skip to content

Commit

Permalink
disable automatic WETH allocation
Browse files Browse the repository at this point in the history
  • Loading branch information
sparrowDom committed Oct 3, 2024
1 parent 813b9f1 commit 8b5c161
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions contracts/deploy/base/017_upgrade_amo.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ module.exports = deployOnBaseWithGuardian(
signature: "setAutoAllocateThreshold(uint256)",
args: [utils.parseUnits("0", 18)],
},
{
// 3. set that 0.04% (4 basis points) of Vualt TVL triggers the allocation.
// At the time of writing this is ~53 ETH
contract: cOETHbVault,
signature: "setVaultBuffer(uint256)",
args: [utils.parseUnits("4", 14)],
},
// {
// // 3. for now disable allocating weth
// // 3. set that 0.04% (4 basis points) of Vualt TVL triggers the allocation.
// // At the time of writing this is ~53 ETH
// contract: cOETHbVault,
// signature: "setVaultBuffer(uint256)",
// args: [utils.parseUnits("1", 18)],
// args: [utils.parseUnits("4", 14)],
// },
{
// 3. for now disable allocating weth
contract: cOETHbVault,
signature: "setVaultBuffer(uint256)",
args: [utils.parseUnits("1", 18)],
},
{
// 4. set aerodrome AMO as WETH asset default strategy
contract: cOETHbVault,
Expand Down

0 comments on commit 8b5c161

Please sign in to comment.