brownie run scripts/deploy.py: Run the deploy script to deploy the smart contractbrownie complie: Complie the whole projectbrownie console: Open the brownie console and interact with the smart contract
brownie accounts new <Account_Name>: Link a real world account in brownie for deployment/testing purposebrownie accounts list: List the accounts you can use in borwnie
brownie test: Run all test suitbrownie test -k <Test_Function_Name>: Run a single testbrownie test --pdb: Run test in debug mode, you can experiment with value in the variablebrownie test -s: Disable stdout capture when running tests
brownie networks list: Check all the blockchain networks supported by brownie