forked from ethpandaops/ethereum-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md.gotmpl
46 lines (32 loc) · 1020 Bytes
/
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
## Private blockchain with pre-filled accounts generated from an HD wallet using a mnemonic phrase
```yaml
secretEnv:
# Don't re-use this mnemonic for production environments
MNEMONIC: census exchange hotel volcano sea hunt mother enlist twelve lonely cause female
extraArgs:
- --mnemonic="$(MNEMONIC)"
- --accounts=10
- --defaultBalanceEther=1000
- --networkId=5123
- --chainId=5123
- --blockTime=3
```
## Fork an existing blockchain
```yaml
extraEnv:
- name: BLOCK_NUMBER
value: "13331332"
secretEnv:
INFURA_PROJECT_ID: "xxxxx"
extraArgs:
- --fork="https://mainnet.infura.io/v3/$(INFURA_PROJECT_ID)@$(BLOCK_NUMBER)"
```