Skip to content

Commit 0eb5fca

Browse files
committed
Remove explicit rpc url flag from forge create in readme
1 parent 2a18526 commit 0eb5fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The command above will create a keystore file named `monad-deployer` in the ~/.f
6464
Then, you can deploy your contract to the Monad Testnet using the keystore file you created.
6565

6666
```shell
67-
forge create src/Counter.sol:Counter --rpc-url https://testnet-rpc2.monad.xyz/52227f026fa8fac9e2014c58fbf5643369b3bfc6 --account monad-deployer --broadcast
67+
forge create src/Counter.sol:Counter --account monad-deployer --broadcast
6868
```
6969

7070
## Verify Your Contract on Monad Testnet
@@ -101,7 +101,7 @@ cast wallet address --account monad-deployer
101101
### I have constructor arguments, how do I deploy my contract?
102102

103103
```shell
104-
forge create src/Counter.sol:Counter --rpc-url https://testnet-rpc2.monad.xyz/52227f026fa8fac9e2014c58fbf5643369b3bfc6 --account monad-deployer --broadcast --constructor-args <constructor_arguments>
104+
forge create src/Counter.sol:Counter --account monad-deployer --broadcast --constructor-args <constructor_arguments>
105105
```
106106

107107
### I have constructor arguments, how do I verify my contract?

0 commit comments

Comments
 (0)