Skip to content

Commit

Permalink
Merge pull request #436 from VenusProtocol/feat/bnb-chain-lst-eth
Browse files Browse the repository at this point in the history
[VEN-2758]: add LST ETH pool deployment on BNB chain
  • Loading branch information
kkirka authored Sep 24, 2024
2 parents cc1d4b7 + fbf2584 commit 07b1d29
Show file tree
Hide file tree
Showing 25 changed files with 20,849 additions and 3,523 deletions.
10 changes: 10 additions & 0 deletions deploy/004-swap-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
autoMine: true,
skipIfAlreadyDeployed: true,
});

const comptrollerLiquidStakedETHAddresses = (await deployments.get("Comptroller_LiquidStakedETH")).address;
await deploy("SwapRouter_LiquidStakedETH", {
contract: "SwapRouter",
from: deployer,
args: [wBNBAddress, pancakeFactoryAddress, comptrollerLiquidStakedETHAddresses, vbnbAddress],
log: true,
autoMine: true,
skipIfAlreadyDeployed: true,
});
};

func.tags = ["SwapRouter", "il"];
Expand Down
Loading

0 comments on commit 07b1d29

Please sign in to comment.