-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup-wizard.yml
More file actions
33 lines (33 loc) · 1.92 KB
/
setup-wizard.yml
File metadata and controls
33 lines (33 loc) · 1.92 KB
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
version: "2"
fields:
- id: GRAFFITI
target:
type: environment
name: GRAFFITI
service: validator
title: Graffiti
maxLength: 32
description: >-
Add a string to your proposed blocks, which will be seen on the block explorer
- id: checkpointSyncUrl
target:
type: environment
name: CHECKPOINT_SYNC_URL
service: beacon-chain
title: Checkpoint for fast sync
description: >-
To get Nimbus up and running in only a few minutes, you can start Nimbus from a recent finalized checkpoint state rather than syncing from genesis. This is substantially **faster** and consumes **less resources** than syncing from genesis, while still providing all the same features. Be sure you are using a trusted node for the fast sync. Check the [Nimbus docs](https://nimbus.guide/trusted-node-sync.html) for more information.
Use the Dappnode Official endpoint for your network (`https://checkpoint-sync.dappnode.net`, `https://checkpoint-sync-hoodi.dappnode.net`, `https://checkpoint-sync-gnosis.dappnode.net`) or get your checkpoint sync from [Infura](https://infura.io/) (i.e https://XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX@eth2-beacon.infura.io)
*Note - If you are going to provide your own checkpoint sync endpoint, make sure you do not use a slash `/` at the end of the URL.*
required: false
- id: feeRecipientAddress
target:
type: environment
name: FEE_RECIPIENT_ADDRESS
service: [beacon-chain, validator]
title: Fee Recipient Address (only fallback)
description: >-
This fee recipient address would be only used in case of error of your primary fee recipient. Your primary fee recipient is defined when you import your keys in the staking brain. By default the fallback fee recipient address is `0x0000000000000000000000000000000000000000`.
required: true
pattern: "^0x[a-fA-F0-9]{40}$"
patternErrorMessage: Must be a valid address (0x1fd16a...)