Helper objects for generating ERC20s while testing a Brownie project.
Project description
brownie-token-tester
Helper objects for generating ERC20s while testing a Brownie project.
Dependencies
- python3 version 3.6 or greater, python3-dev
- brownie version 1.11.6 or greater
- ganache-cli version 6.11.0 or greater
Installation
via pipx
If you have installed Brownie using pipx
, you need to add brownie-token-tester
into the same virtual environment:
pipx inject eth-brownie brownie-token-tester
via pip
You can install the latest release via pip
:
pip install brownie-token-tester
via setuptools
You can clone the repository and use setuptools
for the most up-to-date version:
git clone https://github.com/iamdefinitelyahuman/brownie-token-tester.git
cd brownie-token-tester
python3 setup.py install
Quick Usage
Import the library from within a Brownie test, script or console:
from brownie_tokens import ERC20, MintableForkToken
You can then make use of the following functionality:
ERC20
Deploys a generic ERC20 contract for testing purposes.
def ERC20(
name: str = "Test Token",
symbol: str = "TST",
decimals: int = 18,
success: Union[bool, None] = True,
fail: Union[bool, str, None] = "revert",
) -> Contract:
- The
success
kwarg is used to set the token's return value upon a successful call toapprove
,transfer
ortransferFrom
. Valid values areTrue
,False
, andNone
. - The
fail
kwarg sets the token's behaviour upon failed calls to the above methods. Use"revert"
if the transaction should revert, orTrue
,False
, andNone
to return a value without reverting.
The resulting deployment adheres to the ERC20 Token Standard and additionally implements one non-standard method:
def _mint_for_testing(target: address, amount: uint256): nonpayable
This method increases the balance of target
by amount
. It may be called by any account.
MintableForkToken
MintableForkToken
is used to standardize the process of minting tokens when working in a forked mainnet environment. The MintableForkToken
class inherits from and may be used interchangeably with the Contract
class. It exposes one additional method, _mint_for_testing
, with the same API as given above.
For tokens where custom logic is implemented, this is an actual minting event. For most tokens, the "minting" process involves a query to the Ethplorer API to get a list of top token holders, and then transferring their balances to target
. If you want to exclude some holders from this process use skip_holders(*addresses)
. If you have too many requests at a time set $ETHPLORER_API_KEY
(see ethplorer.io) as environment variable.
Tokens for which custom logic is currently implemented:
- Aave tokens
- DAI
- EURS
- LinkUSD
- pBTC
- Synthetix synths
- renBTC
- renZEC
- rETH
- RSV
- USDC
- USDN
- USDT
- tBTC
- wBTC
- wZEC
Development
This project is still in early development and should be considered an alpha. Comments, questions, criticisms and pull requests are welcomed.
License
This project is licensed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file brownie-token-tester-0.3.0.tar.gz
.
File metadata
- Download URL: brownie-token-tester-0.3.0.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3e357895495c19b8fc2aaffe4ba02781cf5413da8fd429ce3543af0ba15accd |
|
MD5 | b7aee938825c98a62fdd51eabae31757 |
|
BLAKE2b-256 | 14c2ac174c9e5d44d4bc5b00498798cf116bd693151e2ebf605d33bb876cd3c1 |
File details
Details for the file brownie_token_tester-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: brownie_token_tester-0.3.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e383d21b4947359f3d046b8d5e53ca712ff37264145826466c1165ca03a7799b |
|
MD5 | 7fe5ccdd57c24beaaf522c57dbb3ce25 |
|
BLAKE2b-256 | 5f7224144d1e73ac2b508670bb39d3c31fdb7a08dae18ef9a246564bccb34a57 |