Posts

Showing posts with the label ethbrownieinstallerror

How to Install and Use Brownie to Deploy A Smart Contract

Image
In this article, we are going to install and use Brownie as a much simpler tool to deploy Solidity smart contracts using python scripts . Throughout this tutorial, we will install Brownie, create a Brownie project folder and deploy the simple storage smart contract. You will see that the whole process is done much easier and faster with Brownie rather than python web3.py scripts. Install and Use Brownie to Deploy A Smart Contract We have learned how to deploy our smart contracts using python web3 tools, but if you look at the scripts you will see that we have taken a very long way to get there. However, there is an easier and more efficient way to deploy our contracts in python and that is Brownie. Brownie is the most common smart contract development platform built based on python. It is used by DeFi giants like Curve DAO, Yearn Finance, and Badger DAO. Brownie relies on web3.py. That’s why we started our first python tutorials with web3. Install Brownie To install ...