diff --git a/README.md b/README.md index a21a76e..7aa150b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## Monad-flavored Foundry > [!NOTE] -> In this Foundry template, the default chain is `monadTestnet`, If you wish to change it, change the network in `foundry.toml` +> In this Foundry template, the default chain is `monadTestnet`. If you wish to change it, change the network in `foundry.toml`

Monad Documentation | Foundry Documentation | @@ -16,7 +16,7 @@ Foundry consists of: - **Forge**: Ethereum testing framework (like Truffle, Hardhat, and DappTools). - **Cast**: Swiss army knife for interacting with EVM smart contracts, sending transactions, and getting chain data. - **Anvil**: Local Ethereum node, akin to Ganache, Hardhat Network. -- **Chisel**: Fast, utilitarian, and verbose solidity REPL. +- **Chisel**: Fast, utilitarian, and verbose Solidity REPL. ## Documentation @@ -115,13 +115,23 @@ cast wallet address --account monad-deployer ### I have constructor arguments, how do I deploy my contract? ```shell -forge create src/Counter.sol:Counter --account monad-deployer --broadcast --constructor-args +forge create \ + src/Counter.sol:Counter \ + --account monad-deployer \ + --broadcast \ + --constructor-args ``` ### I have constructor arguments, how do I verify my contract? ```shell -forge verify-contract --chain-id 10143 --verifier sourcify --verifier-url https://sourcify-api-monad.blockvision.org --constructor-args +forge verify-contract \ + \ + src/Counter.sol:Counter \ + --chain 10143 \ + --verifier sourcify \ + --verifier-url https://sourcify-api-monad.blockvision.org \ + --constructor-args ``` Please refer to the [Foundry Book](https://book.getfoundry.sh/) for more information. \ No newline at end of file