The faucet is a web application with the goal of distributing small amounts of Ether in private and test networks.
- Allow to configure the funding account via private key or keystore
- Asynchronous processing Txs to achieve parallel execution of user requests
- Rate limiting by ETH address and IP address as a precaution against spam
- Prevent X-Forwarded-For spoofing by specifying the count of reverse proxies
- Go (1.16 or later)
- Node.js
- Yarn
- Clone the repository and navigate to the app’s directory
git clone https://github.com/chainflag/eth-faucet.git
cd eth-faucet
- Bundle Frontend web with Vite
go generate
- Build Go project
go build -o eth-faucet
Use private key to fund users
./eth-faucet -httpport 8080 -wallet.provider http://localhost:8545 -wallet.privkey privkey
Use keystore to fund users
./eth-faucet -httpport 8080 -wallet.provider http://localhost:8545 -wallet.keyjson keystore -wallet.keypass password.txt
You can configure the funder by using environment variables instead of command-line flags as follows:
export WEB3_PROVIDER=https://some.rpc.endpoint
export PRIVATE_KEY=0x...
or
export WEB3_PROVIDER=https://some.rpc.endpoint
export KEYSTORE=path/to/keystore
echo "your keystore password" > `pwd`/password.txt
Then run the faucet application without the wallet command-line flags:
./eth-faucet -httpport 8080
Optional Flags
The following are the available command-line flags(excluding above wallet flags):
Flag | Description | Default Value |
---|---|---|
-httpport | Listener port to serve HTTP connection | 8080 |
-proxycount | Count of reverse proxies in front of the server | 0 |
-queuecap | Maximum transactions waiting to be sent | 100 |
-faucet.amount | Number of Ethers to transfer per user request | 1 |
-faucet.minutes | Number of minutes to wait between funding rounds | 1440 |
-faucet.name | Network name to display on the frontend | testnet |
docker run -d -p 8080:8080 -e WEB3_PROVIDER=https://some.rpc.endpoint -e PRIVATE_KEY=0x... chainflag/eth-faucet:1.1.0
or
docker run -d -p 8080:8080 -e WEB3_PROVIDER=https://some.rpc.endpoint -e KEYSTORE=path/to/keystore -v `pwd`/keystore:/app/keystore -v `pwd`/password.txt:/app/password.txt chainflag/eth-faucet:1.1.0
docker buildx build -t ghcr.io/astriaorg/astria-faucet:0.0.1-local .
Distributed under the MIT License. See LICENSE for more information.