2021-03-23 15:40:22 +00:00
|
|
|
package v0api
|
|
|
|
|
|
|
|
import (
|
2021-04-02 11:52:24 +00:00
|
|
|
"context"
|
|
|
|
|
2021-09-12 02:24:53 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/crypto"
|
|
|
|
|
2021-03-27 14:35:46 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2021-04-02 11:52:24 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2021-03-27 14:35:46 +00:00
|
|
|
"golang.org/x/xerrors"
|
2021-04-02 11:52:24 +00:00
|
|
|
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2021-03-23 15:40:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/api/v1api"
|
|
|
|
)
|
|
|
|
|
2021-03-23 16:20:56 +00:00
|
|
|
type WrapperV1Full struct {
|
2021-03-23 15:40:22 +00:00
|
|
|
v1api.FullNode
|
|
|
|
}
|
|
|
|
|
2021-04-02 11:52:24 +00:00
|
|
|
func (w *WrapperV1Full) StateSearchMsg(ctx context.Context, msg cid.Cid) (*api.MsgLookup, error) {
|
2021-04-05 19:34:03 +00:00
|
|
|
return w.FullNode.StateSearchMsg(ctx, types.EmptyTSK, msg, api.LookbackNoLimit, true)
|
2021-04-02 11:52:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) StateSearchMsgLimited(ctx context.Context, msg cid.Cid, limit abi.ChainEpoch) (*api.MsgLookup, error) {
|
|
|
|
return w.FullNode.StateSearchMsg(ctx, types.EmptyTSK, msg, limit, true)
|
|
|
|
}
|
2021-03-23 15:40:22 +00:00
|
|
|
|
2021-04-02 11:52:24 +00:00
|
|
|
func (w *WrapperV1Full) StateWaitMsg(ctx context.Context, msg cid.Cid, confidence uint64) (*api.MsgLookup, error) {
|
2021-04-05 19:34:03 +00:00
|
|
|
return w.FullNode.StateWaitMsg(ctx, msg, confidence, api.LookbackNoLimit, true)
|
2021-03-23 15:40:22 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 11:52:24 +00:00
|
|
|
func (w *WrapperV1Full) StateWaitMsgLimited(ctx context.Context, msg cid.Cid, confidence uint64, limit abi.ChainEpoch) (*api.MsgLookup, error) {
|
|
|
|
return w.FullNode.StateWaitMsg(ctx, msg, confidence, limit, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) StateGetReceipt(ctx context.Context, msg cid.Cid, from types.TipSetKey) (*types.MessageReceipt, error) {
|
2021-04-05 19:34:03 +00:00
|
|
|
ml, err := w.FullNode.StateSearchMsg(ctx, from, msg, api.LookbackNoLimit, true)
|
2021-03-23 15:40:22 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-04-02 11:52:24 +00:00
|
|
|
if ml == nil {
|
2021-03-23 15:40:22 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-04-02 11:52:24 +00:00
|
|
|
return &ml.Receipt, nil
|
|
|
|
}
|
2021-03-23 15:40:22 +00:00
|
|
|
|
2021-04-15 22:19:26 +00:00
|
|
|
func (w *WrapperV1Full) Version(ctx context.Context) (api.APIVersion, error) {
|
|
|
|
ver, err := w.FullNode.Version(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return api.APIVersion{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ver.APIVersion = api.FullAPIVersion0
|
|
|
|
|
|
|
|
return ver, nil
|
|
|
|
}
|
|
|
|
|
2021-03-27 14:35:46 +00:00
|
|
|
func (w *WrapperV1Full) executePrototype(ctx context.Context, p *api.MessagePrototype) (cid.Cid, error) {
|
|
|
|
sm, err := w.FullNode.MpoolPushMessage(ctx, &p.Message, nil)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("pushing message: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sm.Cid(), nil
|
|
|
|
}
|
|
|
|
func (w *WrapperV1Full) MsigCreate(ctx context.Context, req uint64, addrs []address.Address, duration abi.ChainEpoch, val types.BigInt, src address.Address, gp types.BigInt) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigCreate(ctx, req, addrs, duration, val, src, gp)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigPropose(ctx context.Context, msig address.Address, to address.Address, amt types.BigInt, src address.Address, method uint64, params []byte) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigPropose(ctx, msig, to, amt, src, method, params)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
func (w *WrapperV1Full) MsigApprove(ctx context.Context, msig address.Address, txID uint64, src address.Address) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigApprove(ctx, msig, txID, src)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigApproveTxnHash(ctx context.Context, msig address.Address, txID uint64, proposer address.Address, to address.Address, amt types.BigInt, src address.Address, method uint64, params []byte) (cid.Cid, error) {
|
|
|
|
p, err := w.FullNode.MsigApproveTxnHash(ctx, msig, txID, proposer, to, amt, src, method, params)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigCancel(ctx context.Context, msig address.Address, txID uint64, to address.Address, amt types.BigInt, src address.Address, method uint64, params []byte) (cid.Cid, error) {
|
|
|
|
p, err := w.FullNode.MsigCancel(ctx, msig, txID, to, amt, src, method, params)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigAddPropose(ctx context.Context, msig address.Address, src address.Address, newAdd address.Address, inc bool) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigAddPropose(ctx, msig, src, newAdd, inc)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigAddApprove(ctx context.Context, msig address.Address, src address.Address, txID uint64, proposer address.Address, newAdd address.Address, inc bool) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigAddApprove(ctx, msig, src, txID, proposer, newAdd, inc)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigAddCancel(ctx context.Context, msig address.Address, src address.Address, txID uint64, newAdd address.Address, inc bool) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigAddCancel(ctx, msig, src, txID, newAdd, inc)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigSwapPropose(ctx context.Context, msig address.Address, src address.Address, oldAdd address.Address, newAdd address.Address) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigSwapPropose(ctx, msig, src, oldAdd, newAdd)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigSwapApprove(ctx context.Context, msig address.Address, src address.Address, txID uint64, proposer address.Address, oldAdd address.Address, newAdd address.Address) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigSwapApprove(ctx, msig, src, txID, proposer, oldAdd, newAdd)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigSwapCancel(ctx context.Context, msig address.Address, src address.Address, txID uint64, oldAdd address.Address, newAdd address.Address) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigSwapCancel(ctx, msig, src, txID, oldAdd, newAdd)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) MsigRemoveSigner(ctx context.Context, msig address.Address, proposer address.Address, toRemove address.Address, decrease bool) (cid.Cid, error) {
|
|
|
|
|
|
|
|
p, err := w.FullNode.MsigRemoveSigner(ctx, msig, proposer, toRemove, decrease)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, xerrors.Errorf("creating prototype: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w.executePrototype(ctx, p)
|
|
|
|
}
|
|
|
|
|
2021-09-12 02:24:53 +00:00
|
|
|
func (w *WrapperV1Full) ChainGetRandomnessFromTickets(ctx context.Context, tsk types.TipSetKey, personalization crypto.DomainSeparationTag, randEpoch abi.ChainEpoch, entropy []byte) (abi.Randomness, error) {
|
|
|
|
return w.StateGetRandomnessFromTickets(ctx, personalization, randEpoch, entropy, tsk)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WrapperV1Full) ChainGetRandomnessFromBeacon(ctx context.Context, tsk types.TipSetKey, personalization crypto.DomainSeparationTag, randEpoch abi.ChainEpoch, entropy []byte) (abi.Randomness, error) {
|
|
|
|
return w.StateGetRandomnessFromBeacon(ctx, personalization, randEpoch, entropy, tsk)
|
|
|
|
}
|
|
|
|
|
2021-03-23 16:20:56 +00:00
|
|
|
var _ FullNode = &WrapperV1Full{}
|