Posts

Showing posts with the label crowdfundingonetherscan

Working with Crowdfunding on Etherscan Using Brownie and Solidity

Image
In this tutorial, we are going to implement the crowdfunding project folder and compile it. Then we are going to interact with the compiled and deployed crowdfunding contract on the Etherscan. There are a number of scripts that we are going to work on. They are helpful_scripts.py, deploy.py, brownie_config.yaml, Fundme.sol, and .env file. Crowdfunding on Etherscan: the Essentials If you have read the solidity smart contracts tutorial , you can remember how we wrote the FundMe.sol contract and how we deployed it using Remix IDE. As you know, Remix IDE is just for learning solidity and beginners and we need some other deployment tools such as Node.js or Python web3, or brownie to be able to run it in a real-world application. To set up the Fundme.sol contract inside Brownie, we take the following steps: 1. Create a directory folder for the project: Coppied to clipboard. mkdir brownie_fund_me 2. In the terminal: Coppied to clipboard. ...