-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup-wizard.yml
33 lines (33 loc) · 1.84 KB
/
setup-wizard.yml
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 Prysm up and running in only a few minutes, you can start Prysm 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 [Prysm docs](https://docs.prylabs.network/docs/prysm-usage/checkpoint-sync) for more information.
Use the Dappnode Official endpoint `https://checkpoint-sync.dappnode.io` 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
description: >-
Fee Recipient is a feature that lets you specify a priority fee recipient address on your validator client instance and beacon node. Make sure this is an address you control. After The Merge, Execution Clients will begin depositing priority fees into this address whenever your validator proposes a new block.
required: true
pattern: "^0x[a-fA-F0-9]{40}$"
patternErrorMessage: Must be a valid address (0x1fd16a...)