Skip to content

This project is about continuing the journey in the brownie ecosystem. I mainly focused on a new FundMe contract to further improve my Solidity skills. I also worked with Rinkeby Etherscan to verify contracts and did mocks and mainnet-forks.

Notifications You must be signed in to change notification settings

pawlovskiii/brownie_fund_me

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Working with Brownie within FundMe contract

Table of contents

General info

This project is about continuing the journey in the brownie ecosystem. I mainly focused on a new FundMe contract to further improve my Solidity skills. I also worked with Rinkeby Etherscan to verify contracts and did mocks within mainnet-forks.

Learned experience during the project

FundMe contract

This contract was designed to be able to accept some type of payment. Specifically, payable with ETH.

Keywords:

  • payable

    When we define function as payable, we're saying this function can be used to pay for things. In this case, returning all the money on the contract to its creator.

    function withdraw() public payable onlyOwner {
    	// only want the contract admin/owner
    	msg.sender.transfer(address(this).balance);
    	for (uint256 funderIndex = 0; funderIndex < funders.length; funderIndex++) {
    		address funder = funders[funderIndex];
    		addressToAmountFunded[funder] = 0;
    	}
    	funders = new address[](0);
    }
  • require()

    When a function call (i.e. transaction) reaches a require statement, it'll check the truthiness of whatever requires you've asked.

    The line with the require statement says that if they didn't send us enough ether, then we're going to stop executing. We're going to do what's called a revert (simply revert the transaction). We can also add a revert error message.

    This means that the user is going to get their money back as well as any unspent gas.

    mapping(address => uint256) public addressToAmountFunded;
    
    function fund() public payable {
            // 50$
            uint256 minimumUSD = 50 * 10 ** 18;
            require(getConversionRate(msg.value) >= minimumUSD, "You need to spend more ETH!");
    
            addressToAmountFunded[msg.sender] += msg.value;
            // what the ETH -> USD conversion rate
    }
  • constructor

    At the top of our smart contract we're typically gonna see a constructor and this is a function that gets called the instant that our contract gets deployed.

    Whatever we add in here will be immediately executed whenever we deploy this contract.

    We could have a function, but what happens if somebody calls this function right after we deploy it? Well, then we wouldn't be the owner anymore.

    address public owner;
    
    constructor() public {
            owner = msg.sender; // person who deploys the contract
    }
    
    function withdraw() payable public {
            // only want the contract admin/owner
            require(msg.sender == owner);
            msg.sender.transfer(address(this).balance);
    }
  • modifier

    We can use a modifier to write in the additional definition for our function. A modifier is used to change the behavior of a function in a declarative way.

    Add some parameter that allows it to only be called by our admin contract creator (do require statement first). Then whenever underscore is in the modifier, run the rest of the code from certain function (in this case withdraw()).

    modifier is going to be executed before we run withdraw() function.

    modifier onlyOwner {
            require(msg.sender == owner, "You are not the owner of the contract!");
            _;
    }
    
    function withdraw() payable onlyOwner public {
            // only want the contract admin/owner
            msg.sender.transfer(address(this).balance);
    }

msg.sender | msg.value

These are keywords in every contract call and every transaction.

  • msg.sender is the sender of the function call i.e. transaction

  • msg.value is how much they sent

So whenever we call fund(), somebody can send some value, because it's payable and we're going to save everything in this addressToAmountFunded mapping.

mapping(address => uint256) public addressToAmountFunded;
function fund() public payable {
        addressToAmountFunded[msg.sender] += msg.value;
    }

Withdraw money from the contract

Discussed keywords:

  • transfer()
  • this
  • balance

Is a function that we can call on any address to send eth from one address to another. This transfer() function sends some amount of ether to whoever it's being called on.

In this case, we're transferring ether to msg.sender, so all we need to do is define how much we want to send. We're going to send all the money that's been funded.

Whenever you refer to this, you're talking about the contract that you're currently in. When we add address(this), we're saying we want the address of the contract that we're currently in.

Whenever you call an address and then the .balance attribute, you can see the balance in the ether of a contract so with that line, we're saying whoever called the withdraw function because whoever calls the function is going to be msg.sender (will get transfer all of our money from the contract).

function withdraw() payable public {
        msg.sender.transfer(address(this).balance);
}

Withdraw money from the contract as an admin

We want to set it up in a way that only the contract owner (creator) can withdraw funds. With help of the require() keyword, which can stop contracts from executing unless certain parameters are met.

The only thing we're missing is when we withdraw from this contract. We're not updating our balances of people who funded this. So even after we withdraw, this is always going to be the same. So we have to go through all the funders and reset their balances to zero.

