broker

package
v0.0.0-...-269d6e4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 24, 2022 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AuctionClosed_Status_name = map[int32]string{
		0: "STATUS_UNSPECIFIED",
		1: "STATUS_QUEUED",
		2: "STATUS_STARTED",
		3: "STATUS_FINALIZED",
	}
	AuctionClosed_Status_value = map[string]int32{
		"STATUS_UNSPECIFIED": 0,
		"STATUS_QUEUED":      1,
		"STATUS_STARTED":     2,
		"STATUS_FINALIZED":   3,
	}
)

Enum value maps for AuctionClosed_Status.

View Source
var (
	StorageRequest_Status_name = map[int32]string{
		0: "STATUS_UNSPECIFIED",
		1: "STATUS_BATCHING",
		2: "STATUS_PREPARING",
		3: "STATUS_AUCTIONING",
		4: "STATUS_DEALMAKING",
		5: "STATUS_SUCCESS",
		6: "STATUS_ERROR",
	}
	StorageRequest_Status_value = map[string]int32{
		"STATUS_UNSPECIFIED": 0,
		"STATUS_BATCHING":    1,
		"STATUS_PREPARING":   2,
		"STATUS_AUCTIONING":  3,
		"STATUS_DEALMAKING":  4,
		"STATUS_SUCCESS":     5,
		"STATUS_ERROR":       6,
	}
)

Enum value maps for StorageRequest_Status.

View Source
var APIService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "broker.v1.APIService",
	HandlerType: (*APIServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateStorageRequest",
			Handler:    _APIService_CreateStorageRequest_Handler,
		},
		{
			MethodName: "CreatePreparedStorageRequest",
			Handler:    _APIService_CreatePreparedStorageRequest_Handler,
		},
		{
			MethodName: "GetStorageRequestInfo",
			Handler:    _APIService_GetStorageRequestInfo_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "broker/v1/broker.proto",
}

APIService_ServiceDesc is the grpc.ServiceDesc for APIService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_broker_v1_auctioneer_proto protoreflect.FileDescriptor
View Source
var File_broker_v1_broker_proto protoreflect.FileDescriptor

Functions

func RegisterAPIServiceServer

func RegisterAPIServiceServer(s grpc.ServiceRegistrar, srv APIServiceServer)

Types

type APIServiceClient

type APIServiceClient interface {
	CreateStorageRequest(ctx context.Context, in *CreateStorageRequestRequest, opts ...grpc.CallOption) (*CreateStorageRequestResponse, error)
	CreatePreparedStorageRequest(ctx context.Context, in *CreatePreparedStorageRequestRequest, opts ...grpc.CallOption) (*CreatePreparedStorageRequestResponse, error)
	GetStorageRequestInfo(ctx context.Context, in *GetStorageRequestInfoRequest, opts ...grpc.CallOption) (*GetStorageRequestInfoResponse, error)
}

APIServiceClient is the client API for APIService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewAPIServiceClient

func NewAPIServiceClient(cc grpc.ClientConnInterface) APIServiceClient

type APIServiceServer

type APIServiceServer interface {
	CreateStorageRequest(context.Context, *CreateStorageRequestRequest) (*CreateStorageRequestResponse, error)
	CreatePreparedStorageRequest(context.Context, *CreatePreparedStorageRequestRequest) (*CreatePreparedStorageRequestResponse, error)
	GetStorageRequestInfo(context.Context, *GetStorageRequestInfoRequest) (*GetStorageRequestInfoResponse, error)
	// contains filtered or unexported methods
}

APIServiceServer is the server API for APIService service. All implementations must embed UnimplementedAPIServiceServer for forward compatibility

type AuctionBidReceived

