diff --git a/script/DeployThunderSwapPoolFactory.sol b/script/DeployThunderSwapPoolFactory.sol new file mode 100644 index 0000000..252e3ec --- /dev/null +++ b/script/DeployThunderSwapPoolFactory.sol @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: MIT +pragma solidity 0.8.20; + +import {Script} from "forge-std/Script.sol"; +import {ThunderSwapPoolFactory} from "@src/ThunderSwapPoolFactory.sol"; + +contract DeployThunderSwapPoolFactory is Script { + function run() external { + vm.startBroadcast(); + ThunderSwapPoolFactory thunderSwapPoolFactory = new ThunderSwapPoolFactory(); + vm.stopBroadcast(); + } + +} \ No newline at end of file