https://github.com/terra-money/faucet
Faucet to get free coins for the Terra testnet
https://github.com/terra-money/faucet
Last synced: 6 months ago
JSON representation
Faucet to get free coins for the Terra testnet
- Host: GitHub
- URL: https://github.com/terra-money/faucet
- Owner: terra-money
- License: mit
- Created: 2019-04-01T08:58:53.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T01:56:23.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T22:52:28.958Z (over 1 year ago)
- Language: Go
- Homepage: https://faucet.terra.money
- Size: 3.04 MB
- Stars: 36
- Watchers: 30
- Forks: 32
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terra Testnet Faucet

Terra Testnet Faucet is a client tool that allows anyone to easily request a nominal amount of Terra or Luna assets for testing purposes. This app needs to be deployed on a Terra testnet full node, because it relies on using the `terracli` command to send tokens.
**WARNING**: Tokens recieved over the faucet are not real assets and have no market value.
This faucet implementation is a fork of the [Cosmos Faucet](https://github.com/cosmos/faucet).
## Get tokens on Terra testnets
Using the testnets is really easy. Simply go to https://faucet.terra.money, chose your network and input your testnet address.
## Usage
Build the docker image.
```bash
docker build -t faucet .
```
Run it with the mnemonic and recaptcha key as env vars.
```bash
docker run -p 3000:3000 \
-e MNEMONIC=$MY_MNEMONIC \
-e RECAPTCHA_KEY=$RECAPTCHA_KEY \
-e PORT=8080 \ # default to 3000
faucet
```