Skip to content

Commit

Permalink
feat: add LST ETH pool deployment on BNB chain
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Sep 11, 2024
1 parent e0fc08e commit 4e94bff
Show file tree
Hide file tree
Showing 21 changed files with 11,260 additions and 0 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
187 changes: 187 additions & 0 deletions deployments/bscmainnet/Comptroller_LiquidStakedETH.json

Large diffs are not rendered by default.

Loading

0 comments on commit 4e94bff

Please sign in to comment.