Skip to content

Commit

Permalink
Format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Rainaud committed Dec 6, 2024
1 parent 564c956 commit 090b989
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/DeployNFT.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ contract DeployNFT is Script {
function run() external {
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
address factoryAddress = vm.envAddress("FACTORY_ADDRESS");

vm.startBroadcast(deployerPrivateKey);

WeatherNFTFactory factory = WeatherNFTFactory(factoryAddress);
address nftAddress = factory.deployWeatherNFT("Weather Collection", "WEATHER");
console2.log("WeatherNFT deployed at:", nftAddress);

vm.stopBroadcast();
}
}
}

0 comments on commit 090b989

Please sign in to comment.