prysm-pulse/beacon-chain/rpc/prysm/v1alpha1/beacon/config.go
terence 5a66807989
Update to V5 (#13622)
* First take at updating everything to v5

* Patch gRPC gateway to use prysm v5

Fix patch

* Update go ssz

---------

Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
2024-02-15 05:46:47 +00:00

26 lines
727 B
Go

package beacon
import (
"context"
"fmt"
"reflect"
"github.com/prysmaticlabs/prysm/v5/config/params"
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
"google.golang.org/protobuf/types/known/emptypb"
)
// GetBeaconConfig retrieves the current configuration parameters of the beacon chain.
func (_ *Server) GetBeaconConfig(_ context.Context, _ *emptypb.Empty) (*ethpb.BeaconConfig, error) {
conf := params.BeaconConfig()
val := reflect.ValueOf(conf).Elem()
numFields := val.Type().NumField()
res := make(map[string]string, numFields)
for i := 0; i < numFields; i++ {
res[val.Type().Field(i).Name] = fmt.Sprintf("%v", val.Field(i).Interface())
}
return &ethpb.BeaconConfig{
Config: res,
}, nil
}