Files
prysm/tools/interop/export-genesis/main.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

49 lines
1018 B
Go

package main
import (
"context"
"fmt"
"os"
"github.com/OffchainLabs/prysm/v7/beacon-chain/db/kv"
"github.com/OffchainLabs/prysm/v7/io/file"
)
// A basic tool to extract genesis.ssz from existing beaconchain.db.
// ex:
//
// bazel run //tools/interop/export-genesis:export-genesis -- /tmp/data/beaconchaindata /tmp/genesis.ssz
func main() {
if len(os.Args) < 3 {
fmt.Println("Usage: ./main /path/to/datadir /path/to/output/genesis.ssz")
os.Exit(1)
}
fmt.Printf("Reading db at %s and writing ssz output to %s.\n", os.Args[1], os.Args[2])
d, err := kv.NewKVStore(context.Background(), os.Args[1])
if err != nil {
panic(err)
}
defer func() {
if err := d.Close(); err != nil {
panic(err)
}
}()
gs, err := d.GenesisState(context.Background())
if err != nil {
panic(err)
}
if gs == nil || gs.IsNil() {
panic("nil genesis state")
}
b, err := gs.MarshalSSZ()
if err != nil {
panic(err)
}
if err := file.WriteFile(os.Args[2], b); err != nil {
panic(err)
}
fmt.Println("done")
}