deployment

This commit is contained in:
JulesCrown 2024-06-25 10:33:33 +02:00
parent c3afb0172f
commit ed23b04bcd
5 changed files with 12 additions and 5 deletions

View file

@ -70,7 +70,7 @@ contract SepoliaScript is Script {
BaseLineLP liquidityManager = new BaseLineLP(V3_FACTORY, WETH, address(harb));
harb.setLiquidityManager(address(liquidityManager));
//TODO: send some eth and call slide
(bool sent, ) = address(liquidityManager).call{value: 0.2 ether}("");
(bool sent, ) = address(liquidityManager).call{value: 0.1 ether}("");
require(sent, "Failed to send Ether");
vm.stopBroadcast();
}