-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6072 from filecoin-project/fix/gateway-api-getter
gateway: Fix api getter
- Loading branch information
Showing
5 changed files
with
373 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package v0api | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/ipfs/go-cid" | ||
|
||
"github.com/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-state-types/abi" | ||
"github.com/filecoin-project/go-state-types/dline" | ||
"github.com/filecoin-project/go-state-types/network" | ||
|
||
"github.com/filecoin-project/lotus/api" | ||
"github.com/filecoin-project/lotus/chain/actors/builtin/miner" | ||
"github.com/filecoin-project/lotus/chain/types" | ||
) | ||
|
||
type Gateway interface { | ||
ChainHasObj(context.Context, cid.Cid) (bool, error) | ||
ChainHead(ctx context.Context) (*types.TipSet, error) | ||
ChainGetBlockMessages(context.Context, cid.Cid) (*api.BlockMessages, error) | ||
ChainGetMessage(ctx context.Context, mc cid.Cid) (*types.Message, error) | ||
ChainGetTipSet(ctx context.Context, tsk types.TipSetKey) (*types.TipSet, error) | ||
ChainGetTipSetByHeight(ctx context.Context, h abi.ChainEpoch, tsk types.TipSetKey) (*types.TipSet, error) | ||
ChainNotify(context.Context) (<-chan []*api.HeadChange, error) | ||
ChainReadObj(context.Context, cid.Cid) ([]byte, error) | ||
GasEstimateMessageGas(ctx context.Context, msg *types.Message, spec *api.MessageSendSpec, tsk types.TipSetKey) (*types.Message, error) | ||
MpoolPush(ctx context.Context, sm *types.SignedMessage) (cid.Cid, error) | ||
MsigGetAvailableBalance(ctx context.Context, addr address.Address, tsk types.TipSetKey) (types.BigInt, error) | ||
MsigGetVested(ctx context.Context, addr address.Address, start types.TipSetKey, end types.TipSetKey) (types.BigInt, error) | ||
MsigGetPending(context.Context, address.Address, types.TipSetKey) ([]*api.MsigTransaction, error) | ||
StateAccountKey(ctx context.Context, addr address.Address, tsk types.TipSetKey) (address.Address, error) | ||
StateDealProviderCollateralBounds(ctx context.Context, size abi.PaddedPieceSize, verified bool, tsk types.TipSetKey) (api.DealCollateralBounds, error) | ||
StateGetActor(ctx context.Context, actor address.Address, ts types.TipSetKey) (*types.Actor, error) | ||
StateGetReceipt(context.Context, cid.Cid, types.TipSetKey) (*types.MessageReceipt, error) | ||
StateListMiners(ctx context.Context, tsk types.TipSetKey) ([]address.Address, error) | ||
StateLookupID(ctx context.Context, addr address.Address, tsk types.TipSetKey) (address.Address, error) | ||
StateMarketBalance(ctx context.Context, addr address.Address, tsk types.TipSetKey) (api.MarketBalance, error) | ||
StateMarketStorageDeal(ctx context.Context, dealId abi.DealID, tsk types.TipSetKey) (*api.MarketDeal, error) | ||
StateMinerInfo(ctx context.Context, actor address.Address, tsk types.TipSetKey) (miner.MinerInfo, error) | ||
StateMinerProvingDeadline(ctx context.Context, addr address.Address, tsk types.TipSetKey) (*dline.Info, error) | ||
StateMinerPower(context.Context, address.Address, types.TipSetKey) (*api.MinerPower, error) | ||
StateNetworkVersion(context.Context, types.TipSetKey) (network.Version, error) | ||
StateSearchMsg(ctx context.Context, msg cid.Cid) (*api.MsgLookup, error) | ||
StateSectorGetInfo(ctx context.Context, maddr address.Address, n abi.SectorNumber, tsk types.TipSetKey) (*miner.SectorOnChainInfo, error) | ||
StateVerifiedClientStatus(ctx context.Context, addr address.Address, tsk types.TipSetKey) (*abi.StoragePower, error) | ||
StateWaitMsg(ctx context.Context, msg cid.Cid, confidence uint64) (*api.MsgLookup, error) | ||
} | ||
|
||
var _ Gateway = *new(FullNode) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.