Skip to content

Commit

Permalink
remove multicall3 deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
EREN authored and EREN committed Dec 16, 2024
1 parent 2d609c3 commit e3cbbd6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 239 deletions.
235 changes: 0 additions & 235 deletions contracts/BIFI/infra/BeefyOracle/BeefyMulticall3.sol

This file was deleted.

4 changes: 0 additions & 4 deletions scripts/infra/deployAppMulticall.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,14 @@ async function main() {

const MulticallV2 = await ethers.getContractFactory("BeefyV2AppMulticall");
const Multicall = await ethers.getContractFactory("Multicall");
const Multicall3 = await ethers.getContractFactory("Multicall3");

const multicallV2 = await MulticallV2.deploy();
const multicall = await Multicall.deploy();
const multicall3 = await Multicall3.deploy();

await multicallV2.deployed();
await multicall.deployed();
await multicall3.deployed();

console.log("Multicall deployed:", multicall.address);
console.log("Multicall3 deployed:", multicall3.address);
console.log("App v2 multicall deployed:", multicallV2.address);
}

Expand Down

0 comments on commit e3cbbd6

Please sign in to comment.