Example Deployment Script
Create script/Deploy.s.sol
:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "forge-std/Script.sol";
import "../src/Counter.sol";
contract DeployScript is Script {
function run() external {
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
vm.startBroadcast(deployerPrivateKey);
Counter counter = new Counter();
console.log("Counter deployed at:", address(counter));
vm.stopBroadcast();
}
}
Last updated