Skip to content

Commit

Permalink
feat: add vip for Chaos labs recommendations for staked eth pool
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Sep 26, 2024
1 parent 3f339b4 commit 4d11031
Show file tree
Hide file tree
Showing 5 changed files with 3,116 additions and 0 deletions.
25 changes: 25 additions & 0 deletions multisig/proposals/ethereum/vip-062/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { makeProposal } from "../../../../src/utils";
import {
CURRENT_WETH_LT,
INTEREST_RATE_MODEL_base0bps_slope300bps_jump8000bps_kink9000bps,
LIQUID_STAKED_ETH_COMPTROLLER,
NINETY_PERCENT_CF,
vwETH,
} from "../../../../vips/vip-374/bscmainnet";

export const vip062 = () => {
return makeProposal([
{
target: LIQUID_STAKED_ETH_COMPTROLLER,
signature: "setCollateralFactor(address,uint256,uint256)",
params: [vwETH, NINETY_PERCENT_CF, CURRENT_WETH_LT],
},
{
target: vwETH,
signature: "setInterestRateModel(address)",
params: [INTEREST_RATE_MODEL_base0bps_slope300bps_jump8000bps_kink9000bps],
},
]);
};

export default vip062;
Loading

0 comments on commit 4d11031

Please sign in to comment.