Files
contract/script/Deploy.sol
2023-09-01 18:58:55 -04:00

15 lines
421 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;
import "forge-std/Script.sol";
import "../src/VaultDeployer.sol";
contract Deploy is Script {
function run() external {
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
vm.startBroadcast(deployerPrivateKey);
VaultDeployer deployer = new VaultDeployer{salt:keccak256(abi.encode(1))}();
vm.stopBroadcast();
}
}