https://github.com/patrickalphac/erc20-brownie
https://github.com/patrickalphac/erc20-brownie
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrickalphac/erc20-brownie
- Owner: PatrickAlphaC
- Created: 2021-05-09T18:53:19.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T13:26:02.000Z (almost 4 years ago)
- Last Synced: 2025-06-24T18:50:40.688Z (about 1 year ago)
- Language: Solidity
- Size: 9.77 KB
- Stars: 49
- Watchers: 4
- Forks: 39
- 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/)
## Installation
1. [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
```