lotus/genesis/types.go
2020-02-12 22:41:59 +01:00

68 lines
1.1 KiB
Go

package genesis
import (
"encoding/json"
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/specs-actors/actors/abi"
"github.com/filecoin-project/specs-actors/actors/builtin/market"
"github.com/libp2p/go-libp2p-core/peer"
)
type ActorType string
const (
TAccount ActorType = "account"
TMultisig ActorType = "multisig"
)
type PreSeal struct {
CommR [32]byte
CommD [32]byte
SectorID abi.SectorNumber
Deal market.DealProposal
}
type Miner struct {
Owner address.Address
Worker address.Address
PeerId peer.ID
MarketBalance abi.TokenAmount
PowerBalance abi.TokenAmount
SectorSize abi.SectorSize
Sectors []*PreSeal
}
type AccountMeta struct {
Owner address.Address // bls / secpk
}
func (am *AccountMeta) ActorMeta() json.RawMessage {
out, err := json.Marshal(am)
if err != nil {
panic(err)
}
return out
}
type MultisigMeta struct {
// TODO
}
type Actor struct {
Type ActorType
Balance abi.TokenAmount
Meta json.RawMessage
}
type Template struct {
Accounts []Actor
Miners []Miner
NetworkName string
Timestamp uint64
}