2019-07-08 13:36:43 +00:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
2019-07-25 11:46:48 +00:00
|
|
|
"context"
|
2019-07-24 23:23:06 +00:00
|
|
|
"io"
|
2019-07-24 22:49:37 +00:00
|
|
|
"os"
|
|
|
|
|
2019-07-25 11:46:48 +00:00
|
|
|
"github.com/ipfs/go-blockservice"
|
|
|
|
"github.com/ipfs/go-car"
|
|
|
|
"github.com/ipfs/go-cid"
|
2019-07-08 15:14:36 +00:00
|
|
|
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
2019-07-25 11:46:48 +00:00
|
|
|
offline "github.com/ipfs/go-ipfs-exchange-offline"
|
2019-07-24 22:49:37 +00:00
|
|
|
logging "github.com/ipfs/go-log"
|
2019-07-25 11:46:48 +00:00
|
|
|
"github.com/ipfs/go-merkledag"
|
2019-07-08 15:14:36 +00:00
|
|
|
|
2019-07-26 12:51:32 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
2019-07-25 22:15:03 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/gen"
|
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
2019-07-25 22:15:33 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/wallet"
|
2019-07-08 13:36:43 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/node/modules"
|
|
|
|
)
|
|
|
|
|
2019-07-24 22:49:37 +00:00
|
|
|
var glog = logging.Logger("genesis")
|
|
|
|
|
2019-07-25 22:15:33 +00:00
|
|
|
func MakeGenesisMem(out io.Writer) func(bs blockstore.Blockstore, w *wallet.Wallet) modules.Genesis {
|
|
|
|
return func(bs blockstore.Blockstore, w *wallet.Wallet) modules.Genesis {
|
2019-07-25 22:15:03 +00:00
|
|
|
return func() (*types.BlockHeader, error) {
|
2019-07-24 23:23:06 +00:00
|
|
|
glog.Warn("Generating new random genesis block, note that this SHOULD NOT happen unless you are setting up new network")
|
2019-07-25 22:15:03 +00:00
|
|
|
// TODO: make an address allocation
|
|
|
|
b, err := gen.MakeGenesisBlock(bs, nil)
|
2019-07-24 23:23:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-07-25 11:46:48 +00:00
|
|
|
offl := offline.Exchange(bs)
|
|
|
|
blkserv := blockservice.New(bs, offl)
|
|
|
|
dserv := merkledag.NewDAGService(blkserv)
|
2019-07-24 23:23:06 +00:00
|
|
|
|
2019-07-25 11:46:48 +00:00
|
|
|
if err := car.WriteCar(context.TODO(), dserv, []cid.Cid{b.Genesis.Cid()}, out); err != nil {
|
2019-07-24 23:23:06 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.Genesis, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-25 22:15:33 +00:00
|
|
|
func MakeGenesis(outFile string) func(bs blockstore.Blockstore, w *wallet.Wallet) modules.Genesis {
|
|
|
|
return func(bs blockstore.Blockstore, w *wallet.Wallet) modules.Genesis {
|
2019-07-25 22:15:03 +00:00
|
|
|
return func() (*types.BlockHeader, error) {
|
2019-07-24 22:49:37 +00:00
|
|
|
glog.Warn("Generating new random genesis block, note that this SHOULD NOT happen unless you are setting up new network")
|
2019-07-26 12:51:32 +00:00
|
|
|
minerAddr, err := w.GenerateKey(types.KTSecp256k1)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
addrs := map[address.Address]types.BigInt{
|
|
|
|
minerAddr: types.NewInt(50000000),
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := gen.MakeGenesisBlock(bs, addrs)
|
2019-07-24 22:49:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.OpenFile(outFile, os.O_CREATE|os.O_WRONLY, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-07-25 11:46:48 +00:00
|
|
|
offl := offline.Exchange(bs)
|
|
|
|
blkserv := blockservice.New(bs, offl)
|
|
|
|
dserv := merkledag.NewDAGService(blkserv)
|
2019-07-24 22:49:37 +00:00
|
|
|
|
2019-07-25 11:46:48 +00:00
|
|
|
if err := car.WriteCar(context.TODO(), dserv, []cid.Cid{b.Genesis.Cid()}, f); err != nil {
|
2019-07-24 22:49:37 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.Warnf("WRITING GENESIS FILE AT %s", f.Name())
|
|
|
|
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.Genesis, nil
|
|
|
|
}
|
2019-07-08 13:36:43 +00:00
|
|
|
}
|
|
|
|
}
|