-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-wizard.json
57 lines (54 loc) · 1.62 KB
/
setup-wizard.json
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
47
48
49
50
51
52
53
54
55
56
57
version: "2"
fields:
- title: Storage Format
id: storage_format
description: >-
Besu can use one of two storage formats, Forest of Tries or Bonsai Tries.
You can read about the differences [here](https://besu.hyperledger.org/en/stable/Concepts/Data-Storage-Formats).
One major downside of using Bonsai Tries (as of now) is that syncing takes longer since "fast sync" does not work with it.
target:
type: environment
name: STORAGE_FORMAT
service: besu.public.dappnode.eth
enum:
- BONSAI
- FOREST
required: true
- title: Sync Mode
id: sync_mode
description: >-
Besu can use one of three sync modes, FULL (slow, archive node), FAST (fast, full node) or X_SNAP (fastest, experimental).
You can read about the differences [here](https://besu.hyperledger.org/en/stable/Reference/CLI/CLI-Syntax/#sync-mode).
target:
type: environment
name: SYNC_MODE
service: besu.public.dappnode.eth
enum:
- FAST
- FULL
- X_SNAP
required: true
- title: Enable WebSocket API
id: enable_ws
description: >-
You can enable or disable the WebSocket API here, if needed.
target:
type: environment
name: WS_ENABLED
service: besu.public.dappnode.eth
enum:
- "true"
- "false"
required: true
- title: Enable JSON-RPC API
id: enable_rpc
description: >-
You can enable or disable the JSON-RPC API here, if needed.
target:
type: environment
name: RPC_ENABLED
service: besu.public.dappnode.eth
enum:
- "true"
- "false"
required: true