@@ -41,6 +41,7 @@ type Backend struct {
41
41
builderSecretKey * bls.SecretKey
42
42
builderPublicKey boostTypes.PublicKey
43
43
serializedBuilderPoolPubkey hexutil.Bytes
44
+ fd ForkData
44
45
builderSigningDomain boostTypes.Domain
45
46
proposerSigningDomain boostTypes.Domain
46
47
enableBeaconChecks bool
@@ -56,7 +57,13 @@ type Backend struct {
56
57
indexTemplate * template.Template
57
58
}
58
59
59
- func NewBackend (sk * bls.SecretKey , bc IBeaconClient , builderSigningDomain boostTypes.Domain , proposerSigningDomain boostTypes.Domain , enableBeaconChecks bool ) * Backend {
60
+ type ForkData struct {
61
+ GenesisForkVersion string
62
+ BellatrixForkVersion string
63
+ GenesisValidatorsRoot string
64
+ }
65
+
66
+ func NewBackend (sk * bls.SecretKey , bc IBeaconClient , fd ForkData , builderSigningDomain boostTypes.Domain , proposerSigningDomain boostTypes.Domain , enableBeaconChecks bool ) * Backend {
60
67
pkBytes := bls .PublicKeyFromSecretKey (sk ).Compress ()
61
68
pk := boostTypes.PublicKey {}
62
69
pk .FromSlice (pkBytes )
@@ -77,6 +84,7 @@ func NewBackend(sk *bls.SecretKey, bc IBeaconClient, builderSigningDomain boostT
77
84
builderPublicKey : pk ,
78
85
serializedBuilderPoolPubkey : pkBytes ,
79
86
87
+ fd : fd ,
80
88
builderSigningDomain : builderSigningDomain ,
81
89
proposerSigningDomain : proposerSigningDomain ,
82
90
enableBeaconChecks : enableBeaconChecks ,
@@ -107,10 +115,16 @@ func (b *Backend) handleIndex(w http.ResponseWriter, req *http.Request) {
107
115
}
108
116
109
117
statusData := struct {
110
- NoValidators int
111
- Header string
112
- Blocks string
113
- }{noValidators , string (headerData ), string (payloadData )}
118
+ Pubkey string
119
+ NoValidators int
120
+ GenesisForkVersion string
121
+ BellatrixForkVersion string
122
+ GenesisValidatorsRoot string
123
+ BuilderSigningDomain string
124
+ ProposerSigningDomain string
125
+ Header string
126
+ Blocks string
127
+ }{hexutil .Encode (b .serializedBuilderPoolPubkey ), noValidators , b .fd .GenesisForkVersion , b .fd .BellatrixForkVersion , b .fd .GenesisValidatorsRoot , hexutil .Encode (b .builderSigningDomain [:]), hexutil .Encode (b .proposerSigningDomain [:]), string (headerData ), string (payloadData )}
114
128
115
129
if err := b .indexTemplate .Execute (w , statusData ); err != nil {
116
130
http .Error (w , err .Error (), http .StatusInternalServerError )
0 commit comments