Go to file
Ben Wilson c8cb78e760 rename to eccfaucet 2020-07-22 09:55:12 -04:00
templates rename to eccfaucet 2020-07-22 09:55:12 -04:00
.envrc Initial commit 2020-07-14 21:29:57 -04:00
.envtemplate rename to eccfaucet 2020-07-22 09:55:12 -04:00
.gitignore Initial commit 2020-07-14 21:29:57 -04:00
Dockerfile Initial commit 2020-07-14 21:29:57 -04:00
Makefile Initial commit 2020-07-14 21:29:57 -04:00
README.md Initial commit 2020-07-14 21:29:57 -04:00
docker-compose.yml rename to eccfaucet 2020-07-22 09:55:12 -04:00
go.mod Added timeout on requests 2020-07-20 21:19:36 -04:00
go.sum Added timeout on requests 2020-07-20 21:19:36 -04:00
main.go rename to eccfaucet 2020-07-22 09:55:12 -04:00
types.go Initial commit 2020-07-14 21:29:57 -04:00
version.go Initial commit 2020-07-14 21:29:57 -04:00
zSendMany.go Add some request checking 2020-07-20 20:01:22 -04:00

README.md

zfaucet

ZFaucet is software to request zcash testnet funds.

Requirements

A fully synced zcashd node is required with RPC access.

Configuration

All configuration is done through environmental variables.

Copy the template file and edit the values.

cp .envtemplate .env

Build a binary

make build

Build Docker iamge

docker build .

Run binary

From the direcotry with the .env file. ./zfaucet

Run a Docker image

From the direcotry with the .env file.

docker build . -t zfaucet \
&&  docker run --env-file ./.env --rm -ti -p 3000:3000 zfaucet