2020-02-21 20:56:30 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-07-16 09:32:13 +00:00
|
|
|
"encoding/csv"
|
2020-02-21 20:56:30 +00:00
|
|
|
"encoding/json"
|
2020-07-07 23:39:32 +00:00
|
|
|
"fmt"
|
2020-02-21 20:56:30 +00:00
|
|
|
"io/ioutil"
|
2020-07-16 09:32:13 +00:00
|
|
|
"os"
|
|
|
|
"strconv"
|
2020-07-17 02:50:13 +00:00
|
|
|
"strings"
|
2020-02-21 20:56:30 +00:00
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
2020-06-02 18:12:53 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2020-06-05 22:59:01 +00:00
|
|
|
"golang.org/x/xerrors"
|
2020-02-21 20:56:30 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2020-02-21 20:56:30 +00:00
|
|
|
|
2020-04-23 19:39:34 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-07-24 09:22:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/gen"
|
2020-02-21 20:56:30 +00:00
|
|
|
genesis2 "github.com/filecoin-project/lotus/chain/gen/genesis"
|
2020-07-17 02:50:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-02-21 20:56:30 +00:00
|
|
|
"github.com/filecoin-project/lotus/genesis"
|
|
|
|
)
|
|
|
|
|
|
|
|
var genesisCmd = &cli.Command{
|
|
|
|
Name: "genesis",
|
|
|
|
Description: "manipulate lotus genesis template",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
genesisNewCmd,
|
|
|
|
genesisAddMinerCmd,
|
2020-07-07 23:39:32 +00:00
|
|
|
genesisAddMsigsCmd,
|
2020-02-21 20:56:30 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var genesisNewCmd = &cli.Command{
|
|
|
|
Name: "new",
|
|
|
|
Description: "create new genesis template",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "network-name",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
if !cctx.Args().Present() {
|
|
|
|
return xerrors.New("seed genesis new [genesis.json]")
|
|
|
|
}
|
|
|
|
out := genesis.Template{
|
2020-08-18 21:34:35 +00:00
|
|
|
Accounts: []genesis.Actor{},
|
|
|
|
Miners: []genesis.Miner{},
|
|
|
|
VerifregRootKey: gen.DefaultVerifregRootkeyActor,
|
|
|
|
RemainderAccount: gen.DefaultRemainderAccountActor,
|
|
|
|
NetworkName: cctx.String("network-name"),
|
2020-02-21 20:56:30 +00:00
|
|
|
}
|
|
|
|
if out.NetworkName == "" {
|
|
|
|
out.NetworkName = "localnet-" + uuid.New().String()
|
|
|
|
}
|
|
|
|
|
2020-02-23 00:47:47 +00:00
|
|
|
genb, err := json.MarshalIndent(&out, "", " ")
|
2020-02-21 20:56:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
genf, err := homedir.Expand(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(genf, genb, 0644); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var genesisAddMinerCmd = &cli.Command{
|
|
|
|
Name: "add-miner",
|
|
|
|
Description: "add genesis miner",
|
2020-02-23 00:47:47 +00:00
|
|
|
Flags: []cli.Flag{},
|
2020-02-21 20:56:30 +00:00
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
if cctx.Args().Len() != 2 {
|
|
|
|
return xerrors.New("seed genesis add-miner [genesis.json] [preseal.json]")
|
|
|
|
}
|
|
|
|
|
|
|
|
genf, err := homedir.Expand(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var template genesis.Template
|
|
|
|
genb, err := ioutil.ReadFile(genf)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("read genesis template: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(genb, &template); err != nil {
|
|
|
|
return xerrors.Errorf("unmarshal genesis template: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
minf, err := homedir.Expand(cctx.Args().Get(1))
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("expand preseal file path: %w", err)
|
|
|
|
}
|
|
|
|
miners := map[string]genesis.Miner{}
|
|
|
|
minb, err := ioutil.ReadFile(minf)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("read preseal file: %w", err)
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(minb, &miners); err != nil {
|
|
|
|
return xerrors.Errorf("unmarshal miner info: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for mn, miner := range miners {
|
|
|
|
log.Infof("Adding miner %s to genesis template", mn)
|
|
|
|
{
|
|
|
|
id := uint64(genesis2.MinerStart) + uint64(len(template.Miners))
|
|
|
|
maddr, err := address.NewFromString(mn)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("parsing miner address: %w", err)
|
|
|
|
}
|
|
|
|
mid, err := address.IDFromAddress(maddr)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("getting miner id from address: %w", err)
|
|
|
|
}
|
|
|
|
if mid != id {
|
|
|
|
return xerrors.Errorf("tried to set miner t0%d as t0%d", mid, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template.Miners = append(template.Miners, miner)
|
|
|
|
log.Infof("Giving %s some initial balance", miner.Owner)
|
|
|
|
template.Accounts = append(template.Accounts, genesis.Actor{
|
|
|
|
Type: genesis.TAccount,
|
2020-06-30 13:18:01 +00:00
|
|
|
Balance: big.Mul(big.NewInt(50_000_000), big.NewInt(int64(build.FilecoinPrecision))),
|
2020-02-21 20:56:30 +00:00
|
|
|
Meta: (&genesis.AccountMeta{Owner: miner.Owner}).ActorMeta(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-23 00:47:47 +00:00
|
|
|
genb, err = json.MarshalIndent(&template, "", " ")
|
2020-02-21 20:56:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(genf, genb, 0644); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2020-07-07 23:39:32 +00:00
|
|
|
|
|
|
|
type GenAccountEntry struct {
|
2020-07-17 02:50:13 +00:00
|
|
|
Version int
|
|
|
|
ID string
|
|
|
|
Amount types.FIL
|
|
|
|
VestingMonths int
|
|
|
|
CustodianID int
|
|
|
|
M int
|
|
|
|
N int
|
|
|
|
Addresses []address.Address
|
|
|
|
Type string
|
|
|
|
Sig1 string
|
|
|
|
Sig2 string
|
2020-07-07 23:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var genesisAddMsigsCmd = &cli.Command{
|
|
|
|
Name: "add-msigs",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
if cctx.Args().Len() < 2 {
|
|
|
|
return fmt.Errorf("must specify template file and csv file with accounts")
|
|
|
|
}
|
|
|
|
|
|
|
|
genf, err := homedir.Expand(cctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-07-16 09:32:13 +00:00
|
|
|
csvf, err := homedir.Expand(cctx.Args().Get(1))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-07-07 23:39:32 +00:00
|
|
|
var template genesis.Template
|
|
|
|
b, err := ioutil.ReadFile(genf)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("read genesis template: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(b, &template); err != nil {
|
|
|
|
return xerrors.Errorf("unmarshal genesis template: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-07-17 02:50:13 +00:00
|
|
|
entries, err := parseMultisigCsv(csvf)
|
2020-07-16 09:32:13 +00:00
|
|
|
if err != nil {
|
2020-07-17 02:50:13 +00:00
|
|
|
return xerrors.Errorf("parsing multisig csv file: %w", err)
|
2020-07-16 09:32:13 +00:00
|
|
|
}
|
2020-07-07 23:39:32 +00:00
|
|
|
|
|
|
|
for i, e := range entries {
|
|
|
|
if len(e.Addresses) != e.N {
|
|
|
|
return fmt.Errorf("entry %d had mismatch between 'N' and number of addresses", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
msig := &genesis.MultisigMeta{
|
|
|
|
Signers: e.Addresses,
|
|
|
|
Threshold: e.M,
|
2020-07-17 02:50:13 +00:00
|
|
|
VestingDuration: monthsToBlocks(e.VestingMonths),
|
|
|
|
VestingStart: 0,
|
2020-07-07 23:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
act := genesis.Actor{
|
|
|
|
Type: genesis.TMultisig,
|
2020-07-17 02:50:13 +00:00
|
|
|
Balance: abi.TokenAmount(e.Amount),
|
2020-07-07 23:39:32 +00:00
|
|
|
Meta: msig.ActorMeta(),
|
|
|
|
}
|
|
|
|
|
|
|
|
template.Accounts = append(template.Accounts, act)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err = json.MarshalIndent(&template, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(genf, b, 0644); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2020-07-17 02:50:13 +00:00
|
|
|
|
|
|
|
func monthsToBlocks(nmonths int) int {
|
|
|
|
days := uint64((365 * nmonths) / 12)
|
|
|
|
return int(days * 24 * 60 * 60 / build.BlockDelaySecs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseMultisigCsv(csvf string) ([]GenAccountEntry, error) {
|
|
|
|
fileReader, err := os.Open(csvf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("read multisig csv: %w", err)
|
|
|
|
}
|
2020-07-23 10:21:13 +00:00
|
|
|
defer fileReader.Close() //nolint:errcheck
|
2020-07-17 02:50:13 +00:00
|
|
|
r := csv.NewReader(fileReader)
|
|
|
|
records, err := r.ReadAll()
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("read multisig csv: %w", err)
|
|
|
|
}
|
|
|
|
var entries []GenAccountEntry
|
|
|
|
for i, e := range records[1:] {
|
|
|
|
var addrs []address.Address
|
|
|
|
addrStrs := strings.Split(strings.TrimSpace(e[7]), ":")
|
|
|
|
for j, a := range addrStrs {
|
|
|
|
addr, err := address.NewFromString(a)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to parse address %d in row %d (%q): %w", j, i, a, err)
|
|
|
|
}
|
|
|
|
addrs = append(addrs, addr)
|
|
|
|
}
|
|
|
|
|
2020-07-17 21:27:56 +00:00
|
|
|
balance, err := types.ParseFIL(strings.TrimSpace(e[2]))
|
2020-07-17 02:50:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to parse account balance: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-07-17 21:27:56 +00:00
|
|
|
vesting, err := strconv.Atoi(strings.TrimSpace(e[3]))
|
2020-07-17 02:50:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to parse vesting duration for record %d: %w", i, err)
|
|
|
|
}
|
|
|
|
|
2020-07-17 21:27:56 +00:00
|
|
|
custodianID, err := strconv.Atoi(strings.TrimSpace(e[4]))
|
2020-07-17 02:50:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to parse custodianID in record %d: %w", i, err)
|
|
|
|
}
|
2020-07-17 21:27:56 +00:00
|
|
|
threshold, err := strconv.Atoi(strings.TrimSpace(e[5]))
|
2020-07-17 02:50:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to parse multisigM in record %d: %w", i, err)
|
|
|
|
}
|
2020-07-17 21:27:56 +00:00
|
|
|
num, err := strconv.Atoi(strings.TrimSpace(e[6]))
|
2020-07-17 02:50:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("Number of addresses be integer: %w", err)
|
|
|
|
}
|
|
|
|
if e[0] != "1" {
|
|
|
|
return nil, xerrors.Errorf("record version must be 1")
|
|
|
|
}
|
|
|
|
entries = append(entries, GenAccountEntry{
|
|
|
|
Version: 1,
|
|
|
|
ID: e[1],
|
|
|
|
Amount: balance,
|
|
|
|
CustodianID: custodianID,
|
|
|
|
VestingMonths: vesting,
|
|
|
|
M: threshold,
|
|
|
|
N: num,
|
|
|
|
Type: e[8],
|
|
|
|
Sig1: e[9],
|
|
|
|
Sig2: e[10],
|
|
|
|
Addresses: addrs,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return entries, nil
|
|
|
|
}
|