52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
package genesis
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
"github.com/ipfs/go-hamt-ipld"
|
|
bstore "github.com/ipfs/go-ipfs-blockstore"
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/verifreg"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
)
|
|
|
|
var RootVerifierID address.Address
|
|
|
|
func init() {
|
|
|
|
idk, err := address.NewFromString("t080")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
RootVerifierID = idk
|
|
}
|
|
|
|
func SetupVerifiedRegistryActor(bs bstore.Blockstore) (*types.Actor, error) {
|
|
cst := cbor.NewCborStore(bs)
|
|
|
|
h, err := cst.Put(context.TODO(), hamt.NewNode(cst, hamt.UseTreeBitWidth(5)))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sms := verifreg.ConstructState(h, RootVerifierID)
|
|
|
|
stcid, err := cst.Put(context.TODO(), sms)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
act := &types.Actor{
|
|
Code: builtin.VerifiedRegistryActorCodeID,
|
|
Head: stcid,
|
|
Balance: types.NewInt(0),
|
|
}
|
|
|
|
return act, nil
|
|
}
|