From 85ba845852526b2274cf7e0a9c9bb05d3f232073 Mon Sep 17 00:00:00 2001 From: Ales Dumikau Date: Wed, 27 Nov 2024 10:08:43 +0300 Subject: [PATCH 1/2] feat(gateway): add new method --- api/api_gateway.go | 7 + api/proxy_gen.go | 78 +++ api/v0api/gateway.go | 15 + api/v0api/proxy_gen.go | 78 +++ build/openrpc/full.json | 936 ++++++++++++++++++++++++++++++++++ build/openrpc/gateway.json | 998 +++++++++++++++++++++++++++++++++++++ build/openrpc/miner.json | 352 +++++++++++++ build/openrpc/worker.json | 148 ++++++ gateway/node.go | 3 + gateway/proxy_fil.go | 30 ++ 10 files changed, 2645 insertions(+) diff --git a/api/api_gateway.go b/api/api_gateway.go index 23a7c7a607c..2d01c766d35 100644 --- a/api/api_gateway.go +++ b/api/api_gateway.go @@ -7,6 +7,7 @@ import ( "github.com/ipfs/go-cid" "github.com/filecoin-project/go-address" + "github.com/filecoin-project/go-bitfield" "github.com/filecoin-project/go-jsonrpc" "github.com/filecoin-project/go-state-types/abi" verifregtypes "github.com/filecoin-project/go-state-types/builtin/v9/verifreg" @@ -34,6 +35,12 @@ import ( // * Generate openrpc blobs type Gateway interface { + ChainGetNode(ctx context.Context, p string) (*IpldObject, error) + StateMinerPartitions(ctx context.Context, m address.Address, dlIdx uint64, tsk types.TipSetKey) ([]Partition, error) + StateMinerSectors(context.Context, address.Address, *bitfield.BitField, types.TipSetKey) ([]*miner.SectorOnChainInfo, error) + StateMinerFaults(context.Context, address.Address, types.TipSetKey) (bitfield.BitField, error) + StateMinerAvailableBalance(context.Context, address.Address, types.TipSetKey) (types.BigInt, error) + StateMarketParticipants(context.Context, types.TipSetKey) (map[string]MarketBalance, error) MpoolPending(context.Context, types.TipSetKey) ([]*types.SignedMessage, error) ChainGetBlock(context.Context, cid.Cid) (*types.BlockHeader, error) MinerGetBaseInfo(context.Context, address.Address, abi.ChainEpoch, types.TipSetKey) (*MiningBaseInfo, error) diff --git a/api/proxy_gen.go b/api/proxy_gen.go index f8aa37f87ce..1d6f202d887 100644 --- a/api/proxy_gen.go +++ b/api/proxy_gen.go @@ -616,6 +616,8 @@ type GatewayMethods struct { ChainGetMessage func(p0 context.Context, p1 cid.Cid) (*types.Message, error) `` + ChainGetNode func(p0 context.Context, p1 string) (*IpldObject, error) `` + ChainGetParentMessages func(p0 context.Context, p1 cid.Cid) ([]Message, error) `` ChainGetParentReceipts func(p0 context.Context, p1 cid.Cid) ([]*types.MessageReceipt, error) `` @@ -780,18 +782,28 @@ type GatewayMethods struct { StateMarketBalance func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (MarketBalance, error) `` + StateMarketParticipants func(p0 context.Context, p1 types.TipSetKey) (map[string]MarketBalance, error) `` + StateMarketStorageDeal func(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*MarketDeal, error) `` + StateMinerAvailableBalance func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) `` + StateMinerDeadlines func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) ([]Deadline, error) `` + StateMinerFaults func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) `` + StateMinerInfo func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (MinerInfo, error) `` + StateMinerPartitions func(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]Partition, error) `` + StateMinerPower func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*MinerPower, error) `` StateMinerProvingDeadline func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*dline.Info, error) `` StateMinerSectorCount func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (MinerSectors, error) `` + StateMinerSectors func(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) `` + StateNetworkName func(p0 context.Context) (dtypes.NetworkName, error) `` StateNetworkVersion func(p0 context.Context, p1 types.TipSetKey) (apitypes.NetworkVersion, error) `` @@ -4044,6 +4056,17 @@ func (s *GatewayStub) ChainGetMessage(p0 context.Context, p1 cid.Cid) (*types.Me return nil, ErrNotSupported } +func (s *GatewayStruct) ChainGetNode(p0 context.Context, p1 string) (*IpldObject, error) { + if s.Internal.ChainGetNode == nil { + return nil, ErrNotSupported + } + return s.Internal.ChainGetNode(p0, p1) +} + +func (s *GatewayStub) ChainGetNode(p0 context.Context, p1 string) (*IpldObject, error) { + return nil, ErrNotSupported +} + func (s *GatewayStruct) ChainGetParentMessages(p0 context.Context, p1 cid.Cid) ([]Message, error) { if s.Internal.ChainGetParentMessages == nil { return *new([]Message), ErrNotSupported @@ -4946,6 +4969,17 @@ func (s *GatewayStub) StateMarketBalance(p0 context.Context, p1 address.Address, return *new(MarketBalance), ErrNotSupported } +func (s *GatewayStruct) StateMarketParticipants(p0 context.Context, p1 types.TipSetKey) (map[string]MarketBalance, error) { + if s.Internal.StateMarketParticipants == nil { + return *new(map[string]MarketBalance), ErrNotSupported + } + return s.Internal.StateMarketParticipants(p0, p1) +} + +func (s *GatewayStub) StateMarketParticipants(p0 context.Context, p1 types.TipSetKey) (map[string]MarketBalance, error) { + return *new(map[string]MarketBalance), ErrNotSupported +} + func (s *GatewayStruct) StateMarketStorageDeal(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*MarketDeal, error) { if s.Internal.StateMarketStorageDeal == nil { return nil, ErrNotSupported @@ -4957,6 +4991,17 @@ func (s *GatewayStub) StateMarketStorageDeal(p0 context.Context, p1 abi.DealID, return nil, ErrNotSupported } +func (s *GatewayStruct) StateMinerAvailableBalance(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) { + if s.Internal.StateMinerAvailableBalance == nil { + return *new(types.BigInt), ErrNotSupported + } + return s.Internal.StateMinerAvailableBalance(p0, p1, p2) +} + +func (s *GatewayStub) StateMinerAvailableBalance(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) { + return *new(types.BigInt), ErrNotSupported +} + func (s *GatewayStruct) StateMinerDeadlines(p0 context.Context, p1 address.Address, p2 types.TipSetKey) ([]Deadline, error) { if s.Internal.StateMinerDeadlines == nil { return *new([]Deadline), ErrNotSupported @@ -4968,6 +5013,17 @@ func (s *GatewayStub) StateMinerDeadlines(p0 context.Context, p1 address.Address return *new([]Deadline), ErrNotSupported } +func (s *GatewayStruct) StateMinerFaults(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) { + if s.Internal.StateMinerFaults == nil { + return *new(bitfield.BitField), ErrNotSupported + } + return s.Internal.StateMinerFaults(p0, p1, p2) +} + +func (s *GatewayStub) StateMinerFaults(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) { + return *new(bitfield.BitField), ErrNotSupported +} + func (s *GatewayStruct) StateMinerInfo(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (MinerInfo, error) { if s.Internal.StateMinerInfo == nil { return *new(MinerInfo), ErrNotSupported @@ -4979,6 +5035,17 @@ func (s *GatewayStub) StateMinerInfo(p0 context.Context, p1 address.Address, p2 return *new(MinerInfo), ErrNotSupported } +func (s *GatewayStruct) StateMinerPartitions(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]Partition, error) { + if s.Internal.StateMinerPartitions == nil { + return *new([]Partition), ErrNotSupported + } + return s.Internal.StateMinerPartitions(p0, p1, p2, p3) +} + +func (s *GatewayStub) StateMinerPartitions(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]Partition, error) { + return *new([]Partition), ErrNotSupported +} + func (s *GatewayStruct) StateMinerPower(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*MinerPower, error) { if s.Internal.StateMinerPower == nil { return nil, ErrNotSupported @@ -5012,6 +5079,17 @@ func (s *GatewayStub) StateMinerSectorCount(p0 context.Context, p1 address.Addre return *new(MinerSectors), ErrNotSupported } +func (s *GatewayStruct) StateMinerSectors(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) { + if s.Internal.StateMinerSectors == nil { + return *new([]*miner.SectorOnChainInfo), ErrNotSupported + } + return s.Internal.StateMinerSectors(p0, p1, p2, p3) +} + +func (s *GatewayStub) StateMinerSectors(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) { + return *new([]*miner.SectorOnChainInfo), ErrNotSupported +} + func (s *GatewayStruct) StateNetworkName(p0 context.Context) (dtypes.NetworkName, error) { if s.Internal.StateNetworkName == nil { return *new(dtypes.NetworkName), ErrNotSupported diff --git a/api/v0api/gateway.go b/api/v0api/gateway.go index 1a7f7d3ac92..a3cc4ab70ca 100644 --- a/api/v0api/gateway.go +++ b/api/v0api/gateway.go @@ -7,6 +7,7 @@ import ( "github.com/ipfs/go-cid" "github.com/filecoin-project/go-address" + "github.com/filecoin-project/go-bitfield" "github.com/filecoin-project/go-state-types/abi" verifregtypes "github.com/filecoin-project/go-state-types/builtin/v9/verifreg" "github.com/filecoin-project/go-state-types/dline" @@ -35,7 +36,21 @@ import ( // * Generate markdown docs // * Generate openrpc blobs +type Partition struct { + AllSectors bitfield.BitField + FaultySectors bitfield.BitField + RecoveringSectors bitfield.BitField + LiveSectors bitfield.BitField + ActiveSectors bitfield.BitField +} + type Gateway interface { + ChainGetNode(ctx context.Context, p string) (*api.IpldObject, error) + StateMinerPartitions(ctx context.Context, m address.Address, dlIdx uint64, tsk types.TipSetKey) ([]api.Partition, error) + StateMinerSectors(context.Context, address.Address, *bitfield.BitField, types.TipSetKey) ([]*miner.SectorOnChainInfo, error) + StateMinerFaults(context.Context, address.Address, types.TipSetKey) (bitfield.BitField, error) + StateMinerAvailableBalance(context.Context, address.Address, types.TipSetKey) (types.BigInt, error) + StateMarketParticipants(context.Context, types.TipSetKey) (map[string]api.MarketBalance, error) MpoolPending(context.Context, types.TipSetKey) ([]*types.SignedMessage, error) ChainGetBlock(context.Context, cid.Cid) (*types.BlockHeader, error) MinerGetBaseInfo(context.Context, address.Address, abi.ChainEpoch, types.TipSetKey) (*api.MiningBaseInfo, error) diff --git a/api/v0api/proxy_gen.go b/api/v0api/proxy_gen.go index a8756894951..6e1f3d7810a 100644 --- a/api/v0api/proxy_gen.go +++ b/api/v0api/proxy_gen.go @@ -380,6 +380,8 @@ type GatewayMethods struct { ChainGetMessage func(p0 context.Context, p1 cid.Cid) (*types.Message, error) `` + ChainGetNode func(p0 context.Context, p1 string) (*api.IpldObject, error) `` + ChainGetTipSet func(p0 context.Context, p1 types.TipSetKey) (*types.TipSet, error) `` ChainGetTipSetByHeight func(p0 context.Context, p1 abi.ChainEpoch, p2 types.TipSetKey) (*types.TipSet, error) `` @@ -440,16 +442,26 @@ type GatewayMethods struct { StateMarketBalance func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (api.MarketBalance, error) `` + StateMarketParticipants func(p0 context.Context, p1 types.TipSetKey) (map[string]api.MarketBalance, error) `` + StateMarketStorageDeal func(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*api.MarketDeal, error) `` + StateMinerAvailableBalance func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) `` + + StateMinerFaults func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) `` + StateMinerInfo func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (api.MinerInfo, error) `` + StateMinerPartitions func(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]api.Partition, error) `` + StateMinerPower func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*api.MinerPower, error) `` StateMinerProvingDeadline func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*dline.Info, error) `` StateMinerSectorCount func(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (api.MinerSectors, error) `` + StateMinerSectors func(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) `` + StateNetworkName func(p0 context.Context) (dtypes.NetworkName, error) `` StateNetworkVersion func(p0 context.Context, p1 types.TipSetKey) (abinetwork.Version, error) `` @@ -2298,6 +2310,17 @@ func (s *GatewayStub) ChainGetMessage(p0 context.Context, p1 cid.Cid) (*types.Me return nil, ErrNotSupported } +func (s *GatewayStruct) ChainGetNode(p0 context.Context, p1 string) (*api.IpldObject, error) { + if s.Internal.ChainGetNode == nil { + return nil, ErrNotSupported + } + return s.Internal.ChainGetNode(p0, p1) +} + +func (s *GatewayStub) ChainGetNode(p0 context.Context, p1 string) (*api.IpldObject, error) { + return nil, ErrNotSupported +} + func (s *GatewayStruct) ChainGetTipSet(p0 context.Context, p1 types.TipSetKey) (*types.TipSet, error) { if s.Internal.ChainGetTipSet == nil { return nil, ErrNotSupported @@ -2628,6 +2651,17 @@ func (s *GatewayStub) StateMarketBalance(p0 context.Context, p1 address.Address, return *new(api.MarketBalance), ErrNotSupported } +func (s *GatewayStruct) StateMarketParticipants(p0 context.Context, p1 types.TipSetKey) (map[string]api.MarketBalance, error) { + if s.Internal.StateMarketParticipants == nil { + return *new(map[string]api.MarketBalance), ErrNotSupported + } + return s.Internal.StateMarketParticipants(p0, p1) +} + +func (s *GatewayStub) StateMarketParticipants(p0 context.Context, p1 types.TipSetKey) (map[string]api.MarketBalance, error) { + return *new(map[string]api.MarketBalance), ErrNotSupported +} + func (s *GatewayStruct) StateMarketStorageDeal(p0 context.Context, p1 abi.DealID, p2 types.TipSetKey) (*api.MarketDeal, error) { if s.Internal.StateMarketStorageDeal == nil { return nil, ErrNotSupported @@ -2639,6 +2673,28 @@ func (s *GatewayStub) StateMarketStorageDeal(p0 context.Context, p1 abi.DealID, return nil, ErrNotSupported } +func (s *GatewayStruct) StateMinerAvailableBalance(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) { + if s.Internal.StateMinerAvailableBalance == nil { + return *new(types.BigInt), ErrNotSupported + } + return s.Internal.StateMinerAvailableBalance(p0, p1, p2) +} + +func (s *GatewayStub) StateMinerAvailableBalance(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) { + return *new(types.BigInt), ErrNotSupported +} + +func (s *GatewayStruct) StateMinerFaults(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) { + if s.Internal.StateMinerFaults == nil { + return *new(bitfield.BitField), ErrNotSupported + } + return s.Internal.StateMinerFaults(p0, p1, p2) +} + +func (s *GatewayStub) StateMinerFaults(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) { + return *new(bitfield.BitField), ErrNotSupported +} + func (s *GatewayStruct) StateMinerInfo(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (api.MinerInfo, error) { if s.Internal.StateMinerInfo == nil { return *new(api.MinerInfo), ErrNotSupported @@ -2650,6 +2706,17 @@ func (s *GatewayStub) StateMinerInfo(p0 context.Context, p1 address.Address, p2 return *new(api.MinerInfo), ErrNotSupported } +func (s *GatewayStruct) StateMinerPartitions(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]api.Partition, error) { + if s.Internal.StateMinerPartitions == nil { + return *new([]api.Partition), ErrNotSupported + } + return s.Internal.StateMinerPartitions(p0, p1, p2, p3) +} + +func (s *GatewayStub) StateMinerPartitions(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]api.Partition, error) { + return *new([]api.Partition), ErrNotSupported +} + func (s *GatewayStruct) StateMinerPower(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (*api.MinerPower, error) { if s.Internal.StateMinerPower == nil { return nil, ErrNotSupported @@ -2683,6 +2750,17 @@ func (s *GatewayStub) StateMinerSectorCount(p0 context.Context, p1 address.Addre return *new(api.MinerSectors), ErrNotSupported } +func (s *GatewayStruct) StateMinerSectors(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) { + if s.Internal.StateMinerSectors == nil { + return *new([]*miner.SectorOnChainInfo), ErrNotSupported + } + return s.Internal.StateMinerSectors(p0, p1, p2, p3) +} + +func (s *GatewayStub) StateMinerSectors(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) { + return *new([]*miner.SectorOnChainInfo), ErrNotSupported +} + func (s *GatewayStruct) StateNetworkName(p0 context.Context) (dtypes.NetworkName, error) { if s.Internal.StateNetworkName == nil { return *new(dtypes.NetworkName), ErrNotSupported diff --git a/build/openrpc/full.json b/build/openrpc/full.json index 71bea9c4d08..7c61a997dcf 100644 --- a/build/openrpc/full.json +++ b/build/openrpc/full.json @@ -37,7 +37,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1352" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1358" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -60,7 +64,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1363" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1369" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -103,7 +111,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1374" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1380" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -214,7 +226,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1396" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1402" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -454,7 +470,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1407" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1413" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -685,7 +705,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1418" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1424" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -784,7 +808,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1429" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1435" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -816,7 +844,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1440" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1446" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -922,7 +954,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1451" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1457" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1019,7 +1055,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1462" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1468" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1078,7 +1118,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1473" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1479" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1171,7 +1215,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1484" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1490" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1255,7 +1303,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1495" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1501" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1355,7 +1407,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1506" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1512" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1411,7 +1467,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1517" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1523" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1484,7 +1544,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1528" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1534" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1557,7 +1621,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1539" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1545" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1604,7 +1672,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1550" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1556" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1636,7 +1708,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1561" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1567" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1691,7 +1767,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1572" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1578" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1743,7 +1823,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1594" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1600" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1780,7 +1864,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1605" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1611" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1827,7 +1915,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1616" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1622" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1874,7 +1966,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1627" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1633" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1954,7 +2050,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1638" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1644" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2006,6 +2106,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1649" } }, @@ -2111,6 +2212,9 @@ "externalDocs": { "description": "Github remote link", "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1660" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1655" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2149,7 +2253,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1671" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1666" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2196,7 +2304,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1682" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1677" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2251,7 +2363,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1693" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1688" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2280,7 +2396,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1704" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1699" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2417,7 +2537,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1715" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1710" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2446,7 +2570,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1726" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1721" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2500,7 +2628,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1737" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1732" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2591,7 +2723,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1748" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1743" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2619,7 +2755,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1759" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1754" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2709,7 +2849,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1770" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1765" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2965,7 +3109,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1781" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1776" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3210,7 +3358,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1792" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1787" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3486,7 +3638,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1803" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1798" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3779,7 +3935,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1814" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1809" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3835,7 +3995,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1825" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1820" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3882,7 +4046,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1836" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1831" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3980,7 +4148,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1847" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1842" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4046,7 +4218,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1858" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1853" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4112,7 +4288,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1869" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1864" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4221,7 +4401,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1880" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1875" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4279,7 +4463,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1891" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1886" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4401,7 +4589,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1902" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1897" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4610,7 +4802,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1913" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1908" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4808,7 +5004,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1924" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1919" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5000,7 +5200,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1935" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1930" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5209,7 +5413,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1946" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1941" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5300,7 +5508,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1957" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1952" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5358,7 +5570,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1968" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1963" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5616,7 +5832,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1979" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1974" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5891,7 +6111,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1990" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1985" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5919,7 +6143,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2001" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1996" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5957,7 +6185,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2012" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2007" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6065,7 +6297,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2023" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2018" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6103,7 +6339,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2034" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2029" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6132,7 +6372,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2045" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2040" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6195,7 +6439,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2056" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2051" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6258,7 +6506,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2067" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2062" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6321,7 +6573,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2078" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2073" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6366,7 +6622,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2089" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2084" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6488,7 +6748,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2100" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2095" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6664,7 +6928,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2111" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2106" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6819,7 +7087,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2122" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2117" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6941,7 +7213,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2133" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2128" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6995,7 +7271,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2144" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2139" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7049,7 +7329,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2155" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2150" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7234,7 +7518,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2166" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2161" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7317,7 +7605,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2177" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2172" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7400,7 +7692,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2188" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2183" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7567,7 +7863,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2199" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2194" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7772,7 +8072,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2210" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2205" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7866,7 +8170,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2221" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2216" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7912,7 +8220,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2232" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2227" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7939,7 +8251,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2243" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2238" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7994,7 +8310,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2254" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2249" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8073,7 +8393,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2265" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2260" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8136,7 +8460,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2276" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2271" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8279,7 +8607,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2287" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2282" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8406,7 +8738,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2298" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2293" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8508,7 +8844,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2309" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2304" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8731,7 +9071,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2320" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2315" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8914,7 +9258,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2331" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2326" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8994,7 +9342,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2342" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2337" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9039,7 +9391,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2353" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2348" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9095,7 +9451,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2364" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2359" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9175,7 +9535,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2375" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2370" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9255,7 +9619,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2386" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2381" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9740,7 +10108,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2397" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2392" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9934,7 +10306,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2408" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2403" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10089,7 +10465,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2419" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2414" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10338,7 +10718,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2430" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2425" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10493,7 +10877,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2441" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2436" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10670,7 +11058,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2452" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2447" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10768,7 +11160,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2463" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2458" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10933,7 +11329,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2474" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2469" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10972,7 +11372,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2485" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2480" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11037,7 +11441,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2496" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2491" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11083,7 +11491,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2507" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2502" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11233,7 +11645,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2518" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2513" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11370,7 +11786,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2529" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2524" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11601,7 +12021,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2540" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2535" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11738,7 +12162,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2551" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2546" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11903,7 +12331,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2562" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2557" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11980,7 +12412,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2573" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2568" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -12175,7 +12611,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2595" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2590" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -12354,7 +12794,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2606" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2601" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -12516,7 +12960,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2617" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2612" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -12664,7 +13112,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2628" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2623" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -12892,7 +13344,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2639" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2634" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13040,7 +13496,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2650" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2645" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13252,7 +13712,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2661" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2656" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13458,7 +13922,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2672" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2667" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13526,7 +13994,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2683" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2678" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13643,7 +14115,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2694" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2689" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13734,7 +14210,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2705" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2700" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -13820,7 +14300,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2716" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2711" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14015,7 +14499,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2727" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2722" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14177,7 +14665,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2738" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2733" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14373,7 +14865,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2749" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2744" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14553,7 +15049,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2760" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2755" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14716,7 +15216,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2771" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2766" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14743,7 +15247,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2782" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2777" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14770,7 +15278,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2793" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2788" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14869,7 +15381,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2804" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2799" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -14915,7 +15431,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2815" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2810" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15015,7 +15535,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2826" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2821" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15131,7 +15655,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2837" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2832" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15179,7 +15707,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2848" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2843" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15271,7 +15803,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2859" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2854" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15386,7 +15922,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2870" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2865" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15434,7 +15974,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2881" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2876" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15471,7 +16015,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2892" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2887" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15743,7 +16291,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2903" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2898" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15791,7 +16343,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2914" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2909" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -15849,7 +16405,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2925" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2920" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -16054,7 +16614,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2936" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2931" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -16257,7 +16821,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2947" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2942" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -16426,7 +16994,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2958" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2953" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -16630,7 +17202,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2969" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2964" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -16797,7 +17373,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2980" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2975" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17004,7 +17584,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2991" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2986" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17072,7 +17656,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3002" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2997" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17124,7 +17712,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3013" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3008" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17173,7 +17765,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3024" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3019" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17264,7 +17860,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3035" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3030" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17770,7 +18370,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3046" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3041" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17876,7 +18480,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3057" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3052" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -17928,7 +18536,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3068" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3063" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18480,7 +19092,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3079" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3074" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18594,7 +19210,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3090" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3085" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18691,7 +19311,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3101" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3096" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18791,7 +19415,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3112" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3107" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18879,7 +19507,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3123" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3118" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -18979,7 +19611,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3134" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3129" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19066,7 +19702,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3145" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3140" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19157,7 +19797,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3156" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3151" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19282,7 +19926,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3167" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3162" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19391,7 +20039,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3178" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3173" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19461,7 +20113,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3189" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3184" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19564,7 +20220,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3200" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3195" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19625,7 +20285,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3211" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3206" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19755,7 +20419,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3222" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3217" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -19862,7 +20530,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3233" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3228" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20086,7 +20758,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3244" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3239" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20163,7 +20839,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3255" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3250" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20240,7 +20920,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3266" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3261" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20349,7 +21033,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3277" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3272" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20458,7 +21146,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3288" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3283" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20519,7 +21211,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3299" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3294" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20629,7 +21325,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3310" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3305" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20690,7 +21390,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3321" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3316" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20758,7 +21462,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3332" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3327" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20826,7 +21534,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3343" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3338" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -20907,7 +21619,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3354" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3349" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21061,7 +21777,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3365" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3360" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21133,7 +21853,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3376" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3371" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21297,7 +22021,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3387" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3382" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21462,7 +22190,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3398" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3393" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21532,7 +22264,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3409" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3404" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21600,7 +22336,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3420" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3415" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21693,7 +22433,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3431" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3426" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21764,7 +22508,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3442" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3437" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -21965,7 +22713,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3453" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3448" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22097,7 +22849,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3464" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3459" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22200,7 +22956,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3475" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3470" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22337,7 +23097,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3486" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3481" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22448,7 +23212,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3497" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3492" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22580,7 +23348,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3508" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3503" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22711,7 +23483,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3519" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3514" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22782,7 +23558,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3530" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3525" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22866,7 +23646,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3541" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3536" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -22952,7 +23736,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3552" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3547" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23135,7 +23923,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3563" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3558" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23162,7 +23954,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3574" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3569" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23215,7 +24011,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3585" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3580" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23303,7 +24103,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3596" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3591" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23754,7 +24558,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3607" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3602" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -23921,7 +24729,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3618" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3613" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24019,7 +24831,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3629" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3624" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24192,7 +25008,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3640" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3635" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24290,7 +25110,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3651" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3646" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24441,7 +25265,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3662" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3657" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24526,7 +25354,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3673" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3668" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24594,7 +25426,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3684" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3679" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24646,7 +25482,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3695" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3690" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24714,7 +25554,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3706" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3701" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24875,7 +25719,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3717" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3712" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24922,7 +25770,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3739" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3734" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -24969,7 +25821,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3750" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3745" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25012,7 +25868,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3772" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3767" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25108,7 +25968,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3783" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3778" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25374,7 +26238,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3794" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3789" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25397,7 +26265,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3805" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3800" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25440,7 +26312,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3816" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3811" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25491,7 +26367,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3827" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3822" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25536,7 +26416,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3838" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3833" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25564,7 +26448,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3849" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3844" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25604,7 +26492,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3860" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3855" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25663,7 +26555,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3871" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3866" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25707,7 +26603,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3882" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3877" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25766,7 +26666,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3893" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3888" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25803,7 +26707,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3904" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3899" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25847,7 +26755,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3915" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3910" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25887,7 +26799,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3926" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3921" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -25962,7 +26878,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3937" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3932" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -26170,7 +27090,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3948" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3943" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -26214,7 +27138,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3959" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3954" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -26304,7 +27232,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3970" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3965" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -26331,7 +27263,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3981" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3976" +>>>>>>> 12e6428ad (feat(gateway): add new method) } } ] diff --git a/build/openrpc/gateway.json b/build/openrpc/gateway.json index c3c30b02c5c..4682c2e8f61 100644 --- a/build/openrpc/gateway.json +++ b/build/openrpc/gateway.json @@ -242,7 +242,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3992" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3987" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -473,7 +477,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4003" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3998" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -572,7 +580,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4014" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4009" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -604,7 +616,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4025" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4020" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -710,7 +726,70 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4036" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4031" + } + }, + { + "name": "Filecoin.ChainGetNode", + "description": "```go\nfunc (s *GatewayStruct) ChainGetNode(p0 context.Context, p1 string) (*IpldObject, error) {\n\tif s.Internal.ChainGetNode == nil {\n\t\treturn nil, ErrNotSupported\n\t}\n\treturn s.Internal.ChainGetNode(p0, p1)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "string", + "summary": "", + "schema": { + "examples": [ + "string value" + ], + "type": [ + "string" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "*IpldObject", + "description": "*IpldObject", + "summary": "", + "schema": { + "examples": [ + { + "Cid": { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + "Obj": {} + } + ], + "additionalProperties": false, + "properties": { + "Cid": { + "title": "Content Identifier", + "type": "string" + }, + "Obj": { + "additionalProperties": true, + "type": "object" + } + }, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4042" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -803,7 +882,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4047" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4053" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -887,7 +970,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4058" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4064" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -987,7 +1074,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4069" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4075" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1043,7 +1134,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4080" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4086" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1116,7 +1211,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4091" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4097" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1189,7 +1288,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4102" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4108" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1236,7 +1339,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4113" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4119" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1268,7 +1375,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4124" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4130" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1305,7 +1416,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4146" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4152" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1352,7 +1467,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4157" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4163" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1392,7 +1511,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4168" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4174" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1439,7 +1562,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4179" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4185" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1494,7 +1621,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4190" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4196" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1523,7 +1654,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4201" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4207" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1660,7 +1795,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4212" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4218" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1689,7 +1828,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4223" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4229" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1743,7 +1886,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4234" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4240" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1834,7 +1981,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4245" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4251" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1862,7 +2013,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4256" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4262" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1952,7 +2107,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4267" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4273" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2208,7 +2367,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4278" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4284" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2453,7 +2616,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4289" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4295" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2729,7 +2896,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4300" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4306" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3022,7 +3193,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4311" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4317" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3078,7 +3253,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4322" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4328" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3125,7 +3304,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4333" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4339" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3223,7 +3406,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4344" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4350" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3289,7 +3476,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4355" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4361" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3355,7 +3546,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4366" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4372" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3464,7 +3659,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4377" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4383" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3522,7 +3721,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4388" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4394" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3644,6 +3847,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4399" } }, @@ -4052,6 +4256,9 @@ "externalDocs": { "description": "Github remote link", "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4421" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4405" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4243,7 +4450,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4432" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4416" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4452,7 +4663,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4443" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4427" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4543,7 +4758,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4454" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4438" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4601,7 +4820,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4465" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4449" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4859,7 +5082,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4476" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4460" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5134,7 +5361,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4487" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4471" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5162,7 +5393,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4498" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4482" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5200,7 +5435,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4509" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4493" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5308,7 +5547,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4520" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4504" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5346,7 +5589,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4531" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4515" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5375,7 +5622,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4542" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4526" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5438,7 +5689,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4553" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4537" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5501,7 +5756,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4564" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4548" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5546,7 +5805,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4575" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4559" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5668,7 +5931,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4586" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4570" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5844,7 +6111,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4597" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4581" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5999,7 +6270,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4608" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4592" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6121,7 +6396,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4619" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4603" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6175,7 +6454,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4630" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4614" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6229,7 +6512,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4641" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4625" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6292,7 +6579,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4652" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4636" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6394,7 +6685,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4663" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4647" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6617,7 +6912,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4674" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4658" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6800,7 +7099,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4685" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4669" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6994,7 +7297,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4696" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4680" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7040,7 +7347,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4707" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4691" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7190,7 +7501,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4718" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4702" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7327,7 +7642,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4729" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4713" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7395,7 +7714,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4740" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4724" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7512,7 +7835,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4751" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4735" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7603,7 +7930,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4762" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4746" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7689,7 +8020,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4773" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4757" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7716,7 +8051,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4784" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4768" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7743,7 +8082,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4795" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4779" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7811,7 +8154,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4806" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4790" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8317,7 +8664,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4817" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4801" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8414,7 +8765,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4828" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4812" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8514,7 +8869,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4839" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4823" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8614,7 +8973,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4850" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4834" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8739,7 +9102,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4861" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4845" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8848,7 +9215,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4872" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4856" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -8951,7 +9322,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4883" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4867" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9081,7 +9456,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4894" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4878" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9188,7 +9567,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4905" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4889" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9249,7 +9632,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4916" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4900" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9317,7 +9704,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4927" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4911" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9398,7 +9789,83 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4938" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4922" + } + }, + { + "name": "Filecoin.StateMarketParticipants", + "description": "```go\nfunc (s *GatewayStruct) StateMarketParticipants(p0 context.Context, p1 types.TipSetKey) (map[string]MarketBalance, error) {\n\tif s.Internal.StateMarketParticipants == nil {\n\t\treturn *new(map[string]MarketBalance), ErrNotSupported\n\t}\n\treturn s.Internal.StateMarketParticipants(p0, p1)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "types.TipSetKey", + "summary": "", + "schema": { + "examples": [ + [ + { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + { + "/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve" + } + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "map[string]MarketBalance", + "description": "map[string]MarketBalance", + "summary": "", + "schema": { + "examples": [ + { + "t026363": { + "Escrow": "0", + "Locked": "0" + } + } + ], + "patternProperties": { + ".*": { + "additionalProperties": false, + "properties": { + "Escrow": { + "additionalProperties": false, + "type": "object" + }, + "Locked": { + "additionalProperties": false, + "type": "object" + } + }, + "type": "object" + } + }, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4933" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9562,7 +10029,79 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4949" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4944" + } + }, + { + "name": "Filecoin.StateMinerAvailableBalance", + "description": "```go\nfunc (s *GatewayStruct) StateMinerAvailableBalance(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (types.BigInt, error) {\n\tif s.Internal.StateMinerAvailableBalance == nil {\n\t\treturn *new(types.BigInt), ErrNotSupported\n\t}\n\treturn s.Internal.StateMinerAvailableBalance(p0, p1, p2)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "address.Address", + "summary": "", + "schema": { + "examples": [ + "f01234" + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p2", + "description": "types.TipSetKey", + "summary": "", + "schema": { + "examples": [ + [ + { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + { + "/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve" + } + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "types.BigInt", + "description": "types.BigInt", + "summary": "", + "schema": { + "examples": [ + "0" + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4955" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9655,7 +10194,82 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4960" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4966" + } + }, + { + "name": "Filecoin.StateMinerFaults", + "description": "```go\nfunc (s *GatewayStruct) StateMinerFaults(p0 context.Context, p1 address.Address, p2 types.TipSetKey) (bitfield.BitField, error) {\n\tif s.Internal.StateMinerFaults == nil {\n\t\treturn *new(bitfield.BitField), ErrNotSupported\n\t}\n\treturn s.Internal.StateMinerFaults(p0, p1, p2)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "address.Address", + "summary": "", + "schema": { + "examples": [ + "f01234" + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p2", + "description": "types.TipSetKey", + "summary": "", + "schema": { + "examples": [ + [ + { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + { + "/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve" + } + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "bitfield.BitField", + "description": "bitfield.BitField", + "summary": "", + "schema": { + "examples": [ + [ + 5, + 1 + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4977" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9856,7 +10470,148 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4971" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4988" + } + }, + { + "name": "Filecoin.StateMinerPartitions", + "description": "```go\nfunc (s *GatewayStruct) StateMinerPartitions(p0 context.Context, p1 address.Address, p2 uint64, p3 types.TipSetKey) ([]Partition, error) {\n\tif s.Internal.StateMinerPartitions == nil {\n\t\treturn *new([]Partition), ErrNotSupported\n\t}\n\treturn s.Internal.StateMinerPartitions(p0, p1, p2, p3)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "address.Address", + "summary": "", + "schema": { + "examples": [ + "f01234" + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p2", + "description": "uint64", + "summary": "", + "schema": { + "title": "number", + "description": "Number is a number", + "examples": [ + 42 + ], + "type": [ + "number" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p3", + "description": "types.TipSetKey", + "summary": "", + "schema": { + "examples": [ + [ + { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + { + "/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve" + } + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "[]Partition", + "description": "[]Partition", + "summary": "", + "schema": { + "examples": [ + [ + { + "AllSectors": [ + 5, + 1 + ], + "FaultySectors": [ + 5, + 1 + ], + "RecoveringSectors": [ + 5, + 1 + ], + "LiveSectors": [ + 5, + 1 + ], + "ActiveSectors": [ + 5, + 1 + ] + } + ] + ], + "items": [ + { + "additionalProperties": false, + "properties": { + "ActiveSectors": { + "additionalProperties": false, + "type": "object" + }, + "AllSectors": { + "additionalProperties": false, + "type": "object" + }, + "FaultySectors": { + "additionalProperties": false, + "type": "object" + }, + "LiveSectors": { + "additionalProperties": false, + "type": "object" + }, + "RecoveringSectors": { + "additionalProperties": false, + "type": "object" + } + }, + "type": [ + "object" + ] + } + ], + "type": [ + "array" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4999" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9967,7 +10722,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4982" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5010" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10098,7 +10857,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4993" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5021" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10184,7 +10947,194 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5004" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5032" + } + }, + { + "name": "Filecoin.StateMinerSectors", + "description": "```go\nfunc (s *GatewayStruct) StateMinerSectors(p0 context.Context, p1 address.Address, p2 *bitfield.BitField, p3 types.TipSetKey) ([]*miner.SectorOnChainInfo, error) {\n\tif s.Internal.StateMinerSectors == nil {\n\t\treturn *new([]*miner.SectorOnChainInfo), ErrNotSupported\n\t}\n\treturn s.Internal.StateMinerSectors(p0, p1, p2, p3)\n}\n```", + "summary": "There are not yet any comments for this method.", + "paramStructure": "by-position", + "params": [ + { + "name": "p1", + "description": "address.Address", + "summary": "", + "schema": { + "examples": [ + "f01234" + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p2", + "description": "*bitfield.BitField", + "summary": "", + "schema": { + "examples": [ + [ + 0 + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + }, + { + "name": "p3", + "description": "types.TipSetKey", + "summary": "", + "schema": { + "examples": [ + [ + { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + { + "/": "bafy2bzacebp3shtrn43k7g3unredz7fxn4gj533d3o43tqn2p2ipxxhrvchve" + } + ] + ], + "additionalProperties": false, + "type": [ + "object" + ] + }, + "required": true, + "deprecated": false + } + ], + "result": { + "name": "[]*miner.SectorOnChainInfo", + "description": "[]*miner.SectorOnChainInfo", + "summary": "", + "schema": { + "examples": [ + [ + { + "SectorNumber": 9, + "SealProof": 8, + "SealedCID": { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + "DealIDs": [ + 5432 + ], + "Activation": 10101, + "Expiration": 10101, + "DealWeight": "0", + "VerifiedDealWeight": "0", + "InitialPledge": "0", + "ExpectedDayReward": "0", + "ExpectedStoragePledge": "0", + "PowerBaseEpoch": 10101, + "ReplacedDayReward": "0", + "SectorKeyCID": { + "/": "bafy2bzacea3wsdh6y3a36tb3skempjoxqpuyompjbmfeyf34fi3uy6uue42v4" + }, + "Flags": 0 + } + ] + ], + "items": [ + { + "additionalProperties": false, + "properties": { + "Activation": { + "title": "number", + "type": "number" + }, + "DealIDs": { + "items": { + "description": "Number is a number", + "title": "number", + "type": "number" + }, + "type": "array" + }, + "DealWeight": { + "additionalProperties": false, + "type": "object" + }, + "ExpectedDayReward": { + "additionalProperties": false, + "type": "object" + }, + "ExpectedStoragePledge": { + "additionalProperties": false, + "type": "object" + }, + "Expiration": { + "title": "number", + "type": "number" + }, + "Flags": { + "title": "number", + "type": "number" + }, + "InitialPledge": { + "additionalProperties": false, + "type": "object" + }, + "PowerBaseEpoch": { + "title": "number", + "type": "number" + }, + "ReplacedDayReward": { + "additionalProperties": false, + "type": "object" + }, + "SealProof": { + "title": "number", + "type": "number" + }, + "SealedCID": { + "title": "Content Identifier", + "type": "string" + }, + "SectorKeyCID": { + "title": "Content Identifier", + "type": "string" + }, + "SectorNumber": { + "title": "number", + "type": "number" + }, + "VerifiedDealWeight": { + "additionalProperties": false, + "type": "object" + } + }, + "type": [ + "object" + ] + } + ], + "type": [ + "array" + ] + }, + "required": true, + "deprecated": false + }, + "deprecated": false, + "externalDocs": { + "description": "Github remote link", + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5043" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10211,7 +11161,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5015" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5054" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10264,7 +11218,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5026" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5065" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10352,7 +11310,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5037" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5076" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10803,7 +11765,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5048" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5087" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -10970,7 +11936,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5059" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5098" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11143,7 +12113,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5070" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5109" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11211,7 +12185,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5081" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5120" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11279,7 +12257,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5092" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5131" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11440,7 +12422,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5103" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5142" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11485,7 +12471,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5125" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5164" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11530,7 +12520,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5136" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5175" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -11557,7 +12551,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5147" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5186" +>>>>>>> 12e6428ad (feat(gateway): add new method) } } ] diff --git a/build/openrpc/miner.json b/build/openrpc/miner.json index fc97cd1974b..06f6d1ab5b0 100644 --- a/build/openrpc/miner.json +++ b/build/openrpc/miner.json @@ -30,7 +30,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5433" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5472" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -109,7 +113,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5444" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5483" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -155,7 +163,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5455" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5494" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -203,7 +215,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5466" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5505" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -251,7 +267,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5477" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5516" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -354,7 +374,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5488" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5527" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -428,7 +452,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5499" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5538" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -591,7 +619,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5510" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5549" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -742,7 +774,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5521" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5560" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -781,7 +817,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5532" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5571" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -913,7 +953,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5543" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5582" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -945,7 +989,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5554" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5593" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -986,7 +1034,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5565" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5604" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1054,7 +1106,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5576" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5615" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1185,7 +1241,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5587" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5626" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1316,7 +1376,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5598" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5637" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1416,7 +1480,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5609" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5648" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1516,7 +1584,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5620" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5659" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1616,7 +1688,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5631" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5670" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1716,7 +1792,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5642" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5681" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1816,7 +1896,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5653" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5692" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1916,7 +2000,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5664" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5703" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2040,7 +2128,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5675" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5714" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2164,7 +2256,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5686" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5725" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2279,7 +2375,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5697" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5736" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2379,7 +2479,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5708" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5747" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2512,7 +2616,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5719" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5758" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2636,7 +2744,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5730" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5769" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2760,7 +2872,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5741" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5780" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -2884,7 +3000,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5752" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5791" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3017,7 +3137,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5763" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5802" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3117,7 +3241,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5774" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5813" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3157,7 +3285,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5785" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5824" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3229,7 +3361,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5796" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5835" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3279,7 +3415,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5807" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5846" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3323,7 +3463,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5818" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5857" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3364,7 +3508,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5829" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5868" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3608,7 +3756,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5840" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5879" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3682,7 +3834,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5851" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5890" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3732,7 +3888,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5862" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5901" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3761,7 +3921,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5873" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5912" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3790,7 +3954,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5884" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5923" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3846,7 +4014,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5895" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5934" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3869,7 +4041,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5906" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5945" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3929,7 +4105,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5917" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5956" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3968,7 +4148,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5928" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5967" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4008,7 +4192,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5939" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5978" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4081,7 +4269,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5950" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5989" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4145,7 +4337,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5961" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6000" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4208,7 +4404,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5972" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6011" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4258,7 +4458,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5983" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6022" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4817,7 +5021,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5994" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6033" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4858,7 +5066,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6005" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6044" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4899,7 +5111,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6016" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6055" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4940,7 +5156,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6027" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6066" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4981,7 +5201,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6038" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6077" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5022,7 +5246,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6049" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6088" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5053,7 +5281,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6060" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6099" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5103,7 +5335,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6071" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6110" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5144,7 +5380,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6082" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6121" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5183,7 +5423,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6093" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6132" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5247,7 +5491,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6104" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6143" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5305,7 +5553,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6115" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6154" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5752,7 +6004,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6126" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6165" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5788,7 +6044,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6137" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6176" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5931,7 +6191,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6148" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6187" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5987,7 +6251,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6159" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6198" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6026,7 +6294,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6170" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6209" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6203,7 +6475,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6181" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6220" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6255,7 +6531,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6192" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6231" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6447,7 +6727,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6203" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6242" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6547,7 +6831,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6214" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6253" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6601,7 +6889,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6225" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6264" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6640,7 +6932,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6236" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6275" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6725,7 +7021,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6247" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6286" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -6919,7 +7219,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6258" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6297" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7017,7 +7321,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6269" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6308" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7149,7 +7457,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6280" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6319" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7203,7 +7515,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6291" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6330" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7237,7 +7553,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6302" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6341" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7324,7 +7644,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6313" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6352" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7378,7 +7702,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6324" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6363" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7478,7 +7806,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6335" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6374" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7555,7 +7887,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6346" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6385" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7646,7 +7982,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6357" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6396" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7685,7 +8025,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6368" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6407" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -7801,7 +8145,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6379" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6418" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -9901,7 +10249,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6390" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6429" +>>>>>>> 12e6428ad (feat(gateway): add new method) } } ] diff --git a/build/openrpc/worker.json b/build/openrpc/worker.json index 88cbdab3fe8..7858352d32e 100644 --- a/build/openrpc/worker.json +++ b/build/openrpc/worker.json @@ -161,7 +161,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6478" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6517" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -252,7 +256,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6489" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6528" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -420,7 +428,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6500" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6539" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -447,7 +459,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6511" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6550" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -597,7 +613,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6522" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6561" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -700,7 +720,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6533" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6572" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -803,7 +827,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6544" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6583" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -925,7 +953,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6555" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6594" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1135,7 +1167,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6566" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6605" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -1306,7 +1342,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6577" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6616" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3350,7 +3390,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6588" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6627" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3470,7 +3514,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6599" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6638" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3531,7 +3579,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6610" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6649" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3569,7 +3621,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6621" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6660" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3729,7 +3785,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6632" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6671" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -3913,7 +3973,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6643" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6682" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4054,7 +4118,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6654" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6693" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4107,7 +4175,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6665" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6704" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4250,7 +4322,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6676" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6715" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4474,7 +4550,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6687" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6726" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4601,7 +4681,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6698" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6737" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4768,7 +4852,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6709" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6748" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4895,7 +4983,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6720" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6759" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4933,7 +5025,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6731" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6770" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4972,7 +5068,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6742" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6781" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -4995,7 +5095,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6753" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6792" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5034,7 +5138,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6764" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6803" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5057,7 +5165,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6775" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6814" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5096,7 +5208,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6786" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6825" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5130,7 +5246,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6797" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6836" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5184,7 +5304,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6808" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6847" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5223,7 +5347,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6819" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6858" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5262,7 +5390,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6830" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6869" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5297,7 +5429,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6841" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6880" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5477,7 +5613,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6852" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6891" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5506,7 +5646,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6863" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6902" +>>>>>>> 12e6428ad (feat(gateway): add new method) } }, { @@ -5529,7 +5673,11 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", +<<<<<<< HEAD "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6874" +======= + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6913" +>>>>>>> 12e6428ad (feat(gateway): add new method) } } ] diff --git a/gateway/node.go b/gateway/node.go index def7c0c465f..c1ac45d70af 100644 --- a/gateway/node.go +++ b/gateway/node.go @@ -51,6 +51,9 @@ const ( // TargetAPI defines the API methods that the Node depends on // (to make it easy to mock for tests) type TargetAPI interface { + StateMinerPartitions(ctx context.Context, m address.Address, dlIdx uint64, tsk types.TipSetKey) ([]api.Partition, error) + StateMinerSectors(context.Context, address.Address, *bitfield.BitField, types.TipSetKey) ([]*miner.SectorOnChainInfo, error) + StateMarketParticipants(context.Context, types.TipSetKey) (map[string]api.MarketBalance, error) MpoolPending(context.Context, types.TipSetKey) ([]*types.SignedMessage, error) ChainGetBlock(context.Context, cid.Cid) (*types.BlockHeader, error) MinerGetBaseInfo(context.Context, address.Address, abi.ChainEpoch, types.TipSetKey) (*api.MiningBaseInfo, error) diff --git a/gateway/proxy_fil.go b/gateway/proxy_fil.go index 59fa511b506..8842668604c 100644 --- a/gateway/proxy_fil.go +++ b/gateway/proxy_fil.go @@ -24,6 +24,36 @@ import ( "github.com/filecoin-project/lotus/node/modules/dtypes" ) +func (gw *Node) StateMinerPartitions(ctx context.Context, m address.Address, dlIdx uint64, tsk types.TipSetKey) ([]api.Partition, error) { + if err := gw.limit(ctx, stateRateLimitTokens); err != nil { + return nil, err + } + if err := gw.checkTipsetKey(ctx, tsk); err != nil { + return nil, err + } + return gw.target.StateMinerPartitions(ctx, m, dlIdx, tsk) +} + +func (gw *Node) StateMinerSectors(ctx context.Context, m address.Address, filter *bitfield.BitField, tsk types.TipSetKey) ([]*miner.SectorOnChainInfo, error) { + if err := gw.limit(ctx, stateRateLimitTokens); err != nil { + return nil, err + } + if err := gw.checkTipsetKey(ctx, tsk); err != nil { + return nil, err + } + return gw.target.StateMinerSectors(ctx, m, filter, tsk) +} + +func (gw *Node) StateMarketParticipants(ctx context.Context, tsk types.TipSetKey) (map[string]api.MarketBalance, error) { + if err := gw.limit(ctx, stateRateLimitTokens); err != nil { + return nil, err + } + if err := gw.checkTipsetKey(ctx, tsk); err != nil { + return nil, err + } + return gw.target.StateMarketParticipants(ctx, tsk) +} + func (gw *Node) MpoolPending(ctx context.Context, tsk types.TipSetKey) ([]*types.SignedMessage, error) { if err := gw.limit(ctx, stateRateLimitTokens); err != nil { return nil, err From b3cc92f166a3e1e992c2b1b91154c5b2dff10a5b Mon Sep 17 00:00:00 2001 From: Ales Dumikau Date: Wed, 27 Nov 2024 10:13:02 +0300 Subject: [PATCH 2/2] make gen --- build/openrpc/full.json | 1406 ++++++------------------------------ build/openrpc/gateway.json | 628 +++------------- build/openrpc/miner.json | 528 +++----------- build/openrpc/worker.json | 222 +----- 4 files changed, 470 insertions(+), 2314 deletions(-) diff --git a/build/openrpc/full.json b/build/openrpc/full.json index 7c61a997dcf..009fd6fbdfd 100644 --- a/build/openrpc/full.json +++ b/build/openrpc/full.json @@ -37,11 +37,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1352" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1358" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1364" } }, { @@ -64,11 +60,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1363" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1369" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1375" } }, { @@ -111,11 +103,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1374" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1380" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1386" } }, { @@ -226,11 +214,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1396" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1402" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1408" } }, { @@ -470,11 +454,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1407" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1413" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1419" } }, { @@ -705,11 +685,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1418" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1424" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1430" } }, { @@ -808,11 +784,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1429" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1435" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1441" } }, { @@ -844,11 +816,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1440" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1446" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1452" } }, { @@ -954,11 +922,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1451" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1457" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1463" } }, { @@ -1055,11 +1019,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1462" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1468" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1474" } }, { @@ -1118,11 +1078,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1473" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1479" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1485" } }, { @@ -1215,11 +1171,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1484" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1490" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1496" } }, { @@ -1303,11 +1255,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1495" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1501" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1507" } }, { @@ -1407,11 +1355,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1506" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1512" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1518" } }, { @@ -1467,11 +1411,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1517" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1523" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1529" } }, { @@ -1544,11 +1484,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1528" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1534" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1540" } }, { @@ -1621,11 +1557,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1539" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1545" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1551" } }, { @@ -1672,11 +1604,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1550" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1556" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1562" } }, { @@ -1708,11 +1636,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1561" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1567" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1573" } }, { @@ -1767,11 +1691,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1572" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1578" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1584" } }, { @@ -1823,11 +1743,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1594" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1600" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1606" } }, { @@ -1864,11 +1780,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1605" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1611" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1617" } }, { @@ -1915,11 +1827,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1616" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1622" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1628" } }, { @@ -1966,11 +1874,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1627" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1633" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1639" } }, { @@ -2050,11 +1954,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1638" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1644" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1650" } }, { @@ -2106,8 +2006,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1649" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1661" } }, { @@ -2211,10 +2110,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1660" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1655" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1672" } }, { @@ -2253,11 +2149,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1671" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1666" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1683" } }, { @@ -2304,11 +2196,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1682" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1677" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1694" } }, { @@ -2363,11 +2251,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1693" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1688" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1705" } }, { @@ -2396,11 +2280,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1704" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1699" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1716" } }, { @@ -2537,11 +2417,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1715" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1710" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1727" } }, { @@ -2570,11 +2446,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1726" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1721" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1738" } }, { @@ -2628,11 +2500,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1737" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1732" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1749" } }, { @@ -2723,11 +2591,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1748" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1743" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1760" } }, { @@ -2755,11 +2619,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1759" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1754" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1771" } }, { @@ -2849,11 +2709,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1770" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1765" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1782" } }, { @@ -3109,11 +2965,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1781" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1776" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1793" } }, { @@ -3358,11 +3210,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1792" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1787" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1804" } }, { @@ -3638,11 +3486,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1803" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1798" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1815" } }, { @@ -3935,11 +3779,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1814" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1809" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1826" } }, { @@ -3995,11 +3835,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1825" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1820" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1837" } }, { @@ -4046,11 +3882,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1836" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1831" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1848" } }, { @@ -4148,11 +3980,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1847" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1842" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1859" } }, { @@ -4218,11 +4046,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1858" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1853" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1870" } }, { @@ -4288,11 +4112,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1869" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1864" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1881" } }, { @@ -4401,11 +4221,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1880" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1875" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1892" } }, { @@ -4463,11 +4279,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1891" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1886" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1903" } }, { @@ -4589,11 +4401,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1902" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1897" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1914" } }, { @@ -4802,11 +4610,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1913" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1908" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1925" } }, { @@ -5004,11 +4808,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1924" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1919" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1936" } }, { @@ -5200,11 +5000,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1935" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1930" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1947" } }, { @@ -5413,11 +5209,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1946" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1941" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1958" } }, { @@ -5508,11 +5300,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1957" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1952" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1969" } }, { @@ -5570,11 +5358,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1968" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1963" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1980" } }, { @@ -5832,11 +5616,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1979" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1974" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1991" } }, { @@ -6111,11 +5891,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1990" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1985" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2002" } }, { @@ -6143,11 +5919,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2001" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L1996" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2013" } }, { @@ -6185,11 +5957,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2012" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2007" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2024" } }, { @@ -6297,11 +6065,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2023" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2018" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2035" } }, { @@ -6339,11 +6103,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2034" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2029" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2046" } }, { @@ -6372,11 +6132,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2045" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2040" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2057" } }, { @@ -6439,11 +6195,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2056" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2051" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2068" } }, { @@ -6506,11 +6258,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2067" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2062" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2079" } }, { @@ -6573,11 +6321,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2078" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2073" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2090" } }, { @@ -6622,11 +6366,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2089" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2084" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2101" } }, { @@ -6748,11 +6488,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2100" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2095" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2112" } }, { @@ -6928,11 +6664,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2111" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2106" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2123" } }, { @@ -7087,11 +6819,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2122" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2117" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2134" } }, { @@ -7213,11 +6941,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2133" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2128" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2145" } }, { @@ -7271,11 +6995,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2144" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2139" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2156" } }, { @@ -7329,11 +7049,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2155" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2150" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2167" } }, { @@ -7518,11 +7234,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2166" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2161" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2178" } }, { @@ -7605,11 +7317,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2177" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2172" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2189" } }, { @@ -7692,11 +7400,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2188" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2183" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2200" } }, { @@ -7863,11 +7567,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2199" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2194" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2211" } }, { @@ -8072,11 +7772,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2210" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2205" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2222" } }, { @@ -8170,11 +7866,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2221" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2216" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2233" } }, { @@ -8220,11 +7912,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2232" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2227" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2244" } }, { @@ -8251,11 +7939,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2243" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2238" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2255" } }, { @@ -8310,11 +7994,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2254" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2249" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2266" } }, { @@ -8393,11 +8073,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2265" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2260" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2277" } }, { @@ -8460,11 +8136,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2276" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2271" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2288" } }, { @@ -8607,11 +8279,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2287" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2282" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2299" } }, { @@ -8738,11 +8406,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2298" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2293" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2310" } }, { @@ -8844,11 +8508,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2309" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2304" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2321" } }, { @@ -9071,11 +8731,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2320" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2315" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2332" } }, { @@ -9258,11 +8914,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2331" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2326" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2343" } }, { @@ -9342,11 +8994,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2342" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2337" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2354" } }, { @@ -9391,11 +9039,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2353" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2348" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2365" } }, { @@ -9451,11 +9095,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2364" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2359" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2376" } }, { @@ -9535,11 +9175,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2375" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2370" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2387" } }, { @@ -9619,11 +9255,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2386" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2381" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2398" } }, { @@ -10108,11 +9740,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2397" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2392" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2409" } }, { @@ -10306,11 +9934,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2408" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2403" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2420" } }, { @@ -10465,11 +10089,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2419" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2414" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2431" } }, { @@ -10718,11 +10338,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2430" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2425" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2442" } }, { @@ -10877,11 +10493,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2441" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2436" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2453" } }, { @@ -11058,11 +10670,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2452" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2447" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2464" } }, { @@ -11160,11 +10768,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2463" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2458" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2475" } }, { @@ -11329,11 +10933,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2474" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2469" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2486" } }, { @@ -11372,11 +10972,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2485" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2480" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2497" } }, { @@ -11441,11 +11037,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2496" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2491" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2508" } }, { @@ -11491,11 +11083,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2507" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2502" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2519" } }, { @@ -11645,11 +11233,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2518" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2513" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2530" } }, { @@ -11786,11 +11370,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2529" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2524" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2541" } }, { @@ -12021,11 +11601,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2540" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2535" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2552" } }, { @@ -12162,11 +11738,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2551" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2546" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2563" } }, { @@ -12331,11 +11903,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2562" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2557" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2574" } }, { @@ -12412,11 +11980,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2573" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2568" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2585" } }, { @@ -12611,11 +12175,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2595" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2590" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2607" } }, { @@ -12794,11 +12354,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2606" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2601" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2618" } }, { @@ -12960,11 +12516,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2617" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2612" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2629" } }, { @@ -13112,11 +12664,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2628" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2623" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2640" } }, { @@ -13344,11 +12892,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2639" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2634" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2651" } }, { @@ -13496,11 +13040,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2650" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2645" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2662" } }, { @@ -13712,11 +13252,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2661" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2656" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2673" } }, { @@ -13922,11 +13458,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2672" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2667" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2684" } }, { @@ -13994,11 +13526,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2683" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2678" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2695" } }, { @@ -14115,11 +13643,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2694" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2689" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2706" } }, { @@ -14210,11 +13734,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2705" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2700" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2717" } }, { @@ -14300,11 +13820,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2716" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2711" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2728" } }, { @@ -14499,11 +14015,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2727" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2722" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2739" } }, { @@ -14665,11 +14177,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2738" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2733" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2750" } }, { @@ -14865,11 +14373,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2749" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2744" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2761" } }, { @@ -15049,11 +14553,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2760" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2755" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2772" } }, { @@ -15216,11 +14716,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2771" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2766" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2783" } }, { @@ -15247,11 +14743,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2782" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2777" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2794" } }, { @@ -15278,11 +14770,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2793" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2788" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2805" } }, { @@ -15381,11 +14869,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2804" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2799" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2816" } }, { @@ -15431,11 +14915,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2815" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2810" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2827" } }, { @@ -15535,11 +15015,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2826" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2821" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2838" } }, { @@ -15655,11 +15131,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2837" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2832" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2849" } }, { @@ -15707,11 +15179,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2848" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2843" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2860" } }, { @@ -15803,11 +15271,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2859" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2854" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2871" } }, { @@ -15922,11 +15386,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2870" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2865" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2882" } }, { @@ -15974,11 +15434,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2881" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2876" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2893" } }, { @@ -16015,11 +15471,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2892" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2887" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2904" } }, { @@ -16291,11 +15743,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2903" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2898" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2915" } }, { @@ -16343,11 +15791,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2914" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2909" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2926" } }, { @@ -16405,11 +15849,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2925" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2920" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2937" } }, { @@ -16614,11 +16054,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2936" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2931" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2948" } }, { @@ -16821,11 +16257,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2947" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2942" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2959" } }, { @@ -16994,11 +16426,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2958" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2953" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2970" } }, { @@ -17202,11 +16630,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2969" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2964" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2981" } }, { @@ -17373,11 +16797,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2980" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2975" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2992" } }, { @@ -17584,11 +17004,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2991" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2986" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3003" } }, { @@ -17656,11 +17072,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3002" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L2997" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3014" } }, { @@ -17712,11 +17124,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3013" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3008" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3025" } }, { @@ -17765,11 +17173,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3024" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3019" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3036" } }, { @@ -17860,11 +17264,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3035" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3030" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3047" } }, { @@ -18370,11 +17770,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3046" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3041" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3058" } }, { @@ -18480,11 +17876,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3057" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3052" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3069" } }, { @@ -18536,11 +17928,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3068" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3063" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3080" } }, { @@ -19092,11 +18480,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3079" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3074" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3091" } }, { @@ -19210,11 +18594,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3090" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3085" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3102" } }, { @@ -19311,11 +18691,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3101" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3096" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3113" } }, { @@ -19415,11 +18791,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3112" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3107" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3124" } }, { @@ -19507,11 +18879,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3123" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3118" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3135" } }, { @@ -19611,11 +18979,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3134" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3129" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3146" } }, { @@ -19702,11 +19066,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3145" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3140" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3157" } }, { @@ -19797,11 +19157,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3156" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3151" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3168" } }, { @@ -19926,11 +19282,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3167" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3162" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3179" } }, { @@ -20039,11 +19391,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3178" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3173" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3190" } }, { @@ -20113,11 +19461,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3189" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3184" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3201" } }, { @@ -20220,11 +19564,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3200" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3195" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3212" } }, { @@ -20285,11 +19625,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3211" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3206" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3223" } }, { @@ -20419,11 +19755,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3222" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3217" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3234" } }, { @@ -20530,11 +19862,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3233" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3228" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3245" } }, { @@ -20758,11 +20086,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3244" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3239" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3256" } }, { @@ -20839,11 +20163,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3255" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3250" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3267" } }, { @@ -20920,11 +20240,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3266" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3261" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3278" } }, { @@ -21033,11 +20349,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3277" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3272" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3289" } }, { @@ -21146,11 +20458,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3288" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3283" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3300" } }, { @@ -21211,11 +20519,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3299" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3294" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3311" } }, { @@ -21325,11 +20629,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3310" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3305" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3322" } }, { @@ -21390,11 +20690,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3321" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3316" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3333" } }, { @@ -21462,11 +20758,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3332" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3327" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3344" } }, { @@ -21534,11 +20826,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3343" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3338" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3355" } }, { @@ -21619,11 +20907,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3354" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3349" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3366" } }, { @@ -21777,11 +21061,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3365" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3360" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3377" } }, { @@ -21853,11 +21133,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3376" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3371" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3388" } }, { @@ -22021,11 +21297,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3387" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3382" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3399" } }, { @@ -22190,11 +21462,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3398" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3393" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3410" } }, { @@ -22264,11 +21532,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3409" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3404" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3421" } }, { @@ -22336,11 +21600,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3420" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3415" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3432" } }, { @@ -22433,11 +21693,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3431" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3426" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3443" } }, { @@ -22508,11 +21764,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3442" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3437" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3454" } }, { @@ -22713,11 +21965,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3453" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3448" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3465" } }, { @@ -22849,11 +22097,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3464" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3459" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3476" } }, { @@ -22956,11 +22200,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3475" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3470" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3487" } }, { @@ -23097,11 +22337,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3486" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3481" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3498" } }, { @@ -23212,11 +22448,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3497" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3492" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3509" } }, { @@ -23348,11 +22580,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3508" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3503" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3520" } }, { @@ -23483,11 +22711,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3519" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3514" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3531" } }, { @@ -23558,11 +22782,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3530" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3525" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3542" } }, { @@ -23646,11 +22866,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3541" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3536" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3553" } }, { @@ -23736,11 +22952,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3552" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3547" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3564" } }, { @@ -23923,11 +23135,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3563" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3558" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3575" } }, { @@ -23954,11 +23162,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3574" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3569" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3586" } }, { @@ -24011,11 +23215,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3585" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3580" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3597" } }, { @@ -24103,11 +23303,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3596" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3591" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3608" } }, { @@ -24558,11 +23754,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3607" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3602" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3619" } }, { @@ -24729,11 +23921,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3618" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3613" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3630" } }, { @@ -24831,11 +24019,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3629" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3624" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3641" } }, { @@ -25008,11 +24192,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3640" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3635" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3652" } }, { @@ -25110,11 +24290,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3651" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3646" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3663" } }, { @@ -25265,11 +24441,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3662" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3657" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3674" } }, { @@ -25354,11 +24526,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3673" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3668" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3685" } }, { @@ -25426,11 +24594,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3684" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3679" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3696" } }, { @@ -25482,11 +24646,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3695" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3690" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3707" } }, { @@ -25554,11 +24714,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3706" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3701" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3718" } }, { @@ -25719,11 +24875,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3717" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3712" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3729" } }, { @@ -25770,11 +24922,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3739" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3734" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3751" } }, { @@ -25821,11 +24969,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3750" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3745" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3762" } }, { @@ -25868,11 +25012,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3772" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3767" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3784" } }, { @@ -25968,11 +25108,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3783" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3778" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3795" } }, { @@ -26238,11 +25374,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3794" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3789" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3806" } }, { @@ -26265,11 +25397,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3805" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3800" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3817" } }, { @@ -26312,11 +25440,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3816" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3811" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3828" } }, { @@ -26367,11 +25491,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3827" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3822" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3839" } }, { @@ -26416,11 +25536,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3838" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3833" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3850" } }, { @@ -26448,11 +25564,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3849" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3844" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3861" } }, { @@ -26492,11 +25604,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3860" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3855" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3872" } }, { @@ -26555,11 +25663,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3871" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3866" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3883" } }, { @@ -26603,11 +25707,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3882" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3877" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3894" } }, { @@ -26666,11 +25766,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3893" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3888" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3905" } }, { @@ -26707,11 +25803,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3904" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3899" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3916" } }, { @@ -26755,11 +25847,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3915" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3910" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3927" } }, { @@ -26799,11 +25887,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3926" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3921" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3938" } }, { @@ -26878,11 +25962,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3937" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3932" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3949" } }, { @@ -27090,11 +26170,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3948" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3943" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3960" } }, { @@ -27138,11 +26214,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3959" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3954" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3971" } }, { @@ -27232,11 +26304,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3970" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3965" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3982" } }, { @@ -27263,11 +26331,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3981" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3976" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3993" } } ] diff --git a/build/openrpc/gateway.json b/build/openrpc/gateway.json index 4682c2e8f61..531b4b9a614 100644 --- a/build/openrpc/gateway.json +++ b/build/openrpc/gateway.json @@ -242,11 +242,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3992" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3987" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4004" } }, { @@ -477,11 +473,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4003" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L3998" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4015" } }, { @@ -580,11 +572,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4014" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4009" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4026" } }, { @@ -616,11 +604,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4025" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4020" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4037" } }, { @@ -726,10 +710,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4036" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4031" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4048" } }, { @@ -788,8 +769,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4042" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4059" } }, { @@ -882,11 +862,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4047" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4053" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4070" } }, { @@ -970,11 +946,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4058" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4064" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4081" } }, { @@ -1074,11 +1046,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4069" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4075" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4092" } }, { @@ -1134,11 +1102,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4080" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4086" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4103" } }, { @@ -1211,11 +1175,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4091" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4097" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4114" } }, { @@ -1288,11 +1248,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4102" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4108" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4125" } }, { @@ -1339,11 +1295,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4113" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4119" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4136" } }, { @@ -1375,11 +1327,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4124" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4130" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4147" } }, { @@ -1416,11 +1364,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4146" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4152" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4169" } }, { @@ -1467,11 +1411,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4157" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4163" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4180" } }, { @@ -1511,11 +1451,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4168" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4174" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4191" } }, { @@ -1562,11 +1498,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4179" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4185" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4202" } }, { @@ -1621,11 +1553,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4190" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4196" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4213" } }, { @@ -1654,11 +1582,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4201" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4207" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4224" } }, { @@ -1795,11 +1719,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4212" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4218" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4235" } }, { @@ -1828,11 +1748,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4223" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4229" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4246" } }, { @@ -1886,11 +1802,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4234" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4240" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4257" } }, { @@ -1981,11 +1893,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4245" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4251" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4268" } }, { @@ -2013,11 +1921,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4256" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4262" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4279" } }, { @@ -2107,11 +2011,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4267" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4273" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4290" } }, { @@ -2367,11 +2267,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4278" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4284" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4301" } }, { @@ -2616,11 +2512,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4289" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4295" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4312" } }, { @@ -2896,11 +2788,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4300" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4306" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4323" } }, { @@ -3193,11 +3081,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4311" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4317" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4334" } }, { @@ -3253,11 +3137,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4322" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4328" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4345" } }, { @@ -3304,11 +3184,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4333" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4339" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4356" } }, { @@ -3406,11 +3282,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4344" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4350" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4367" } }, { @@ -3476,11 +3348,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4355" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4361" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4378" } }, { @@ -3546,11 +3414,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4366" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4372" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4389" } }, { @@ -3659,11 +3523,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4377" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4383" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4400" } }, { @@ -3721,11 +3581,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4388" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4394" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4411" } }, { @@ -3847,8 +3703,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4399" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4422" } }, { @@ -4057,7 +3912,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4410" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4433" } }, { @@ -4255,10 +4110,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4421" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4405" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4444" } }, { @@ -4450,11 +4302,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4432" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4416" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4455" } }, { @@ -4663,11 +4511,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4443" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4427" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4466" } }, { @@ -4758,11 +4602,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4454" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4438" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4477" } }, { @@ -4820,11 +4660,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4465" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4449" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4488" } }, { @@ -5082,11 +4918,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4476" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4460" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4499" } }, { @@ -5361,11 +5193,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4487" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4471" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4510" } }, { @@ -5393,11 +5221,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4498" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4482" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4521" } }, { @@ -5435,11 +5259,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4509" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4493" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4532" } }, { @@ -5547,11 +5367,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4520" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4504" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4543" } }, { @@ -5589,11 +5405,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4531" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4515" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4554" } }, { @@ -5622,11 +5434,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4542" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4526" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4565" } }, { @@ -5689,11 +5497,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4553" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4537" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4576" } }, { @@ -5756,11 +5560,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4564" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4548" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4587" } }, { @@ -5805,11 +5605,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4575" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4559" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4598" } }, { @@ -5931,11 +5727,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4586" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4570" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4609" } }, { @@ -6111,11 +5903,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4597" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4581" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4620" } }, { @@ -6270,11 +6058,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4608" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4592" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4631" } }, { @@ -6396,11 +6180,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4619" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4603" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4642" } }, { @@ -6454,11 +6234,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4630" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4614" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4653" } }, { @@ -6512,11 +6288,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4641" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4625" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4664" } }, { @@ -6579,11 +6351,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4652" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4636" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4675" } }, { @@ -6685,11 +6453,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4663" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4647" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4686" } }, { @@ -6912,11 +6676,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4674" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4658" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4697" } }, { @@ -7099,11 +6859,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4685" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4669" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4708" } }, { @@ -7297,11 +7053,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4696" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4680" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4719" } }, { @@ -7347,11 +7099,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4707" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4691" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4730" } }, { @@ -7501,11 +7249,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4718" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4702" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4741" } }, { @@ -7642,11 +7386,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4729" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4713" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4752" } }, { @@ -7714,11 +7454,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4740" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4724" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4763" } }, { @@ -7835,11 +7571,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4751" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4735" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4774" } }, { @@ -7930,11 +7662,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4762" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4746" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4785" } }, { @@ -8020,11 +7748,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4773" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4757" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4796" } }, { @@ -8051,11 +7775,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4784" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4768" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4807" } }, { @@ -8082,11 +7802,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4795" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4779" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4818" } }, { @@ -8154,11 +7870,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4806" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4790" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4829" } }, { @@ -8664,11 +8376,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4817" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4801" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4840" } }, { @@ -8765,11 +8473,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4828" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4812" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4851" } }, { @@ -8869,11 +8573,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4839" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4823" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4862" } }, { @@ -8973,11 +8673,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4850" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4834" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4873" } }, { @@ -9102,11 +8798,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4861" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4845" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4884" } }, { @@ -9215,11 +8907,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4872" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4856" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4895" } }, { @@ -9322,11 +9010,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4883" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4867" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4906" } }, { @@ -9456,11 +9140,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4894" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4878" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4917" } }, { @@ -9567,11 +9247,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4905" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4889" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4928" } }, { @@ -9632,11 +9308,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4916" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4900" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4939" } }, { @@ -9704,11 +9376,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4927" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4911" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4950" } }, { @@ -9789,10 +9457,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4938" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4922" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4961" } }, { @@ -9864,8 +9529,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4933" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4972" } }, { @@ -10029,10 +9693,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4949" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4944" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4983" } }, { @@ -10100,8 +9761,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4955" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4994" } }, { @@ -10194,10 +9854,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4960" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4966" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5005" } }, { @@ -10268,8 +9925,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4977" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5016" } }, { @@ -10470,10 +10126,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4971" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4988" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5027" } }, { @@ -10610,8 +10263,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4999" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5038" } }, { @@ -10722,11 +10374,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4982" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5010" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5049" } }, { @@ -10857,11 +10505,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L4993" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5021" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5060" } }, { @@ -10947,10 +10591,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5004" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5032" + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5071" } }, { @@ -11133,8 +10774,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5043" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5082" } }, { @@ -11161,11 +10801,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5015" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5054" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5093" } }, { @@ -11218,11 +10854,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5026" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5065" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5104" } }, { @@ -11310,11 +10942,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5037" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5076" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5115" } }, { @@ -11765,11 +11393,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5048" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5087" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5126" } }, { @@ -11936,11 +11560,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5059" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5098" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5137" } }, { @@ -12113,11 +11733,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5070" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5109" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5148" } }, { @@ -12185,11 +11801,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5081" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5120" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5159" } }, { @@ -12257,11 +11869,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5092" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5131" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5170" } }, { @@ -12422,11 +12030,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5103" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5142" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5181" } }, { @@ -12471,11 +12075,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5125" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5164" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5203" } }, { @@ -12520,11 +12120,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5136" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5175" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5214" } }, { @@ -12551,11 +12147,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5147" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5186" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5225" } } ] diff --git a/build/openrpc/miner.json b/build/openrpc/miner.json index 06f6d1ab5b0..d91c233035a 100644 --- a/build/openrpc/miner.json +++ b/build/openrpc/miner.json @@ -30,11 +30,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5433" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5472" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5511" } }, { @@ -113,11 +109,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5444" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5483" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5522" } }, { @@ -163,11 +155,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5455" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5494" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5533" } }, { @@ -215,11 +203,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5466" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5505" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5544" } }, { @@ -267,11 +251,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5477" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5516" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5555" } }, { @@ -374,11 +354,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5488" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5527" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5566" } }, { @@ -452,11 +428,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5499" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5538" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5577" } }, { @@ -619,11 +591,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5510" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5549" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5588" } }, { @@ -774,11 +742,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5521" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5560" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5599" } }, { @@ -817,11 +781,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5532" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5571" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5610" } }, { @@ -953,11 +913,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5543" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5582" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5621" } }, { @@ -989,11 +945,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5554" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5593" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5632" } }, { @@ -1034,11 +986,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5565" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5604" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5643" } }, { @@ -1106,11 +1054,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5576" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5615" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5654" } }, { @@ -1241,11 +1185,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5587" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5626" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5665" } }, { @@ -1376,11 +1316,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5598" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5637" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5676" } }, { @@ -1480,11 +1416,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5609" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5648" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5687" } }, { @@ -1584,11 +1516,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5620" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5659" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5698" } }, { @@ -1688,11 +1616,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5631" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5670" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5709" } }, { @@ -1792,11 +1716,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5642" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5681" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5720" } }, { @@ -1896,11 +1816,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5653" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5692" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5731" } }, { @@ -2000,11 +1916,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5664" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5703" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5742" } }, { @@ -2128,11 +2040,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5675" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5714" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5753" } }, { @@ -2256,11 +2164,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5686" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5725" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5764" } }, { @@ -2375,11 +2279,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5697" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5736" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5775" } }, { @@ -2479,11 +2379,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5708" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5747" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5786" } }, { @@ -2616,11 +2512,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5719" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5758" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5797" } }, { @@ -2744,11 +2636,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5730" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5769" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5808" } }, { @@ -2872,11 +2760,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5741" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5780" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5819" } }, { @@ -3000,11 +2884,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5752" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5791" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5830" } }, { @@ -3137,11 +3017,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5763" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5802" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5841" } }, { @@ -3241,11 +3117,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5774" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5813" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5852" } }, { @@ -3285,11 +3157,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5785" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5824" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5863" } }, { @@ -3361,11 +3229,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5796" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5835" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5874" } }, { @@ -3415,11 +3279,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5807" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5846" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5885" } }, { @@ -3463,11 +3323,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5818" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5857" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5896" } }, { @@ -3508,11 +3364,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5829" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5868" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5907" } }, { @@ -3756,11 +3608,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5840" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5879" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5918" } }, { @@ -3834,11 +3682,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5851" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5890" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5929" } }, { @@ -3888,11 +3732,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5862" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5901" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5940" } }, { @@ -3921,11 +3761,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5873" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5912" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5951" } }, { @@ -3954,11 +3790,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5884" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5923" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5962" } }, { @@ -4014,11 +3846,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5895" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5934" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5973" } }, { @@ -4041,11 +3869,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5906" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5945" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5984" } }, { @@ -4105,11 +3929,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5917" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5956" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5995" } }, { @@ -4148,11 +3968,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5928" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5967" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6006" } }, { @@ -4192,11 +4008,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5939" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5978" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6017" } }, { @@ -4269,11 +4081,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5950" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5989" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6028" } }, { @@ -4337,11 +4145,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5961" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6000" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6039" } }, { @@ -4404,11 +4208,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5972" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6011" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6050" } }, { @@ -4458,11 +4258,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5983" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6022" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6061" } }, { @@ -5021,11 +4817,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L5994" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6033" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6072" } }, { @@ -5066,11 +4858,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6005" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6044" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6083" } }, { @@ -5111,11 +4899,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6016" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6055" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6094" } }, { @@ -5156,11 +4940,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6027" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6066" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6105" } }, { @@ -5201,11 +4981,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6038" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6077" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6116" } }, { @@ -5246,11 +5022,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6049" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6088" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6127" } }, { @@ -5281,11 +5053,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6060" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6099" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6138" } }, { @@ -5335,11 +5103,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6071" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6110" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6149" } }, { @@ -5380,11 +5144,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6082" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6121" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6160" } }, { @@ -5423,11 +5183,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6093" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6132" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6171" } }, { @@ -5491,11 +5247,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6104" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6143" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6182" } }, { @@ -5553,11 +5305,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6115" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6154" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6193" } }, { @@ -6004,11 +5752,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6126" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6165" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6204" } }, { @@ -6044,11 +5788,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6137" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6176" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6215" } }, { @@ -6191,11 +5931,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6148" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6187" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6226" } }, { @@ -6251,11 +5987,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6159" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6198" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6237" } }, { @@ -6294,11 +6026,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6170" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6209" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6248" } }, { @@ -6475,11 +6203,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6181" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6220" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6259" } }, { @@ -6531,11 +6255,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6192" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6231" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6270" } }, { @@ -6727,11 +6447,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6203" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6242" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6281" } }, { @@ -6831,11 +6547,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6214" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6253" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6292" } }, { @@ -6889,11 +6601,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6225" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6264" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6303" } }, { @@ -6932,11 +6640,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6236" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6275" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6314" } }, { @@ -7021,11 +6725,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6247" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6286" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6325" } }, { @@ -7219,11 +6919,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6258" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6297" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6336" } }, { @@ -7321,11 +7017,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6269" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6308" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6347" } }, { @@ -7457,11 +7149,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6280" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6319" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6358" } }, { @@ -7515,11 +7203,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6291" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6330" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6369" } }, { @@ -7553,11 +7237,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6302" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6341" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6380" } }, { @@ -7644,11 +7324,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6313" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6352" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6391" } }, { @@ -7702,11 +7378,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6324" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6363" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6402" } }, { @@ -7806,11 +7478,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6335" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6374" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6413" } }, { @@ -7887,11 +7555,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6346" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6385" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6424" } }, { @@ -7982,11 +7646,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6357" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6396" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6435" } }, { @@ -8025,11 +7685,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6368" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6407" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6446" } }, { @@ -8145,11 +7801,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6379" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6418" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6457" } }, { @@ -10249,11 +9901,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6390" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6429" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6468" } } ] diff --git a/build/openrpc/worker.json b/build/openrpc/worker.json index 7858352d32e..f861285b147 100644 --- a/build/openrpc/worker.json +++ b/build/openrpc/worker.json @@ -161,11 +161,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6478" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6517" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6556" } }, { @@ -256,11 +252,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6489" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6528" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6567" } }, { @@ -428,11 +420,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6500" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6539" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6578" } }, { @@ -459,11 +447,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6511" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6550" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6589" } }, { @@ -613,11 +597,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6522" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6561" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6600" } }, { @@ -720,11 +700,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6533" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6572" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6611" } }, { @@ -827,11 +803,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6544" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6583" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6622" } }, { @@ -953,11 +925,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6555" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6594" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6633" } }, { @@ -1167,11 +1135,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6566" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6605" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6644" } }, { @@ -1342,11 +1306,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6577" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6616" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6655" } }, { @@ -3390,11 +3350,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6588" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6627" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6666" } }, { @@ -3514,11 +3470,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6599" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6638" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6677" } }, { @@ -3579,11 +3531,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6610" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6649" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6688" } }, { @@ -3621,11 +3569,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6621" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6660" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6699" } }, { @@ -3785,11 +3729,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6632" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6671" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6710" } }, { @@ -3973,11 +3913,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6643" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6682" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6721" } }, { @@ -4118,11 +4054,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6654" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6693" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6732" } }, { @@ -4175,11 +4107,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6665" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6704" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6743" } }, { @@ -4322,11 +4250,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6676" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6715" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6754" } }, { @@ -4550,11 +4474,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6687" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6726" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6765" } }, { @@ -4681,11 +4601,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6698" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6737" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6776" } }, { @@ -4852,11 +4768,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6709" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6748" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6787" } }, { @@ -4983,11 +4895,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6720" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6759" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6798" } }, { @@ -5025,11 +4933,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6731" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6770" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6809" } }, { @@ -5068,11 +4972,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6742" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6781" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6820" } }, { @@ -5095,11 +4995,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6753" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6792" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6831" } }, { @@ -5138,11 +5034,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6764" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6803" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6842" } }, { @@ -5165,11 +5057,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6775" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6814" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6853" } }, { @@ -5208,11 +5096,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6786" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6825" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6864" } }, { @@ -5246,11 +5130,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6797" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6836" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6875" } }, { @@ -5304,11 +5184,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6808" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6847" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6886" } }, { @@ -5347,11 +5223,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6819" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6858" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6897" } }, { @@ -5390,11 +5262,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6830" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6869" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6908" } }, { @@ -5429,11 +5297,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6841" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6880" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6919" } }, { @@ -5613,11 +5477,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6852" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6891" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6930" } }, { @@ -5646,11 +5506,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6863" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6902" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6941" } }, { @@ -5673,11 +5529,7 @@ "deprecated": false, "externalDocs": { "description": "Github remote link", -<<<<<<< HEAD - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6874" -======= - "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6913" ->>>>>>> 12e6428ad (feat(gateway): add new method) + "url": "https://github.com/filecoin-project/lotus/blob/master/api/proxy_gen.go#L6952" } } ]