File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,10 @@ import {Script} from "forge-std/Script.sol";
5
5
import {Zenith} from "../src/Zenith.sol " ;
6
6
7
7
contract DeployZenith is Script {
8
- // deploy: forge script DeployZenith --sig "run()" --rpc-url $RPC --etherscan-api-key $ETHERSCAN_API_KEY --private-key $RAW_PRIVATE_KEY --broadcast --verify
9
-
10
- // deploy NO VERIFY: forge script DeployZenith --sig "run()" --rpc-url $RPC --private-key $RAW_PRIVATE_KEY --broadcast
8
+ // deploy:
9
+ // forge script DeployZenith --sig "run()" --rpc-url $RPC_URL --etherscan-api-key $ETHERSCAN_API_KEY --private-key $PRIVATE_KEY --broadcast --verify
11
10
function run () public {
12
11
vm.broadcast ();
13
- new Zenith {salt: "zenith " }(msg .sender );
12
+ new Zenith {salt: "zenith-3 " }(msg .sender );
14
13
}
15
14
}
You can’t perform that action at this time.
0 commit comments