forked from protolambda/eth2-testnet-genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capella.go
265 lines (220 loc) · 9.2 KB
/
capella.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package main
import (
"bufio"
"context"
"encoding/json"
"fmt"
"math/big"
"os"
"time"
"github.com/holiman/uint256"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/protolambda/zrnt/eth2"
"github.com/protolambda/zrnt/eth2/beacon/capella"
"github.com/protolambda/zrnt/eth2/beacon/common"
"github.com/protolambda/zrnt/eth2/configs"
"github.com/protolambda/ztyp/codec"
"github.com/protolambda/ztyp/tree"
"github.com/protolambda/ztyp/view"
)
type JSONData struct {
Jsonrpc string `json:"jsonrpc"`
Id int `json:"id"`
Result json.RawMessage `json:"result"`
}
type CapellaGenesisCmd struct {
configs.SpecOptions `ask:"."`
Eth1Config string `ask:"--eth1-config" help:"Path to config JSON for eth1. No transition yet if empty."`
Eth1BlockHash common.Root `ask:"--eth1-block" help:"If not transitioned: Eth1 block hash to put into state."`
Eth1BlockTimestamp common.Timestamp `ask:"--eth1-timestamp" help:"If not transitioned: Eth1 block timestamp"`
EthMatchGenesisTime bool `ask:"--eth1-match-genesis-time" help:"Use execution-layer genesis time as beacon genesis time. Overrides other genesis time settings."`
MnemonicsSrcFilePath string `ask:"--mnemonics" help:"File with YAML of key sources"`
ValidatorsSrcFilePath string `ask:"--additional-validators" help:"File with list of additional validators"`
StateOutputPath string `ask:"--state-output" help:"Output path for state file"`
TranchesDir string `ask:"--tranches-dir" help:"Directory to dump lists of pubkeys of each tranche in"`
EthWithdrawalAddress common.Eth1Address `ask:"--eth1-withdrawal-address" help:"Eth1 Withdrawal to set for the genesis validator set"`
ShadowForkEth1RPC string `ask:"--shadow-fork-eth1-rpc" help:"Fetch the Eth1 block from the eth1 node for the shadow fork"`
ShadowForkBlockFile string `ask:"--shadow-fork-block-file" help:"Fetch the Eth1 block from a file for the shadow fork(overwrites RPC option)"`
}
func (g *CapellaGenesisCmd) Help() string {
return "Create genesis state for Capella beacon chain, from execution-layer and consensus-layer configs"
}
func (g *CapellaGenesisCmd) Default() {
g.SpecOptions.Default()
g.Eth1Config = "engine_genesis.json"
g.Eth1BlockHash = common.Root{}
g.Eth1BlockTimestamp = common.Timestamp(time.Now().Unix())
g.MnemonicsSrcFilePath = "mnemonics.yaml"
g.ValidatorsSrcFilePath = ""
g.StateOutputPath = "genesis.ssz"
g.TranchesDir = "tranches"
g.ShadowForkEth1RPC = ""
g.ShadowForkBlockFile = ""
}
func (g *CapellaGenesisCmd) Run(ctx context.Context, args ...string) error {
fmt.Printf("zrnt version: %s\n", eth2.VERSION)
spec, err := g.SpecOptions.Spec()
if err != nil {
return err
}
var eth1BlockHash common.Root
var beaconGenesisTimestamp common.Timestamp
var execHeader *capella.ExecutionPayloadHeader
var eth1Block *types.Block
var prevRandaoMix [32]byte
var txsRoot common.Root = common.PayloadTransactionsType(spec).DefaultNode().MerkleRoot(tree.GetHashFn())
var eth1Genesis *core.Genesis
// Load the Eth1 block from the Eth1 genesis config
if g.Eth1Config != "" {
eth1Genesis, err = loadEth1GenesisConf(g.Eth1Config)
if err != nil {
return err
}
}
if g.EthMatchGenesisTime && eth1Genesis != nil {
beaconGenesisTimestamp = common.Timestamp(eth1Genesis.Timestamp)
} else if spec.MIN_GENESIS_TIME != 0 {
// Load the genesis timestamp from the CL config, this is better in terms of compatibility for shadowforks
fmt.Println("Using CL MIN_GENESIS_TIME for genesis timestamp")
// Set beaconchain genesis timestamp based on config genesis timestamp
beaconGenesisTimestamp = spec.MIN_GENESIS_TIME
} else {
beaconGenesisTimestamp = g.Eth1BlockTimestamp
}
if g.ShadowForkBlockFile != "" {
// Read the JSON file from disk
file, err := os.ReadFile(g.ShadowForkBlockFile)
if err != nil {
return fmt.Errorf("failed to read file: %w", err)
}
// Unmarshal the JSON into a types.Block object
var resultData JSONData
err = json.Unmarshal(file, &resultData)
if err != nil {
return fmt.Errorf("failed to unmarshal JSON: %w", err)
}
// Set the eth1Block value for use later
eth1Block, err = ParseEthBlock(resultData.Result)
if err != nil {
return fmt.Errorf("failed to parse eth1 block: %w", err)
}
// Convert and set the difficulty as the prevRandao field
prevRandaoMix = bigIntToBytes32(eth1Block.Difficulty())
} else if g.ShadowForkEth1RPC != "" {
client, err := ethclient.Dial(g.ShadowForkEth1RPC)
if err != nil {
return fmt.Errorf("A fatal error occurred creating the ETH client %s", err)
}
// Get the latest block
blockNumberUint64, err := client.BlockNumber(ctx)
blockNumberBigint := new(big.Int).SetUint64(blockNumberUint64)
resultBlock, err := client.BlockByNumber(ctx, blockNumberBigint)
if err != nil {
return fmt.Errorf("A fatal error occurred getting the ETH block %s", err)
}
// Set the eth1Block value for use later
eth1Block = resultBlock
// Convert and set the difficulty as the prevRandao field
prevRandaoMix = bigIntToBytes32(eth1Block.Difficulty())
} else if g.Eth1Config != "" {
// Generate genesis block from the loaded config
eth1Block = eth1Genesis.ToBlock()
// Set as default values
prevRandaoMix = common.Bytes32{}
} else {
fmt.Println("no eth1 config found, using eth1 block hash and timestamp, with empty ExecutionPayloadHeader (no PoW->PoS transition yet in execution layer)")
eth1BlockHash = g.Eth1BlockHash
execHeader = &capella.ExecutionPayloadHeader{}
}
eth1BlockHash = common.Root(eth1Block.Hash())
extra := eth1Block.Extra()
if len(extra) > common.MAX_EXTRA_DATA_BYTES {
return fmt.Errorf("extra data is %d bytes, max is %d", len(extra), common.MAX_EXTRA_DATA_BYTES)
}
baseFee, _ := uint256.FromBig(eth1Block.BaseFee())
var withdrawalsRoot common.Root
if eth1Block.Withdrawals() != nil {
// Compute the SSZ hash-tree-root of the withdrawals,
// since that is what we put as withdrawals_root in the CL execution-payload.
// Not to be confused with the legacy MPT root in the EL block header.
clWithdrawals := make(common.Withdrawals, len(eth1Block.Withdrawals()))
for i, withdrawal := range eth1Block.Withdrawals() {
clWithdrawals[i] = common.Withdrawal{
Index: common.WithdrawalIndex(withdrawal.Index),
ValidatorIndex: common.ValidatorIndex(withdrawal.Validator),
Address: common.Eth1Address(withdrawal.Address),
Amount: common.Gwei(withdrawal.Amount),
}
}
withdrawalsRoot = clWithdrawals.HashTreeRoot(spec, tree.GetHashFn())
}
if len(eth1Block.Transactions()) > 0 {
// Compute the SSZ hash-tree-root of the transactions,
// since that is what we put as transactions_root in the CL execution-payload.
// Not to be confused with the legacy MPT root in the EL block header.
clTransactions := make(common.PayloadTransactions, len(eth1Block.Transactions()))
for i, tx := range eth1Block.Transactions() {
opaqueTx, err := tx.MarshalBinary()
if err != nil {
return fmt.Errorf("failed to encode tx %d: %w", i, err)
}
clTransactions[i] = opaqueTx
}
txsRoot = clTransactions.HashTreeRoot(spec, tree.GetHashFn())
}
execHeader = &capella.ExecutionPayloadHeader{
ParentHash: common.Root(eth1Block.ParentHash()),
FeeRecipient: common.Eth1Address(eth1Block.Coinbase()),
StateRoot: common.Bytes32(eth1Block.Root()),
ReceiptsRoot: common.Bytes32(eth1Block.ReceiptHash()),
LogsBloom: common.LogsBloom(eth1Block.Bloom()),
PrevRandao: prevRandaoMix,
BlockNumber: view.Uint64View(eth1Block.NumberU64()),
GasLimit: view.Uint64View(eth1Block.GasLimit()),
GasUsed: view.Uint64View(eth1Block.GasUsed()),
Timestamp: common.Timestamp(eth1Block.Time()),
ExtraData: extra,
BaseFeePerGas: view.Uint256View(*baseFee),
BlockHash: eth1BlockHash,
WithdrawalsRoot: withdrawalsRoot,
TransactionsRoot: txsRoot,
}
if err := os.MkdirAll(g.TranchesDir, 0777); err != nil {
return err
}
validators, err := loadValidatorKeys(spec, g.MnemonicsSrcFilePath, g.ValidatorsSrcFilePath, g.TranchesDir, g.EthWithdrawalAddress)
if err != nil {
return err
}
if uint64(len(validators)) < uint64(spec.MIN_GENESIS_ACTIVE_VALIDATOR_COUNT) {
fmt.Printf("WARNING: not enough validators for genesis. Key sources sum up to %d total. But need %d.\n", len(validators), spec.MIN_GENESIS_ACTIVE_VALIDATOR_COUNT)
}
state := capella.NewBeaconStateView(spec)
if err := setupState(spec, state, beaconGenesisTimestamp, eth1BlockHash, validators); err != nil {
return err
}
if err := state.SetLatestExecutionPayloadHeader(execHeader); err != nil {
return err
}
t, err := state.GenesisTime()
if err != nil {
return err
}
fmt.Printf("eth2 genesis at %d + %d = %d (%s)\n", beaconGenesisTimestamp, spec.GENESIS_DELAY, t, time.Unix(int64(t), 0).String())
fmt.Println("done preparing state, serializing SSZ now...")
f, err := os.OpenFile(g.StateOutputPath, os.O_CREATE|os.O_WRONLY, 0777)
if err != nil {
return err
}
defer f.Close()
buf := bufio.NewWriter(f)
defer buf.Flush()
w := codec.NewEncodingWriter(f)
if err := state.Serialize(w); err != nil {
return err
}
fmt.Println("done!")
return nil
}