-
Notifications
You must be signed in to change notification settings - Fork 66
/
README.md.gotmpl
46 lines (35 loc) · 1.13 KB
/
README.md.gotmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}
{{ template "chart.description" . }}
{{ template "chart.homepageLine" . }}
{{ template "chart.sourcesSection" . }}
{{ template "chart.requirementsSection" . }}
{{ template "chart.valuesSection" . }}
# Examples
## Configuring the faucet
To create the recaptcha keys you can go to http://www.google.com/recaptcha/admin
```yaml
config:
# -- Web UI configuration
webui:
title: "My Testnet faucet"
buttonText: "Request 5 ETH"
logoUrl: "https://launchpad.ethereum.org/static/media/eth2-leslie-rhino.243747b9.png"
footer: "My custom footer"
recaptchaKey: "<Insert Recaptcha Site Key >"
# -- Server configuration
server:
environment: live
debug: true
Captcha:
secret: "<Insert Recaptcha Secret Key>"
Ethereum:
chainId: 56665
milliEtherToTransfer: 5000
gasLimit: "30000"
live:
rpc: "http://geth-server:8545"
account: "<Insert faucet address : 0x....>"
privateKey: "<Insert private key in hex format>"
```