Brownie basics
To have brownie deploy the folder structure within a folder:
brownie init
Deploy.py
This file will handle deployment logic. yyIn your deploy.py file, in scripts folder:
Accounts management
Brownie has a package called accounts for handling accounts. In terminal:
Terminal will request for your private key:
Add 0x to the front of the private key before pasting it in. Brownie will password encrypt the private key.
accounts list
> brownie accounts list
this will list all the accounts user has added.
delete accounts
> brownie accounts delete <acc_name>
Last updated