Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wwhchung committed May 1, 2024
1 parent 1ca2645 commit 1e02e69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/manifold/script/ManifoldERC1155Single.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ contract DeployManifoldERC1155Single is Script {
// uint256 deployerPrivateKey = pk; // uncomment this when testing on goerli
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY"); // comment this out when testing on goerli
vm.startBroadcast(deployerPrivateKey);
// forge script script/ManifoldERC1155Single.s.sol --optimizer-runs 1000 --rpc-url <YOUR_NODE> --broadcast
// forge verify-contract --compiler-version 0.8.17 --optimizer-runs 1000 --chain sepolia <DEPLOYED_ADDRESS> contracts/single/ManifoldERC1155Single.sol:ManifoldERC1155Single --watch
// forge script script/ManifoldERC1155Single.s.sol --optimizer-runs 1000000 --rpc-url <YOUR_NODE> --broadcast
// forge verify-contract --compiler-version 0.8.17 --optimizer-runs 1000000 --chain sepolia <DEPLOYED_ADDRESS> contracts/single/ManifoldERC1155Single.sol:ManifoldERC1155Single --watch
new ManifoldERC1155Single{salt: 0x4d616e69666f6c644552433131353553696e676c654d616e69666f6c64455243}();
vm.stopBroadcast();
}
Expand Down
4 changes: 2 additions & 2 deletions packages/manifold/script/ManifoldERC721Single.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ contract DeployManifoldERC721Single is Script {
// uint256 deployerPrivateKey = pk; // uncomment this when testing on goerli
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY"); // comment this out when testing on goerli
vm.startBroadcast(deployerPrivateKey);
// forge script script/ManifoldERC721Single.s.sol --optimizer-runs 1000 --rpc-url <YOUR_NODE> --broadcast
// forge verify-contract --compiler-version 0.8.17 --optimizer-runs 1000 --chain sepolia <DEPLOYED_ADDRESS> contracts/single/ManifoldERC721Single.sol:ManifoldERC721Single --watch
// forge script script/ManifoldERC721Single.s.sol --optimizer-runs 1000000 --rpc-url <YOUR_NODE> --broadcast
// forge verify-contract --compiler-version 0.8.17 --optimizer-runs 1000000 --chain sepolia <DEPLOYED_ADDRESS> contracts/single/ManifoldERC721Single.sol:ManifoldERC721Single --watch
new ManifoldERC721Single{salt: 0x4d616e69666f6c6445524337323153696e676c654d616e69666f6c6445524337}();
vm.stopBroadcast();
}
Expand Down

0 comments on commit 1e02e69

Please sign in to comment.