2020-09-12 03:07:52 +00:00
|
|
|
package builtin
|
|
|
|
|
|
|
|
import (
|
2020-10-05 01:38:52 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2022-04-07 18:46:23 +00:00
|
|
|
builtin0 "github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
|
|
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
|
|
|
|
|
|
|
builtin3 "github.com/filecoin-project/specs-actors/v3/actors/builtin"
|
|
|
|
|
|
|
|
builtin4 "github.com/filecoin-project/specs-actors/v4/actors/builtin"
|
|
|
|
|
|
|
|
builtin5 "github.com/filecoin-project/specs-actors/v5/actors/builtin"
|
|
|
|
|
|
|
|
builtin6 "github.com/filecoin-project/specs-actors/v6/actors/builtin"
|
|
|
|
|
|
|
|
builtin7 "github.com/filecoin-project/specs-actors/v7/actors/builtin"
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
builtin8 "github.com/filecoin-project/go-state-types/builtin"
|
2022-05-15 19:26:52 +00:00
|
|
|
builtin8sa "github.com/filecoin-project/specs-actors/v8/actors/builtin"
|
2022-03-01 03:57:40 +00:00
|
|
|
|
2020-09-22 04:12:07 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2022-04-20 21:34:28 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/proof"
|
2020-09-24 00:40:29 +00:00
|
|
|
|
2022-04-04 11:25:03 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2020-09-24 00:40:29 +00:00
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
miner8 "github.com/filecoin-project/go-state-types/builtin/v8/miner"
|
|
|
|
smoothingtypes "github.com/filecoin-project/go-state-types/builtin/v8/util/smoothing"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2022-03-01 03:57:40 +00:00
|
|
|
var SystemActorAddr = builtin8.SystemActorAddr
|
|
|
|
var BurntFundsActorAddr = builtin8.BurntFundsActorAddr
|
|
|
|
var CronActorAddr = builtin8.CronActorAddr
|
2020-10-11 22:17:28 +00:00
|
|
|
var SaftAddress = makeAddress("t0122")
|
2020-10-05 01:38:52 +00:00
|
|
|
var ReserveAddress = makeAddress("t090")
|
2020-10-06 21:47:03 +00:00
|
|
|
var RootVerifierAddress = makeAddress("t080")
|
2020-09-29 04:24:38 +00:00
|
|
|
|
2020-10-08 01:09:33 +00:00
|
|
|
var (
|
2022-03-01 03:57:40 +00:00
|
|
|
ExpectedLeadersPerEpoch = builtin8.ExpectedLeadersPerEpoch
|
2020-10-08 01:09:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2022-03-01 03:57:40 +00:00
|
|
|
EpochDurationSeconds = builtin8.EpochDurationSeconds
|
|
|
|
EpochsInDay = builtin8.EpochsInDay
|
|
|
|
SecondsInDay = builtin8.SecondsInDay
|
2020-10-08 01:09:33 +00:00
|
|
|
)
|
|
|
|
|
2020-10-08 20:32:54 +00:00
|
|
|
const (
|
2022-03-01 03:57:40 +00:00
|
|
|
MethodSend = builtin8.MethodSend
|
|
|
|
MethodConstructor = builtin8.MethodConstructor
|
2020-10-08 20:32:54 +00:00
|
|
|
)
|
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
// These are all just type aliases across actor versions. In the future, that might change
|
2021-01-18 23:15:18 +00:00
|
|
|
// and we might need to do something fancier.
|
2022-04-20 21:34:28 +00:00
|
|
|
type SectorInfo = proof.SectorInfo
|
|
|
|
type ExtendedSectorInfo = proof.ExtendedSectorInfo
|
|
|
|
type PoStProof = proof.PoStProof
|
|
|
|
type FilterEstimate = smoothingtypes.FilterEstimate
|
2020-09-20 21:53:46 +00:00
|
|
|
|
2021-04-26 14:48:20 +00:00
|
|
|
func QAPowerForWeight(size abi.SectorSize, duration abi.ChainEpoch, dealWeight, verifiedWeight abi.DealWeight) abi.StoragePower {
|
2022-03-01 03:57:40 +00:00
|
|
|
return miner8.QAPowerForWeight(size, duration, dealWeight, verifiedWeight)
|
2021-04-26 14:48:20 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 19:48:08 +00:00
|
|
|
func ActorNameByCode(c cid.Cid) string {
|
2022-04-04 11:25:03 +00:00
|
|
|
name, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
|
|
|
return name
|
2022-04-04 11:25:03 +00:00
|
|
|
}
|
2022-03-01 03:57:40 +00:00
|
|
|
|
2022-04-04 11:25:03 +00:00
|
|
|
switch {
|
2022-04-07 18:46:23 +00:00
|
|
|
|
|
|
|
case builtin0.IsBuiltinActor(c):
|
|
|
|
return builtin0.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin2.IsBuiltinActor(c):
|
|
|
|
return builtin2.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin3.IsBuiltinActor(c):
|
|
|
|
return builtin3.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin4.IsBuiltinActor(c):
|
|
|
|
return builtin4.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin5.IsBuiltinActor(c):
|
|
|
|
return builtin5.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin6.IsBuiltinActor(c):
|
|
|
|
return builtin6.ActorNameByCode(c)
|
|
|
|
|
|
|
|
case builtin7.IsBuiltinActor(c):
|
|
|
|
return builtin7.ActorNameByCode(c)
|
|
|
|
|
2022-05-15 19:26:52 +00:00
|
|
|
case builtin8sa.IsBuiltinActor(c):
|
|
|
|
return builtin8sa.ActorNameByCode(c)
|
|
|
|
|
2020-09-28 19:48:08 +00:00
|
|
|
default:
|
|
|
|
return "<unknown>"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsBuiltinActor(c cid.Cid) bool {
|
2022-04-04 11:25:03 +00:00
|
|
|
_, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin0.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin2.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin3.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin4.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin5.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin6.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if builtin7.IsBuiltinActor(c) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetAccountActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.AccountKey); ok {
|
|
|
|
return c, nil
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.AccountActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
2020-09-28 19:48:08 +00:00
|
|
|
}
|
2020-09-29 04:24:38 +00:00
|
|
|
|
|
|
|
func IsAccountActor(c cid.Cid) bool {
|
2022-04-04 11:25:03 +00:00
|
|
|
name, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
|
|
|
return name == "account"
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin0.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin2.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin3.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin4.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin5.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin6.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin7.AccountActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetCronActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.CronKey); ok {
|
|
|
|
return c, nil
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.CronActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.CronActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetInitActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.InitKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.InitActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.InitActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMarketActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.MarketKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.StorageMarketActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMinerActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.MinerKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.StorageMinerActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsStorageMinerActor(c cid.Cid) bool {
|
2022-04-04 11:25:03 +00:00
|
|
|
name, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
2022-04-20 21:34:28 +00:00
|
|
|
return name == actors.MinerKey
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin0.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin2.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin3.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin4.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin5.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin6.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin7.StorageMinerActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMultisigActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.MultisigKey); ok {
|
|
|
|
return c, nil
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.MultisigActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsMultisigActor(c cid.Cid) bool {
|
2022-04-04 11:25:03 +00:00
|
|
|
name, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
2022-04-20 21:34:28 +00:00
|
|
|
return name == actors.MultisigKey
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin0.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin2.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin3.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin4.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin5.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin6.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin7.MultisigActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPaymentChannelActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.PaychKey); ok {
|
|
|
|
return c, nil
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.PaymentChannelActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsPaymentChannelActor(c cid.Cid) bool {
|
2022-04-04 11:25:03 +00:00
|
|
|
name, _, ok := actors.GetActorMetaByCode(c)
|
2022-04-07 18:46:23 +00:00
|
|
|
if ok {
|
|
|
|
return name == "paymentchannel"
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin0.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin2.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin3.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin4.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin5.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin6.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == builtin7.PaymentChannelActorCodeID {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPowerActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.PowerKey); ok {
|
|
|
|
return c, nil
|
2022-04-07 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.StoragePowerActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetRewardActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.RewardKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.RewardActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetSystemActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.SystemKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.SystemActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetVerifregActorCodeID(av actors.Version) (cid.Cid, error) {
|
|
|
|
if c, ok := actors.GetActorCodeID(av, actors.VerifregKey); ok {
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch av {
|
|
|
|
|
|
|
|
case actors.Version0:
|
|
|
|
return builtin0.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version2:
|
|
|
|
return builtin2.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version3:
|
|
|
|
return builtin3.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version4:
|
|
|
|
return builtin4.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version5:
|
|
|
|
return builtin5.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version6:
|
|
|
|
return builtin6.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
case actors.Version7:
|
|
|
|
return builtin7.VerifiedRegistryActorCodeID, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cid.Undef, xerrors.Errorf("unknown actor version %d", av)
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
2020-10-05 01:38:52 +00:00
|
|
|
|
|
|
|
func makeAddress(addr string) address.Address {
|
|
|
|
ret, err := address.NewFromString(addr)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|