mapping(address => uint256) public addressToAmountFunded;
address[] public funders;
address public owner;

modifier onlyOwner {
        require(msg.sender == owner, "You are not the owner of the contract!");
        _;
}

function withdraw() payable onlyOwner public {
        // only want the contract admin/owner
        msg.sender.transfer(address(this).balance);
        for (uint256 funderIndex=0; funderIndex < funders.length; funderIndex++) {
            address funder = funders[funderIndex];
            addressToAmountFunded[funder] = 0;
        }
        funders = new address[](0);
}

interface

These contracts don't start with the contract keyword, but with the interface keyword. They have some similarities, but the main difference is that their functions aren't completed.

They just have the function name and its return type.

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface AggregatorV3Interface {
  function decimals() external view returns (uint8);
  function description() external view returns (string memory);
  function version() external view returns (uint256);
  ...
}

interfaces don't have full function implementations.

interfaces compile down to an ABI - Application Binary Interface

  • The ABI tells Solidity and other programming languages how it can interact with another contract.
  • Anytime you want to interact with an already deployed smart contract you'll need an ABI.

Getting external data with Chainlink

Chainlink uses oracles, which deliver data to the Layer 1 blockchain. They're distributed in a decentralized way, where we get data from different sources.

In the case of the price we measure it like:

  • The sum of the price from different channels divide by the number of

We have to work on TestNet with Chainlink because there are no chainlink nodes on simulated JavaScript VMs (like in Remix IDE).

Decimals in Solidity

  • Decimals don't work in Solidity, so we have to return a value that's multiplied by 10 to some number.

Integer Overflow - SafeMath

Integers can wrap around once you reach their maximum capacity. They reset. This is something we need to watch out for when working with Solidity.

We must especially be careful when doing multiplication on really big numbers (we can accidentally pass this cap).

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.6 <0.9.0;

contract Overflow {

    function overflow() public view returns(uint8) {
        uint8 big = 255 + uint8(50);
        return big; // 49
    }
}

As a version 0.8 of Solidity, it checks for overflow and it defaults to check for overflow to increase the readability of code even if that comes a slight increase of the gas cost.

If you're using anything less than 0.8 you're going to want to use some type of SafeMath, just to check for your overflows. It'll use SafeMathChainlink for all of our uint256. It doesn't allow for that overflow to occur.

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.6 <0.9.0;

import "@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol";
import "@chainlink/contracts/src/v0.6/vendor/SafeMathChainlink.sol";

contract FundMe {
    using SafeMathChainlink for uint256;

    ...
}

Etherscan

Etherscan is a blockchain explorer for the Ethereum network. The website allows you to search through transactions, blocks, wallets, addresses, smart contracts, and other on-chain data.

Verifying contracts on Rinkeby etherscan

Brownie features automatic source code verification for solidity contracts on all networks supported by etherscan. To verify a contract while deploying it, make sure the value of publish_source equals True. Also, follow the later instructions in the setup section.

fund_me = FundMe.deploy(
  price_feed_address, {"from": account}, publish_source=config["networks"][network.show_active()].get("verify")
)

Flattening

Imports with '@' don't work in Etherscan. So we would have to copy and paste the code from these imports to the top of our contract.

import '@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol';
import '@chainlink/contracts/src/v0.6/vendor/SafeMathChainlink.sol';

Replacing imports with the actual code is known as flattening. This is an important concept for verifying our smart contracts on platforms like etherscan. However brownie has a nice way to get around this.

Additional pieces of information about the contract

The very important feature is that you can explore deployed contracts on etherscan in many different ways. Below the Contract Overview section you'll find few sections like Transactions, Contracts or Events. Of course, they're some more, but now we're going to focus on Contract one. As an example with our deployed FundMe contract.

  • This Read Contract section is for all these view functions, the ones that aren't going to be making a state change.

  • Section Write Contract on the other hand is going to be making a state change to the blockchain.

Mocks

Deploying mocks is a common design pattern used across all software engineering industries and what it applies to do is deploying a fake version of something and interacting with it as if it's real.

mainnet-fork via brownie

It's incredibly powerful when we're working with smart contracts on mainnet, that we want to test locally.

A forked blockchain takes a copy of an existing blockchain and brings it into our local computer for us to work with. Within this copy, we have control of this blockchain since it's going to run on our local computer.

All the interactions that we do on this local blockchain are not going to affect the real one, because it's our local chain. We can interact with all these different contracts that are already going to be on-chain.

