Skip to content

Commit

Permalink
chore: Add a minimal deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
mgnfy-view committed Mar 22, 2024
1 parent b953871 commit 997ceda
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions script/DeployThunderSwapPoolFactory.sol
Original file line number Diff line number Diff line change
@@ -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();
}

}

0 comments on commit 997ceda

Please sign in to comment.