Skip to content

Commit

Permalink
add base script for nft
Browse files Browse the repository at this point in the history
  • Loading branch information
thurendous committed Sep 19, 2024
1 parent 09218a4 commit c14f1c2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions script/DeployNft.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// DeployNft.s.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;

import {console, Script} from "forge-std/Script.sol";
import {AmbassadorNft} from "src/AmbassadorNft.sol";

contract DeployNft is Script {
function setUp() public {
vm.startBroadcast();
}
}

0 comments on commit c14f1c2

Please sign in to comment.