mainnet-fork is a built-in part of brownie, we can get it the same way as rinkeby

Code testing principles

Oftentimes we don't want to test all of our functionality on rinkeby and live networks, because it's going to take a long time for them to run. So sometimes we only want to run tests on our local chains.

Where should I run my tests?

  1. Brownie Ganache Chain with Mocks: Always
  2. Testnet: Always (but only for integration testing)
  3. Brownie mainnet-fork: Optional
  4. Custom mainnet-fork: Optional

Setup

There are three different ways of working with this project and each way requires a different approach with certain things like changing public/private keys.

  1. Using Ganache
  2. Using ganache-cli
  3. Using TestNet (e.g Rinkeby)

Ganache and ganache-cli are quite similar. The difference is that in ganache-cli you're using a command-line instead of the desktop app.

Additional file for environment variables

You must create a file named .env to put there your environment variables (no matter, which way above you choose).

  1. Also if you prefer working with TestNet I suggest using MetaMask, after creating the wallet, go straight to the account and export the private key. It has to be in hexadecimal version, so we put 0x at the beginning (only when you use TestNet, in ganache is right away, so check it carefully).
export PRIVATE_KEY=0x...
  1. Firstly you need an account on Infura. After that, you create a new project and type its ID.
export WEB3_INFURA_PROJECT_ID=...
  1. Make an account on Etherscan. Next, go to API Keys and add a new one.
export ETHERSCAN_TOKEN=...

With API from etherscan, we were able to successfully deploy our contract with valid verification of our code. It automatically flatten code from chainlink repositories.

Installing dependencies

To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer. In this case, Node.js is only needed for installing a prettier-plugin for Solidity. Furthermore, you'll have to download Python 3.6+ version to install all the required packages via pip. From your command line:

# Clone this repository
$ git clone https://github.com/pawlovskiii/brownie_fund_me

# Go into the repository
$ cd brownie_fund_me

# Install ganache-cli
$ npm install -g ganache-cli

# Install dependencies
$ npm install

Brownie installation might give you a little headache but I will give you a whole recipe to go through this process stressless. I found this thread very helpful.

$ pip install cython

$ pip install eth-brownie

Next, we need to focus on configuration for imports from chainlink Github. Unfortunately, brownie cannot read these imports as easily as remix IDE, so we need to create a separate file with additional settings. We're talking about the code below.

import '@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol';
import '@chainlink/contracts/src/v0.6/vendor/SafeMathChainlink.sol';
  1. Firstly open settings via Ctrl + Shift + P, next type open settings and open it. After that paste the below phrase to the settings.json
"solidity.remappings": [
	"@chainlink/=/Users/mlody/.brownie/packages/smartcontractkit/[email protected]",
	"@openzeppelin/=/Users/mlody/.brownie/packages/OpenZeppelin/[email protected]"
]
  1. Secondly, install the below packages.
$ brownie pm install smartcontractkit/[email protected]
$ brownie pm install OpenZeppelin/[email protected]
  1. Moreover, add a development brownie network. Below I put my HTTP address, under the fork flag. If you prefer to create your app, go to Alchemy and set up an account. Next just create a new app within the Mainnet network and paste below the HTTP address.
$ brownie networks add development mainnet-fork-dev cmd=ganache-cli host=http://127.0.0.1 fork='https://eth-mainnet.alchemyapi.io/v2/fNu4SKn94b29EhGI2nZdvfKzKl1CvqmK' accounts=10 mnemonic=brownie port=8545
  1. In the end, you can check if all the packages are installed properly.
$ brownie pm list

Recommended commands to use for the project

The crucial step in order to do any action with the contracts.

$ brownie compile

Deploying a contract via ganache-cli (default)

$ brownie run .\scripts\deploy.py

Deploying a contract via Rinkeby Testnet

It's the most time expensive, but it allows for verification of the contract by the etherscan.

$ brownie run .\scripts\deploy.py --network rinkeby

Deploying a contract via mainnet-fork (mock)

$ brownie run .\scripts\deploy.py --network mainnet-fork-dev

Brownie testing variations command

# to run the tests within default format
$ brownie test

# different variation network
$ brownie test --network mainnet-fork-dev

$ brownie test -k test_only_owner_can_withdraw --network development

$ brownie test -k test_only_owner_can_withdraw --network rinkeby

About

This project is about continuing the journey in the brownie ecosystem. I mainly focused on a new FundMe contract to further improve my Solidity skills. I also worked with Rinkeby Etherscan to verify contracts and did mocks and mainnet-forks.

Topics

Resources

Stars

Watchers

Forks