Skip to content

Commit

Permalink
Merge pull request #375 from VenusProtocol/fix/ven-2786
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover authored Sep 6, 2024
2 parents 09c3311 + 1086a77 commit f9377af
Show file tree
Hide file tree
Showing 6 changed files with 2,043 additions and 0 deletions.
19 changes: 19 additions & 0 deletions multisig/proposals/ethereum/vip-058/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { parseUnits } from "ethers/lib/utils";

import { makeProposal } from "../../../../src/utils";

export const LIQUID_STAKED_ETH_COMPTROLLER = "0xF522cd0360EF8c2FF48B648d53EA1717Ec0F3Ac3";
export const vPTweETH26DEC2024LiquidStakedETH = "0x76697f8eaeA4bE01C678376aAb97498Ee8f80D5C";
export const NEW_SUPPLY_CAP = parseUnits("5000", 18);

export const vip058 = () => {
return makeProposal([
{
target: LIQUID_STAKED_ETH_COMPTROLLER,
signature: "setMarketSupplyCaps(address[],uint256[])",
params: [[vPTweETH26DEC2024LiquidStakedETH], [NEW_SUPPLY_CAP]],
},
]);
};

export default vip058;
Loading

0 comments on commit f9377af

Please sign in to comment.