type AuctionBidReceived struct {
	Ts      *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"`
	Auction *AuctionSummary        `protobuf:"bytes,2,opt,name=auction,proto3" json:"auction,omitempty"`
	Bid     *Bid                   `protobuf:"bytes,3,opt,name=bid,proto3" json:"bid,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionBidReceived) Descriptor deprecated

func (*AuctionBidReceived) Descriptor() ([]byte, []int)

Deprecated: Use AuctionBidReceived.ProtoReflect.Descriptor instead.

func (*AuctionBidReceived) GetAuction

func (x *AuctionBidReceived) GetAuction() *AuctionSummary

func (*AuctionBidReceived) GetBid

func (x *AuctionBidReceived) GetBid() *Bid

func (*AuctionBidReceived) GetTs

func (*AuctionBidReceived) ProtoMessage

func (*AuctionBidReceived) ProtoMessage()

func (*AuctionBidReceived) ProtoReflect

func (x *AuctionBidReceived) ProtoReflect() protoreflect.Message

func (*AuctionBidReceived) Reset

func (x *AuctionBidReceived) Reset()

func (*AuctionBidReceived) String

func (x *AuctionBidReceived) String() string

type AuctionClosed

type AuctionClosed struct {
	OperationId     string                               `protobuf:"bytes,1,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
	Id              string                               `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	BatchId         string                               `protobuf:"bytes,3,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	DealDuration    uint64                               `protobuf:"varint,4,opt,name=deal_duration,json=dealDuration,proto3" json:"deal_duration,omitempty"`
	DealReplication uint32                               `protobuf:"varint,5,opt,name=deal_replication,json=dealReplication,proto3" json:"deal_replication,omitempty"`
	DealVerified    bool                                 `protobuf:"varint,6,opt,name=deal_verified,json=dealVerified,proto3" json:"deal_verified,omitempty"`
	Status          AuctionClosed_Status                 `protobuf:"varint,7,opt,name=status,proto3,enum=broker.v1.AuctionClosed_Status" json:"status,omitempty"`
	WinningBids     map[string]*AuctionClosed_WinningBid `` /* 182-byte string literal not displayed */
	Error           string                               `protobuf:"bytes,9,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionClosed) Descriptor deprecated

func (*AuctionClosed) Descriptor() ([]byte, []int)

Deprecated: Use AuctionClosed.ProtoReflect.Descriptor instead.

func (*AuctionClosed) GetBatchId

func (x *AuctionClosed) GetBatchId() string

func (*AuctionClosed) GetDealDuration

func (x *AuctionClosed) GetDealDuration() uint64

func (*AuctionClosed) GetDealReplication

func (x *AuctionClosed) GetDealReplication() uint32

func (*AuctionClosed) GetDealVerified

func (x *AuctionClosed) GetDealVerified() bool

func (*AuctionClosed) GetError

func (x *AuctionClosed) GetError() string

func (*AuctionClosed) GetId

func (x *AuctionClosed) GetId() string

func (*AuctionClosed) GetOperationId

func (x *AuctionClosed) GetOperationId() string

func (*AuctionClosed) GetStatus

func (x *AuctionClosed) GetStatus() AuctionClosed_Status

func (*AuctionClosed) GetWinningBids

func (x *AuctionClosed) GetWinningBids() map[string]*AuctionClosed_WinningBid

func (*AuctionClosed) ProtoMessage

func (*AuctionClosed) ProtoMessage()

func (*AuctionClosed) ProtoReflect

func (x *AuctionClosed) ProtoReflect() protoreflect.Message

func (*AuctionClosed) Reset

func (x *AuctionClosed) Reset()

func (*AuctionClosed) String

func (x *AuctionClosed) String() string

type AuctionClosed_Status

type AuctionClosed_Status int32
const (
	AuctionClosed_STATUS_UNSPECIFIED AuctionClosed_Status = 0
	AuctionClosed_STATUS_QUEUED      AuctionClosed_Status = 1
	AuctionClosed_STATUS_STARTED     AuctionClosed_Status = 2
	AuctionClosed_STATUS_FINALIZED   AuctionClosed_Status = 3
)

func (AuctionClosed_Status) Descriptor

func (AuctionClosed_Status) Enum

func (AuctionClosed_Status) EnumDescriptor deprecated

func (AuctionClosed_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use AuctionClosed_Status.Descriptor instead.

func (AuctionClosed_Status) Number

func (AuctionClosed_Status) String

func (x AuctionClosed_Status) String() string

func (AuctionClosed_Status) Type

type AuctionClosed_WinningBid

type AuctionClosed_WinningBid struct {
	StorageProviderId string `protobuf:"bytes,1,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	Price             int64  `protobuf:"varint,2,opt,name=price,proto3" json:"price,omitempty"`
	StartEpoch        uint64 `protobuf:"varint,3,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	FastRetrieval     bool   `protobuf:"varint,4,opt,name=fast_retrieval,json=fastRetrieval,proto3" json:"fast_retrieval,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionClosed_WinningBid) Descriptor deprecated

func (*AuctionClosed_WinningBid) Descriptor() ([]byte, []int)

Deprecated: Use AuctionClosed_WinningBid.ProtoReflect.Descriptor instead.

func (*AuctionClosed_WinningBid) GetFastRetrieval

func (x *AuctionClosed_WinningBid) GetFastRetrieval() bool

func (*AuctionClosed_WinningBid) GetPrice

func (x *AuctionClosed_WinningBid) GetPrice() int64

func (*AuctionClosed_WinningBid) GetStartEpoch

func (x *AuctionClosed_WinningBid) GetStartEpoch() uint64

func (*AuctionClosed_WinningBid) GetStorageProviderId

func (x *AuctionClosed_WinningBid) GetStorageProviderId() string

func (*AuctionClosed_WinningBid) ProtoMessage

func (*AuctionClosed_WinningBid) ProtoMessage()

func (*AuctionClosed_WinningBid) ProtoReflect

func (x *AuctionClosed_WinningBid) ProtoReflect() protoreflect.Message

func (*AuctionClosed_WinningBid) Reset

func (x *AuctionClosed_WinningBid) Reset()

func (*AuctionClosed_WinningBid) String

func (x *AuctionClosed_WinningBid) String() string

type AuctionProposalCidDelivered

type AuctionProposalCidDelivered struct {
	Ts          *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"`
	AuctionId   string                 `protobuf:"bytes,2,opt,name=auction_id,json=auctionId,proto3" json:"auction_id,omitempty"`
	BidderId    string                 `protobuf:"bytes,3,opt,name=bidder_id,json=bidderId,proto3" json:"bidder_id,omitempty"`
	BidId       string                 `protobuf:"bytes,4,opt,name=bid_id,json=bidId,proto3" json:"bid_id,omitempty"`
	ProposalCid []byte                 `protobuf:"bytes,5,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	ErrorCause  string                 `protobuf:"bytes,6,opt,name=error_cause,json=errorCause,proto3" json:"error_cause,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionProposalCidDelivered) Descriptor deprecated

func (*AuctionProposalCidDelivered) Descriptor() ([]byte, []int)

Deprecated: Use AuctionProposalCidDelivered.ProtoReflect.Descriptor instead.

func (*AuctionProposalCidDelivered) GetAuctionId

func (x *AuctionProposalCidDelivered) GetAuctionId() string

func (*AuctionProposalCidDelivered) GetBidId

func (x *AuctionProposalCidDelivered) GetBidId() string

func (*AuctionProposalCidDelivered) GetBidderId

func (x *AuctionProposalCidDelivered) GetBidderId() string

func (*AuctionProposalCidDelivered) GetErrorCause

func (x *AuctionProposalCidDelivered) GetErrorCause() string

func (*AuctionProposalCidDelivered) GetProposalCid

func (x *AuctionProposalCidDelivered) GetProposalCid() []byte

func (*AuctionProposalCidDelivered) GetTs

func (*AuctionProposalCidDelivered) ProtoMessage

func (*AuctionProposalCidDelivered) ProtoMessage()

func (*AuctionProposalCidDelivered) ProtoReflect

func (*AuctionProposalCidDelivered) Reset

func (x *AuctionProposalCidDelivered) Reset()

func (*AuctionProposalCidDelivered) String

func (x *AuctionProposalCidDelivered) String() string

type AuctionStarted

type AuctionStarted struct {
	Ts      *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"`
	Auction *AuctionSummary        `protobuf:"bytes,2,opt,name=auction,proto3" json:"auction,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionStarted) Descriptor deprecated

func (*AuctionStarted) Descriptor() ([]byte, []int)

Deprecated: Use AuctionStarted.ProtoReflect.Descriptor instead.

func (*AuctionStarted) GetAuction

func (x *AuctionStarted) GetAuction() *AuctionSummary

func (*AuctionStarted) GetTs

func (x *AuctionStarted) GetTs() *timestamppb.Timestamp

func (*AuctionStarted) ProtoMessage

func (*AuctionStarted) ProtoMessage()

func (*AuctionStarted) ProtoReflect

func (x *AuctionStarted) ProtoReflect() protoreflect.Message

func (*AuctionStarted) Reset

func (x *AuctionStarted) Reset()

func (*AuctionStarted) String

func (x *AuctionStarted) String() string

type AuctionSummary

type AuctionSummary struct {
	Id                       string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BatchId                  string                 `protobuf:"bytes,2,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	DealVerified             bool                   `protobuf:"varint,3,opt,name=deal_verified,json=dealVerified,proto3" json:"deal_verified,omitempty"`
	ExcludedStorageProviders []string               `` /* 135-byte string literal not displayed */
	Status                   string                 `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	StartedAt                *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
	UpdatedAt                *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Duration                 uint64                 `protobuf:"varint,8,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionSummary) Descriptor deprecated

func (*AuctionSummary) Descriptor() ([]byte, []int)

Deprecated: Use AuctionSummary.ProtoReflect.Descriptor instead.

func (*AuctionSummary) GetBatchId

func (x *AuctionSummary) GetBatchId() string

func (*AuctionSummary) GetDealVerified

func (x *AuctionSummary) GetDealVerified() bool

func (*AuctionSummary) GetDuration

func (x *AuctionSummary) GetDuration() uint64

func (*AuctionSummary) GetExcludedStorageProviders

func (x *AuctionSummary) GetExcludedStorageProviders() []string

func (*AuctionSummary) GetId

func (x *AuctionSummary) GetId() string

func (*AuctionSummary) GetStartedAt

func (x *AuctionSummary) GetStartedAt() *timestamppb.Timestamp

func (*AuctionSummary) GetStatus

func (x *AuctionSummary) GetStatus() string

func (*AuctionSummary) GetUpdatedAt

func (x *AuctionSummary) GetUpdatedAt() *timestamppb.Timestamp

func (*AuctionSummary) ProtoMessage

func (*AuctionSummary) ProtoMessage()

func (*AuctionSummary) ProtoReflect

func (x *AuctionSummary) ProtoReflect() protoreflect.Message

func (*AuctionSummary) Reset

func (x *AuctionSummary) Reset()

func (*AuctionSummary) String

func (x *AuctionSummary) String() string

type AuctionWinnerAcked

type AuctionWinnerAcked struct {
	Ts      *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"`
	Auction *AuctionSummary        `protobuf:"bytes,2,opt,name=auction,proto3" json:"auction,omitempty"`
	Bid     *Bid                   `protobuf:"bytes,3,opt,name=bid,proto3" json:"bid,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionWinnerAcked) Descriptor deprecated

func (*AuctionWinnerAcked) Descriptor() ([]byte, []int)

Deprecated: Use AuctionWinnerAcked.ProtoReflect.Descriptor instead.

func (*AuctionWinnerAcked) GetAuction

func (x *AuctionWinnerAcked) GetAuction() *AuctionSummary

func (*AuctionWinnerAcked) GetBid

func (x *AuctionWinnerAcked) GetBid() *Bid

func (*AuctionWinnerAcked) GetTs

func (*AuctionWinnerAcked) ProtoMessage

func (*AuctionWinnerAcked) ProtoMessage()

func (*AuctionWinnerAcked) ProtoReflect

func (x *AuctionWinnerAcked) ProtoReflect() protoreflect.Message

func (*AuctionWinnerAcked) Reset

func (x *AuctionWinnerAcked) Reset()

func (*AuctionWinnerAcked) String

func (x *AuctionWinnerAcked) String() string

type AuctionWinnerSelected

type AuctionWinnerSelected struct {
	Ts      *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=ts,proto3" json:"ts,omitempty"`
	Auction *AuctionSummary        `protobuf:"bytes,2,opt,name=auction,proto3" json:"auction,omitempty"`
	Bid     *Bid                   `protobuf:"bytes,3,opt,name=bid,proto3" json:"bid,omitempty"`
	// contains filtered or unexported fields
}

func (*AuctionWinnerSelected) Descriptor deprecated

func (*AuctionWinnerSelected) Descriptor() ([]byte, []int)

Deprecated: Use AuctionWinnerSelected.ProtoReflect.Descriptor instead.

func (*AuctionWinnerSelected) GetAuction

func (x *AuctionWinnerSelected) GetAuction() *AuctionSummary

func (*AuctionWinnerSelected) GetBid

func (x *AuctionWinnerSelected) GetBid() *Bid

func (*AuctionWinnerSelected) GetTs

func (*AuctionWinnerSelected) ProtoMessage

func (*AuctionWinnerSelected) ProtoMessage()

func (*AuctionWinnerSelected) ProtoReflect

func (x *AuctionWinnerSelected) ProtoReflect() protoreflect.Message

func (*AuctionWinnerSelected) Reset

func (x *AuctionWinnerSelected) Reset()

func (*AuctionWinnerSelected) String

func (x *AuctionWinnerSelected) String() string

type Bid

type Bid struct {
	StorageProviderId string                 `protobuf:"bytes,1,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	BidderId          string                 `protobuf:"bytes,2,opt,name=bidder_id,json=bidderId,proto3" json:"bidder_id,omitempty"`
	AskPrice          int64                  `protobuf:"varint,3,opt,name=ask_price,json=askPrice,proto3" json:"ask_price,omitempty"`                           // attoFIL per GiB per epoch
	VerifiedAskPrice  int64                  `protobuf:"varint,4,opt,name=verified_ask_price,json=verifiedAskPrice,proto3" json:"verified_ask_price,omitempty"` // attoFIL per GiB per epoch
	StartEpoch        uint64                 `protobuf:"varint,5,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	FastRetrieval     bool                   `protobuf:"varint,6,opt,name=fast_retrieval,json=fastRetrieval,proto3" json:"fast_retrieval,omitempty"`
	ReceivedAt        *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=received_at,json=receivedAt,proto3" json:"received_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Bid) Descriptor deprecated

func (*Bid) Descriptor() ([]byte, []int)

Deprecated: Use Bid.ProtoReflect.Descriptor instead.

func (*Bid) GetAskPrice

func (x *Bid) GetAskPrice() int64

func (*Bid) GetBidderId

func (x *Bid) GetBidderId() string

func (*Bid) GetFastRetrieval

func (x *Bid) GetFastRetrieval() bool

func (*Bid) GetReceivedAt

func (x *Bid) GetReceivedAt() *timestamppb.Timestamp

func (*Bid) GetStartEpoch

func (x *Bid) GetStartEpoch() uint64

func (*Bid) GetStorageProviderId

func (x *Bid) GetStorageProviderId() string

func (*Bid) GetVerifiedAskPrice

func (x *Bid) GetVerifiedAskPrice() int64

func (*Bid) ProtoMessage

func (*Bid) ProtoMessage()

func (*Bid) ProtoReflect

func (x *Bid) ProtoReflect() protoreflect.Message

func (*Bid) Reset

func (x *Bid) Reset()

func (*Bid) String

func (x *Bid) String() string

type BoostDealProposalAccepted

type BoostDealProposalAccepted struct {
	BatchId           string `protobuf:"bytes,1,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	StorageProviderId string `protobuf:"bytes,2,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	DealUid           string `protobuf:"bytes,3,opt,name=deal_uid,json=dealUid,proto3" json:"deal_uid,omitempty"`
	AuctionId         string `protobuf:"bytes,4,opt,name=auction_id,json=auctionId,proto3" json:"auction_id,omitempty"`
	BidId             string `protobuf:"bytes,5,opt,name=bid_id,json=bidId,proto3" json:"bid_id,omitempty"`
	// contains filtered or unexported fields
}

func (*BoostDealProposalAccepted) Descriptor deprecated

func (*BoostDealProposalAccepted) Descriptor() ([]byte, []int)

Deprecated: Use BoostDealProposalAccepted.ProtoReflect.Descriptor instead.

func (*BoostDealProposalAccepted) GetAuctionId

func (x *BoostDealProposalAccepted) GetAuctionId() string

func (*BoostDealProposalAccepted) GetBatchId

func (x *BoostDealProposalAccepted) GetBatchId() string

func (*BoostDealProposalAccepted) GetBidId

func (x *BoostDealProposalAccepted) GetBidId() string

func (*BoostDealProposalAccepted) GetDealUid

func (x *BoostDealProposalAccepted) GetDealUid() string

func (*BoostDealProposalAccepted) GetStorageProviderId

func (x *BoostDealProposalAccepted) GetStorageProviderId() string

func (*BoostDealProposalAccepted) ProtoMessage

func (*BoostDealProposalAccepted) ProtoMessage()

func (*BoostDealProposalAccepted) ProtoReflect

func (*BoostDealProposalAccepted) Reset

func (x *BoostDealProposalAccepted) Reset()

func (*BoostDealProposalAccepted) String

func (x *BoostDealProposalAccepted) String() string

type CreatePreparedStorageRequestRequest

type CreatePreparedStorageRequestRequest struct {
	Cid          string                                           `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	PreparedCar  *CreatePreparedStorageRequestRequest_PreparedCAR `protobuf:"bytes,2,opt,name=prepared_car,json=preparedCar,proto3" json:"prepared_car,omitempty"`
	Metadata     *CreatePreparedStorageRequestRequest_Metadata    `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	RemoteWallet *RemoteWallet                                    `protobuf:"bytes,4,opt,name=remote_wallet,json=remoteWallet,proto3" json:"remote_wallet,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestRequest) Descriptor deprecated

func (*CreatePreparedStorageRequestRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreatePreparedStorageRequestRequest.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestRequest) GetCid

func (*CreatePreparedStorageRequestRequest) GetMetadata

func (*CreatePreparedStorageRequestRequest) GetPreparedCar

func (*CreatePreparedStorageRequestRequest) GetRemoteWallet

func (x *CreatePreparedStorageRequestRequest) GetRemoteWallet() *RemoteWallet

func (*CreatePreparedStorageRequestRequest) ProtoMessage

func (*CreatePreparedStorageRequestRequest) ProtoMessage()

func (*CreatePreparedStorageRequestRequest) ProtoReflect

func (*CreatePreparedStorageRequestRequest) Reset

func (*CreatePreparedStorageRequestRequest) String

type CreatePreparedStorageRequestRequest_Metadata

type CreatePreparedStorageRequestRequest_Metadata struct {
	Origin    string            `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin,omitempty"`
	Tags      map[string]string `` /* 149-byte string literal not displayed */
	Providers []string          `protobuf:"bytes,3,rep,name=providers,proto3" json:"providers,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestRequest_Metadata) Descriptor deprecated

Deprecated: Use CreatePreparedStorageRequestRequest_Metadata.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestRequest_Metadata) GetOrigin

func (*CreatePreparedStorageRequestRequest_Metadata) GetProviders

func (*CreatePreparedStorageRequestRequest_Metadata) GetTags

func (*CreatePreparedStorageRequestRequest_Metadata) ProtoMessage

func (*CreatePreparedStorageRequestRequest_Metadata) ProtoReflect

func (*CreatePreparedStorageRequestRequest_Metadata) Reset

func (*CreatePreparedStorageRequestRequest_Metadata) String

type CreatePreparedStorageRequestRequest_PreparedCAR

type CreatePreparedStorageRequestRequest_PreparedCAR struct {
	PieceCid            string                                                   `protobuf:"bytes,1,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	PieceSize           uint64                                                   `protobuf:"varint,2,opt,name=piece_size,json=pieceSize,proto3" json:"piece_size,omitempty"`
	RepFactor           int64                                                    `protobuf:"varint,3,opt,name=rep_factor,json=repFactor,proto3" json:"rep_factor,omitempty"`
	Deadline            *timestamppb.Timestamp                                   `protobuf:"bytes,4,opt,name=deadline,proto3" json:"deadline,omitempty"`
	CarUrl              *CreatePreparedStorageRequestRequest_PreparedCAR_CARURL  `protobuf:"bytes,5,opt,name=car_url,json=carUrl,proto3" json:"car_url,omitempty"`
	CarIpfs             *CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS `protobuf:"bytes,6,opt,name=car_ipfs,json=carIpfs,proto3" json:"car_ipfs,omitempty"`
	ProposalStartOffset *durationpb.Duration                                     `protobuf:"bytes,7,opt,name=proposal_start_offset,json=proposalStartOffset,proto3" json:"proposal_start_offset,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestRequest_PreparedCAR) Descriptor deprecated

Deprecated: Use CreatePreparedStorageRequestRequest_PreparedCAR.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetCarIpfs

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetCarUrl

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetDeadline

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetPieceCid

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetPieceSize

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetProposalStartOffset

func (*CreatePreparedStorageRequestRequest_PreparedCAR) GetRepFactor

func (*CreatePreparedStorageRequestRequest_PreparedCAR) ProtoMessage

func (*CreatePreparedStorageRequestRequest_PreparedCAR) ProtoReflect

func (*CreatePreparedStorageRequestRequest_PreparedCAR) Reset

func (*CreatePreparedStorageRequestRequest_PreparedCAR) String

type CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS

type CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS struct {
	Cid        string   `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Multiaddrs []string `protobuf:"bytes,2,rep,name=multiaddrs,proto3" json:"multiaddrs,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) Descriptor deprecated

Deprecated: Use CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) GetCid

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) GetMultiaddrs

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) ProtoMessage

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) ProtoReflect

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) Reset

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARIPFS) String

type CreatePreparedStorageRequestRequest_PreparedCAR_CARURL

type CreatePreparedStorageRequestRequest_PreparedCAR_CARURL struct {
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) Descriptor deprecated

Deprecated: Use CreatePreparedStorageRequestRequest_PreparedCAR_CARURL.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) GetUrl

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) ProtoMessage

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) ProtoReflect

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) Reset

func (*CreatePreparedStorageRequestRequest_PreparedCAR_CARURL) String

type CreatePreparedStorageRequestResponse

type CreatePreparedStorageRequestResponse struct {
	Request *StorageRequest `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
	// contains filtered or unexported fields
}

func (*CreatePreparedStorageRequestResponse) Descriptor deprecated

func (*CreatePreparedStorageRequestResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreatePreparedStorageRequestResponse.ProtoReflect.Descriptor instead.

func (*CreatePreparedStorageRequestResponse) GetRequest

func (*CreatePreparedStorageRequestResponse) ProtoMessage

func (*CreatePreparedStorageRequestResponse) ProtoMessage()

func (*CreatePreparedStorageRequestResponse) ProtoReflect

func (*CreatePreparedStorageRequestResponse) Reset

func (*CreatePreparedStorageRequestResponse) String

type CreateStorageRequestRequest

type CreateStorageRequestRequest struct {
	Cid    string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Origin string `protobuf:"bytes,2,opt,name=origin,proto3" json:"origin,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateStorageRequestRequest) Descriptor deprecated

func (*CreateStorageRequestRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateStorageRequestRequest.ProtoReflect.Descriptor instead.

func (*CreateStorageRequestRequest) GetCid

func (x *CreateStorageRequestRequest) GetCid() string

func (*CreateStorageRequestRequest) GetOrigin

func (x *CreateStorageRequestRequest) GetOrigin() string

func (*CreateStorageRequestRequest) ProtoMessage

func (*CreateStorageRequestRequest) ProtoMessage()

func (*CreateStorageRequestRequest) ProtoReflect

func (*CreateStorageRequestRequest) Reset

func (x *CreateStorageRequestRequest) Reset()

func (*CreateStorageRequestRequest) String

func (x *CreateStorageRequestRequest) String() string

type CreateStorageRequestResponse

type CreateStorageRequestResponse struct {
	Request *StorageRequest `protobuf:"bytes,1,opt,name=request,proto3" json:"request,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateStorageRequestResponse) Descriptor deprecated

func (*CreateStorageRequestResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateStorageRequestResponse.ProtoReflect.Descriptor instead.

func (*CreateStorageRequestResponse) GetRequest

func (*CreateStorageRequestResponse) ProtoMessage

func (*CreateStorageRequestResponse) ProtoMessage()

func (*CreateStorageRequestResponse) ProtoReflect

func (*CreateStorageRequestResponse) Reset

func (x *CreateStorageRequestResponse) Reset()

func (*CreateStorageRequestResponse) String

type DealProposalAccepted

type DealProposalAccepted struct {
	BatchId           string `protobuf:"bytes,1,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	StorageProviderId string `protobuf:"bytes,2,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	ProposalCid       []byte `protobuf:"bytes,3,opt,name=proposal_cid,json=proposalCid,proto3" json:"proposal_cid,omitempty"`
	AuctionId         string `protobuf:"bytes,4,opt,name=auction_id,json=auctionId,proto3" json:"auction_id,omitempty"`
	BidId             string `protobuf:"bytes,5,opt,name=bid_id,json=bidId,proto3" json:"bid_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DealProposalAccepted) Descriptor deprecated

func (*DealProposalAccepted) Descriptor() ([]byte, []int)

Deprecated: Use DealProposalAccepted.ProtoReflect.Descriptor instead.

func (*DealProposalAccepted) GetAuctionId

func (x *DealProposalAccepted) GetAuctionId() string

func (*DealProposalAccepted) GetBatchId

func (x *DealProposalAccepted) GetBatchId() string

func (*DealProposalAccepted) GetBidId

func (x *DealProposalAccepted) GetBidId() string

func (*DealProposalAccepted) GetProposalCid

func (x *DealProposalAccepted) GetProposalCid() []byte

func (*DealProposalAccepted) GetStorageProviderId

func (x *DealProposalAccepted) GetStorageProviderId() string

func (*DealProposalAccepted) ProtoMessage

func (*DealProposalAccepted) ProtoMessage()

func (*DealProposalAccepted) ProtoReflect

func (x *DealProposalAccepted) ProtoReflect() protoreflect.Message

func (*DealProposalAccepted) Reset

func (x *DealProposalAccepted) Reset()

func (*DealProposalAccepted) String

func (x *DealProposalAccepted) String() string

type FinalizedDeal

type FinalizedDeal struct {
	OperationId       string `protobuf:"bytes,1,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
	BatchId           string `protobuf:"bytes,2,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	DealId            int64  `protobuf:"varint,3,opt,name=deal_id,json=dealId,proto3" json:"deal_id,omitempty"`
	DealExpiration    uint64 `protobuf:"varint,4,opt,name=deal_expiration,json=dealExpiration,proto3" json:"deal_expiration,omitempty"`
	StorageProviderId string `protobuf:"bytes,5,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	ErrorCause        string `protobuf:"bytes,6,opt,name=error_cause,json=errorCause,proto3" json:"error_cause,omitempty"`
	AuctionId         string `protobuf:"bytes,7,opt,name=auction_id,json=auctionId,proto3" json:"auction_id,omitempty"`
	BidId             string `protobuf:"bytes,8,opt,name=bid_id,json=bidId,proto3" json:"bid_id,omitempty"`
	// contains filtered or unexported fields
}

func (*FinalizedDeal) Descriptor deprecated

func (*FinalizedDeal) Descriptor() ([]byte, []int)

Deprecated: Use FinalizedDeal.ProtoReflect.Descriptor instead.

func (*FinalizedDeal) GetAuctionId

func (x *FinalizedDeal) GetAuctionId() string

func (*FinalizedDeal) GetBatchId

func (x *FinalizedDeal) GetBatchId() string

func (*FinalizedDeal) GetBidId

func (x *FinalizedDeal) GetBidId() string

func (*FinalizedDeal) GetDealExpiration

func (x *FinalizedDeal) GetDealExpiration() uint64

func (*FinalizedDeal) GetDealId

func (x *FinalizedDeal) GetDealId() int64

func (*FinalizedDeal) GetErrorCause

func (x *FinalizedDeal) GetErrorCause() string

func (*FinalizedDeal) GetOperationId

func (x *FinalizedDeal) GetOperationId() string

func (*FinalizedDeal) GetStorageProviderId

func (x *FinalizedDeal) GetStorageProviderId() string

func (*FinalizedDeal) ProtoMessage

func (*FinalizedDeal) ProtoMessage()

func (*FinalizedDeal) ProtoReflect

func (x *FinalizedDeal) ProtoReflect() protoreflect.Message

func (*FinalizedDeal) Reset

func (x *FinalizedDeal) Reset()

func (*FinalizedDeal) String

func (x *FinalizedDeal) String() string

type GetStorageRequestInfoRequest

type GetStorageRequestInfoRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStorageRequestInfoRequest) Descriptor deprecated

func (*GetStorageRequestInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetStorageRequestInfoRequest.ProtoReflect.Descriptor instead.

func (*GetStorageRequestInfoRequest) GetId

func (*GetStorageRequestInfoRequest) ProtoMessage

func (*GetStorageRequestInfoRequest) ProtoMessage()

func (*GetStorageRequestInfoRequest) ProtoReflect

func (*GetStorageRequestInfoRequest) Reset

func (x *GetStorageRequestInfoRequest) Reset()

func (*GetStorageRequestInfoRequest) String

type GetStorageRequestInfoResponse

type GetStorageRequestInfoResponse struct {
	StorageRequest *StorageRequest                                     `protobuf:"bytes,1,opt,name=storage_request,json=storageRequest,proto3" json:"storage_request,omitempty"`
	Deals          []*GetStorageRequestInfoResponse_StorageRequestDeal `protobuf:"bytes,2,rep,name=deals,proto3" json:"deals,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStorageRequestInfoResponse) Descriptor deprecated

func (*GetStorageRequestInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetStorageRequestInfoResponse.ProtoReflect.Descriptor instead.

func (*GetStorageRequestInfoResponse) GetDeals

func (*GetStorageRequestInfoResponse) GetStorageRequest

func (x *GetStorageRequestInfoResponse) GetStorageRequest() *StorageRequest

func (*GetStorageRequestInfoResponse) ProtoMessage

func (*GetStorageRequestInfoResponse) ProtoMessage()

func (*GetStorageRequestInfoResponse) ProtoReflect

func (*GetStorageRequestInfoResponse) Reset

func (x *GetStorageRequestInfoResponse) Reset()

func (*GetStorageRequestInfoResponse) String

type GetStorageRequestInfoResponse_StorageRequestDeal

type GetStorageRequestInfoResponse_StorageRequestDeal struct {
	StorageProviderId string `protobuf:"bytes,1,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	DealId            int64  `protobuf:"varint,2,opt,name=deal_id,json=dealId,proto3" json:"deal_id,omitempty"`
	Expiration        uint64 `protobuf:"varint,3,opt,name=expiration,proto3" json:"expiration,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStorageRequestInfoResponse_StorageRequestDeal) Descriptor deprecated

Deprecated: Use GetStorageRequestInfoResponse_StorageRequestDeal.ProtoReflect.Descriptor instead.

func (*GetStorageRequestInfoResponse_StorageRequestDeal) GetDealId

func (*GetStorageRequestInfoResponse_StorageRequestDeal) GetExpiration

func (*GetStorageRequestInfoResponse_StorageRequestDeal) GetStorageProviderId

func (x *GetStorageRequestInfoResponse_StorageRequestDeal) GetStorageProviderId() string

func (*GetStorageRequestInfoResponse_StorageRequestDeal) ProtoMessage

func (*GetStorageRequestInfoResponse_StorageRequestDeal) ProtoReflect

func (*GetStorageRequestInfoResponse_StorageRequestDeal) Reset

func (*GetStorageRequestInfoResponse_StorageRequestDeal) String

type NewBatchCreated

type NewBatchCreated struct {
	Id                string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BatchCid          []byte   `protobuf:"bytes,2,opt,name=batch_cid,json=batchCid,proto3" json:"batch_cid,omitempty"`
	StorageRequestIds []string `protobuf:"bytes,3,rep,name=storage_request_ids,json=storageRequestIds,proto3" json:"storage_request_ids,omitempty"`
	Origin            string   `protobuf:"bytes,4,opt,name=origin,proto3" json:"origin,omitempty"`
	Manifest          []byte   `protobuf:"bytes,5,opt,name=manifest,proto3" json:"manifest,omitempty"`
	CarUrl            string   `protobuf:"bytes,6,opt,name=car_url,json=carUrl,proto3" json:"car_url,omitempty"`
	BatchSize         int64    `protobuf:"varint,7,opt,name=batch_size,json=batchSize,proto3" json:"batch_size,omitempty"`
	// contains filtered or unexported fields
}

func (*NewBatchCreated) Descriptor deprecated

func (*NewBatchCreated) Descriptor() ([]byte, []int)

Deprecated: Use NewBatchCreated.ProtoReflect.Descriptor instead.

func (*NewBatchCreated) GetBatchCid

func (x *NewBatchCreated) GetBatchCid() []byte

func (*NewBatchCreated) GetBatchSize

func (x *NewBatchCreated) GetBatchSize() int64

func (*NewBatchCreated) GetCarUrl

func (x *NewBatchCreated) GetCarUrl() string

func (*NewBatchCreated) GetId

func (x *NewBatchCreated) GetId() string

func (*NewBatchCreated) GetManifest

func (x *NewBatchCreated) GetManifest() []byte

func (*NewBatchCreated) GetOrigin

func (x *NewBatchCreated) GetOrigin() string

func (*NewBatchCreated) GetStorageRequestIds

func (x *NewBatchCreated) GetStorageRequestIds() []string

func (*NewBatchCreated) ProtoMessage

func (*NewBatchCreated) ProtoMessage()

func (*NewBatchCreated) ProtoReflect

func (x *NewBatchCreated) ProtoReflect() protoreflect.Message

func (*NewBatchCreated) Reset

func (x *NewBatchCreated) Reset()

func (*NewBatchCreated) String

func (x *NewBatchCreated) String() string

type NewBatchPrepared

type NewBatchPrepared struct {
	Id        string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	PieceCid  []byte `protobuf:"bytes,2,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	PieceSize uint64 `protobuf:"varint,3,opt,name=piece_size,json=pieceSize,proto3" json:"piece_size,omitempty"`
	// contains filtered or unexported fields
}

func (*NewBatchPrepared) Descriptor deprecated

func (*NewBatchPrepared) Descriptor() ([]byte, []int)

Deprecated: Use NewBatchPrepared.ProtoReflect.Descriptor instead.

func (*NewBatchPrepared) GetId

func (x *NewBatchPrepared) GetId() string

func (*NewBatchPrepared) GetPieceCid

func (x *NewBatchPrepared) GetPieceCid() []byte

func (*NewBatchPrepared) GetPieceSize

func (x *NewBatchPrepared) GetPieceSize() uint64

func (*NewBatchPrepared) ProtoMessage

func (*NewBatchPrepared) ProtoMessage()

func (*NewBatchPrepared) ProtoReflect

func (x *NewBatchPrepared) ProtoReflect() protoreflect.Message

func (*NewBatchPrepared) Reset

func (x *NewBatchPrepared) Reset()

func (*NewBatchPrepared) String

func (x *NewBatchPrepared) String() string

type ReadyToAuction

type ReadyToAuction struct {
	Id                       string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BatchId                  string   `protobuf:"bytes,2,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	PayloadCid               []byte   `protobuf:"bytes,3,opt,name=payload_cid,json=payloadCid,proto3" json:"payload_cid,omitempty"`
	DealSize                 uint64   `protobuf:"varint,4,opt,name=deal_size,json=dealSize,proto3" json:"deal_size,omitempty"`
	DealDuration             uint64   `protobuf:"varint,5,opt,name=deal_duration,json=dealDuration,proto3" json:"deal_duration,omitempty"`
	DealReplication          uint32   `protobuf:"varint,6,opt,name=deal_replication,json=dealReplication,proto3" json:"deal_replication,omitempty"`
	DealVerified             bool     `protobuf:"varint,7,opt,name=deal_verified,json=dealVerified,proto3" json:"deal_verified,omitempty"`
	ExcludedStorageProviders []string `` /* 135-byte string literal not displayed */
	FilEpochDeadline         uint64   `protobuf:"varint,9,opt,name=fil_epoch_deadline,json=filEpochDeadline,proto3" json:"fil_epoch_deadline,omitempty"`
	Sources                  *Sources `protobuf:"bytes,10,opt,name=sources,proto3" json:"sources,omitempty"`
	ClientAddress            string   `protobuf:"bytes,11,opt,name=client_address,json=clientAddress,proto3" json:"client_address,omitempty"`
	Providers                []string `protobuf:"bytes,12,rep,name=providers,proto3" json:"providers,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyToAuction) Descriptor deprecated

func (*ReadyToAuction) Descriptor() ([]byte, []int)

Deprecated: Use ReadyToAuction.ProtoReflect.Descriptor instead.

func (*ReadyToAuction) GetBatchId

func (x *ReadyToAuction) GetBatchId() string

func (*ReadyToAuction) GetClientAddress

func (x *ReadyToAuction) GetClientAddress() string

func (*ReadyToAuction) GetDealDuration

func (x *ReadyToAuction) GetDealDuration() uint64

func (*ReadyToAuction) GetDealReplication

func (x *ReadyToAuction) GetDealReplication() uint32

func (*ReadyToAuction) GetDealSize

func (x *ReadyToAuction) GetDealSize() uint64

func (*ReadyToAuction) GetDealVerified

func (x *ReadyToAuction) GetDealVerified() bool

func (*ReadyToAuction) GetExcludedStorageProviders

func (x *ReadyToAuction) GetExcludedStorageProviders() []string

func (*ReadyToAuction) GetFilEpochDeadline

func (x *ReadyToAuction) GetFilEpochDeadline() uint64

func (*ReadyToAuction) GetId

func (x *ReadyToAuction) GetId() string

func (*ReadyToAuction) GetPayloadCid

func (x *ReadyToAuction) GetPayloadCid() []byte

func (*ReadyToAuction) GetProviders

func (x *ReadyToAuction) GetProviders() []string

func (*ReadyToAuction) GetSources

func (x *ReadyToAuction) GetSources() *Sources

func (*ReadyToAuction) ProtoMessage

func (*ReadyToAuction) ProtoMessage()

func (*ReadyToAuction) ProtoReflect

func (x *ReadyToAuction) ProtoReflect() protoreflect.Message

func (*ReadyToAuction) Reset

func (x *ReadyToAuction) Reset()

func (*ReadyToAuction) String

func (x *ReadyToAuction) String() string

type ReadyToBatch

type ReadyToBatch struct {
	OperationId string                         `protobuf:"bytes,1,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
	DataCids    []*ReadyToBatch_ReadyToBatchBR `protobuf:"bytes,2,rep,name=data_cids,json=dataCids,proto3" json:"data_cids,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyToBatch) Descriptor deprecated

func (*ReadyToBatch) Descriptor() ([]byte, []int)

Deprecated: Use ReadyToBatch.ProtoReflect.Descriptor instead.

func (*ReadyToBatch) GetDataCids

func (x *ReadyToBatch) GetDataCids() []*ReadyToBatch_ReadyToBatchBR

func (*ReadyToBatch) GetOperationId

func (x *ReadyToBatch) GetOperationId() string

func (*ReadyToBatch) ProtoMessage

func (*ReadyToBatch) ProtoMessage()

func (*ReadyToBatch) ProtoReflect

func (x *ReadyToBatch) ProtoReflect() protoreflect.Message

func (*ReadyToBatch) Reset

func (x *ReadyToBatch) Reset()

func (*ReadyToBatch) String

func (x *ReadyToBatch) String() string

type ReadyToBatch_ReadyToBatchBR

type ReadyToBatch_ReadyToBatchBR struct {
	StorageRequestId string `protobuf:"bytes,1,opt,name=storage_request_id,json=storageRequestId,proto3" json:"storage_request_id,omitempty"`
	DataCid          []byte `protobuf:"bytes,2,opt,name=data_cid,json=dataCid,proto3" json:"data_cid,omitempty"`
	Origin           string `protobuf:"bytes,3,opt,name=origin,proto3" json:"origin,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyToBatch_ReadyToBatchBR) Descriptor deprecated

func (*ReadyToBatch_ReadyToBatchBR) Descriptor() ([]byte, []int)

Deprecated: Use ReadyToBatch_ReadyToBatchBR.ProtoReflect.Descriptor instead.

func (*ReadyToBatch_ReadyToBatchBR) GetDataCid

func (x *ReadyToBatch_ReadyToBatchBR) GetDataCid() []byte

func (*ReadyToBatch_ReadyToBatchBR) GetOrigin

func (x *ReadyToBatch_ReadyToBatchBR) GetOrigin() string

func (*ReadyToBatch_ReadyToBatchBR) GetStorageRequestId

func (x *ReadyToBatch_ReadyToBatchBR) GetStorageRequestId() string

func (*ReadyToBatch_ReadyToBatchBR) ProtoMessage

func (*ReadyToBatch_ReadyToBatchBR) ProtoMessage()

func (*ReadyToBatch_ReadyToBatchBR) ProtoReflect

func (*ReadyToBatch_ReadyToBatchBR) Reset

func (x *ReadyToBatch_ReadyToBatchBR) Reset()

func (*ReadyToBatch_ReadyToBatchBR) String

func (x *ReadyToBatch_ReadyToBatchBR) String() string

type ReadyToCreateDeals

type ReadyToCreateDeals struct {
	Id           string                         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	BatchId      string                         `protobuf:"bytes,2,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	PayloadCid   []byte                         `protobuf:"bytes,3,opt,name=payload_cid,json=payloadCid,proto3" json:"payload_cid,omitempty"`
	PieceCid     []byte                         `protobuf:"bytes,4,opt,name=piece_cid,json=pieceCid,proto3" json:"piece_cid,omitempty"`
	PieceSize    uint64                         `protobuf:"varint,5,opt,name=piece_size,json=pieceSize,proto3" json:"piece_size,omitempty"`
	Duration     uint64                         `protobuf:"varint,6,opt,name=duration,proto3" json:"duration,omitempty"`
	Proposals    []*ReadyToCreateDeals_Proposal `protobuf:"bytes,7,rep,name=proposals,proto3" json:"proposals,omitempty"`
	RemoteWallet *RemoteWallet                  `protobuf:"bytes,8,opt,name=remote_wallet,json=remoteWallet,proto3" json:"remote_wallet,omitempty"`
	CarUrl       string                         `protobuf:"bytes,9,opt,name=car_url,json=carUrl,proto3" json:"car_url,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyToCreateDeals) Descriptor deprecated

func (*ReadyToCreateDeals) Descriptor() ([]byte, []int)

Deprecated: Use ReadyToCreateDeals.ProtoReflect.Descriptor instead.

func (*ReadyToCreateDeals) GetBatchId

func (x *ReadyToCreateDeals) GetBatchId() string

func (*ReadyToCreateDeals) GetCarUrl

func (x *ReadyToCreateDeals) GetCarUrl() string

func (*ReadyToCreateDeals) GetDuration

func (x *ReadyToCreateDeals) GetDuration() uint64

func (*ReadyToCreateDeals) GetId

func (x *ReadyToCreateDeals) GetId() string

func (*ReadyToCreateDeals) GetPayloadCid

func (x *ReadyToCreateDeals) GetPayloadCid() []byte

func (*ReadyToCreateDeals) GetPieceCid

func (x *ReadyToCreateDeals) GetPieceCid() []byte

func (*ReadyToCreateDeals) GetPieceSize

func (x *ReadyToCreateDeals) GetPieceSize() uint64

func (*ReadyToCreateDeals) GetProposals

func (x *ReadyToCreateDeals) GetProposals() []*ReadyToCreateDeals_Proposal

func (*ReadyToCreateDeals) GetRemoteWallet

func (x *ReadyToCreateDeals) GetRemoteWallet() *RemoteWallet

func (*ReadyToCreateDeals) ProtoMessage

func (*ReadyToCreateDeals) ProtoMessage()

func (*ReadyToCreateDeals) ProtoReflect

func (x *ReadyToCreateDeals) ProtoReflect() protoreflect.Message

func (*ReadyToCreateDeals) Reset

func (x *ReadyToCreateDeals) Reset()

func (*ReadyToCreateDeals) String

func (x *ReadyToCreateDeals) String() string

type ReadyToCreateDeals_Proposal

type ReadyToCreateDeals_Proposal struct {
	StorageProviderId   string `protobuf:"bytes,1,opt,name=storage_provider_id,json=storageProviderId,proto3" json:"storage_provider_id,omitempty"`
	PricePerGibPerEpoch int64  `protobuf:"varint,2,opt,name=price_per_gib_per_epoch,json=pricePerGibPerEpoch,proto3" json:"price_per_gib_per_epoch,omitempty"`
	StartEpoch          uint64 `protobuf:"varint,3,opt,name=start_epoch,json=startEpoch,proto3" json:"start_epoch,omitempty"`
	Verified            bool   `protobuf:"varint,4,opt,name=verified,proto3" json:"verified,omitempty"`
	FastRetrieval       bool   `protobuf:"varint,5,opt,name=fast_retrieval,json=fastRetrieval,proto3" json:"fast_retrieval,omitempty"`
	AuctionId           string `protobuf:"bytes,6,opt,name=auction_id,json=auctionId,proto3" json:"auction_id,omitempty"`
	BidId               string `protobuf:"bytes,7,opt,name=bid_id,json=bidId,proto3" json:"bid_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadyToCreateDeals_Proposal) Descriptor deprecated

func (*ReadyToCreateDeals_Proposal) Descriptor() ([]byte, []int)

Deprecated: Use ReadyToCreateDeals_Proposal.ProtoReflect.Descriptor instead.

func (*ReadyToCreateDeals_Proposal) GetAuctionId

func (x *ReadyToCreateDeals_Proposal) GetAuctionId() string

func (*ReadyToCreateDeals_Proposal) GetBidId

func (x *ReadyToCreateDeals_Proposal) GetBidId() string

func (*ReadyToCreateDeals_Proposal) GetFastRetrieval

func (x *ReadyToCreateDeals_Proposal) GetFastRetrieval() bool

func (*ReadyToCreateDeals_Proposal) GetPricePerGibPerEpoch

func (x *ReadyToCreateDeals_Proposal) GetPricePerGibPerEpoch() int64

func (*ReadyToCreateDeals_Proposal) GetStartEpoch

func (x *ReadyToCreateDeals_Proposal) GetStartEpoch() uint64

func (*ReadyToCreateDeals_Proposal) GetStorageProviderId

func (x *ReadyToCreateDeals_Proposal) GetStorageProviderId() string

func (*ReadyToCreateDeals_Proposal) GetVerified

func (x *ReadyToCreateDeals_Proposal) GetVerified() bool

func (*ReadyToCreateDeals_Proposal) ProtoMessage

func (*ReadyToCreateDeals_Proposal) ProtoMessage()

func (*ReadyToCreateDeals_Proposal) ProtoReflect

func (*ReadyToCreateDeals_Proposal) Reset

func (x *ReadyToCreateDeals_Proposal) Reset()

func (*ReadyToCreateDeals_Proposal) String

func (x *ReadyToCreateDeals_Proposal) String() string

type RemoteWallet

type RemoteWallet struct {
	PeerId     string   `protobuf:"bytes,1,opt,name=peer_id,json=peerId,proto3" json:"peer_id,omitempty"`
	AuthToken  string   `protobuf:"bytes,2,opt,name=auth_token,json=authToken,proto3" json:"auth_token,omitempty"`
	WalletAddr string   `protobuf:"bytes,3,opt,name=wallet_addr,json=walletAddr,proto3" json:"wallet_addr,omitempty"`
	Multiaddrs []string `protobuf:"bytes,4,rep,name=multiaddrs,proto3" json:"multiaddrs,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteWallet) Descriptor deprecated

func (*RemoteWallet) Descriptor() ([]byte, []int)

Deprecated: Use RemoteWallet.ProtoReflect.Descriptor instead.

func (*RemoteWallet) GetAuthToken

func (x *RemoteWallet) GetAuthToken() string

func (*RemoteWallet) GetMultiaddrs

func (x *RemoteWallet) GetMultiaddrs() []string

func (*RemoteWallet) GetPeerId

func (x *RemoteWallet) GetPeerId() string

func (*RemoteWallet) GetWalletAddr

func (x *RemoteWallet) GetWalletAddr() string

func (*RemoteWallet) ProtoMessage

func (*RemoteWallet) ProtoMessage()

func (*RemoteWallet) ProtoReflect

func (x *RemoteWallet) ProtoReflect() protoreflect.Message

func (*RemoteWallet) Reset

func (x *RemoteWallet) Reset()

func (*RemoteWallet) String

func (x *RemoteWallet) String() string

type Sources

type Sources struct {
	CarUrl  *Sources_CARURL  `protobuf:"bytes,1,opt,name=car_url,json=carUrl,proto3" json:"car_url,omitempty"`
	CarIpfs *Sources_CARIPFS `protobuf:"bytes,2,opt,name=car_ipfs,json=carIpfs,proto3" json:"car_ipfs,omitempty"`
	// contains filtered or unexported fields
}

func (*Sources) Descriptor deprecated

func (*Sources) Descriptor() ([]byte, []int)

Deprecated: Use Sources.ProtoReflect.Descriptor instead.

func (*Sources) GetCarIpfs

func (x *Sources) GetCarIpfs() *Sources_CARIPFS

func (*Sources) GetCarUrl

func (x *Sources) GetCarUrl() *Sources_CARURL

func (*Sources) ProtoMessage

func (*Sources) ProtoMessage()

func (*Sources) ProtoReflect

func (x *Sources) ProtoReflect() protoreflect.Message

func (*Sources) Reset

func (x *Sources) Reset()

func (*Sources) String

func (x *Sources) String() string

type Sources_CARIPFS

type Sources_CARIPFS struct {
	Cid        string   `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Multiaddrs []string `protobuf:"bytes,2,rep,name=multiaddrs,proto3" json:"multiaddrs,omitempty"`
	// contains filtered or unexported fields
}

func (*Sources_CARIPFS) Descriptor deprecated

func (*Sources_CARIPFS) Descriptor() ([]byte, []int)

Deprecated: Use Sources_CARIPFS.ProtoReflect.Descriptor instead.

func (*Sources_CARIPFS) GetCid

func (x *Sources_CARIPFS) GetCid() string

func (*Sources_CARIPFS) GetMultiaddrs

func (x *Sources_CARIPFS) GetMultiaddrs() []string

func (*Sources_CARIPFS) ProtoMessage

func (*Sources_CARIPFS) ProtoMessage()

func (*Sources_CARIPFS) ProtoReflect

func (x *Sources_CARIPFS) ProtoReflect() protoreflect.Message

func (*Sources_CARIPFS) Reset

func (x *Sources_CARIPFS) Reset()

func (*Sources_CARIPFS) String

func (x *Sources_CARIPFS) String() string

type Sources_CARURL

type Sources_CARURL struct {
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*Sources_CARURL) Descriptor deprecated

func (*Sources_CARURL) Descriptor() ([]byte, []int)

Deprecated: Use Sources_CARURL.ProtoReflect.Descriptor instead.

func (*Sources_CARURL) GetUrl

func (x *Sources_CARURL) GetUrl() string

func (*Sources_CARURL) ProtoMessage

func (*Sources_CARURL) ProtoMessage()

func (*Sources_CARURL) ProtoReflect

func (x *Sources_CARURL) ProtoReflect() protoreflect.Message

func (*Sources_CARURL) Reset

func (x *Sources_CARURL) Reset()

func (*Sources_CARURL) String

func (x *Sources_CARURL) String() string

type StorageRequest

type StorageRequest struct {
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	DataCid   []byte                 `protobuf:"bytes,2,opt,name=data_cid,json=dataCid,proto3" json:"data_cid,omitempty"`
	Status    StorageRequest_Status  `protobuf:"varint,3,opt,name=status,proto3,enum=broker.v1.StorageRequest_Status" json:"status,omitempty"`
	BatchId   string                 `protobuf:"bytes,4,opt,name=batch_id,json=batchId,proto3" json:"batch_id,omitempty"`
	Origin    string                 `protobuf:"bytes,5,opt,name=origin,proto3" json:"origin,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageRequest) Descriptor deprecated

func (*StorageRequest) Descriptor() ([]byte, []int)

Deprecated: Use StorageRequest.ProtoReflect.Descriptor instead.

func (*StorageRequest) GetBatchId

func (x *StorageRequest) GetBatchId() string

func (*StorageRequest) GetCreatedAt

func (x *StorageRequest) GetCreatedAt() *timestamppb.Timestamp

func (*StorageRequest) GetDataCid

func (x *StorageRequest) GetDataCid() []byte

func (*StorageRequest) GetId

func (x *StorageRequest) GetId() string

func (*StorageRequest) GetOrigin

func (x *StorageRequest) GetOrigin() string

func (*StorageRequest) GetStatus

func (x *StorageRequest) GetStatus() StorageRequest_Status

func (*StorageRequest) GetUpdatedAt

func (x *StorageRequest) GetUpdatedAt() *timestamppb.Timestamp

func (*StorageRequest) ProtoMessage

func (*StorageRequest) ProtoMessage()

func (*StorageRequest) ProtoReflect

func (x *StorageRequest) ProtoReflect() protoreflect.Message

func (*StorageRequest) Reset

func (x *StorageRequest) Reset()

func (*StorageRequest) String

func (x *StorageRequest) String() string

type StorageRequest_Status

type StorageRequest_Status int32
const (
	StorageRequest_STATUS_UNSPECIFIED StorageRequest_Status = 0
	StorageRequest_STATUS_BATCHING    StorageRequest_Status = 1
	StorageRequest_STATUS_PREPARING   StorageRequest_Status = 2
	StorageRequest_STATUS_AUCTIONING  StorageRequest_Status = 3
	StorageRequest_STATUS_DEALMAKING  StorageRequest_Status = 4
	StorageRequest_STATUS_SUCCESS     StorageRequest_Status = 5
	StorageRequest_STATUS_ERROR       StorageRequest_Status = 6
)

func (StorageRequest_Status) Descriptor

func (StorageRequest_Status) Enum

func (StorageRequest_Status) EnumDescriptor deprecated

func (StorageRequest_Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use StorageRequest_Status.Descriptor instead.

func (StorageRequest_Status) Number

func (StorageRequest_Status) String

func (x StorageRequest_Status) String() string

func (StorageRequest_Status) Type

type UnimplementedAPIServiceServer

type UnimplementedAPIServiceServer struct {
}

UnimplementedAPIServiceServer must be embedded to have forward compatible implementations.

type UnsafeAPIServiceServer

type UnsafeAPIServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeAPIServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to APIServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL