githubEdit

๐ŸŸค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

circle-info

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

Compilation

Deploy Script

circle-info

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