Skip to content

Commit

Permalink
Merge pull request #403 from VenusProtocol/feat/VEN-2855
Browse files Browse the repository at this point in the history
[VEN-2855]: add TX to increase caps on zkSync
  • Loading branch information
chechu authored Oct 4, 2024
2 parents cb1f3c8 + 9b92c48 commit 7773fb3
Show file tree
Hide file tree
Showing 4 changed files with 1,048 additions and 0 deletions.
31 changes: 31 additions & 0 deletions multisig/proposals/zksyncmainnet/vip-013/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { parseUnits } from "ethers/lib/utils";
import { makeProposal } from "src/utils";

export const CORE_POOL_COMPTROLLER = "0xddE4D098D9995B659724ae6d5E3FB9681Ac941B1";
export const vZK = "0x697a70779C1A03Ba2BD28b7627a902BFf831b616";
export const vWETH = "0x1Fa916C27c7C2c4602124A14C77Dbb40a5FF1BE8";

export const vZK_SUPPLY_CAP = parseUnits("50000000", 18);
export const vWETH_SUPPLY_CAP = parseUnits("6000", 18);

export const vWETH_BORROW_CAP = parseUnits("3400", 18);

export const vip013 = () => {
return makeProposal([
{
target: CORE_POOL_COMPTROLLER,
signature: "setMarketSupplyCaps(address[],uint256[])",
params: [
[vZK, vWETH],
[vZK_SUPPLY_CAP, vWETH_SUPPLY_CAP],
],
},
{
target: CORE_POOL_COMPTROLLER,
signature: "setMarketBorrowCaps(address[],uint256[])",
params: [[vWETH], [vWETH_BORROW_CAP]],
},
]);
};

export default vip013;
Loading

0 comments on commit 7773fb3

Please sign in to comment.