Start with only these six commands for a strong first release:
web3 init
web3 generate token
web3 wallet balance
web3 rpc test
web3 deploy
web3 monitor walletweb3 init
# or non-interactive:
web3 init evm --template evm-foundry --name my-dapp -yweb3 generate token -c evm -v erc20 -n MyToken -o ./contracts -yweb3 wallet balance -n base -a 0xYourAddressweb3 rpc test -n base
# or custom URL:
web3 rpc test -u https://mainnet.base.org# Configure RPC + key in .env, then:
web3 deploy evm -n base -y
# or interactive:
web3 deployUse web3 config init to set defaultChain and RPC URLs so -n can be omitted.
web3 monitor wallet -a 0xYourWallet -n baseWatches ERC20 transfers (e.g. USDC) on the selected network. Press Ctrl+C to stop.
After the MVP path works, explore:
web3 generate nft|staking|vault|…web3 wallet create|tokensweb3 network checkweb3 deploy solana,web3 verifyweb3 monitor contract|tokenweb3 add wagmi,web3 config