brownie部署与测试智能合约

2023-10-30 11:58

本文主要是介绍brownie部署与测试智能合约,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

    brownie是一种Python语言的开发与测试框架,它可以部署.sol、.py格式的智能合约。

  • 完全支持Solidity和Vyper
  • 通过pytest进行智能合约测试,包括基于跟踪的覆盖率评估
  • 通过hypothesis进行基于属性和状态的测试
  • 强大的调试工具,包括python风格的跟踪和自定义错误字符串
  • 内置控制台,用于快速项目互动
  • 支持ethPM软件包

    下面,介绍brownie的安装、部署智能合约、测试智能合约。

1、准备环境

1.1 安装nodejs、python3

    安装nodejs,请参考这篇文章的第1节
    安装Python3,请参考这篇文章的第9节

1.2 安装brownie

    这里选择brownie==1.12.3版本,进行安装

pip3 install eth-brownie==1.12.3

1.3 安装ganache-cli

npm install -g ganache-cli

2、创建工程browthree

2.1 创建文件与文件夹

    a) 打开控制台终端,依次输入如下命令:

mkdir browthree
cd browthree
brownie init
touch brownie-config.yaml
touch .env

    b) 填写brownie的配置文件:brownie-config.yaml
    // brownthree/brownie-config.yaml

dependencies:- OpenZeppelin/openzeppelin-contracts@3.4.0
compiler:solc:remappings:- '@openzeppelin=OpenZeppelin/openzeppelin-contracts@3.4.0'
dotenv: .env
networks:networks:# any settings given here will replace the defaultsdevelopment:host: http://127.0.0.1gas_price: 0persist: falsereverting_tx_gas_limit: 6721975test_rpc:cmd: ganache-cliport: 8545gas_limit: 6721975accounts: 10# set your Infura API token to the environment variable ${WEB3_INFURA_PROJECT_ID}mainnet:host: https://mainnet.infura.io/v3/${WEB3_INFURA_PROJECT_ID}goerli:host: https://goerli.infura.io/v3/${WEB3_INFURA_PROJECT_ID}kovan:host: https://kovan.infura.io/v3/${WEB3_INFURA_PROJECT_ID}rinkeby:host: https://rinkeby.infura.io/v3/${WEB3_INFURA_PROJECT_ID}ropsten:host: https://ropsten.infura.io/v3/${WEB3_INFURA_PROJECT_ID}classic:host: https://www.ethercluster.com/etckotti:host: https://www.ethercluster.com/kotti
wallets:from_key: ${PRIVATE_KEY}

    c) 填写环境变量文件: .env
    // brownthree/.env

export WEB3_INFURA_PROJECT_ID='59...b6'
export PRIVATE_KEY='85...84'

    d) browthree工程的目录结构

图(1) browthree工程的目录结构

2.2 编写智能合约

    在browthree/contracts目录,创建一个智能合约文件: HelloERC20.sol

cd browthree/contracts
touch HelloERC20.sol

    // HelloERC20.sol

