This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from dappnode/pablo/implement-fee-recipient-ad…
…dress Implement-fee-recipient-address
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,15 @@ fields: | |
It's a good idea to add a backup web3 provider in case your main one goes down. For example, if your primary EL client is a local Geth, but you want to use Infura as a backup. | ||
Get your web3 backup from [infura](https://infura.io/) (i.e https://[email protected]) | ||
required: false | ||
- id: feeRecipientAddress | ||
target: | ||
type: environment | ||
name: FEE_RECIPIENT_ADDRESS | ||
service: beacon-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. After The Merge, execution clients will begin depositing priority fees into this address whenever your validator client proposes a new block. | ||
required: true | ||
pattern: "^0x[a-fA-F0-9]{40}$" | ||
patternErrorMessage: Must be a valid address (0x1fd16a...) | ||
|