mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
2dfe291cf9
* initial commit wip * setting protos for fee recipient * updating proto based on specs * updating apimiddleware * generated APIs * updating proto to fit spec * fixing naming of fields * fixing endpoint_factory and associated structs * fixing imports * adding in custom http types to grpc gateway * adding import options * changing package option * still testing protos * adding to bazel * testing dependency changes * more tests * more tests * more tests * more tests * more tests * more tests * testing changing repo dep * testing deps * testing deps * testing deps * testing deps * testing deps * testing deps * reverting * testing import * testing bazel * bazel test * testing * testing * testing import * updating generated proto code * wip set fee recipient by pubkey * adding list fee recipient logic * fixing thrown error * fixing bug with API * fee recipient delete function * updating generated proto logic * fixing deposit api and adding postman tests * fixing proto imports * fixing unit tests and checksums * fixing test * adding unit tests * fixing bazel * Update validator/rpc/standard_api.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * Update validator/rpc/standard_api.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * resolving review comments * fixing return * Update config/validator/service/proposer-settings.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/rpc/standard_api.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update validator/rpc/standard_api.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * updating proto * updating message name * fixing imports * updating based on review comments * adding middleware unit tests * capitalizing errors * using error instead of errorf * fixing missed unit test variable rename * fixing format variable * fixing unit test * Update validator/rpc/standard_api.go * Update validator/rpc/standard_api.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
45 lines
2.0 KiB
Go
45 lines
2.0 KiB
Go
package validator_service_config
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
field_params "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.
|
|
// ProposeConfig 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 {
|
|
ProposeConfig 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[[field_params.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,
|
|
}
|
|
}
|