| 123456789101112131415161718192021222324 |
- // SPDX-License-Identifier: UNLICENSED
- pragma solidity ^0.8.4;
- import {BridgeShutdown} from "../contracts/bridge/BridgeShutdown.sol";
- import "forge-std/Script.sol";
- contract DeployTokenBridgeShutdown is Script {
- // DryRun - Deploy the system
- function dryRun() public {
- _deploy();
- }
- // Deploy the system
- function run() public returns (address deployedAddress) {
- vm.startBroadcast();
- deployedAddress = _deploy();
- vm.stopBroadcast();
- }
- function _deploy() internal returns (address deployedAddress) {
- BridgeShutdown shutdown = new BridgeShutdown();
- return address(shutdown);
- }
- }
|