ipld-eth-state-snapshot/cmd/stateSnapshot.go

62 lines
2.1 KiB
Go
Raw Normal View History

2020-06-30 16:54:10 +00:00
// Copyright © 2020 Vulcanize, Inc
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package cmd
import (
2020-07-01 18:44:59 +00:00
"github.com/sirupsen/logrus"
2020-06-30 16:54:10 +00:00
"github.com/spf13/cobra"
2020-07-01 18:44:59 +00:00
"github.com/spf13/viper"
"github.com/vulcanize/eth-pg-ipfs-state-snapshot/pkg/snapshot"
2020-06-30 16:54:10 +00:00
)
// stateSnapshotCmd represents the stateSnapshot command
var stateSnapshotCmd = &cobra.Command{
Use: "stateSnapshot",
2020-07-01 18:44:59 +00:00
Short: "Extract the entire Ethereum state from leveldb and publish into PG-IPFS",
2020-07-15 04:43:11 +00:00
Long: `Usage
2020-06-30 16:54:10 +00:00
2020-07-15 04:43:11 +00:00
./eth-pg-ipfs-state-snapshot stateSnapshot --config={path to toml config file}`,
2020-06-30 16:54:10 +00:00
Run: func(cmd *cobra.Command, args []string) {
2020-07-01 18:44:59 +00:00
subCommand = cmd.CalledAs()
logWithCommand = *logrus.WithField("SubCommand", subCommand)
stateSnapshot()
2020-06-30 16:54:10 +00:00
},
}
2020-07-01 18:44:59 +00:00
func stateSnapshot() {
snapConfig := snapshot.Config{}
snapConfig.Init()
snapshotService, err := snapshot.NewSnapshotService(snapConfig)
if err != nil {
logWithCommand.Fatal(err)
}
2020-07-15 04:43:11 +00:00
height := uint64(viper.GetInt64("snapshot.blockHeight"))
if err := snapshotService.CreateSnapshot(height); err != nil {
2020-07-01 18:44:59 +00:00
logWithCommand.Fatal(err)
}
2020-07-15 04:43:11 +00:00
logWithCommand.Infof("state snapshot at height %d is complete", height)
2020-07-01 18:44:59 +00:00
}
2020-06-30 16:54:10 +00:00
func init() {
rootCmd.AddCommand(stateSnapshotCmd)
2020-07-01 18:44:59 +00:00
stateSnapshotCmd.PersistentFlags().String("leveldb-path", "", "path to leveldb")
stateSnapshotCmd.PersistentFlags().String("block-height", "", "blockheight to extract state at")
2020-06-30 16:54:10 +00:00
2020-07-01 18:44:59 +00:00
viper.BindPFlag("leveldb.path", stateSnapshotCmd.PersistentFlags().Lookup("leveldb-path"))
viper.BindPFlag("snapshot.blockHeight", stateSnapshotCmd.PersistentFlags().Lookup("block-height"))
2020-06-30 16:54:10 +00:00
}