https://github.com/patrickalphac/erc20-brownie
https://github.com/patrickalphac/erc20-brownie
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrickalphac/erc20-brownie
- Owner: PatrickAlphaC
- Created: 2021-05-09T18:53:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T13:26:02.000Z (over 2 years ago)
- Last Synced: 2023-03-04T01:09:11.132Z (about 2 years ago)
- Language: Solidity
- Size: 9.77 KB
- Stars: 49
- Watchers: 3
- Forks: 38
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ERC20 Python, Brownie, Solidity
## Prerequisites
Please install or have installed the following:
- [nodejs and npm](https://nodejs.org/en/download/)
- [python](https://www.python.org/downloads/)
## Installation1. [Install Brownie](https://eth-brownie.readthedocs.io/en/stable/install.html), if you haven't already. Here is a simple way to install brownie.
```bash
pip install eth-brownie
```
Or, if that doesn't work, via pipx
```bash
pip install --user pipx
pipx ensurepath
# restart your terminal
pipx install eth-brownie
```2. [Install ganache-cli](https://www.npmjs.com/package/ganache-cli)
```bash
npm install -g ganache-cli
```## Quickstart
1. Clone this repo
```bash
git clone https://github.com/PatrickAlphaC/erc20-brownie
```2. Run a script
```
brownie run scripts/1_deploy_token.sol
```