Skip to content

Commit

Permalink
fix: restructured opbnbtetsnet and opbnbmainnet folders
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover committed Sep 6, 2024
1 parent 3c61c72 commit 9a610a0
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const NEW_COMPTROLLER_IMPLEMENTATION = "0xD3b2431c186A2bDEB61b86D9B042B75C954004
const ACM = "0xA60Deae5344F1152426cA440fb6552eA0e3005D6";
const MULTISIG = "0xC46796a21a3A9FAB6546aF3434F2eBfFd0604207";

export const vip020 = () => {
export const vip016 = () => {
return makeProposal([
{
target: COMPTROLLER_BEACON,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const NEW_COMPTROLLER_IMPLEMENTATION = "0x0012875a7395a293Adfc9b5cDC2Cfa352C4cDc
const ACM = "0x049f77F7046266d27C3bC96376f53C17Ef09c986";
const OPBNBTESTNET_MULTISIG = "0xb15f6EfEbC276A3b9805df81b5FB3D50C2A62BDf";

const vip019 = () => {
const vip016 = () => {
return makeProposal([
{
target: COMPTROLLER_BEACON,
Expand All @@ -22,4 +22,4 @@ const vip019 = () => {
]);
};

export default vip019;
export default vip016;
2 changes: 1 addition & 1 deletion multisig/simulations/opbnbmainnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ import "./vip-011";
import "./vip-012";
import "./vip-018";
import "./vip-019";
import "./vip-020";
import "./vip-016";
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ethers } from "hardhat";
import { checkIsolatedPoolsComptrollers } from "src/vip-framework/checks/checkIsolatedPoolsComptrollers";

import { forking, pretendExecutingVip } from "../../../../src/vip-framework";
import { vip020 } from "../../../proposals/opbnbmainnet/vip-020";
import { vip016 } from "../../../proposals/opbnbmainnet/vip-016";
import COMPTROLLER_FACET_ABI from "./abis/comptroller.json";

const COMPTROLLER_CORE = "0xD6e3E2A1d8d95caE355D15b3b9f8E5c2511874dd";
Expand Down Expand Up @@ -41,7 +41,7 @@ forking(33546729, async () => {

describe("Post-VIP behavior", async () => {
before(async () => {
await pretendExecutingVip(await vip020());
await pretendExecutingVip(await vip016());
});

it("unlist successful", async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ethers } from "hardhat";
import { checkIsolatedPoolsComptrollers } from "src/vip-framework/checks/checkIsolatedPoolsComptrollers";

import { forking, pretendExecutingVip } from "../../../../src/vip-framework";
import { vip019 } from "../../../proposals/opbnbtestnet/vip-019";
import { vip016 } from "../../../proposals/opbnbtestnet/vip-016";
import COMPTROLLER_FACET_ABI from "./abis/comptroller.json";

const COMPTROLLER_CORE = "0x2FCABb31E57F010D623D8d68e1E18Aed11d5A388";
Expand Down Expand Up @@ -41,7 +41,7 @@ forking(38155115, async () => {

describe("Post-VIP behavior", async () => {
before(async () => {
await pretendExecutingVip(await vip019());
await pretendExecutingVip(await vip016());
});

it("unlist successful", async () => {
Expand Down

0 comments on commit 9a610a0

Please sign in to comment.