Files
tokenbound/script/DeployGuardian.s.sol
2023-05-17 07:09:46 -07:00

18 lines
387 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "forge-std/Script.sol";
import "../src/AccountGuardian.sol";
contract DeployGuardian is Script {
function run() external {
uint256 deployerPrivateKey = vm.envUint("GUARDIAN_DEPLOYER");
vm.startBroadcast(deployerPrivateKey);
new AccountGuardian();
vm.stopBroadcast();
}
}