50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package actors
|
|
|
|
import (
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
mh "github.com/multiformats/go-multihash"
|
|
)
|
|
|
|
func init() {
|
|
cbor.RegisterCborType(InitActorState{})
|
|
cbor.RegisterCborType(AccountActorState{})
|
|
}
|
|
|
|
var AccountActorCodeCid cid.Cid
|
|
var StorageMarketActorCodeCid cid.Cid
|
|
var StorageMinerCodeCid cid.Cid
|
|
var MultisigActorCodeCid cid.Cid
|
|
var InitActorCodeCid cid.Cid
|
|
|
|
var InitActorAddress = mustIDAddress(0)
|
|
var NetworkAddress = mustIDAddress(1)
|
|
var StorageMarketAddress = mustIDAddress(2)
|
|
|
|
func mustIDAddress(i uint64) address.Address {
|
|
a, err := address.NewIDAddress(i)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return a
|
|
}
|
|
|
|
func init() {
|
|
pref := cid.NewPrefixV1(cid.Raw, mh.ID)
|
|
mustSum := func(s string) cid.Cid {
|
|
c, err := pref.Sum([]byte(s))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return c
|
|
}
|
|
|
|
AccountActorCodeCid = mustSum("account")
|
|
StorageMarketActorCodeCid = mustSum("smarket")
|
|
StorageMinerCodeCid = mustSum("sminer")
|
|
MultisigActorCodeCid = mustSum("multisig")
|
|
InitActorCodeCid = mustSum("init")
|
|
}
|