mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
5a66807989
* 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>
79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
package checkpointsync
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/api/client"
|
|
"github.com/prysmaticlabs/prysm/v5/api/client/beacon"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var downloadFlags = struct {
|
|
BeaconNodeHost string
|
|
Timeout time.Duration
|
|
}{}
|
|
|
|
var downloadCmd = &cli.Command{
|
|
Name: "download",
|
|
Aliases: []string{"dl"},
|
|
Usage: "Download the latest finalized state and the most recent block it integrates. To be used for checkpoint sync.",
|
|
Action: func(cliCtx *cli.Context) error {
|
|
if err := cliActionDownload(cliCtx); err != nil {
|
|
log.WithError(err).Fatal("Could not download checkpoint-sync data")
|
|
}
|
|
return nil
|
|
},
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "beacon-node-host",
|
|
Usage: "host:port for beacon node connection",
|
|
Destination: &downloadFlags.BeaconNodeHost,
|
|
Value: "localhost:3500",
|
|
},
|
|
&cli.DurationFlag{
|
|
Name: "http-timeout",
|
|
Usage: "timeout for http requests made to beacon-node-url (uses duration format, ex: 2m31s). default: 4m",
|
|
Destination: &downloadFlags.Timeout,
|
|
Value: time.Minute * 4,
|
|
},
|
|
},
|
|
}
|
|
|
|
func cliActionDownload(_ *cli.Context) error {
|
|
ctx := context.Background()
|
|
f := downloadFlags
|
|
|
|
opts := []client.ClientOpt{client.WithTimeout(f.Timeout)}
|
|
client, err := beacon.NewClient(downloadFlags.BeaconNodeHost, opts...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cwd, err := os.Getwd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
od, err := beacon.DownloadFinalizedData(ctx, client)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
blockPath, err := od.SaveBlock(cwd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Printf("saved ssz-encoded block to %s", blockPath)
|
|
|
|
statePath, err := od.SaveState(cwd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Printf("saved ssz-encoded state to %s", statePath)
|
|
|
|
return nil
|
|
}
|