๐ŸŸคBrownie Interactions

Installing Brownie

pip3 install eth-brownie

OR

git clone https://github.com/eth-brownie/brownie.git
cd brownie
python3 setup.py install

Setting up project folder

# Create the project folder
mkdir Bank

# Initialize brownie
cd Bank
brownie init

Smart Contract Code to Test

You need to copy the below code into the Contracts directory under the project folder.

Compilation

Deploy Script

You need to copy the below deploy script into the scripts directory under the project folder.

Run the deploy script

Brownie Networks List


REFRENCES

Last updated

Was this helpful?