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"
|
|
|
|
|
2020-10-11 22:17:28 +00:00
|
|
|
builtin0 "github.com/filecoin-project/specs-actors/actors/builtin"
|
2021-01-18 23:10:03 +00:00
|
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
|
|
|
builtin3 "github.com/filecoin-project/specs-actors/v3/actors/builtin"
|
2020-10-11 22:17:28 +00:00
|
|
|
|
2020-09-22 04:12:07 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-09-24 00:40:29 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
|
2020-09-20 21:53:46 +00:00
|
|
|
smoothing0 "github.com/filecoin-project/specs-actors/actors/util/smoothing"
|
2021-01-18 23:15:18 +00:00
|
|
|
smoothing2 "github.com/filecoin-project/specs-actors/v2/actors/util/smoothing"
|
2021-01-16 07:39:35 +00:00
|
|
|
smoothing3 "github.com/filecoin-project/specs-actors/v3/actors/util/smoothing"
|
2021-01-18 23:15:18 +00:00
|
|
|
|
|
|
|
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
|
|
|
proof0 "github.com/filecoin-project/specs-actors/actors/runtime/proof"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-29 04:24:38 +00:00
|
|
|
var SystemActorAddr = builtin0.SystemActorAddr
|
|
|
|
var BurntFundsActorAddr = builtin0.BurntFundsActorAddr
|
2020-10-11 22:17:28 +00:00
|
|
|
var CronActorAddr = builtin0.CronActorAddr
|
|
|
|
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 (
|
|
|
|
ExpectedLeadersPerEpoch = builtin0.ExpectedLeadersPerEpoch
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
EpochDurationSeconds = builtin0.EpochDurationSeconds
|
|
|
|
EpochsInDay = builtin0.EpochsInDay
|
|
|
|
SecondsInDay = builtin0.SecondsInDay
|
|
|
|
)
|
|
|
|
|
2020-10-08 20:32:54 +00:00
|
|
|
const (
|
2021-01-18 23:10:03 +00:00
|
|
|
MethodSend = builtin3.MethodSend
|
|
|
|
MethodConstructor = builtin3.MethodConstructor
|
2020-10-08 20:32:54 +00:00
|
|
|
)
|
|
|
|
|
2021-01-18 23:15:18 +00:00
|
|
|
// These are all just type aliases across actor versions 0, 2, & 3. In the future, that might change
|
|
|
|
// and we might need to do something fancier.
|
2020-09-23 04:48:35 +00:00
|
|
|
type SectorInfo = proof0.SectorInfo
|
|
|
|
type PoStProof = proof0.PoStProof
|
2020-09-20 21:53:46 +00:00
|
|
|
type FilterEstimate = smoothing0.FilterEstimate
|
|
|
|
|
|
|
|
func FromV0FilterEstimate(v0 smoothing0.FilterEstimate) FilterEstimate {
|
2021-03-26 00:17:46 +00:00
|
|
|
return (FilterEstimate)(v0) //nolint:unconvert
|
2020-09-19 04:30:24 +00:00
|
|
|
}
|
2020-09-22 04:12:07 +00:00
|
|
|
|
2021-01-18 23:15:18 +00:00
|
|
|
// Doesn't change between actors v0, v2, and v3.
|
2020-09-22 04:12:07 +00:00
|
|
|
func QAPowerForWeight(size abi.SectorSize, duration abi.ChainEpoch, dealWeight, verifiedWeight abi.DealWeight) abi.StoragePower {
|
|
|
|
return miner0.QAPowerForWeight(size, duration, dealWeight, verifiedWeight)
|
|
|
|
}
|
2020-09-19 03:46:03 +00:00
|
|
|
|
2021-01-16 07:39:35 +00:00
|
|
|
func FromV2FilterEstimate(v2 smoothing2.FilterEstimate) FilterEstimate {
|
|
|
|
return (FilterEstimate)(v2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func FromV3FilterEstimate(v3 smoothing3.FilterEstimate) FilterEstimate {
|
|
|
|
return (FilterEstimate)(v3)
|
2020-09-19 03:46:03 +00:00
|
|
|
}
|
2020-09-24 00:40:29 +00:00
|
|
|
|
|
|
|
type ActorStateLoader func(store adt.Store, root cid.Cid) (cbor.Marshaler, error)
|
|
|
|
|
|
|
|
var ActorStateLoaders = make(map[cid.Cid]ActorStateLoader)
|
|
|
|
|
|
|
|
func RegisterActorState(code cid.Cid, loader ActorStateLoader) {
|
|
|
|
ActorStateLoaders[code] = loader
|
|
|
|
}
|
|
|
|
|
|
|
|
func Load(store adt.Store, act *types.Actor) (cbor.Marshaler, error) {
|
|
|
|
loader, found := ActorStateLoaders[act.Code]
|
|
|
|
if !found {
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
return loader(store, act.Head)
|
|
|
|
}
|
2020-09-28 19:48:08 +00:00
|
|
|
|
|
|
|
func ActorNameByCode(c cid.Cid) string {
|
|
|
|
switch {
|
|
|
|
case builtin0.IsBuiltinActor(c):
|
|
|
|
return builtin0.ActorNameByCode(c)
|
2020-09-28 20:13:18 +00:00
|
|
|
case builtin2.IsBuiltinActor(c):
|
|
|
|
return builtin2.ActorNameByCode(c)
|
2021-01-18 23:15:18 +00:00
|
|
|
case builtin3.IsBuiltinActor(c):
|
|
|
|
return builtin3.ActorNameByCode(c)
|
2020-09-28 19:48:08 +00:00
|
|
|
default:
|
|
|
|
return "<unknown>"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsBuiltinActor(c cid.Cid) bool {
|
2021-01-18 23:15:18 +00:00
|
|
|
return builtin0.IsBuiltinActor(c) ||
|
|
|
|
builtin2.IsBuiltinActor(c) ||
|
|
|
|
builtin3.IsBuiltinActor(c)
|
2020-09-28 19:48:08 +00:00
|
|
|
}
|
2020-09-29 04:24:38 +00:00
|
|
|
|
|
|
|
func IsAccountActor(c cid.Cid) bool {
|
2021-01-18 23:15:18 +00:00
|
|
|
return c == builtin0.AccountActorCodeID ||
|
|
|
|
c == builtin2.AccountActorCodeID ||
|
|
|
|
c == builtin3.AccountActorCodeID
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsStorageMinerActor(c cid.Cid) bool {
|
2021-01-18 23:15:18 +00:00
|
|
|
return c == builtin0.StorageMinerActorCodeID ||
|
|
|
|
c == builtin2.StorageMinerActorCodeID ||
|
|
|
|
c == builtin3.StorageMinerActorCodeID
|
2020-09-29 04:24:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func IsMultisigActor(c cid.Cid) bool {
|
2021-01-18 23:15:18 +00:00
|
|
|
return c == builtin0.MultisigActorCodeID ||
|
|
|
|
c == builtin2.MultisigActorCodeID ||
|
|
|
|
c == builtin3.MultisigActorCodeID
|
2020-09-29 04:24:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsPaymentChannelActor(c cid.Cid) bool {
|
2021-01-18 23:15:18 +00:00
|
|
|
return c == builtin0.PaymentChannelActorCodeID ||
|
|
|
|
c == builtin2.PaymentChannelActorCodeID ||
|
|
|
|
c == builtin3.PaymentChannelActorCodeID
|
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
|
|
|
|
}
|