You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
433 B
Solidity
17 lines
433 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.13;
|
|
|
|
import "forge-std/Script.sol";
|
|
import "../src/NFT.sol";
|
|
|
|
contract MyScript is Script {
|
|
// function run() external {
|
|
// uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
|
|
// vm.startBroadcast(deployerPrivateKey);
|
|
// NFT nft = new NFT();
|
|
// vm.stopBroadcast();
|
|
// }
|
|
function run() public {
|
|
vm.broadcast();
|
|
}
|
|
} |