Skip to content

Commit

Permalink
[#787] Update setup.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Jul 16, 2024
1 parent d81ceba commit 3dde84c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/utils/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ export const migrationContractFrom130To141 = async () => {
return await hre.ethers.getContractFactory("Safe130To141Migration");
};

export const safeMigrationContract = async () => {
return await hre.ethers.getContractFactory("SafeMigration");
};

export const getMock = async () => {
const Mock = await hre.ethers.getContractFactory("MockContract");
return await Mock.deploy();
Expand Down

0 comments on commit 3dde84c

Please sign in to comment.