neo-faucet
A faucet for a neo private test network
Install:
- clone and install neo python
- in a neighboring directory, clone this repo
cd neo-faucet
python3 -m venv venv
source venv/bin/activate
- install neo-python locally to this project:
pip install -e ../neo-python
- install rest of requirements
pip install -r requirements.tx
- get a wallet of your private net with a lot of stuff in it
- export the wallet path and password as ENV vars
export FAUCET_WALLET_PASSWORD=yourpass
export FAUCET_WALLET_PATH=yourwallet.db3
- optionally, configure host and port
export FAUCET_PORT=80
export FAUCET_HOST=127.0.0.1
-
start the faucet
python faucet.py
-
fun