2019-06-25 11:42:17 +00:00
|
|
|
package api
|
|
|
|
|
2019-06-29 09:19:06 +00:00
|
|
|
import (
|
|
|
|
"context"
|
2019-12-04 04:59:41 +00:00
|
|
|
"time"
|
2019-11-06 19:44:28 +00:00
|
|
|
|
2020-02-04 02:45:20 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-02-04 06:17:18 +00:00
|
|
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
2020-02-08 02:18:32 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi/big"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/market"
|
2020-02-12 23:52:36 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2020-02-25 21:09:22 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/paych"
|
2020-02-12 23:52:36 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/crypto"
|
2019-08-26 10:04:57 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/ipfs/go-filestore"
|
2019-07-24 00:09:34 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2020-02-27 21:45:31 +00:00
|
|
|
xerrors "golang.org/x/xerrors"
|
2019-07-24 00:09:34 +00:00
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2019-06-29 09:19:06 +00:00
|
|
|
)
|
|
|
|
|
2019-07-24 00:09:34 +00:00
|
|
|
// FullNode API is a low-level interface to the Filecoin network full node
|
|
|
|
type FullNode interface {
|
|
|
|
Common
|
|
|
|
|
2020-02-08 02:18:32 +00:00
|
|
|
// TODO: TipSetKeys
|
|
|
|
|
2019-07-24 00:09:34 +00:00
|
|
|
// chain
|
2019-09-18 11:01:52 +00:00
|
|
|
|
|
|
|
// ChainNotify returns channel with chain head updates
|
|
|
|
// First message is guaranteed to be of len == 1, and type == 'current'
|
|
|
|
ChainNotify(context.Context) (<-chan []*store.HeadChange, error)
|
2019-10-14 14:21:37 +00:00
|
|
|
ChainHead(context.Context) (*types.TipSet, error)
|
2020-02-23 20:00:47 +00:00
|
|
|
ChainGetRandomness(ctx context.Context, tsk types.TipSetKey, personalization crypto.DomainSeparationTag, randEpoch abi.ChainEpoch, entropy []byte) (abi.Randomness, error)
|
2019-07-25 22:15:03 +00:00
|
|
|
ChainGetBlock(context.Context, cid.Cid) (*types.BlockHeader, error)
|
2019-11-08 05:36:50 +00:00
|
|
|
ChainGetTipSet(context.Context, types.TipSetKey) (*types.TipSet, error)
|
2019-08-02 03:51:34 +00:00
|
|
|
ChainGetBlockMessages(context.Context, cid.Cid) (*BlockMessages, error)
|
2019-10-03 20:22:21 +00:00
|
|
|
ChainGetParentReceipts(context.Context, cid.Cid) ([]*types.MessageReceipt, error)
|
2019-10-06 00:37:28 +00:00
|
|
|
ChainGetParentMessages(context.Context, cid.Cid) ([]Message, error)
|
2020-02-24 17:32:02 +00:00
|
|
|
ChainGetTipSetByHeight(context.Context, abi.ChainEpoch, types.TipSetKey) (*types.TipSet, error)
|
2019-10-01 16:28:07 +00:00
|
|
|
ChainReadObj(context.Context, cid.Cid) ([]byte, error)
|
2020-02-04 02:45:20 +00:00
|
|
|
ChainHasObj(context.Context, cid.Cid) (bool, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
ChainSetHead(context.Context, types.TipSetKey) error
|
2019-10-11 02:14:22 +00:00
|
|
|
ChainGetGenesis(context.Context) (*types.TipSet, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
ChainTipSetWeight(context.Context, types.TipSetKey) (types.BigInt, error)
|
2019-12-19 15:50:18 +00:00
|
|
|
ChainGetNode(ctx context.Context, p string) (interface{}, error)
|
2020-01-07 19:03:11 +00:00
|
|
|
ChainGetMessage(context.Context, cid.Cid) (*types.Message, error)
|
2020-01-15 00:24:08 +00:00
|
|
|
ChainGetPath(ctx context.Context, from types.TipSetKey, to types.TipSetKey) ([]*store.HeadChange, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
ChainExport(context.Context, types.TipSetKey) (<-chan []byte, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
2019-09-30 21:06:47 +00:00
|
|
|
// syncer
|
|
|
|
SyncState(context.Context) (*SyncState, error)
|
2019-10-14 14:21:37 +00:00
|
|
|
SyncSubmitBlock(ctx context.Context, blk *types.BlockMsg) error
|
2019-11-18 21:39:07 +00:00
|
|
|
SyncIncomingBlocks(ctx context.Context) (<-chan *types.BlockHeader, error)
|
2019-12-21 06:10:40 +00:00
|
|
|
SyncMarkBad(ctx context.Context, bcid cid.Cid) error
|
2020-02-12 07:44:55 +00:00
|
|
|
SyncCheckBad(ctx context.Context, bcid cid.Cid) (string, error)
|
2019-09-30 21:06:47 +00:00
|
|
|
|
2019-06-25 11:42:17 +00:00
|
|
|
// messages
|
2020-02-11 23:29:45 +00:00
|
|
|
MpoolPending(context.Context, types.TipSetKey) ([]*types.SignedMessage, error)
|
2020-01-07 16:44:55 +00:00
|
|
|
MpoolPush(context.Context, *types.SignedMessage) (cid.Cid, error)
|
2019-09-17 08:15:26 +00:00
|
|
|
MpoolPushMessage(context.Context, *types.Message) (*types.SignedMessage, error) // get nonce, sign, push
|
2019-07-31 07:13:49 +00:00
|
|
|
MpoolGetNonce(context.Context, address.Address) (uint64, error)
|
2019-11-17 07:44:06 +00:00
|
|
|
MpoolSub(context.Context) (<-chan MpoolUpdate, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
2019-07-24 00:09:34 +00:00
|
|
|
// FullNodeStruct
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// miner
|
|
|
|
|
2020-02-24 17:32:02 +00:00
|
|
|
MinerCreateBlock(context.Context, address.Address, types.TipSetKey, *types.Ticket, *types.EPostProof, []*types.SignedMessage, abi.ChainEpoch, uint64) (*types.BlockMsg, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// // UX ?
|
|
|
|
|
|
|
|
// wallet
|
|
|
|
|
2020-02-12 23:52:36 +00:00
|
|
|
WalletNew(context.Context, crypto.SigType) (address.Address, error)
|
2019-08-08 17:29:23 +00:00
|
|
|
WalletHas(context.Context, address.Address) (bool, error)
|
2019-07-13 00:41:32 +00:00
|
|
|
WalletList(context.Context) ([]address.Address, error)
|
2019-07-18 20:26:04 +00:00
|
|
|
WalletBalance(context.Context, address.Address) (types.BigInt, error)
|
2020-02-12 23:52:36 +00:00
|
|
|
WalletSign(context.Context, address.Address, []byte) (*crypto.Signature, error)
|
2019-08-09 15:59:12 +00:00
|
|
|
WalletSignMessage(context.Context, address.Address, *types.Message) (*types.SignedMessage, error)
|
2019-07-17 03:05:55 +00:00
|
|
|
WalletDefaultAddress(context.Context) (address.Address, error)
|
2019-10-17 10:18:40 +00:00
|
|
|
WalletSetDefault(context.Context, address.Address) error
|
2019-10-08 09:46:36 +00:00
|
|
|
WalletExport(context.Context, address.Address) (*types.KeyInfo, error)
|
|
|
|
WalletImport(context.Context, *types.KeyInfo) (address.Address, error)
|
2019-07-17 03:05:55 +00:00
|
|
|
|
2019-06-25 11:42:17 +00:00
|
|
|
// Other
|
|
|
|
|
2019-07-12 09:59:18 +00:00
|
|
|
// ClientImport imports file under the specified path into filestore
|
|
|
|
ClientImport(ctx context.Context, path string) (cid.Cid, error)
|
2019-12-13 19:15:56 +00:00
|
|
|
ClientStartDeal(ctx context.Context, data cid.Cid, addr address.Address, miner address.Address, epochPrice types.BigInt, blocksDuration uint64) (*cid.Cid, error)
|
2019-11-06 19:44:28 +00:00
|
|
|
ClientGetDealInfo(context.Context, cid.Cid) (*DealInfo, error)
|
2019-09-10 14:13:24 +00:00
|
|
|
ClientListDeals(ctx context.Context) ([]DealInfo, error)
|
2019-08-26 13:45:36 +00:00
|
|
|
ClientHasLocal(ctx context.Context, root cid.Cid) (bool, error)
|
2019-11-07 12:06:32 +00:00
|
|
|
ClientFindData(ctx context.Context, root cid.Cid) ([]QueryOffer, error)
|
2019-08-27 22:10:23 +00:00
|
|
|
ClientRetrieve(ctx context.Context, order RetrievalOrder, path string) error
|
2020-02-25 21:09:22 +00:00
|
|
|
ClientQueryAsk(ctx context.Context, p peer.ID, miner address.Address) (*storagemarket.SignedStorageAsk, error)
|
2019-08-01 17:12:41 +00:00
|
|
|
|
2019-07-12 09:59:18 +00:00
|
|
|
// ClientUnimport removes references to the specified file from filestore
|
|
|
|
//ClientUnimport(path string)
|
|
|
|
|
|
|
|
// ClientListImports lists imported files and their root CIDs
|
2019-07-12 10:44:01 +00:00
|
|
|
ClientListImports(ctx context.Context) ([]Import, error)
|
2019-07-12 09:59:18 +00:00
|
|
|
|
|
|
|
//ClientListAsks() []Ask
|
2019-08-07 06:35:57 +00:00
|
|
|
|
2019-09-18 00:08:49 +00:00
|
|
|
// if tipset is nil, we'll use heaviest
|
2020-02-11 23:29:45 +00:00
|
|
|
StateCall(context.Context, *types.Message, types.TipSetKey) (*MethodCall, error)
|
|
|
|
StateReplay(context.Context, types.TipSetKey, cid.Cid) (*ReplayResults, error)
|
|
|
|
StateGetActor(ctx context.Context, actor address.Address, tsk types.TipSetKey) (*types.Actor, error)
|
|
|
|
StateReadState(ctx context.Context, act *types.Actor, tsk types.TipSetKey) (*ActorState, error)
|
2020-02-24 17:32:02 +00:00
|
|
|
StateListMessages(ctx context.Context, match *types.Message, tsk types.TipSetKey, toht abi.ChainEpoch) ([]cid.Cid, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
|
|
|
|
StateMinerSectors(context.Context, address.Address, types.TipSetKey) ([]*ChainSectorInfo, error)
|
|
|
|
StateMinerProvingSet(context.Context, address.Address, types.TipSetKey) ([]*ChainSectorInfo, error)
|
|
|
|
StateMinerPower(context.Context, address.Address, types.TipSetKey) (MinerPower, error)
|
|
|
|
StateMinerWorker(context.Context, address.Address, types.TipSetKey) (address.Address, error)
|
|
|
|
StateMinerPeerID(ctx context.Context, m address.Address, tsk types.TipSetKey) (peer.ID, error)
|
2020-02-24 17:32:02 +00:00
|
|
|
StateMinerPostState(ctx context.Context, actor address.Address, tsk types.TipSetKey) (*miner.PoStState, error)
|
|
|
|
StateMinerSectorSize(context.Context, address.Address, types.TipSetKey) (abi.SectorSize, error)
|
|
|
|
StateMinerFaults(context.Context, address.Address, types.TipSetKey) ([]abi.SectorNumber, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
StatePledgeCollateral(context.Context, types.TipSetKey) (types.BigInt, error)
|
2019-10-08 05:51:34 +00:00
|
|
|
StateWaitMsg(context.Context, cid.Cid) (*MsgWait, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
StateListMiners(context.Context, types.TipSetKey) ([]address.Address, error)
|
|
|
|
StateListActors(context.Context, types.TipSetKey) ([]address.Address, error)
|
2020-02-24 17:32:02 +00:00
|
|
|
StateMarketBalance(context.Context, address.Address, types.TipSetKey) (MarketBalance, error)
|
|
|
|
StateMarketParticipants(context.Context, types.TipSetKey) (map[string]MarketBalance, error)
|
|
|
|
StateMarketDeals(context.Context, types.TipSetKey) (map[string]MarketDeal, error)
|
|
|
|
StateMarketStorageDeal(context.Context, abi.DealID, types.TipSetKey) (*MarketDeal, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
StateLookupID(context.Context, address.Address, types.TipSetKey) (address.Address, error)
|
2019-11-15 18:38:09 +00:00
|
|
|
StateChangedActors(context.Context, cid.Cid, cid.Cid) (map[string]types.Actor, error)
|
2020-02-11 23:29:45 +00:00
|
|
|
StateGetReceipt(context.Context, cid.Cid, types.TipSetKey) (*types.MessageReceipt, error)
|
|
|
|
StateMinerSectorCount(context.Context, address.Address, types.TipSetKey) (MinerSectors, error)
|
2020-02-24 17:32:02 +00:00
|
|
|
StateCompute(context.Context, abi.ChainEpoch, []*types.Message, types.TipSetKey) (cid.Cid, error)
|
2019-08-09 21:41:50 +00:00
|
|
|
|
2020-02-11 23:29:45 +00:00
|
|
|
MsigGetAvailableBalance(context.Context, address.Address, types.TipSetKey) (types.BigInt, error)
|
2020-01-30 01:23:16 +00:00
|
|
|
|
2019-11-08 17:15:38 +00:00
|
|
|
MarketEnsureAvailable(context.Context, address.Address, types.BigInt) error
|
|
|
|
// MarketFreeBalance
|
|
|
|
|
2019-09-16 13:46:05 +00:00
|
|
|
PaychGet(ctx context.Context, from, to address.Address, ensureFunds types.BigInt) (*ChannelInfo, error)
|
2019-08-09 21:41:50 +00:00
|
|
|
PaychList(context.Context) ([]address.Address, error)
|
|
|
|
PaychStatus(context.Context, address.Address) (*PaychStatus, error)
|
2019-08-13 04:27:54 +00:00
|
|
|
PaychClose(context.Context, address.Address) (cid.Cid, error)
|
2020-02-21 17:26:44 +00:00
|
|
|
PaychAllocateLane(ctx context.Context, ch address.Address) (uint64, error)
|
2019-09-24 21:13:47 +00:00
|
|
|
PaychNewPayment(ctx context.Context, from, to address.Address, vouchers []VoucherSpec) (*PaymentInfo, error)
|
2020-02-25 21:09:22 +00:00
|
|
|
PaychVoucherCheckValid(context.Context, address.Address, *paych.SignedVoucher) error
|
|
|
|
PaychVoucherCheckSpendable(context.Context, address.Address, *paych.SignedVoucher, []byte, []byte) (bool, error)
|
|
|
|
PaychVoucherCreate(context.Context, address.Address, types.BigInt, uint64) (*paych.SignedVoucher, error)
|
|
|
|
PaychVoucherAdd(context.Context, address.Address, *paych.SignedVoucher, []byte, types.BigInt) (types.BigInt, error)
|
|
|
|
PaychVoucherList(context.Context, address.Address) ([]*paych.SignedVoucher, error)
|
|
|
|
PaychVoucherSubmit(context.Context, address.Address, *paych.SignedVoucher) (cid.Cid, error)
|
2019-07-24 00:09:34 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 23:31:59 +00:00
|
|
|
type MinerSectors struct {
|
|
|
|
Pset uint64
|
|
|
|
Sset uint64
|
|
|
|
}
|
|
|
|
|
2019-08-09 21:41:50 +00:00
|
|
|
type Import struct {
|
|
|
|
Status filestore.Status
|
|
|
|
Key cid.Cid
|
|
|
|
FilePath string
|
|
|
|
Size uint64
|
|
|
|
}
|
|
|
|
|
2019-09-10 14:13:24 +00:00
|
|
|
type DealInfo struct {
|
|
|
|
ProposalCid cid.Cid
|
2020-01-24 21:44:28 +00:00
|
|
|
State storagemarket.StorageDealStatus
|
2019-10-22 10:09:36 +00:00
|
|
|
Provider address.Address
|
2019-09-10 14:48:54 +00:00
|
|
|
|
2019-10-22 10:09:36 +00:00
|
|
|
PieceRef []byte // cid bytes
|
2019-09-10 14:48:54 +00:00
|
|
|
Size uint64
|
|
|
|
|
2019-10-29 10:01:18 +00:00
|
|
|
PricePerEpoch types.BigInt
|
|
|
|
Duration uint64
|
2019-09-10 14:13:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 21:41:50 +00:00
|
|
|
type MsgWait struct {
|
|
|
|
Receipt types.MessageReceipt
|
2019-10-04 20:58:24 +00:00
|
|
|
TipSet *types.TipSet
|
2019-08-09 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BlockMessages struct {
|
|
|
|
BlsMessages []*types.Message
|
|
|
|
SecpkMessages []*types.SignedMessage
|
2019-09-23 11:15:16 +00:00
|
|
|
|
|
|
|
Cids []cid.Cid
|
2019-08-09 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
2019-10-06 00:37:28 +00:00
|
|
|
type Message struct {
|
|
|
|
Cid cid.Cid
|
|
|
|
Message *types.Message
|
|
|
|
}
|
|
|
|
|
2019-11-08 18:15:13 +00:00
|
|
|
type ChainSectorInfo struct {
|
2020-02-19 19:26:11 +00:00
|
|
|
Info miner.SectorOnChainInfo
|
2020-02-20 08:37:10 +00:00
|
|
|
ID abi.SectorNumber
|
2019-08-09 21:41:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ActorState struct {
|
|
|
|
Balance types.BigInt
|
|
|
|
State interface{}
|
|
|
|
}
|
|
|
|
|
2019-09-06 22:39:47 +00:00
|
|
|
type PCHDir int
|
|
|
|
|
|
|
|
const (
|
|
|
|
PCHUndef PCHDir = iota
|
|
|
|
PCHInbound
|
|
|
|
PCHOutbound
|
|
|
|
)
|
|
|
|
|
2019-09-09 16:02:57 +00:00
|
|
|
type PaychStatus struct {
|
2019-09-06 22:39:47 +00:00
|
|
|
ControlAddr address.Address
|
|
|
|
Direction PCHDir
|
|
|
|
}
|
2019-08-21 16:31:14 +00:00
|
|
|
|
2019-09-13 14:11:40 +00:00
|
|
|
type ChannelInfo struct {
|
|
|
|
Channel address.Address
|
|
|
|
ChannelMessage cid.Cid
|
|
|
|
}
|
|
|
|
|
2019-09-10 13:43:01 +00:00
|
|
|
type PaymentInfo struct {
|
2019-09-13 14:11:40 +00:00
|
|
|
Channel address.Address
|
|
|
|
ChannelMessage *cid.Cid
|
2020-02-25 21:09:22 +00:00
|
|
|
Vouchers []*paych.SignedVoucher
|
2019-09-24 21:13:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type VoucherSpec struct {
|
2020-02-27 21:45:31 +00:00
|
|
|
Amount types.BigInt
|
|
|
|
TimeLockMin abi.ChainEpoch
|
|
|
|
TimeLockMax abi.ChainEpoch
|
|
|
|
MinSettle abi.ChainEpoch
|
2019-09-24 21:13:47 +00:00
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
Extra *paych.ModVerifyParams
|
2019-09-10 13:43:01 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 16:31:14 +00:00
|
|
|
type MinerPower struct {
|
|
|
|
MinerPower types.BigInt
|
|
|
|
TotalPower types.BigInt
|
|
|
|
}
|
2019-08-26 10:04:57 +00:00
|
|
|
|
2019-08-26 18:23:11 +00:00
|
|
|
type QueryOffer struct {
|
2019-08-26 13:45:36 +00:00
|
|
|
Err string
|
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
Root cid.Cid
|
|
|
|
|
2020-01-25 00:32:17 +00:00
|
|
|
Size uint64
|
|
|
|
MinPrice types.BigInt
|
|
|
|
PaymentInterval uint64
|
|
|
|
PaymentIntervalIncrease uint64
|
|
|
|
Miner address.Address
|
|
|
|
MinerPeerID peer.ID
|
2019-08-26 13:45:36 +00:00
|
|
|
}
|
2019-08-27 18:45:21 +00:00
|
|
|
|
2019-12-01 21:52:24 +00:00
|
|
|
func (o *QueryOffer) Order(client address.Address) RetrievalOrder {
|
2019-08-27 18:45:21 +00:00
|
|
|
return RetrievalOrder{
|
2020-01-25 00:32:17 +00:00
|
|
|
Root: o.Root,
|
|
|
|
Size: o.Size,
|
|
|
|
Total: o.MinPrice,
|
|
|
|
PaymentInterval: o.PaymentInterval,
|
|
|
|
PaymentIntervalIncrease: o.PaymentIntervalIncrease,
|
|
|
|
Client: client,
|
2019-12-01 21:52:24 +00:00
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
Miner: o.Miner,
|
|
|
|
MinerPeerID: o.MinerPeerID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 02:18:32 +00:00
|
|
|
type MarketBalance struct {
|
|
|
|
Escrow big.Int
|
|
|
|
Locked big.Int
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
type MarketDeal struct {
|
|
|
|
Proposal market.DealProposal
|
|
|
|
State market.DealState
|
|
|
|
}
|
|
|
|
|
2019-08-27 18:45:21 +00:00
|
|
|
type RetrievalOrder struct {
|
2019-08-29 15:09:34 +00:00
|
|
|
// TODO: make this less unixfs specific
|
2019-08-27 18:45:21 +00:00
|
|
|
Root cid.Cid
|
|
|
|
Size uint64
|
|
|
|
// TODO: support offset
|
2020-01-25 00:32:17 +00:00
|
|
|
Total types.BigInt
|
|
|
|
PaymentInterval uint64
|
|
|
|
PaymentIntervalIncrease uint64
|
|
|
|
Client address.Address
|
|
|
|
Miner address.Address
|
|
|
|
MinerPeerID peer.ID
|
2019-08-27 18:45:21 +00:00
|
|
|
}
|
2019-09-19 20:25:18 +00:00
|
|
|
|
|
|
|
type ReplayResults struct {
|
|
|
|
Msg *types.Message
|
|
|
|
Receipt *types.MessageReceipt
|
|
|
|
Error string
|
|
|
|
}
|
2019-09-30 21:06:47 +00:00
|
|
|
|
2020-01-15 21:24:01 +00:00
|
|
|
type MethodCall struct {
|
|
|
|
types.MessageReceipt
|
|
|
|
Error string
|
|
|
|
}
|
|
|
|
|
2019-11-16 01:05:16 +00:00
|
|
|
type ActiveSync struct {
|
2019-09-30 21:06:47 +00:00
|
|
|
Base *types.TipSet
|
|
|
|
Target *types.TipSet
|
|
|
|
|
2019-09-30 22:29:40 +00:00
|
|
|
Stage SyncStateStage
|
2020-02-08 02:18:32 +00:00
|
|
|
Height abi.ChainEpoch
|
2019-12-04 04:59:41 +00:00
|
|
|
|
|
|
|
Start time.Time
|
|
|
|
End time.Time
|
|
|
|
Message string
|
2019-09-30 21:06:47 +00:00
|
|
|
}
|
2019-09-30 22:29:40 +00:00
|
|
|
|
2019-11-16 01:05:16 +00:00
|
|
|
type SyncState struct {
|
|
|
|
ActiveSyncs []ActiveSync
|
|
|
|
}
|
|
|
|
|
2019-09-30 22:29:40 +00:00
|
|
|
type SyncStateStage int
|
|
|
|
|
|
|
|
const (
|
|
|
|
StageIdle = SyncStateStage(iota)
|
|
|
|
StageHeaders
|
|
|
|
StagePersistHeaders
|
|
|
|
StageMessages
|
|
|
|
StageSyncComplete
|
2019-12-04 03:56:29 +00:00
|
|
|
StageSyncErrored
|
2019-09-30 22:29:40 +00:00
|
|
|
)
|
2019-11-17 07:44:06 +00:00
|
|
|
|
|
|
|
type MpoolChange int
|
|
|
|
|
|
|
|
const (
|
|
|
|
MpoolAdd MpoolChange = iota
|
|
|
|
MpoolRemove
|
|
|
|
)
|
|
|
|
|
|
|
|
type MpoolUpdate struct {
|
2019-11-18 21:39:07 +00:00
|
|
|
Type MpoolChange
|
2019-11-17 07:44:06 +00:00
|
|
|
Message *types.SignedMessage
|
|
|
|
}
|
2020-02-27 21:45:31 +00:00
|
|
|
|
|
|
|
func ProofTypeFromSectorSize(ssize abi.SectorSize) (abi.RegisteredProof, abi.RegisteredProof, error) {
|
|
|
|
switch ssize {
|
|
|
|
case 2 << 10:
|
|
|
|
return abi.RegisteredProof_StackedDRG2KiBPoSt, abi.RegisteredProof_StackedDRG2KiBSeal, nil
|
|
|
|
case 8 << 20:
|
|
|
|
return abi.RegisteredProof_StackedDRG8MiBPoSt, abi.RegisteredProof_StackedDRG8MiBSeal, nil
|
|
|
|
case 512 << 20:
|
|
|
|
return abi.RegisteredProof_StackedDRG512MiBPoSt, abi.RegisteredProof_StackedDRG512MiBSeal, nil
|
|
|
|
case 32 << 30:
|
|
|
|
return abi.RegisteredProof_StackedDRG32GiBPoSt, abi.RegisteredProof_StackedDRG32GiBSeal, nil
|
|
|
|
default:
|
|
|
|
return 0, 0, xerrors.Errorf("unsupported sector size for miner: %v", ssize)
|
|
|
|
}
|
|
|
|
}
|