Versions in this module Expand all Collapse all v0 v0.8.0 Feb 10, 2023 v0.7.0 Dec 13, 2022 Changes in this version type GenesisState + func NewGenesisState(params Params, auctions []*Auction) *GenesisState v0.6.0 Oct 24, 2022 Changes in this version + const AttributeKeyAuctionID + const AttributeKeyCommitFee + const AttributeKeyCommitHash + const AttributeKeyCommitsDuration + const AttributeKeyMinimumBid + const AttributeKeyReveal + const AttributeKeyRevealFee + const AttributeKeyRevealsDuration + const AttributeKeySigner + const AttributeValueCategory + const AuctionBurnModuleAccountName + const AuctionStatusCommitPhase + const AuctionStatusCompleted + const AuctionStatusExpired + const AuctionStatusRevealPhase + const BidStatusCommitted + const BidStatusRevealed + const DefaultParamspace + const EventTypeCommitBid + const EventTypeCreateAuction + const EventTypeRevealBid + const ModuleName + const QuerierRoute + const RouterKey + const StoreKey + var DefaultCommitFee = sdk.Coin + var DefaultCommitsDuration = 5 * time.Minute + var DefaultMinimumBid = sdk.Coin + var DefaultRevealFee = sdk.Coin + var DefaultRevealsDuration = 5 * time.Minute + var ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowQuery = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + var ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow") + var ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthQuery = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling") + var ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") + var ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group") + var ModuleCdc = codec.NewAminoCodec(amino) + var ParamStoreKeyCommitFee = []byte("CommitFee") + var ParamStoreKeyCommitsDuration = []byte("CommitsDuration") + var ParamStoreKeyMinimumBid = []byte("MinimumBid") + var ParamStoreKeyRevealFee = []byte("RevealFee") + var ParamStoreKeyRevealsDuration = []byte("RevealsDuration") + func ParamKeyTable() types.KeyTable + func RegisterInterfaces(registry types.InterfaceRegistry) + func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) + func RegisterMsgServer(s grpc1.Server, srv MsgServer) + func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error + func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error + func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error) + func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error + func RegisterQueryServer(s grpc1.Server, srv QueryServer) + type Auction struct + CommitFee types.Coin + CommitsEndTime time.Time + CreateTime time.Time + Id string + MinimumBid types.Coin + OwnerAddress string + RevealFee types.Coin + RevealsEndTime time.Time + Status string + WinnerAddress string + WinningBid types.Coin + WinningPrice types.Coin + func (*Auction) Descriptor() ([]byte, []int) + func (*Auction) ProtoMessage() + func (auction Auction) GetCommitsEndTime() string + func (auction Auction) GetCreateTime() string + func (auction Auction) GetRevealsEndTime() string + func (m *Auction) Marshal() (dAtA []byte, err error) + func (m *Auction) MarshalTo(dAtA []byte) (int, error) + func (m *Auction) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Auction) Reset() + func (m *Auction) Size() (n int) + func (m *Auction) String() string + func (m *Auction) Unmarshal(dAtA []byte) error + func (m *Auction) XXX_DiscardUnknown() + func (m *Auction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Auction) XXX_Merge(src proto.Message) + func (m *Auction) XXX_Size() int + func (m *Auction) XXX_Unmarshal(b []byte) error + type AuctionID struct + AccNum uint64 + Address sdk.Address + Sequence uint64 + func (auctionID AuctionID) Generate() string + type AuctionRequest struct + Id string + func (*AuctionRequest) Descriptor() ([]byte, []int) + func (*AuctionRequest) ProtoMessage() + func (m *AuctionRequest) GetId() string + func (m *AuctionRequest) Marshal() (dAtA []byte, err error) + func (m *AuctionRequest) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionRequest) Reset() + func (m *AuctionRequest) Size() (n int) + func (m *AuctionRequest) String() string + func (m *AuctionRequest) Unmarshal(dAtA []byte) error + func (m *AuctionRequest) XXX_DiscardUnknown() + func (m *AuctionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionRequest) XXX_Merge(src proto.Message) + func (m *AuctionRequest) XXX_Size() int + func (m *AuctionRequest) XXX_Unmarshal(b []byte) error + type AuctionResponse struct + Auction *Auction + func (*AuctionResponse) Descriptor() ([]byte, []int) + func (*AuctionResponse) ProtoMessage() + func (m *AuctionResponse) GetAuction() *Auction + func (m *AuctionResponse) Marshal() (dAtA []byte, err error) + func (m *AuctionResponse) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionResponse) Reset() + func (m *AuctionResponse) Size() (n int) + func (m *AuctionResponse) String() string + func (m *AuctionResponse) Unmarshal(dAtA []byte) error + func (m *AuctionResponse) XXX_DiscardUnknown() + func (m *AuctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionResponse) XXX_Merge(src proto.Message) + func (m *AuctionResponse) XXX_Size() int + func (m *AuctionResponse) XXX_Unmarshal(b []byte) error + type AuctionUsageKeeper interface + ModuleName func() string + OnAuction func(ctx sdk.Context, auctionID string) + OnAuctionBid func(ctx sdk.Context, auctionID string, bidderAddress string) + OnAuctionWinnerSelected func(ctx sdk.Context, auctionID string) + UsesAuction func(ctx sdk.Context, auctionID string) bool + type Auctions struct + Auctions []Auction + func (*Auctions) Descriptor() ([]byte, []int) + func (*Auctions) ProtoMessage() + func (m *Auctions) Marshal() (dAtA []byte, err error) + func (m *Auctions) MarshalTo(dAtA []byte) (int, error) + func (m *Auctions) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Auctions) Reset() + func (m *Auctions) Size() (n int) + func (m *Auctions) String() string + func (m *Auctions) Unmarshal(dAtA []byte) error + func (m *Auctions) XXX_DiscardUnknown() + func (m *Auctions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Auctions) XXX_Merge(src proto.Message) + func (m *Auctions) XXX_Size() int + func (m *Auctions) XXX_Unmarshal(b []byte) error + type AuctionsByBidderRequest struct + BidderAddress string + func (*AuctionsByBidderRequest) Descriptor() ([]byte, []int) + func (*AuctionsByBidderRequest) ProtoMessage() + func (m *AuctionsByBidderRequest) GetBidderAddress() string + func (m *AuctionsByBidderRequest) Marshal() (dAtA []byte, err error) + func (m *AuctionsByBidderRequest) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsByBidderRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsByBidderRequest) Reset() + func (m *AuctionsByBidderRequest) Size() (n int) + func (m *AuctionsByBidderRequest) String() string + func (m *AuctionsByBidderRequest) Unmarshal(dAtA []byte) error + func (m *AuctionsByBidderRequest) XXX_DiscardUnknown() + func (m *AuctionsByBidderRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsByBidderRequest) XXX_Merge(src proto.Message) + func (m *AuctionsByBidderRequest) XXX_Size() int + func (m *AuctionsByBidderRequest) XXX_Unmarshal(b []byte) error + type AuctionsByBidderResponse struct + Auctions *Auctions + func (*AuctionsByBidderResponse) Descriptor() ([]byte, []int) + func (*AuctionsByBidderResponse) ProtoMessage() + func (m *AuctionsByBidderResponse) GetAuctions() *Auctions + func (m *AuctionsByBidderResponse) Marshal() (dAtA []byte, err error) + func (m *AuctionsByBidderResponse) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsByBidderResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsByBidderResponse) Reset() + func (m *AuctionsByBidderResponse) Size() (n int) + func (m *AuctionsByBidderResponse) String() string + func (m *AuctionsByBidderResponse) Unmarshal(dAtA []byte) error + func (m *AuctionsByBidderResponse) XXX_DiscardUnknown() + func (m *AuctionsByBidderResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsByBidderResponse) XXX_Merge(src proto.Message) + func (m *AuctionsByBidderResponse) XXX_Size() int + func (m *AuctionsByBidderResponse) XXX_Unmarshal(b []byte) error + type AuctionsByOwnerRequest struct + OwnerAddress string + func (*AuctionsByOwnerRequest) Descriptor() ([]byte, []int) + func (*AuctionsByOwnerRequest) ProtoMessage() + func (m *AuctionsByOwnerRequest) GetOwnerAddress() string + func (m *AuctionsByOwnerRequest) Marshal() (dAtA []byte, err error) + func (m *AuctionsByOwnerRequest) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsByOwnerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsByOwnerRequest) Reset() + func (m *AuctionsByOwnerRequest) Size() (n int) + func (m *AuctionsByOwnerRequest) String() string + func (m *AuctionsByOwnerRequest) Unmarshal(dAtA []byte) error + func (m *AuctionsByOwnerRequest) XXX_DiscardUnknown() + func (m *AuctionsByOwnerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsByOwnerRequest) XXX_Merge(src proto.Message) + func (m *AuctionsByOwnerRequest) XXX_Size() int + func (m *AuctionsByOwnerRequest) XXX_Unmarshal(b []byte) error + type AuctionsByOwnerResponse struct + Auctions *Auctions + func (*AuctionsByOwnerResponse) Descriptor() ([]byte, []int) + func (*AuctionsByOwnerResponse) ProtoMessage() + func (m *AuctionsByOwnerResponse) GetAuctions() *Auctions + func (m *AuctionsByOwnerResponse) Marshal() (dAtA []byte, err error) + func (m *AuctionsByOwnerResponse) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsByOwnerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsByOwnerResponse) Reset() + func (m *AuctionsByOwnerResponse) Size() (n int) + func (m *AuctionsByOwnerResponse) String() string + func (m *AuctionsByOwnerResponse) Unmarshal(dAtA []byte) error + func (m *AuctionsByOwnerResponse) XXX_DiscardUnknown() + func (m *AuctionsByOwnerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsByOwnerResponse) XXX_Merge(src proto.Message) + func (m *AuctionsByOwnerResponse) XXX_Size() int + func (m *AuctionsByOwnerResponse) XXX_Unmarshal(b []byte) error + type AuctionsRequest struct + Pagination *query.PageRequest + func (*AuctionsRequest) Descriptor() ([]byte, []int) + func (*AuctionsRequest) ProtoMessage() + func (m *AuctionsRequest) GetPagination() *query.PageRequest + func (m *AuctionsRequest) Marshal() (dAtA []byte, err error) + func (m *AuctionsRequest) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsRequest) Reset() + func (m *AuctionsRequest) Size() (n int) + func (m *AuctionsRequest) String() string + func (m *AuctionsRequest) Unmarshal(dAtA []byte) error + func (m *AuctionsRequest) XXX_DiscardUnknown() + func (m *AuctionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsRequest) XXX_Merge(src proto.Message) + func (m *AuctionsRequest) XXX_Size() int + func (m *AuctionsRequest) XXX_Unmarshal(b []byte) error + type AuctionsResponse struct + Auctions *Auctions + Pagination *query.PageRequest + func (*AuctionsResponse) Descriptor() ([]byte, []int) + func (*AuctionsResponse) ProtoMessage() + func (m *AuctionsResponse) GetAuctions() *Auctions + func (m *AuctionsResponse) GetPagination() *query.PageRequest + func (m *AuctionsResponse) Marshal() (dAtA []byte, err error) + func (m *AuctionsResponse) MarshalTo(dAtA []byte) (int, error) + func (m *AuctionsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *AuctionsResponse) Reset() + func (m *AuctionsResponse) Size() (n int) + func (m *AuctionsResponse) String() string + func (m *AuctionsResponse) Unmarshal(dAtA []byte) error + func (m *AuctionsResponse) XXX_DiscardUnknown() + func (m *AuctionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *AuctionsResponse) XXX_Merge(src proto.Message) + func (m *AuctionsResponse) XXX_Size() int + func (m *AuctionsResponse) XXX_Unmarshal(b []byte) error + type BalanceRequest struct + func (*BalanceRequest) Descriptor() ([]byte, []int) + func (*BalanceRequest) ProtoMessage() + func (m *BalanceRequest) Marshal() (dAtA []byte, err error) + func (m *BalanceRequest) MarshalTo(dAtA []byte) (int, error) + func (m *BalanceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BalanceRequest) Reset() + func (m *BalanceRequest) Size() (n int) + func (m *BalanceRequest) String() string + func (m *BalanceRequest) Unmarshal(dAtA []byte) error + func (m *BalanceRequest) XXX_DiscardUnknown() + func (m *BalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BalanceRequest) XXX_Merge(src proto.Message) + func (m *BalanceRequest) XXX_Size() int + func (m *BalanceRequest) XXX_Unmarshal(b []byte) error + type BalanceResponse struct + Balance []types.Coin + func (*BalanceResponse) Descriptor() ([]byte, []int) + func (*BalanceResponse) ProtoMessage() + func (m *BalanceResponse) GetBalance() []types.Coin + func (m *BalanceResponse) Marshal() (dAtA []byte, err error) + func (m *BalanceResponse) MarshalTo(dAtA []byte) (int, error) + func (m *BalanceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BalanceResponse) Reset() + func (m *BalanceResponse) Size() (n int) + func (m *BalanceResponse) String() string + func (m *BalanceResponse) Unmarshal(dAtA []byte) error + func (m *BalanceResponse) XXX_DiscardUnknown() + func (m *BalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BalanceResponse) XXX_Merge(src proto.Message) + func (m *BalanceResponse) XXX_Size() int + func (m *BalanceResponse) XXX_Unmarshal(b []byte) error + type Bid struct + AuctionId string + BidAmount types.Coin + BidderAddress string + CommitFee types.Coin + CommitHash string + CommitTime time.Time + RevealFee types.Coin + RevealTime time.Time + Status string + func (*Bid) Descriptor() ([]byte, []int) + func (*Bid) ProtoMessage() + func (bid Bid) GetCommitTime() string + func (bid Bid) GetRevealTime() string + func (m *Bid) Marshal() (dAtA []byte, err error) + func (m *Bid) MarshalTo(dAtA []byte) (int, error) + func (m *Bid) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Bid) Reset() + func (m *Bid) Size() (n int) + func (m *Bid) String() string + func (m *Bid) Unmarshal(dAtA []byte) error + func (m *Bid) XXX_DiscardUnknown() + func (m *Bid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Bid) XXX_Merge(src proto.Message) + func (m *Bid) XXX_Size() int + func (m *Bid) XXX_Unmarshal(b []byte) error + type BidRequest struct + AuctionId string + Bidder string + func (*BidRequest) Descriptor() ([]byte, []int) + func (*BidRequest) ProtoMessage() + func (m *BidRequest) GetAuctionId() string + func (m *BidRequest) GetBidder() string + func (m *BidRequest) Marshal() (dAtA []byte, err error) + func (m *BidRequest) MarshalTo(dAtA []byte) (int, error) + func (m *BidRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BidRequest) Reset() + func (m *BidRequest) Size() (n int) + func (m *BidRequest) String() string + func (m *BidRequest) Unmarshal(dAtA []byte) error + func (m *BidRequest) XXX_DiscardUnknown() + func (m *BidRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BidRequest) XXX_Merge(src proto.Message) + func (m *BidRequest) XXX_Size() int + func (m *BidRequest) XXX_Unmarshal(b []byte) error + type BidResponse struct + Bid *Bid + func (*BidResponse) Descriptor() ([]byte, []int) + func (*BidResponse) ProtoMessage() + func (m *BidResponse) GetBid() *Bid + func (m *BidResponse) Marshal() (dAtA []byte, err error) + func (m *BidResponse) MarshalTo(dAtA []byte) (int, error) + func (m *BidResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BidResponse) Reset() + func (m *BidResponse) Size() (n int) + func (m *BidResponse) String() string + func (m *BidResponse) Unmarshal(dAtA []byte) error + func (m *BidResponse) XXX_DiscardUnknown() + func (m *BidResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BidResponse) XXX_Merge(src proto.Message) + func (m *BidResponse) XXX_Size() int + func (m *BidResponse) XXX_Unmarshal(b []byte) error + type BidsRequest struct + AuctionId string + func (*BidsRequest) Descriptor() ([]byte, []int) + func (*BidsRequest) ProtoMessage() + func (m *BidsRequest) GetAuctionId() string + func (m *BidsRequest) Marshal() (dAtA []byte, err error) + func (m *BidsRequest) MarshalTo(dAtA []byte) (int, error) + func (m *BidsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BidsRequest) Reset() + func (m *BidsRequest) Size() (n int) + func (m *BidsRequest) String() string + func (m *BidsRequest) Unmarshal(dAtA []byte) error + func (m *BidsRequest) XXX_DiscardUnknown() + func (m *BidsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BidsRequest) XXX_Merge(src proto.Message) + func (m *BidsRequest) XXX_Size() int + func (m *BidsRequest) XXX_Unmarshal(b []byte) error + type BidsResponse struct + Bids []*Bid + func (*BidsResponse) Descriptor() ([]byte, []int) + func (*BidsResponse) ProtoMessage() + func (m *BidsResponse) GetBids() []*Bid + func (m *BidsResponse) Marshal() (dAtA []byte, err error) + func (m *BidsResponse) MarshalTo(dAtA []byte) (int, error) + func (m *BidsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *BidsResponse) Reset() + func (m *BidsResponse) Size() (n int) + func (m *BidsResponse) String() string + func (m *BidsResponse) Unmarshal(dAtA []byte) error + func (m *BidsResponse) XXX_DiscardUnknown() + func (m *BidsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *BidsResponse) XXX_Merge(src proto.Message) + func (m *BidsResponse) XXX_Size() int + func (m *BidsResponse) XXX_Unmarshal(b []byte) error + type GenesisState struct + Auctions []*Auction + Params Params + func DefaultGenesisState() *GenesisState + func (*GenesisState) Descriptor() ([]byte, []int) + func (*GenesisState) ProtoMessage() + func (m *GenesisState) GetAuctions() []*Auction + func (m *GenesisState) GetParams() Params + func (m *GenesisState) Marshal() (dAtA []byte, err error) + func (m *GenesisState) MarshalTo(dAtA []byte) (int, error) + func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *GenesisState) Reset() + func (m *GenesisState) Size() (n int) + func (m *GenesisState) String() string + func (m *GenesisState) Unmarshal(dAtA []byte) error + func (m *GenesisState) XXX_DiscardUnknown() + func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *GenesisState) XXX_Merge(src proto.Message) + func (m *GenesisState) XXX_Size() int + func (m *GenesisState) XXX_Unmarshal(b []byte) error + type MsgClient interface + CommitBid func(ctx context.Context, in *MsgCommitBid, opts ...grpc.CallOption) (*MsgCommitBidResponse, error) + CreateAuction func(ctx context.Context, in *MsgCreateAuction, opts ...grpc.CallOption) (*MsgCreateAuctionResponse, error) + RevealBid func(ctx context.Context, in *MsgRevealBid, opts ...grpc.CallOption) (*MsgRevealBidResponse, error) + func NewMsgClient(cc grpc1.ClientConn) MsgClient + type MsgCommitBid struct + AuctionId string + CommitHash string + Signer string + func NewMsgCommitBid(auctionID string, commitHash string, signer sdk.AccAddress) MsgCommitBid + func (*MsgCommitBid) Descriptor() ([]byte, []int) + func (*MsgCommitBid) ProtoMessage() + func (m *MsgCommitBid) Marshal() (dAtA []byte, err error) + func (m *MsgCommitBid) MarshalTo(dAtA []byte) (int, error) + func (m *MsgCommitBid) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgCommitBid) Reset() + func (m *MsgCommitBid) Size() (n int) + func (m *MsgCommitBid) String() string + func (m *MsgCommitBid) Unmarshal(dAtA []byte) error + func (m *MsgCommitBid) XXX_DiscardUnknown() + func (m *MsgCommitBid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgCommitBid) XXX_Merge(src proto.Message) + func (m *MsgCommitBid) XXX_Size() int + func (m *MsgCommitBid) XXX_Unmarshal(b []byte) error + func (msg MsgCommitBid) GetSignBytes() []byte + func (msg MsgCommitBid) GetSigners() []sdk.AccAddress + func (msg MsgCommitBid) Route() string + func (msg MsgCommitBid) Type() string + func (msg MsgCommitBid) ValidateBasic() error + type MsgCommitBidResponse struct + Bid *Bid + func (*MsgCommitBidResponse) Descriptor() ([]byte, []int) + func (*MsgCommitBidResponse) ProtoMessage() + func (m *MsgCommitBidResponse) Marshal() (dAtA []byte, err error) + func (m *MsgCommitBidResponse) MarshalTo(dAtA []byte) (int, error) + func (m *MsgCommitBidResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgCommitBidResponse) Reset() + func (m *MsgCommitBidResponse) Size() (n int) + func (m *MsgCommitBidResponse) String() string + func (m *MsgCommitBidResponse) Unmarshal(dAtA []byte) error + func (m *MsgCommitBidResponse) XXX_DiscardUnknown() + func (m *MsgCommitBidResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgCommitBidResponse) XXX_Merge(src proto.Message) + func (m *MsgCommitBidResponse) XXX_Size() int + func (m *MsgCommitBidResponse) XXX_Unmarshal(b []byte) error + type MsgCreateAuction struct + CommitFee types.Coin + CommitsDuration time.Duration + MinimumBid types.Coin + RevealFee types.Coin + RevealsDuration time.Duration + Signer string + func NewMsgCreateAuction(params Params, signer sdk.AccAddress) MsgCreateAuction + func (*MsgCreateAuction) Descriptor() ([]byte, []int) + func (*MsgCreateAuction) ProtoMessage() + func (m *MsgCreateAuction) Marshal() (dAtA []byte, err error) + func (m *MsgCreateAuction) MarshalTo(dAtA []byte) (int, error) + func (m *MsgCreateAuction) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgCreateAuction) Reset() + func (m *MsgCreateAuction) Size() (n int) + func (m *MsgCreateAuction) String() string + func (m *MsgCreateAuction) Unmarshal(dAtA []byte) error + func (m *MsgCreateAuction) XXX_DiscardUnknown() + func (m *MsgCreateAuction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgCreateAuction) XXX_Merge(src proto.Message) + func (m *MsgCreateAuction) XXX_Size() int + func (m *MsgCreateAuction) XXX_Unmarshal(b []byte) error + func (msg MsgCreateAuction) GetSignBytes() []byte + func (msg MsgCreateAuction) GetSigners() []sdk.AccAddress + func (msg MsgCreateAuction) Route() string + func (msg MsgCreateAuction) Type() string + func (msg MsgCreateAuction) ValidateBasic() error + type MsgCreateAuctionResponse struct + Auction *Auction + func (*MsgCreateAuctionResponse) Descriptor() ([]byte, []int) + func (*MsgCreateAuctionResponse) ProtoMessage() + func (m *MsgCreateAuctionResponse) Marshal() (dAtA []byte, err error) + func (m *MsgCreateAuctionResponse) MarshalTo(dAtA []byte) (int, error) + func (m *MsgCreateAuctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgCreateAuctionResponse) Reset() + func (m *MsgCreateAuctionResponse) Size() (n int) + func (m *MsgCreateAuctionResponse) String() string + func (m *MsgCreateAuctionResponse) Unmarshal(dAtA []byte) error + func (m *MsgCreateAuctionResponse) XXX_DiscardUnknown() + func (m *MsgCreateAuctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgCreateAuctionResponse) XXX_Merge(src proto.Message) + func (m *MsgCreateAuctionResponse) XXX_Size() int + func (m *MsgCreateAuctionResponse) XXX_Unmarshal(b []byte) error + type MsgRevealBid struct + AuctionId string + Reveal string + Signer string + func NewMsgRevealBid(auctionID string, reveal string, signer sdk.AccAddress) MsgRevealBid + func (*MsgRevealBid) Descriptor() ([]byte, []int) + func (*MsgRevealBid) ProtoMessage() + func (m *MsgRevealBid) Marshal() (dAtA []byte, err error) + func (m *MsgRevealBid) MarshalTo(dAtA []byte) (int, error) + func (m *MsgRevealBid) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgRevealBid) Reset() + func (m *MsgRevealBid) Size() (n int) + func (m *MsgRevealBid) String() string + func (m *MsgRevealBid) Unmarshal(dAtA []byte) error + func (m *MsgRevealBid) XXX_DiscardUnknown() + func (m *MsgRevealBid) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgRevealBid) XXX_Merge(src proto.Message) + func (m *MsgRevealBid) XXX_Size() int + func (m *MsgRevealBid) XXX_Unmarshal(b []byte) error + func (msg MsgRevealBid) GetSignBytes() []byte + func (msg MsgRevealBid) GetSigners() []sdk.AccAddress + func (msg MsgRevealBid) Route() string + func (msg MsgRevealBid) Type() string + func (msg MsgRevealBid) ValidateBasic() error + type MsgRevealBidResponse struct + Auction *Auction + func (*MsgRevealBidResponse) Descriptor() ([]byte, []int) + func (*MsgRevealBidResponse) ProtoMessage() + func (m *MsgRevealBidResponse) Marshal() (dAtA []byte, err error) + func (m *MsgRevealBidResponse) MarshalTo(dAtA []byte) (int, error) + func (m *MsgRevealBidResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *MsgRevealBidResponse) Reset() + func (m *MsgRevealBidResponse) Size() (n int) + func (m *MsgRevealBidResponse) String() string + func (m *MsgRevealBidResponse) Unmarshal(dAtA []byte) error + func (m *MsgRevealBidResponse) XXX_DiscardUnknown() + func (m *MsgRevealBidResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *MsgRevealBidResponse) XXX_Merge(src proto.Message) + func (m *MsgRevealBidResponse) XXX_Size() int + func (m *MsgRevealBidResponse) XXX_Unmarshal(b []byte) error + type MsgServer interface + CommitBid func(context.Context, *MsgCommitBid) (*MsgCommitBidResponse, error) + CreateAuction func(context.Context, *MsgCreateAuction) (*MsgCreateAuctionResponse, error) + RevealBid func(context.Context, *MsgRevealBid) (*MsgRevealBidResponse, error) + type Params struct + CommitFee types.Coin + CommitsDuration time.Duration + MinimumBid types.Coin + RevealFee types.Coin + RevealsDuration time.Duration + func DefaultParams() Params + func NewParams() Params + func (*Params) Descriptor() ([]byte, []int) + func (*Params) ProtoMessage() + func (m *Params) GetCommitFee() types.Coin + func (m *Params) GetCommitsDuration() time.Duration + func (m *Params) GetMinimumBid() types.Coin + func (m *Params) GetRevealFee() types.Coin + func (m *Params) GetRevealsDuration() time.Duration + func (m *Params) Marshal() (dAtA []byte, err error) + func (m *Params) MarshalTo(dAtA []byte) (int, error) + func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *Params) Reset() + func (m *Params) Size() (n int) + func (m *Params) Unmarshal(dAtA []byte) error + func (m *Params) XXX_DiscardUnknown() + func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *Params) XXX_Merge(src proto.Message) + func (m *Params) XXX_Size() int + func (m *Params) XXX_Unmarshal(b []byte) error + func (p *Params) ParamSetPairs() types.ParamSetPairs + func (p Params) Equal(p2 Params) bool + func (p Params) String() string + func (p Params) Validate() error + type QueryClient interface + Auctions func(ctx context.Context, in *AuctionsRequest, opts ...grpc.CallOption) (*AuctionsResponse, error) + AuctionsByBidder func(ctx context.Context, in *AuctionsByBidderRequest, opts ...grpc.CallOption) (*AuctionsByBidderResponse, error) + AuctionsByOwner func(ctx context.Context, in *AuctionsByOwnerRequest, opts ...grpc.CallOption) (*AuctionsByOwnerResponse, error) + Balance func(ctx context.Context, in *BalanceRequest, opts ...grpc.CallOption) (*BalanceResponse, error) + GetAuction func(ctx context.Context, in *AuctionRequest, opts ...grpc.CallOption) (*AuctionResponse, error) + GetBid func(ctx context.Context, in *BidRequest, opts ...grpc.CallOption) (*BidResponse, error) + GetBids func(ctx context.Context, in *BidsRequest, opts ...grpc.CallOption) (*BidsResponse, error) + QueryParams func(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) + func NewQueryClient(cc grpc1.ClientConn) QueryClient + type QueryParamsRequest struct + func (*QueryParamsRequest) Descriptor() ([]byte, []int) + func (*QueryParamsRequest) ProtoMessage() + func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) + func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) + func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryParamsRequest) Reset() + func (m *QueryParamsRequest) Size() (n int) + func (m *QueryParamsRequest) String() string + func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error + func (m *QueryParamsRequest) XXX_DiscardUnknown() + func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryParamsRequest) XXX_Merge(src proto.Message) + func (m *QueryParamsRequest) XXX_Size() int + func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error + type QueryParamsResponse struct + Params *Params + func (*QueryParamsResponse) Descriptor() ([]byte, []int) + func (*QueryParamsResponse) ProtoMessage() + func (m *QueryParamsResponse) GetParams() *Params + func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) + func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) + func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) + func (m *QueryParamsResponse) Reset() + func (m *QueryParamsResponse) Size() (n int) + func (m *QueryParamsResponse) String() string + func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error + func (m *QueryParamsResponse) XXX_DiscardUnknown() + func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) + func (m *QueryParamsResponse) XXX_Merge(src proto.Message) + func (m *QueryParamsResponse) XXX_Size() int + func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error + type QueryServer interface + Auctions func(context.Context, *AuctionsRequest) (*AuctionsResponse, error) + AuctionsByBidder func(context.Context, *AuctionsByBidderRequest) (*AuctionsByBidderResponse, error) + AuctionsByOwner func(context.Context, *AuctionsByOwnerRequest) (*AuctionsByOwnerResponse, error) + Balance func(context.Context, *BalanceRequest) (*BalanceResponse, error) + GetAuction func(context.Context, *AuctionRequest) (*AuctionResponse, error) + GetBid func(context.Context, *BidRequest) (*BidResponse, error) + GetBids func(context.Context, *BidsRequest) (*BidsResponse, error) + QueryParams func(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) + type UnimplementedMsgServer struct + func (*UnimplementedMsgServer) CommitBid(ctx context.Context, req *MsgCommitBid) (*MsgCommitBidResponse, error) + func (*UnimplementedMsgServer) CreateAuction(ctx context.Context, req *MsgCreateAuction) (*MsgCreateAuctionResponse, error) + func (*UnimplementedMsgServer) RevealBid(ctx context.Context, req *MsgRevealBid) (*MsgRevealBidResponse, error) + type UnimplementedQueryServer struct + func (*UnimplementedQueryServer) Auctions(ctx context.Context, req *AuctionsRequest) (*AuctionsResponse, error) + func (*UnimplementedQueryServer) AuctionsByBidder(ctx context.Context, req *AuctionsByBidderRequest) (*AuctionsByBidderResponse, error) + func (*UnimplementedQueryServer) AuctionsByOwner(ctx context.Context, req *AuctionsByOwnerRequest) (*AuctionsByOwnerResponse, error) + func (*UnimplementedQueryServer) Balance(ctx context.Context, req *BalanceRequest) (*BalanceResponse, error) + func (*UnimplementedQueryServer) GetAuction(ctx context.Context, req *AuctionRequest) (*AuctionResponse, error) + func (*UnimplementedQueryServer) GetBid(ctx context.Context, req *BidRequest) (*BidResponse, error) + func (*UnimplementedQueryServer) GetBids(ctx context.Context, req *BidsRequest) (*BidsResponse, error) + func (*UnimplementedQueryServer) QueryParams(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error)