Gauss Faucet
The G.I.L. Faucet is used to receive test GANG coins to help in testing apps and tokens on the G.I.L. Testnet. While these tokens have no 'real world' value, they enable users to experiment with G.I.L. testnet features before launching their project with Gauss.
- To receive test GANG, please connect to the G.I.L. Network, and then navigate to the G.I.L. Faucet. Simply enter the wallet address where you would like to receive the test GANG and click the REQUEST 1 GANG button:
- If the transaction is succesful, a comfirmation pop-up will come up in the center of the page. You may click the wallet address to follow the transaction on the G.I.L. Explorer.

- 1.Clone repository
git clone https://github.com/Gauss-Gang/GIL-faucet
- 2.Copy
config.json.example
toconfig.json
cp config.json.example config.json
- 3.Update config.json
./config.json
(see config.json with placeholders below) - 4.Update
./public/index.html
: Find<div class="g-recaptcha" data-sitekey="type your reCaptcha plugin secret here"></div>
line and type your reCaptcha plugin secret indata-sitekey
attribute. For more info, see - 5.Install dependencies
npm install
from the project's root - 6.Run faucet with
npm start
. GIL Testnet faucet will be launched athttp://localhost:5000
{
"environment": "switcher between configurations: 'prod' or 'dev'",
"debug": "switch on/off server logs: true or false",
"Captcha": {
"secret": "reCaptcha plugin secret"
},
"Ethereum": {
"etherToTransfer": "The number of milliEther to be sent from the faucet. For example, 500",
"gasLimit": "Transaction gas limit, for example, 21000",
"prod": {
"rpc": "JSON RPC endpoint. For example, https://rpc.giltestnet.com",
"account": "The address from which the funds will be drained",
"privateKey": "Private key of the account"
},
"dev": {
...
}
}
}
Last modified 1mo ago