diff --git a/script/DeployLabHelper.s.sol b/script/DeployLabHelper.s.sol new file mode 100644 index 000000000..d6699f29f --- /dev/null +++ b/script/DeployLabHelper.s.sol @@ -0,0 +1,21 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.24; + +import "forge-std/Script.sol"; +import "../contracts/LabHelper.sol"; + +/// @title Deploy LabHelper +/// @notice Deployment script for LabHelper +contract DeployLabHelper is Script { + function run() public { + uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY"); + vm.startBroadcast(deployerPrivateKey); + + LabHelper instance = new LabHelper("Contract testing"); + + vm.stopBroadcast(); + + // Log deployed address for verification + console.log("LabHelper deployed at:", address(instance)); + } +}