Skip to content

Commit

Permalink
fix: fixed mainnet simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover committed Dec 6, 2024
1 parent 1ca05ea commit ed7c460
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions multisig/simulations/basemainnet/vip-002/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { initMainnetUser } from "src/utils";
import { checkXVSVault } from "src/vip-framework/checks/checkXVSVault";
import { forking, pretendExecutingVip } from "src/vip-framework/index";

import vip001 from "../../../proposals/basemainnet/vip-001";
import vip002, { XVS_STORE } from "../../../proposals/basemainnet/vip-002";
import XVS_ABI from "./abi/xvs.json";
import XVS_STORE_ABI from "./abi/xvsstore.json";
Expand All @@ -27,6 +28,7 @@ forking(23341826, async () => {
xvsVault = await ethers.getContractAt(XVS_VAULT_ABI, basemainnet.XVS_VAULT_PROXY);
xvsStore = await ethers.getContractAt(XVS_STORE_ABI, XVS_STORE);

await pretendExecutingVip(await vip001());
await pretendExecutingVip(await vip002());
});

Expand Down

0 comments on commit ed7c460

Please sign in to comment.