mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
96fecf8c57
* testing out fee-recipient evaluator * fixing bazel linter * adjusting comparison * typo on file rolling back * adding fee recipient is present to minimal e2e * fixing gofmt * fixing gofmt * fixing flag usage name * adding in log to help debug * fixing log build * trying to figure out why suggested fee recipient isn't working in e2e, adding more logging temporarily * rolling back logs * making e2e test more dynamic * fixing deepsource issue * fixing bazel * adding in condition for latest release * duplicate condtion check. * fixing gofmt * rolling back changes * adding fee recipient evaluator in new file * fixing validator component logic * testing rpc client addition * testing fee recipient evaluator * fixing bazel: * testing casting * test casting * reverting * testing casting * testing casting * testing log * adding bazel fix * switching mixed case and adding temp logging * fixing gofmt * rolling back changes * removing fee recipient evaluator when web3signer is used * test only minimal config * reverting changes * adding fee recipient evaluator to mainnet * current version uses wrong flag name * optimizing key usage * making mining address a variable * moving from global to local variable * removing unneeded log * removing redundant check * make proposer settings mroe deterministic and also have the evaluator compare the wanting values * fixing err return * fixing bazel * checking file too much moving it out * fixing gosec * trying to fix gosec error * trying to fix address * fixing linting * trying to gerenate key and random address * fixing linting * fixing check for proposer config * trying with multi config files * fixing is dir check * testing for older previous balance * adding logging to help debug * changing how i get the block numbers * fixing missed error check * adding gasused check * adding log for current gas used * taking suggestion to make fee recipient more deterministic * fixing linting * fixing check * fixing the address check * fixing format error * logic to differentiate recipients * fixing linting
45 lines
2.0 KiB
Go
45 lines
2.0 KiB
Go
package validator_service_config
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
fieldparams "github.com/prysmaticlabs/prysm/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
)
|
|
|
|
// ProposerSettingsPayload is the struct representation of the JSON or YAML payload set in the validator through the CLI.
|
|
// ProposerConfig is the map of validator address to fee recipient options all in hex format.
|
|
// DefaultConfig is the default fee recipient address for all validators unless otherwise specified in the propose config.required.
|
|
type ProposerSettingsPayload struct {
|
|
ProposerConfig map[string]*ProposerOptionPayload `json:"proposer_config" yaml:"proposer_config"`
|
|
DefaultConfig *ProposerOptionPayload `json:"default_config" yaml:"default_config"`
|
|
}
|
|
|
|
// ProposerOptionPayload is the struct representation of the JSON config file set in the validator through the CLI.
|
|
// FeeRecipient is set to an eth address in hex string format with 0x prefix.
|
|
// GasLimit is a number set to help the network decide on the maximum gas in each block.
|
|
type ProposerOptionPayload struct {
|
|
FeeRecipient string `json:"fee_recipient" yaml:"fee_recipient"`
|
|
GasLimit uint64 `json:"gas_limit,omitempty" yaml:"gas_limit,omitempty"`
|
|
}
|
|
|
|
// ProposerSettings is a Prysm internal representation of the fee recipient config on the validator client.
|
|
// ProposerSettingsPayload maps to ProposerSettings on import through the CLI.
|
|
type ProposerSettings struct {
|
|
ProposeConfig map[[fieldparams.BLSPubkeyLength]byte]*ProposerOption
|
|
DefaultConfig *ProposerOption
|
|
}
|
|
|
|
// ProposerOption is a Prysm internal representation of the ProposerOptionPayload on the validator client in bytes format instead of hex.
|
|
type ProposerOption struct {
|
|
FeeRecipient common.Address
|
|
GasLimit uint64
|
|
}
|
|
|
|
// DefaultProposerOption returns a Proposer Option with defaults filled
|
|
func DefaultProposerOption() ProposerOption {
|
|
return ProposerOption{
|
|
FeeRecipient: params.BeaconConfig().DefaultFeeRecipient,
|
|
GasLimit: params.BeaconConfig().DefaultBuilderGasLimit,
|
|
}
|
|
}
|