Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit dd07c87

Browse files
Ruteriavalonche
authored andcommitted
Show builder pubkey on index page (#10)
1 parent c39e831 commit dd07c87

File tree

4 files changed

+42
-7
lines changed

4 files changed

+42
-7
lines changed

builder/backend.go

+19-5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ type Backend struct {
4141
builderSecretKey *bls.SecretKey
4242
builderPublicKey boostTypes.PublicKey
4343
serializedBuilderPoolPubkey hexutil.Bytes
44+
fd ForkData
4445
builderSigningDomain boostTypes.Domain
4546
proposerSigningDomain boostTypes.Domain
4647
enableBeaconChecks bool
@@ -56,7 +57,13 @@ type Backend struct {
5657
indexTemplate *template.Template
5758
}
5859

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 {
6067
pkBytes := bls.PublicKeyFromSecretKey(sk).Compress()
6168
pk := boostTypes.PublicKey{}
6269
pk.FromSlice(pkBytes)
@@ -77,6 +84,7 @@ func NewBackend(sk *bls.SecretKey, bc IBeaconClient, builderSigningDomain boostT
7784
builderPublicKey: pk,
7885
serializedBuilderPoolPubkey: pkBytes,
7986

87+
fd: fd,
8088
builderSigningDomain: builderSigningDomain,
8189
proposerSigningDomain: proposerSigningDomain,
8290
enableBeaconChecks: enableBeaconChecks,
@@ -107,10 +115,16 @@ func (b *Backend) handleIndex(w http.ResponseWriter, req *http.Request) {
107115
}
108116

109117
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)}
114128

115129
if err := b.indexTemplate.Execute(w, statusData); err != nil {
116130
http.Error(w, err.Error(), http.StatusInternalServerError)

builder/backend_test.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func newTestBackend(t *testing.T) (*Backend, *ValidatorPrivateData) {
2626
bDomain := boostTypes.ComputeDomain(boostTypes.DomainTypeAppBuilder, [4]byte{0x02, 0x0, 0x0, 0x0}, boostTypes.Hash{})
2727
genesisValidatorsRoot := boostTypes.Hash(common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000000"))
2828
cDomain := boostTypes.ComputeDomain(boostTypes.DomainTypeBeaconProposer, [4]byte{0x02, 0x0, 0x0, 0x0}, genesisValidatorsRoot)
29-
backend := NewBackend(sk, &testBeaconClient{validator}, bDomain, cDomain, true)
29+
backend := NewBackend(sk, &testBeaconClient{validator}, ForkData{}, bDomain, cDomain, true)
3030
// service := NewService("127.0.0.1:31545", backend)
3131

3232
return backend, validator
@@ -231,3 +231,8 @@ func TestGetPayload(t *testing.T) {
231231
require.NoError(t, err)
232232
require.Equal(t, bid.Data.Message.Header.BlockHash, getPayloadResponse.Data.BlockHash)
233233
}
234+
235+
func TestXxx(t *testing.T) {
236+
sk, _ := bls.GenerateRandomSecretKey()
237+
fmt.Println(hexutil.Encode(sk.Serialize()))
238+
}

builder/index.go

+16
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,22 @@ func parseIndexTemplate() (*template.Template, error) {
4646
<h1>
4747
Boost Block Builder
4848
</h1>
49+
<h2>
50+
Pubkey {{ .Pubkey }}
51+
</h2>
52+
<p>
53+
<ul>
54+
<li>Genesis fork version {{ .GenesisForkVersion }}</li>
55+
<li>Bellatrix fork version {{ .BellatrixForkVersion }}</li>
56+
<li>Genesis validators root {{ .GenesisValidatorsRoot }}</li>
57+
</ul>
58+
</p>
59+
<p>
60+
<ul>
61+
<li>Builder signing domain {{ .BuilderSigningDomain }}</li>
62+
<li>Proposer signing domain {{ .ProposerSigningDomain }}</li>
63+
</ul>
64+
</p>
4965
5066
<p>
5167
<ul>

builder/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func Register(stack *node.Node, backend *eth.Ethereum, cfg *BuilderConfig) error
9898
var beaconClient IBeaconClient
9999
beaconClient = NewBeaconClient(cfg.BeaconEndpoint)
100100

101-
builderBackend := NewBackend(sk, beaconClient, builderSigningDomain, proposerSigningDomain, cfg.EnableValidatorChecks)
101+
builderBackend := NewBackend(sk, beaconClient, ForkData{cfg.GenesisForkVersion, cfg.BellatrixForkVersion, cfg.GenesisValidatorsRoot}, builderSigningDomain, proposerSigningDomain, cfg.EnableValidatorChecks)
102102
builderService := NewService(cfg.ListenAddr, builderBackend)
103103
builderService.Start()
104104

0 commit comments

Comments
 (0)