pragma solidity >=0.4.22 <0.6.0;interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; 
}contract HelloERC20 {// Public variables of the tokenstring public name;string public symbol;uint8 public decimals = 18;// 18 decimals is the strongly suggested default, avoid changing ituint256 public totalSupply;// This creates an array with all balancesmapping (address => uint256) public balanceOf;mapping (address => mapping (address => uint256)) public allowance;// This generates a public event on the blockchain that will notify clientsevent Transfer(address indexed from, address indexed to, uint256 value);// This generates a public event on the blockchain that will notify clientsevent Approval(address indexed _owner, address indexed _spender, uint256 _value);// This notifies clients about the amount burntevent Burn(address indexed from, uint256 value);constructor(uint256 initialSupply,string memory tokenName,string memory tokenSymbol) public {totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amountbalanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokensname = tokenName;                                   // Set the name for display purposessymbol = tokenSymbol;                               // Set the symbol for display purposes}/*** Internal transfer, only can be called by this contract*/function _transfer(address _from, address _to, uint _value) internal {// Prevent transfer to 0x0 address. Use burn() insteadrequire(_to != address(0x0));// Check if the sender has enoughrequire(balanceOf[_from] >= _value);// Check for overflowsrequire(balanceOf[_to] + _value >= balanceOf[_to]);// Save this for an assertion in the futureuint previousBalances = balanceOf[_from] + balanceOf[_to];// Subtract from the senderbalanceOf[_from] -= _value;// Add the same to the recipientbalanceOf[_to] += _value;emit Transfer(_from, _to, _value);// Asserts are used to use static analysis to find bugs in your code. They should never failassert(balanceOf[_from] + balanceOf[_to] == previousBalances);}function transfer(address _to, uint256 _value) public returns (bool success) {_transfer(msg.sender, _to, _value);return true;}function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {require(_value <= allowance[_from][msg.sender]);     // Check allowanceallowance[_from][msg.sender] -= _value;_transfer(_from, _to, _value);return true;}function approve(address _spender, uint256 _value) publicreturns (bool success) {allowance[msg.sender][_spender] = _value;emit Approval(msg.sender, _spender, _value);return true;}function approveAndCall(address _spender, uint256 _value, bytes memory _extraData)publicreturns (bool success) {tokenRecipient spender = tokenRecipient(_spender);if (approve(_spender, _value)) {spender.receiveApproval(msg.sender, _value, address(this), _extraData);return true;}}function burn(uint256 _value) public returns (bool success) {require(balanceOf[msg.sender] >= _value);   // Check if the sender has enoughbalanceOf[msg.sender] -= _value;            // Subtract from the sendertotalSupply -= _value;                      // Updates totalSupplyemit Burn(msg.sender, _value);return true;}function burnFrom(address _from, uint256 _value) public returns (bool success) {require(balanceOf[_from] >= _value);                // Check if the targeted balance is enoughrequire(_value <= allowance[_from][msg.sender]);    // Check allowancebalanceOf[_from] -= _value;                         // Subtract from the targeted balanceallowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowancetotalSupply -= _value;                              // Update totalSupplyemit Burn(_from, _value);return true;}
}

2.3 编写测试脚本

    在browthree/tests目录,创建一个测试脚本文件: 1_func_test.py

cd browthree/tests
touch 1_func_test.py

    // 1_func_test.py

import pytest
from brownie import HelloERC20, accounts@pytest.fixture
def token():return accounts[0].deploy(HelloERC20, 1000,"AppleToken", "APT")def test_transfer(token):token.transfer(accounts[1], "100 ether", {'from': accounts[0]})assert token.balanceOf(accounts[0]) == "900 ether"def test_name(token):assert token.name() == "AppleToken"def test_symbol(token):assert token.symbol() == "APT"def test_totalSupply(token):assert token.totalSupply() == "1000 ether"def test_approve(token):token.approve(accounts[1],"100 ether",{'from':accounts[0]})assert token.allowance(accounts[0],accounts[1]) == "100 ether"def test_burn(token):token.burn("100 ether",{'from':accounts[0]})print("addr=",token.address)assert token.totalSupply() == "900 ether"def test_transferFrom(token):token.approve(accounts[1],"100 ether",{'from':accounts[0]})token.transferFrom(accounts[0],accounts[1],"100 ether",{'from':accounts[1]})assert token.balanceOf(accounts[1]) == "100 ether"def test_burnFrom(token):token.approve(accounts[1],"100 ether",{'from':accounts[0]})token.burnFrom(accounts[0],"100 ether",{'from':accounts[1]})assert token.totalSupply() == "900 ether"

2.4 编写部署脚本

    在browthree/tests目录,创建一个部署脚本文件: 1_deploy_token.py

cd browthree/scripts
touch 1_deploy_token.py

    // 1_deploy_token.py

import os
from brownie import accounts,HelloERC20initial_supply = 1000000  # 1000000
token_name =   "AppleToken"
token_symbol = "APT"def get_account():accAddr = accounts.add(os.getenv('PRIVATE_KEY'))return accAddrdef main():account = get_account()print('account=',account)erc20 = HelloERC20.deploy(initial_supply, token_name, token_symbol, {"from": account})

2.5 进行部署与测试

    a) 部署合约到Rinkeby

## 使能.env环境
source .env## 部署到Rinkeby
brownie run scripts/1_deploy_token --network rinkeby

    效果如下:

