mirror of
https://github.com/placeholder-soft/tokenbound.git
synced 2026-01-12 22:44:58 +08:00
19 lines
441 B
Solidity
19 lines
441 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 {
|
|
// DON'T FORGET TO CHANGE DEPLOYER KEY
|
|
uint256 deployerPrivateKey = vm.envUint("TESTNET_ACCOUNT_DEPLOYER");
|
|
vm.startBroadcast(deployerPrivateKey);
|
|
|
|
new AccountGuardian();
|
|
|
|
vm.stopBroadcast();
|
|
}
|
|
}
|