图(2) 部署合约到Rinkeby

    得到HelloERC20.sol的合约地址为: 0x7000A28DCF57883286bd568CCa4733baF91e62ef

    b) 测试HelloERC20合约

  • 先启动ganache-cli

    在黑框框终端里,输入如下命令即可

ganache-cli
  • 再运行测试脚本
## 方法一:禁用print
brownie test tests/1_func_test.py## 方法二:启用print
brownie test tests/1_func_test.py -s

    效果如下:

图(3) 在ganache-cli里,测试合约

参考文献

brownie 单元测试

这篇关于brownie部署与测试智能合约的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/307765

相关文章

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

SpringBoot配置Ollama实现本地部署DeepSeek

《SpringBoot配置Ollama实现本地部署DeepSeek》本文主要介绍了在本地环境中使用Ollama配置DeepSeek模型,并在IntelliJIDEA中创建一个Sprin... 目录前言详细步骤一、本地配置DeepSeek二、SpringBoot项目调用本地DeepSeek前言随着人工智能技

通过Docker Compose部署MySQL的详细教程

《通过DockerCompose部署MySQL的详细教程》DockerCompose作为Docker官方的容器编排工具,为MySQL数据库部署带来了显著优势,下面小编就来为大家详细介绍一... 目录一、docker Compose 部署 mysql 的优势二、环境准备与基础配置2.1 项目目录结构2.2 基

CentOS 7部署主域名服务器 DNS的方法

《CentOS7部署主域名服务器DNS的方法》文章详细介绍了在CentOS7上部署主域名服务器DNS的步骤,包括安装BIND服务、配置DNS服务、添加域名区域、创建区域文件、配置反向解析、检查配置... 目录1. 安装 BIND 服务和工具2.  配置 BIND 服务3 . 添加你的域名区域配置4.创建区域

OpenManus本地部署实战亲测有效完全免费(最新推荐)

《OpenManus本地部署实战亲测有效完全免费(最新推荐)》文章介绍了如何在本地部署OpenManus大语言模型,包括环境搭建、LLM编程接口配置和测试步骤,本文给大家讲解的非常详细,感兴趣的朋友一... 目录1.概况2.环境搭建2.1安装miniconda或者anaconda2.2 LLM编程接口配置2

大数据spark3.5安装部署之local模式详解

《大数据spark3.5安装部署之local模式详解》本文介绍了如何在本地模式下安装和配置Spark,并展示了如何使用SparkShell进行基本的数据处理操作,同时,还介绍了如何通过Spark-su... 目录下载上传解压配置jdk解压配置环境变量启动查看交互操作命令行提交应用spark,一个数据处理框架

使用Python实现表格字段智能去重

《使用Python实现表格字段智能去重》在数据分析和处理过程中,数据清洗是一个至关重要的步骤,其中字段去重是一个常见且关键的任务,下面我们看看如何使用Python进行表格字段智能去重吧... 目录一、引言二、数据重复问题的常见场景与影响三、python在数据清洗中的优势四、基于Python的表格字段智能去重

Spring AI集成DeepSeek三步搞定Java智能应用的详细过程

《SpringAI集成DeepSeek三步搞定Java智能应用的详细过程》本文介绍了如何使用SpringAI集成DeepSeek,一个国内顶尖的多模态大模型,SpringAI提供了一套统一的接口,简... 目录DeepSeek 介绍Spring AI 是什么?Spring AI 的主要功能包括1、环境准备2

Spring AI与DeepSeek实战一之快速打造智能对话应用

《SpringAI与DeepSeek实战一之快速打造智能对话应用》本文详细介绍了如何通过SpringAI框架集成DeepSeek大模型,实现普通对话和流式对话功能,步骤包括申请API-KEY、项目搭... 目录一、概述二、申请DeepSeek的API-KEY三、项目搭建3.1. 开发环境要求3.2. mav

如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件

《如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件》本文介绍了如何使用Docker部署FTP服务器和Nginx,并通过HTTP访问FTP中的文件,通过将FTP数据目录挂载到N... 目录docker部署FTP和Nginx并通过HTTP访问FTP里的文件1. 部署 FTP 服务器 (