types

package
v3.1.1 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2022 License: GPL-3.0 Imports: 36 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// ModuleName defines the module name
	ModuleName = "likenft"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey is the message route for slashing
	RouterKey = ModuleName

	// QuerierRoute defines the module's query routing key
	QuerierRoute = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_likenft"
)
View Source
const (
	TypeMsgCreateListing = "create_listing"
	TypeMsgUpdateListing = "update_listing"
	TypeMsgDeleteListing = "delete_listing"
)
View Source
const (
	TypeMsgCreateOffer = "create_offer"
	TypeMsgUpdateOffer = "update_offer"
	TypeMsgDeleteOffer = "delete_offer"
)
View Source
const (
	TypeMsgCreateRoyaltyConfig = "create_royalty_config"
	TypeMsgUpdateRoyaltyConfig = "update_royalty_config"
	TypeMsgDeleteRoyaltyConfig = "delete_royalty_config"
)
View Source
const (
	// BlindBoxContentKeyPrefix is the prefix to retrieve all BlindBoxContent
	BlindBoxContentKeyPrefix = "BlindBoxContent/value/"
)
View Source
const CLASS_ID_PREFIX = "likenft"
View Source
const (
	// ClassRevealQueueKeyPrefix is the prefix to retrieve all ClassRevealQueueEntry
	ClassRevealQueueKeyPrefix = "ClassRevealQueue/value/"
)
View Source
const (
	// ClassesByAccountKeyPrefix is the prefix to retrieve all ClassesByAccount
	ClassesByAccountKeyPrefix = "ClassesByAccount/value/"
)
View Source
const (
	// ClassesByISCNKeyPrefix is the prefix to retrieve all ClassesByISCN
	ClassesByISCNKeyPrefix = "ClassesByISCN/value/"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default capability global index

View Source
const (
	// ListingExpireQueueKeyPrefix is the prefix to retrieve all ListingExpireQueueEntry
	ListingExpireQueueKeyPrefix = "ListingExpireQueueEntry/value/"
)
View Source
const (
	// ListingKeyPrefix is the prefix to retrieve all Listing
	ListingKeyPrefix = "Listing/value/"
)
View Source
const (
	// OfferExpireQueueKeyPrefix is the prefix to retrieve all OfferExpireQueueEntry
	OfferExpireQueueKeyPrefix = "OfferExpireQueueEntry/value/"
)
View Source
const (
	// OfferKeyPrefix is the prefix to retrieve all Offer
	OfferKeyPrefix = "Offer/value/"
)
View Source
const (
	// RoyaltyConfigByClassKeyPrefix is the prefix to retrieve all RoyaltyConfigByClass
	RoyaltyConfigByClassKeyPrefix = "RoyaltyConfigByClass/value/"
)
View Source
const TypeMsgBurnNFT = "burn_nft"
View Source
const TypeMsgBuyNFT = "buy_nft"
View Source
const TypeMsgCreateBlindBoxContent = "create_blind_box_content"
View Source
const TypeMsgDeleteBlindBoxContent = "delete_blind_box_content"
View Source
const TypeMsgMintNFT = "mint_nft"
View Source
const TypeMsgNewClass = "new_class"
View Source
const TypeMsgSellNFT = "sell_nft"
View Source
const TypeMsgUpdateBlindBoxContent = "update_blind_box_content"
View Source
const TypeMsgUpdateClass = "update_class"

Variables

View Source
var (
	ErrInvalidLengthBlindBoxContent        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBlindBoxContent          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBlindBoxContent = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthClassData        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClassData          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClassData = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthClassInput        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClassInput          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClassInput = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthClassRevealQueue        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClassRevealQueue          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClassRevealQueue = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthClassesByAccount        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClassesByAccount          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClassesByAccount = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthClassesByIscn        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClassesByIscn          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClassesByIscn = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidIscnId                     = sdkerrors.Register(ModuleName, 1, "invalid ISCN ID")
	ErrIscnRecordNotFound                = sdkerrors.Register(ModuleName, 2, "ISCN record not found")
	ErrFailedToSaveClass                 = sdkerrors.Register(ModuleName, 3, "Failed to save class")
	ErrFailedToMarshalData               = sdkerrors.Register(ModuleName, 4, "Failed to marshal data")
	ErrNftClassNotFound                  = sdkerrors.Register(ModuleName, 5, "NFT Class not found")
	ErrFailedToUnmarshalData             = sdkerrors.Register(ModuleName, 6, "Failed to unmarshal data")
	ErrNftClassNotRelatedToAnyIscn       = sdkerrors.Register(ModuleName, 7, "NFT Class not related to any ISCN")
	ErrFailedToQueryIscnRecord           = sdkerrors.Register(ModuleName, 8, "Failed to query iscn record")
	ErrCannotUpdateClassWithMintedTokens = sdkerrors.Register(ModuleName, 9, "Cannot update class with minted tokens")
	ErrFailedToUpdateClass               = sdkerrors.Register(ModuleName, 10, "Failed to update class")
	ErrFailedToMintNFT                   = sdkerrors.Register(ModuleName, 11, "Failed to mint NFT")
	ErrInvalidTokenId                    = sdkerrors.Register(ModuleName, 12, "Invalid Token ID")
	ErrNftNotFound                       = sdkerrors.Register(ModuleName, 13, "NFT not found")
	ErrNftNotBurnable                    = sdkerrors.Register(ModuleName, 14, "NFT not burnable")
	ErrFailedToBurnNFT                   = sdkerrors.Register(ModuleName, 15, "Failed to burn NFT")
	ErrNftClassNotRelatedToAnyAccount    = sdkerrors.Register(ModuleName, 16, "NFT Class not related to any account")
	ErrNftNoSupply                       = sdkerrors.Register(ModuleName, 17, "No supply left for the NFT Class")
	ErrInsufficientFunds                 = sdkerrors.Register(ModuleName, 18, "Insufficient funds")
	ErrBlindBoxContentAlreadyExists      = sdkerrors.Register(ModuleName, 19, "Blind Box Content already exists")
	ErrBlindBoxContentNotFound           = sdkerrors.Register(ModuleName, 20, "Blind Box Content not found")
	ErrInvalidNftClassConfig             = sdkerrors.Register(ModuleName, 21, "Invalid NFT Class Config")
	ErrClassIsNotBlindBox                = sdkerrors.Register(ModuleName, 24, "Class is not using the blind box feature")
	ErrFailedToUpdateNFT                 = sdkerrors.Register(ModuleName, 25, "Failed to update NFT")
	ErrOfferNotFound                     = sdkerrors.Register(ModuleName, 26, "Existing offer not found")
	ErrOfferAlreadyExists                = sdkerrors.Register(ModuleName, 27, "Offer already exists")
	ErrFailedToCreateOffer               = sdkerrors.Register(ModuleName, 28, "Failed to create offer")
	ErrFailedToUpdateOffer               = sdkerrors.Register(ModuleName, 29, "Failed to update offer")
	ErrFailedToDeleteOffer               = sdkerrors.Register(ModuleName, 30, "Failed to delete offer")
	ErrListingNotFound                   = sdkerrors.Register(ModuleName, 31, "Existing listing not found")
	ErrListingAlreadyExists              = sdkerrors.Register(ModuleName, 32, "Listing already exists")
	ErrFailedToCreateListing             = sdkerrors.Register(ModuleName, 33, "Failed to create listing")
	ErrFailedToUpdateListing             = sdkerrors.Register(ModuleName, 34, "Failed to update listing")
	ErrFailedToDeleteListing             = sdkerrors.Register(ModuleName, 35, "Failed to delete listing")
	ErrOfferExpired                      = sdkerrors.Register(ModuleName, 36, "Offer expired")
	ErrFailedToSellNFT                   = sdkerrors.Register(ModuleName, 37, "Failed to sell NFT")
	ErrListingExpired                    = sdkerrors.Register(ModuleName, 38, "Listing expired")
	ErrFailedToBuyNFT                    = sdkerrors.Register(ModuleName, 39, "Failed to buy NFT")
	ErrFailedToExpireOffer               = sdkerrors.Register(ModuleName, 40, "Failed to expire offer")
	ErrFailedToExpireListing             = sdkerrors.Register(ModuleName, 41, "Failed to expire listing")
	ErrRoyaltyConfigAlreadyExists        = sdkerrors.Register(ModuleName, 42, "Royalty config already exists")
	ErrRoyaltyConfigNotFound             = sdkerrors.Register(ModuleName, 43, "Royalty config not found")
	ErrInvalidRoyaltyConfig              = sdkerrors.Register(ModuleName, 44, "Royalty config invalid")
)

x/likenft module sentinel errors

View Source
var (
	ErrInvalidLengthEvent        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvent          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvent = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthListing        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowListing          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupListing = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthListingExpireQueue        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowListingExpireQueue          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupListingExpireQueue = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNftData        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNftData          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNftData = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNftInput        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNftInput          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNftInput = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthOffer        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowOffer          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupOffer = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthOfferExpireQueue        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowOfferExpireQueue          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupOfferExpireQueue = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	DefaultPriceDenom             = "nanolike"
	DefaultFeePerByteDenom        = "nanolike"
	DefaultFeePerByteAmount int64 = 10000
	DefaultFeePerByte             = sdk.NewDecCoin(
		DefaultFeePerByteDenom, sdk.NewInt(DefaultFeePerByteAmount),
	)
	DefaultMaxOfferDurationDays   uint64 = 180
	DefaultMaxListingDurationDays uint64 = 180
	DefaultMaxRoyaltyBasisPoints  uint64 = 1000 // 10%
)
View Source
var (
	ParamKeyPriceDenom             = []byte("PriceDenom")
	ParamKeyFeePerByte             = []byte("FeePerByte")
	ParamKeyMaxOfferDurationDays   = []byte("MaxOfferDurationDays")
	ParamKeyMaxListingDurationDays = []byte("MaxListingDurationDays")
	ParamKeyMaxRoyaltyBasisPoints  = []byte("MaxRoyaltyBasisPoints")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthRoyaltyConfig        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRoyaltyConfig          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRoyaltyConfig = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ClassParentType_name = map[int32]string{
	0: "UNKNOWN",
	1: "ISCN",
	2: "ACCOUNT",
}
View Source
var ClassParentType_value = map[string]int32{
	"UNKNOWN": 0,
	"ISCN":    1,
	"ACCOUNT": 2,
}

Functions

func BlindBoxContentKey

func BlindBoxContentKey(
	classId string,
	id string,
) []byte

BlindBoxContentKey returns the store key to retrieve a BlindBoxContent from the index fields

func BlindBoxContentsKey

func BlindBoxContentsKey(
	classId string,
) []byte

BlindBoxContentsKey gets the first part of the BlindBoxContent key based on the classID

func ClassRevealByTimeKey

func ClassRevealByTimeKey(
	revealTime time.Time,
) []byte

func ClassRevealQueueKey

func ClassRevealQueueKey(
	revealTime time.Time,
	classId string,
) []byte

ClassRevealQueueKey returns the store key to retrieve a ClassRevealQueueEntry from the index fields

func ClassesByAccountKey

func ClassesByAccountKey(
	account sdk.AccAddress,
) []byte

ClassesByAccountKey returns the store key to retrieve a ClassesByAccount from the index fields

func ClassesByISCNKey

func ClassesByISCNKey(
	iscnIdPrefix string,
) []byte

ClassesByISCNKey returns the store key to retrieve a ClassesByISCN from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func ListingExpireByTimeKey

func ListingExpireByTimeKey(
	expireTime time.Time,
) []byte

func ListingExpireQueueKey

func ListingExpireQueueKey(
	expireTime time.Time,
	listingKey []byte,
) []byte

ListingExpireQueueKey returns the store key to retrieve a ListingExpireQueueEntry from the index fields

func ListingKey

func ListingKey(
	classId string,
	nftId string,
	seller sdk.AccAddress,
) []byte

ListingKey returns the store key to retrieve a Listing from the index fields

func ListingsByClassKey

func ListingsByClassKey(
	classId string,
) []byte

func ListingsByNFTKey

func ListingsByNFTKey(
	classId string,
	nftId string,
) []byte

func NewClassIdForAccount

func NewClassIdForAccount(accAddress sdk.AccAddress, serial int) (string, error)

func NewClassIdForISCN

func NewClassIdForISCN(iscnIdPrefix string, serial int) (string, error)

func OfferExpireByTimeKey

func OfferExpireByTimeKey(
	expireTime time.Time,
) []byte

func OfferExpireQueueKey

func OfferExpireQueueKey(
	expireTime time.Time,
	offerKey []byte,
) []byte

OfferExpireQueueKey returns the store key to retrieve a OfferExpireQueueEntry from the index fields

func OfferKey

func OfferKey(
	classId string,
	nftId string,
	buyer sdk.AccAddress,
) []byte

OfferKey returns the store key to retrieve a Offer from the index fields

func OffersByClassKey

func OffersByClassKey(
	classId string,
) []byte

func OffersByNFTKey

func OffersByNFTKey(
	classId string,
	nftId string,
) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func RoyaltyConfigByClassKey

func RoyaltyConfigByClassKey(
	classId string,
) []byte

RoyaltyConfigByClassKey returns the store key to retrieve a RoyaltyConfigByClass from the index fields

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) types.AccountI
}

AccountKeeper defines the expected account keeper used for simulations (noalias)

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	GetBalance(ctx sdk.Context, addr sdk.AccAddress, denom string) sdk.Coin
	SendCoins(ctx sdk.Context, fromAddr sdk.AccAddress, toAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
}

BankKeeper defines the expected interface needed to retrieve account balances.

type BlindBoxConfig

type BlindBoxConfig struct {
	MintPeriods []MintPeriod `protobuf:"bytes,1,rep,name=mint_periods,json=mintPeriods,proto3" json:"mint_periods"`
	RevealTime  time.Time    `protobuf:"bytes,2,opt,name=reveal_time,json=revealTime,proto3,stdtime" json:"reveal_time"`
}

func (*BlindBoxConfig) Descriptor

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

func (*BlindBoxConfig) GetMintPeriods

func (m *BlindBoxConfig) GetMintPeriods() []MintPeriod

func (*BlindBoxConfig) GetRevealTime

func (m *BlindBoxConfig) GetRevealTime() time.Time

func (*BlindBoxConfig) Marshal

func (m *BlindBoxConfig) Marshal() (dAtA []byte, err error)

func (*BlindBoxConfig) MarshalTo

func (m *BlindBoxConfig) MarshalTo(dAtA []byte) (int, error)

func (*BlindBoxConfig) MarshalToSizedBuffer

func (m *BlindBoxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BlindBoxConfig) ProtoMessage

func (*BlindBoxConfig) ProtoMessage()

func (*BlindBoxConfig) Reset

func (m *BlindBoxConfig) Reset()

func (*BlindBoxConfig) Size

func (m *BlindBoxConfig) Size() (n int)

func (*BlindBoxConfig) String

func (m *BlindBoxConfig) String() string

func (*BlindBoxConfig) Unmarshal

func (m *BlindBoxConfig) Unmarshal(dAtA []byte) error

func (*BlindBoxConfig) XXX_DiscardUnknown

func (m *BlindBoxConfig) XXX_DiscardUnknown()

func (*BlindBoxConfig) XXX_Marshal

func (m *BlindBoxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BlindBoxConfig) XXX_Merge

func (m *BlindBoxConfig) XXX_Merge(src proto.Message)

func (*BlindBoxConfig) XXX_Size

func (m *BlindBoxConfig) XXX_Size() int

func (*BlindBoxConfig) XXX_Unmarshal

func (m *BlindBoxConfig) XXX_Unmarshal(b []byte) error

type BlindBoxContent

type BlindBoxContent struct {
	ClassId string   `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Input   NFTInput `protobuf:"bytes,3,opt,name=input,proto3" json:"input"`
}

func (*BlindBoxContent) Descriptor

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

func (*BlindBoxContent) GetClassId

func (m *BlindBoxContent) GetClassId() string

func (*BlindBoxContent) GetId

func (m *BlindBoxContent) GetId() string

func (*BlindBoxContent) GetInput

func (m *BlindBoxContent) GetInput() NFTInput

func (*BlindBoxContent) Marshal

func (m *BlindBoxContent) Marshal() (dAtA []byte, err error)

func (*BlindBoxContent) MarshalTo

func (m *BlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*BlindBoxContent) MarshalToSizedBuffer

func (m *BlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BlindBoxContent) ProtoMessage

func (*BlindBoxContent) ProtoMessage()

func (*BlindBoxContent) Reset

func (m *BlindBoxContent) Reset()

func (*BlindBoxContent) Size

func (m *BlindBoxContent) Size() (n int)

func (*BlindBoxContent) String

func (m *BlindBoxContent) String() string

func (*BlindBoxContent) Unmarshal

func (m *BlindBoxContent) Unmarshal(dAtA []byte) error

func (*BlindBoxContent) XXX_DiscardUnknown

func (m *BlindBoxContent) XXX_DiscardUnknown()

func (*BlindBoxContent) XXX_Marshal

func (m *BlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BlindBoxContent) XXX_Merge

func (m *BlindBoxContent) XXX_Merge(src proto.Message)

func (*BlindBoxContent) XXX_Size

func (m *BlindBoxContent) XXX_Size() int

func (*BlindBoxContent) XXX_Unmarshal

func (m *BlindBoxContent) XXX_Unmarshal(b []byte) error

type BlindBoxState

type BlindBoxState struct {
	ContentCount uint64 `protobuf:"varint,1,opt,name=content_count,json=contentCount,proto3" json:"content_count,omitempty"`
	ToBeRevealed bool   `protobuf:"varint,2,opt,name=to_be_revealed,json=toBeRevealed,proto3" json:"to_be_revealed,omitempty"`
}

func (*BlindBoxState) Descriptor

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

func (*BlindBoxState) GetContentCount

func (m *BlindBoxState) GetContentCount() uint64

func (*BlindBoxState) GetToBeRevealed

func (m *BlindBoxState) GetToBeRevealed() bool

func (*BlindBoxState) Marshal

func (m *BlindBoxState) Marshal() (dAtA []byte, err error)

func (*BlindBoxState) MarshalTo

func (m *BlindBoxState) MarshalTo(dAtA []byte) (int, error)

func (*BlindBoxState) MarshalToSizedBuffer

func (m *BlindBoxState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BlindBoxState) ProtoMessage

func (*BlindBoxState) ProtoMessage()

func (*BlindBoxState) Reset

func (m *BlindBoxState) Reset()

func (*BlindBoxState) Size

func (m *BlindBoxState) Size() (n int)

func (*BlindBoxState) String

func (m *BlindBoxState) String() string

func (*BlindBoxState) Unmarshal

func (m *BlindBoxState) Unmarshal(dAtA []byte) error

func (*BlindBoxState) XXX_DiscardUnknown

func (m *BlindBoxState) XXX_DiscardUnknown()

func (*BlindBoxState) XXX_Marshal

func (m *BlindBoxState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BlindBoxState) XXX_Merge

func (m *BlindBoxState) XXX_Merge(src proto.Message)

func (*BlindBoxState) XXX_Size

func (m *BlindBoxState) XXX_Size() int

func (*BlindBoxState) XXX_Unmarshal

func (m *BlindBoxState) XXX_Unmarshal(b []byte) error

type ClassConfig

type ClassConfig struct {
	Burnable       bool            `protobuf:"varint,1,opt,name=burnable,proto3" json:"burnable,omitempty"`
	MaxSupply      uint64          `protobuf:"varint,2,opt,name=max_supply,json=maxSupply,proto3" json:"max_supply,omitempty"`
	BlindBoxConfig *BlindBoxConfig `protobuf:"bytes,3,opt,name=blind_box_config,json=blindBoxConfig,proto3" json:"blind_box_config,omitempty"`
}

func (*ClassConfig) Descriptor

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

func (*ClassConfig) GetBlindBoxConfig

func (m *ClassConfig) GetBlindBoxConfig() *BlindBoxConfig

func (*ClassConfig) GetBurnable

func (m *ClassConfig) GetBurnable() bool

func (*ClassConfig) GetMaxSupply

func (m *ClassConfig) GetMaxSupply() uint64

func (ClassConfig) IsBlindBox

func (c ClassConfig) IsBlindBox() bool

func (*ClassConfig) Marshal

func (m *ClassConfig) Marshal() (dAtA []byte, err error)

func (*ClassConfig) MarshalTo

func (m *ClassConfig) MarshalTo(dAtA []byte) (int, error)

func (*ClassConfig) MarshalToSizedBuffer

func (m *ClassConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassConfig) ProtoMessage

func (*ClassConfig) ProtoMessage()

func (*ClassConfig) Reset

func (m *ClassConfig) Reset()

func (*ClassConfig) Size

func (m *ClassConfig) Size() (n int)

func (*ClassConfig) String

func (m *ClassConfig) String() string

func (*ClassConfig) Unmarshal

func (m *ClassConfig) Unmarshal(dAtA []byte) error

func (*ClassConfig) XXX_DiscardUnknown

func (m *ClassConfig) XXX_DiscardUnknown()

func (*ClassConfig) XXX_Marshal

func (m *ClassConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassConfig) XXX_Merge

func (m *ClassConfig) XXX_Merge(src proto.Message)

func (*ClassConfig) XXX_Size

func (m *ClassConfig) XXX_Size() int

func (*ClassConfig) XXX_Unmarshal

func (m *ClassConfig) XXX_Unmarshal(b []byte) error

type ClassData

type ClassData struct {
	Metadata      JsonInput     `protobuf:"bytes,1,opt,name=metadata,proto3,customtype=JsonInput" json:"metadata"`
	Parent        ClassParent   `protobuf:"bytes,2,opt,name=parent,proto3" json:"parent"`
	Config        ClassConfig   `protobuf:"bytes,3,opt,name=config,proto3" json:"config"`
	BlindBoxState BlindBoxState `protobuf:"bytes,4,opt,name=blind_box_state,json=blindBoxState,proto3" json:"blind_box_state"`
}

func (*ClassData) Descriptor

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

func (*ClassData) GetBlindBoxState

func (m *ClassData) GetBlindBoxState() BlindBoxState

func (*ClassData) GetConfig

func (m *ClassData) GetConfig() ClassConfig

func (*ClassData) GetParent

func (m *ClassData) GetParent() ClassParent

func (*ClassData) Marshal

func (m *ClassData) Marshal() (dAtA []byte, err error)

func (*ClassData) MarshalTo

func (m *ClassData) MarshalTo(dAtA []byte) (int, error)

func (*ClassData) MarshalToSizedBuffer

func (m *ClassData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassData) ProtoMessage

func (*ClassData) ProtoMessage()

func (*ClassData) Reset

func (m *ClassData) Reset()

func (*ClassData) Size

func (m *ClassData) Size() (n int)

func (*ClassData) String

func (m *ClassData) String() string

func (*ClassData) Unmarshal

func (m *ClassData) Unmarshal(dAtA []byte) error

func (*ClassData) XXX_DiscardUnknown

func (m *ClassData) XXX_DiscardUnknown()

func (*ClassData) XXX_Marshal

func (m *ClassData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassData) XXX_Merge

func (m *ClassData) XXX_Merge(src proto.Message)

func (*ClassData) XXX_Size

func (m *ClassData) XXX_Size() int

func (*ClassData) XXX_Unmarshal

func (m *ClassData) XXX_Unmarshal(b []byte) error

type ClassInput

type ClassInput struct {
	Name        string      `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Symbol      string      `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Description string      `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Uri         string      `protobuf:"bytes,4,opt,name=uri,proto3" json:"uri,omitempty"`
	UriHash     string      `protobuf:"bytes,5,opt,name=uri_hash,json=uriHash,proto3" json:"uri_hash,omitempty"`
	Metadata    JsonInput   `protobuf:"bytes,6,opt,name=metadata,proto3,customtype=JsonInput" json:"metadata"`
	Config      ClassConfig `protobuf:"bytes,7,opt,name=config,proto3" json:"config"`
}

func (*ClassInput) Descriptor

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

func (*ClassInput) GetConfig

func (m *ClassInput) GetConfig() ClassConfig

func (*ClassInput) GetDescription

func (m *ClassInput) GetDescription() string

func (*ClassInput) GetName

func (m *ClassInput) GetName() string

func (*ClassInput) GetSymbol

func (m *ClassInput) GetSymbol() string

func (*ClassInput) GetUri

func (m *ClassInput) GetUri() string

func (*ClassInput) GetUriHash

func (m *ClassInput) GetUriHash() string

func (*ClassInput) Marshal

func (m *ClassInput) Marshal() (dAtA []byte, err error)

func (*ClassInput) MarshalTo

func (m *ClassInput) MarshalTo(dAtA []byte) (int, error)

func (*ClassInput) MarshalToSizedBuffer

func (m *ClassInput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassInput) ProtoMessage

func (*ClassInput) ProtoMessage()

func (*ClassInput) Reset

func (m *ClassInput) Reset()

func (*ClassInput) Size

func (m *ClassInput) Size() (n int)

func (*ClassInput) String

func (m *ClassInput) String() string

func (*ClassInput) Unmarshal

func (m *ClassInput) Unmarshal(dAtA []byte) error

func (*ClassInput) XXX_DiscardUnknown

func (m *ClassInput) XXX_DiscardUnknown()

func (*ClassInput) XXX_Marshal

func (m *ClassInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassInput) XXX_Merge

func (m *ClassInput) XXX_Merge(src proto.Message)

func (*ClassInput) XXX_Size

func (m *ClassInput) XXX_Size() int

func (*ClassInput) XXX_Unmarshal

func (m *ClassInput) XXX_Unmarshal(b []byte) error

type ClassParent

type ClassParent struct {
	Type              ClassParentType `protobuf:"varint,1,opt,name=type,proto3,enum=likechain.likenft.v1.ClassParentType" json:"type,omitempty"`
	IscnIdPrefix      string          `protobuf:"bytes,2,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
	IscnVersionAtMint uint64          `protobuf:"varint,3,opt,name=iscn_version_at_mint,json=iscnVersionAtMint,proto3" json:"iscn_version_at_mint,omitempty"`
	Account           string          `protobuf:"bytes,4,opt,name=account,proto3" json:"account,omitempty"`
}

func (*ClassParent) Descriptor

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

func (*ClassParent) GetAccount

func (m *ClassParent) GetAccount() string

func (*ClassParent) GetIscnIdPrefix

func (m *ClassParent) GetIscnIdPrefix() string

func (*ClassParent) GetIscnVersionAtMint

func (m *ClassParent) GetIscnVersionAtMint() uint64

func (*ClassParent) GetType

func (m *ClassParent) GetType() ClassParentType

func (*ClassParent) Marshal

func (m *ClassParent) Marshal() (dAtA []byte, err error)

func (*ClassParent) MarshalTo

func (m *ClassParent) MarshalTo(dAtA []byte) (int, error)

func (*ClassParent) MarshalToSizedBuffer

func (m *ClassParent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassParent) ProtoMessage

func (*ClassParent) ProtoMessage()

func (*ClassParent) Reset

func (m *ClassParent) Reset()

func (*ClassParent) Size

func (m *ClassParent) Size() (n int)

func (*ClassParent) String

func (m *ClassParent) String() string

func (ClassParent) ToInput

func (m ClassParent) ToInput() ClassParentInput

func (*ClassParent) Unmarshal

func (m *ClassParent) Unmarshal(dAtA []byte) error

func (*ClassParent) XXX_DiscardUnknown

func (m *ClassParent) XXX_DiscardUnknown()

func (*ClassParent) XXX_Marshal

func (m *ClassParent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassParent) XXX_Merge

func (m *ClassParent) XXX_Merge(src proto.Message)

func (*ClassParent) XXX_Size

func (m *ClassParent) XXX_Size() int

func (*ClassParent) XXX_Unmarshal

func (m *ClassParent) XXX_Unmarshal(b []byte) error

type ClassParentInput

type ClassParentInput struct {
	Type         ClassParentType `protobuf:"varint,1,opt,name=type,proto3,enum=likechain.likenft.v1.ClassParentType" json:"type,omitempty"`
	IscnIdPrefix string          `protobuf:"bytes,2,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
}

func (*ClassParentInput) Descriptor

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

func (*ClassParentInput) GetIscnIdPrefix

func (m *ClassParentInput) GetIscnIdPrefix() string

func (*ClassParentInput) GetType

func (m *ClassParentInput) GetType() ClassParentType

func (*ClassParentInput) Marshal

func (m *ClassParentInput) Marshal() (dAtA []byte, err error)

func (*ClassParentInput) MarshalTo

func (m *ClassParentInput) MarshalTo(dAtA []byte) (int, error)

func (*ClassParentInput) MarshalToSizedBuffer

func (m *ClassParentInput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassParentInput) ProtoMessage

func (*ClassParentInput) ProtoMessage()

func (*ClassParentInput) Reset

func (m *ClassParentInput) Reset()

func (*ClassParentInput) Size

func (m *ClassParentInput) Size() (n int)

func (*ClassParentInput) String

func (m *ClassParentInput) String() string

func (*ClassParentInput) Unmarshal

func (m *ClassParentInput) Unmarshal(dAtA []byte) error

func (*ClassParentInput) XXX_DiscardUnknown

func (m *ClassParentInput) XXX_DiscardUnknown()

func (*ClassParentInput) XXX_Marshal

func (m *ClassParentInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassParentInput) XXX_Merge

func (m *ClassParentInput) XXX_Merge(src proto.Message)

func (*ClassParentInput) XXX_Size

func (m *ClassParentInput) XXX_Size() int

func (*ClassParentInput) XXX_Unmarshal

func (m *ClassParentInput) XXX_Unmarshal(b []byte) error

type ClassParentType

type ClassParentType int32
const (
	ClassParentType_UNKNOWN ClassParentType = 0
	ClassParentType_ISCN    ClassParentType = 1
	ClassParentType_ACCOUNT ClassParentType = 2
)

func (ClassParentType) EnumDescriptor

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

func (ClassParentType) String

func (x ClassParentType) String() string

type ClassParentWithOwner

type ClassParentWithOwner struct {
	ClassParent
	Owner sdk.AccAddress
}

type ClassRevealQueueEntry

type ClassRevealQueueEntry struct {
	RevealTime time.Time `protobuf:"bytes,1,opt,name=reveal_time,json=revealTime,proto3,stdtime" json:"reveal_time"`
	ClassId    string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*ClassRevealQueueEntry) Descriptor

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

func (*ClassRevealQueueEntry) GetClassId

func (m *ClassRevealQueueEntry) GetClassId() string

func (*ClassRevealQueueEntry) GetRevealTime

func (m *ClassRevealQueueEntry) GetRevealTime() time.Time

func (*ClassRevealQueueEntry) Marshal

func (m *ClassRevealQueueEntry) Marshal() (dAtA []byte, err error)

func (*ClassRevealQueueEntry) MarshalTo

func (m *ClassRevealQueueEntry) MarshalTo(dAtA []byte) (int, error)

func (*ClassRevealQueueEntry) MarshalToSizedBuffer

func (m *ClassRevealQueueEntry) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassRevealQueueEntry) ProtoMessage

func (*ClassRevealQueueEntry) ProtoMessage()

func (*ClassRevealQueueEntry) Reset

func (m *ClassRevealQueueEntry) Reset()

func (*ClassRevealQueueEntry) Size

func (m *ClassRevealQueueEntry) Size() (n int)

func (*ClassRevealQueueEntry) String

func (m *ClassRevealQueueEntry) String() string

func (*ClassRevealQueueEntry) Unmarshal

func (m *ClassRevealQueueEntry) Unmarshal(dAtA []byte) error

func (*ClassRevealQueueEntry) XXX_DiscardUnknown

func (m *ClassRevealQueueEntry) XXX_DiscardUnknown()

func (*ClassRevealQueueEntry) XXX_Marshal

func (m *ClassRevealQueueEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassRevealQueueEntry) XXX_Merge

func (m *ClassRevealQueueEntry) XXX_Merge(src proto.Message)

func (*ClassRevealQueueEntry) XXX_Size

func (m *ClassRevealQueueEntry) XXX_Size() int

func (*ClassRevealQueueEntry) XXX_Unmarshal

func (m *ClassRevealQueueEntry) XXX_Unmarshal(b []byte) error

type ClassesByAccount

type ClassesByAccount struct {
	Account  string   `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	ClassIds []string `protobuf:"bytes,2,rep,name=class_ids,json=classIds,proto3" json:"class_ids,omitempty"`
}

func (*ClassesByAccount) Descriptor

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

func (*ClassesByAccount) GetAccount

func (m *ClassesByAccount) GetAccount() string

func (*ClassesByAccount) GetClassIds

func (m *ClassesByAccount) GetClassIds() []string

func (*ClassesByAccount) Marshal

func (m *ClassesByAccount) Marshal() (dAtA []byte, err error)

func (*ClassesByAccount) MarshalTo

func (m *ClassesByAccount) MarshalTo(dAtA []byte) (int, error)

func (*ClassesByAccount) MarshalToSizedBuffer

func (m *ClassesByAccount) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassesByAccount) ProtoMessage

func (*ClassesByAccount) ProtoMessage()

func (*ClassesByAccount) Reset

func (m *ClassesByAccount) Reset()

func (*ClassesByAccount) Size

func (m *ClassesByAccount) Size() (n int)

func (*ClassesByAccount) String

func (m *ClassesByAccount) String() string

func (*ClassesByAccount) ToStoreRecord

func (m *ClassesByAccount) ToStoreRecord() ClassesByAccountStoreRecord

func (*ClassesByAccount) Unmarshal

func (m *ClassesByAccount) Unmarshal(dAtA []byte) error

func (*ClassesByAccount) XXX_DiscardUnknown

func (m *ClassesByAccount) XXX_DiscardUnknown()

func (*ClassesByAccount) XXX_Marshal

func (m *ClassesByAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassesByAccount) XXX_Merge

func (m *ClassesByAccount) XXX_Merge(src proto.Message)

func (*ClassesByAccount) XXX_Size

func (m *ClassesByAccount) XXX_Size() int

func (*ClassesByAccount) XXX_Unmarshal

func (m *ClassesByAccount) XXX_Unmarshal(b []byte) error

type ClassesByAccountStoreRecord

type ClassesByAccountStoreRecord struct {
	AccAddress github_com_cosmos_cosmos_sdk_types.AccAddress `` /* 146-byte string literal not displayed */
	ClassIds   []string                                      `protobuf:"bytes,2,rep,name=class_ids,json=classIds,proto3" json:"class_ids,omitempty"`
}

func (*ClassesByAccountStoreRecord) Descriptor

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

func (*ClassesByAccountStoreRecord) GetAccAddress

func (*ClassesByAccountStoreRecord) GetClassIds

func (m *ClassesByAccountStoreRecord) GetClassIds() []string

func (*ClassesByAccountStoreRecord) Marshal

func (m *ClassesByAccountStoreRecord) Marshal() (dAtA []byte, err error)

func (*ClassesByAccountStoreRecord) MarshalTo

func (m *ClassesByAccountStoreRecord) MarshalTo(dAtA []byte) (int, error)

func (*ClassesByAccountStoreRecord) MarshalToSizedBuffer

func (m *ClassesByAccountStoreRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassesByAccountStoreRecord) ProtoMessage

func (*ClassesByAccountStoreRecord) ProtoMessage()

func (*ClassesByAccountStoreRecord) Reset

func (m *ClassesByAccountStoreRecord) Reset()

func (*ClassesByAccountStoreRecord) Size

func (m *ClassesByAccountStoreRecord) Size() (n int)

func (*ClassesByAccountStoreRecord) String

func (m *ClassesByAccountStoreRecord) String() string

func (*ClassesByAccountStoreRecord) ToPublicRecord

func (m *ClassesByAccountStoreRecord) ToPublicRecord() ClassesByAccount

func (*ClassesByAccountStoreRecord) Unmarshal

func (m *ClassesByAccountStoreRecord) Unmarshal(dAtA []byte) error

func (*ClassesByAccountStoreRecord) XXX_DiscardUnknown

func (m *ClassesByAccountStoreRecord) XXX_DiscardUnknown()

func (*ClassesByAccountStoreRecord) XXX_Marshal

func (m *ClassesByAccountStoreRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassesByAccountStoreRecord) XXX_Merge

func (m *ClassesByAccountStoreRecord) XXX_Merge(src proto.Message)

func (*ClassesByAccountStoreRecord) XXX_Size

func (m *ClassesByAccountStoreRecord) XXX_Size() int

func (*ClassesByAccountStoreRecord) XXX_Unmarshal

func (m *ClassesByAccountStoreRecord) XXX_Unmarshal(b []byte) error

type ClassesByISCN

type ClassesByISCN struct {
	IscnIdPrefix string   `protobuf:"bytes,1,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
	ClassIds     []string `protobuf:"bytes,2,rep,name=class_ids,json=classIds,proto3" json:"class_ids,omitempty"`
}

func (*ClassesByISCN) Descriptor

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

func (*ClassesByISCN) GetClassIds

func (m *ClassesByISCN) GetClassIds() []string

func (*ClassesByISCN) GetIscnIdPrefix

func (m *ClassesByISCN) GetIscnIdPrefix() string

func (*ClassesByISCN) Marshal

func (m *ClassesByISCN) Marshal() (dAtA []byte, err error)

func (*ClassesByISCN) MarshalTo

func (m *ClassesByISCN) MarshalTo(dAtA []byte) (int, error)

func (*ClassesByISCN) MarshalToSizedBuffer

func (m *ClassesByISCN) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ClassesByISCN) ProtoMessage

func (*ClassesByISCN) ProtoMessage()

func (*ClassesByISCN) Reset

func (m *ClassesByISCN) Reset()

func (*ClassesByISCN) Size

func (m *ClassesByISCN) Size() (n int)

func (*ClassesByISCN) String

func (m *ClassesByISCN) String() string

func (*ClassesByISCN) Unmarshal

func (m *ClassesByISCN) Unmarshal(dAtA []byte) error

func (*ClassesByISCN) XXX_DiscardUnknown

func (m *ClassesByISCN) XXX_DiscardUnknown()

func (*ClassesByISCN) XXX_Marshal

func (m *ClassesByISCN) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClassesByISCN) XXX_Merge

func (m *ClassesByISCN) XXX_Merge(src proto.Message)

func (*ClassesByISCN) XXX_Size

func (m *ClassesByISCN) XXX_Size() int

func (*ClassesByISCN) XXX_Unmarshal

func (m *ClassesByISCN) XXX_Unmarshal(b []byte) error

type EventBurnNFT

type EventBurnNFT struct {
	ClassId                 string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId                   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Owner                   string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	ClassParentIscnIdPrefix string `` /* 136-byte string literal not displayed */
	ClassParentAccount      string `protobuf:"bytes,5,opt,name=class_parent_account,json=classParentAccount,proto3" json:"class_parent_account,omitempty"`
}

func (*EventBurnNFT) Descriptor

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

func (*EventBurnNFT) GetClassId

func (m *EventBurnNFT) GetClassId() string

func (*EventBurnNFT) GetClassParentAccount

func (m *EventBurnNFT) GetClassParentAccount() string

func (*EventBurnNFT) GetClassParentIscnIdPrefix

func (m *EventBurnNFT) GetClassParentIscnIdPrefix() string

func (*EventBurnNFT) GetNftId

func (m *EventBurnNFT) GetNftId() string

func (*EventBurnNFT) GetOwner

func (m *EventBurnNFT) GetOwner() string

func (*EventBurnNFT) Marshal

func (m *EventBurnNFT) Marshal() (dAtA []byte, err error)

func (*EventBurnNFT) MarshalTo

func (m *EventBurnNFT) MarshalTo(dAtA []byte) (int, error)

func (*EventBurnNFT) MarshalToSizedBuffer

func (m *EventBurnNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventBurnNFT) ProtoMessage

func (*EventBurnNFT) ProtoMessage()

func (*EventBurnNFT) Reset

func (m *EventBurnNFT) Reset()

func (*EventBurnNFT) Size

func (m *EventBurnNFT) Size() (n int)

func (*EventBurnNFT) String

func (m *EventBurnNFT) String() string

func (*EventBurnNFT) Unmarshal

func (m *EventBurnNFT) Unmarshal(dAtA []byte) error

func (*EventBurnNFT) XXX_DiscardUnknown

func (m *EventBurnNFT) XXX_DiscardUnknown()

func (*EventBurnNFT) XXX_Marshal

func (m *EventBurnNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventBurnNFT) XXX_Merge

func (m *EventBurnNFT) XXX_Merge(src proto.Message)

func (*EventBurnNFT) XXX_Size

func (m *EventBurnNFT) XXX_Size() int

func (*EventBurnNFT) XXX_Unmarshal

func (m *EventBurnNFT) XXX_Unmarshal(b []byte) error

type EventBuyNFT

type EventBuyNFT struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
	Buyer   string `protobuf:"bytes,4,opt,name=buyer,proto3" json:"buyer,omitempty"`
	Price   uint64 `protobuf:"varint,5,opt,name=price,proto3" json:"price,omitempty"`
}

func (*EventBuyNFT) Descriptor

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

func (*EventBuyNFT) GetBuyer

func (m *EventBuyNFT) GetBuyer() string

func (*EventBuyNFT) GetClassId

func (m *EventBuyNFT) GetClassId() string

func (*EventBuyNFT) GetNftId

func (m *EventBuyNFT) GetNftId() string

func (*EventBuyNFT) GetPrice

func (m *EventBuyNFT) GetPrice() uint64

func (*EventBuyNFT) GetSeller

func (m *EventBuyNFT) GetSeller() string

func (*EventBuyNFT) Marshal

func (m *EventBuyNFT) Marshal() (dAtA []byte, err error)

func (*EventBuyNFT) MarshalTo

func (m *EventBuyNFT) MarshalTo(dAtA []byte) (int, error)

func (*EventBuyNFT) MarshalToSizedBuffer

func (m *EventBuyNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventBuyNFT) ProtoMessage

func (*EventBuyNFT) ProtoMessage()

func (*EventBuyNFT) Reset

func (m *EventBuyNFT) Reset()

func (*EventBuyNFT) Size

func (m *EventBuyNFT) Size() (n int)

func (*EventBuyNFT) String

func (m *EventBuyNFT) String() string

func (*EventBuyNFT) Unmarshal

func (m *EventBuyNFT) Unmarshal(dAtA []byte) error

func (*EventBuyNFT) XXX_DiscardUnknown

func (m *EventBuyNFT) XXX_DiscardUnknown()

func (*EventBuyNFT) XXX_Marshal

func (m *EventBuyNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventBuyNFT) XXX_Merge

func (m *EventBuyNFT) XXX_Merge(src proto.Message)

func (*EventBuyNFT) XXX_Size

func (m *EventBuyNFT) XXX_Size() int

func (*EventBuyNFT) XXX_Unmarshal

func (m *EventBuyNFT) XXX_Unmarshal(b []byte) error

type EventCreateBlindBoxContent

type EventCreateBlindBoxContent struct {
	ClassId                 string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	ContentId               string `protobuf:"bytes,2,opt,name=content_id,json=contentId,proto3" json:"content_id,omitempty"`
	ClassParentIscnIdPrefix string `` /* 136-byte string literal not displayed */
	ClassParentAccount      string `protobuf:"bytes,4,opt,name=class_parent_account,json=classParentAccount,proto3" json:"class_parent_account,omitempty"`
}

func (*EventCreateBlindBoxContent) Descriptor

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

func (*EventCreateBlindBoxContent) GetClassId

func (m *EventCreateBlindBoxContent) GetClassId() string

func (*EventCreateBlindBoxContent) GetClassParentAccount

func (m *EventCreateBlindBoxContent) GetClassParentAccount() string

func (*EventCreateBlindBoxContent) GetClassParentIscnIdPrefix

func (m *EventCreateBlindBoxContent) GetClassParentIscnIdPrefix() string

func (*EventCreateBlindBoxContent) GetContentId

func (m *EventCreateBlindBoxContent) GetContentId() string

func (*EventCreateBlindBoxContent) Marshal

func (m *EventCreateBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*EventCreateBlindBoxContent) MarshalTo

func (m *EventCreateBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*EventCreateBlindBoxContent) MarshalToSizedBuffer

func (m *EventCreateBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventCreateBlindBoxContent) ProtoMessage

func (*EventCreateBlindBoxContent) ProtoMessage()

func (*EventCreateBlindBoxContent) Reset

func (m *EventCreateBlindBoxContent) Reset()

func (*EventCreateBlindBoxContent) Size

func (m *EventCreateBlindBoxContent) Size() (n int)

func (*EventCreateBlindBoxContent) String

func (m *EventCreateBlindBoxContent) String() string

func (*EventCreateBlindBoxContent) Unmarshal

func (m *EventCreateBlindBoxContent) Unmarshal(dAtA []byte) error

func (*EventCreateBlindBoxContent) XXX_DiscardUnknown

func (m *EventCreateBlindBoxContent) XXX_DiscardUnknown()

func (*EventCreateBlindBoxContent) XXX_Marshal

func (m *EventCreateBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventCreateBlindBoxContent) XXX_Merge

func (m *EventCreateBlindBoxContent) XXX_Merge(src proto.Message)

func (*EventCreateBlindBoxContent) XXX_Size

func (m *EventCreateBlindBoxContent) XXX_Size() int

func (*EventCreateBlindBoxContent) XXX_Unmarshal

func (m *EventCreateBlindBoxContent) XXX_Unmarshal(b []byte) error

type EventCreateListing

type EventCreateListing struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
}

func (*EventCreateListing) Descriptor

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

func (*EventCreateListing) GetClassId

func (m *EventCreateListing) GetClassId() string

func (*EventCreateListing) GetNftId

func (m *EventCreateListing) GetNftId() string

func (*EventCreateListing) GetSeller

func (m *EventCreateListing) GetSeller() string

func (*EventCreateListing) Marshal

func (m *EventCreateListing) Marshal() (dAtA []byte, err error)

func (*EventCreateListing) MarshalTo

func (m *EventCreateListing) MarshalTo(dAtA []byte) (int, error)

func (*EventCreateListing) MarshalToSizedBuffer

func (m *EventCreateListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventCreateListing) ProtoMessage

func (*EventCreateListing) ProtoMessage()

func (*EventCreateListing) Reset

func (m *EventCreateListing) Reset()

func (*EventCreateListing) Size

func (m *EventCreateListing) Size() (n int)

func (*EventCreateListing) String

func (m *EventCreateListing) String() string

func (*EventCreateListing) Unmarshal

func (m *EventCreateListing) Unmarshal(dAtA []byte) error

func (*EventCreateListing) XXX_DiscardUnknown

func (m *EventCreateListing) XXX_DiscardUnknown()

func (*EventCreateListing) XXX_Marshal

func (m *EventCreateListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventCreateListing) XXX_Merge

func (m *EventCreateListing) XXX_Merge(src proto.Message)

func (*EventCreateListing) XXX_Size

func (m *EventCreateListing) XXX_Size() int

func (*EventCreateListing) XXX_Unmarshal

func (m *EventCreateListing) XXX_Unmarshal(b []byte) error

type EventCreateOffer

type EventCreateOffer struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
}

func (*EventCreateOffer) Descriptor

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

func (*EventCreateOffer) GetBuyer

func (m *EventCreateOffer) GetBuyer() string

func (*EventCreateOffer) GetClassId

func (m *EventCreateOffer) GetClassId() string

func (*EventCreateOffer) GetNftId

func (m *EventCreateOffer) GetNftId() string

func (*EventCreateOffer) Marshal

func (m *EventCreateOffer) Marshal() (dAtA []byte, err error)

func (*EventCreateOffer) MarshalTo

func (m *EventCreateOffer) MarshalTo(dAtA []byte) (int, error)

func (*EventCreateOffer) MarshalToSizedBuffer

func (m *EventCreateOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventCreateOffer) ProtoMessage

func (*EventCreateOffer) ProtoMessage()

func (*EventCreateOffer) Reset

func (m *EventCreateOffer) Reset()

func (*EventCreateOffer) Size

func (m *EventCreateOffer) Size() (n int)

func (*EventCreateOffer) String

func (m *EventCreateOffer) String() string

func (*EventCreateOffer) Unmarshal

func (m *EventCreateOffer) Unmarshal(dAtA []byte) error

func (*EventCreateOffer) XXX_DiscardUnknown

func (m *EventCreateOffer) XXX_DiscardUnknown()

func (*EventCreateOffer) XXX_Marshal

func (m *EventCreateOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventCreateOffer) XXX_Merge

func (m *EventCreateOffer) XXX_Merge(src proto.Message)

func (*EventCreateOffer) XXX_Size

func (m *EventCreateOffer) XXX_Size() int

func (*EventCreateOffer) XXX_Unmarshal

func (m *EventCreateOffer) XXX_Unmarshal(b []byte) error

type EventCreateRoyaltyConfig

type EventCreateRoyaltyConfig struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*EventCreateRoyaltyConfig) Descriptor

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

func (*EventCreateRoyaltyConfig) GetClassId

func (m *EventCreateRoyaltyConfig) GetClassId() string

func (*EventCreateRoyaltyConfig) Marshal

func (m *EventCreateRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*EventCreateRoyaltyConfig) MarshalTo

func (m *EventCreateRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*EventCreateRoyaltyConfig) MarshalToSizedBuffer

func (m *EventCreateRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventCreateRoyaltyConfig) ProtoMessage

func (*EventCreateRoyaltyConfig) ProtoMessage()

func (*EventCreateRoyaltyConfig) Reset

func (m *EventCreateRoyaltyConfig) Reset()

func (*EventCreateRoyaltyConfig) Size

func (m *EventCreateRoyaltyConfig) Size() (n int)

func (*EventCreateRoyaltyConfig) String

func (m *EventCreateRoyaltyConfig) String() string

func (*EventCreateRoyaltyConfig) Unmarshal

func (m *EventCreateRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*EventCreateRoyaltyConfig) XXX_DiscardUnknown

func (m *EventCreateRoyaltyConfig) XXX_DiscardUnknown()

func (*EventCreateRoyaltyConfig) XXX_Marshal

func (m *EventCreateRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventCreateRoyaltyConfig) XXX_Merge

func (m *EventCreateRoyaltyConfig) XXX_Merge(src proto.Message)

func (*EventCreateRoyaltyConfig) XXX_Size

func (m *EventCreateRoyaltyConfig) XXX_Size() int

func (*EventCreateRoyaltyConfig) XXX_Unmarshal

func (m *EventCreateRoyaltyConfig) XXX_Unmarshal(b []byte) error

type EventDeleteBlindBoxContent

type EventDeleteBlindBoxContent struct {
	ClassId                 string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	ContentId               string `protobuf:"bytes,2,opt,name=content_id,json=contentId,proto3" json:"content_id,omitempty"`
	ClassParentIscnIdPrefix string `` /* 136-byte string literal not displayed */
	ClassParentAccount      string `protobuf:"bytes,4,opt,name=class_parent_account,json=classParentAccount,proto3" json:"class_parent_account,omitempty"`
}

func (*EventDeleteBlindBoxContent) Descriptor

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

func (*EventDeleteBlindBoxContent) GetClassId

func (m *EventDeleteBlindBoxContent) GetClassId() string

func (*EventDeleteBlindBoxContent) GetClassParentAccount

func (m *EventDeleteBlindBoxContent) GetClassParentAccount() string

func (*EventDeleteBlindBoxContent) GetClassParentIscnIdPrefix

func (m *EventDeleteBlindBoxContent) GetClassParentIscnIdPrefix() string

func (*EventDeleteBlindBoxContent) GetContentId

func (m *EventDeleteBlindBoxContent) GetContentId() string

func (*EventDeleteBlindBoxContent) Marshal

func (m *EventDeleteBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*EventDeleteBlindBoxContent) MarshalTo

func (m *EventDeleteBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*EventDeleteBlindBoxContent) MarshalToSizedBuffer

func (m *EventDeleteBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventDeleteBlindBoxContent) ProtoMessage

func (*EventDeleteBlindBoxContent) ProtoMessage()

func (*EventDeleteBlindBoxContent) Reset

func (m *EventDeleteBlindBoxContent) Reset()

func (*EventDeleteBlindBoxContent) Size

func (m *EventDeleteBlindBoxContent) Size() (n int)

func (*EventDeleteBlindBoxContent) String

func (m *EventDeleteBlindBoxContent) String() string

func (*EventDeleteBlindBoxContent) Unmarshal

func (m *EventDeleteBlindBoxContent) Unmarshal(dAtA []byte) error

func (*EventDeleteBlindBoxContent) XXX_DiscardUnknown

func (m *EventDeleteBlindBoxContent) XXX_DiscardUnknown()

func (*EventDeleteBlindBoxContent) XXX_Marshal

func (m *EventDeleteBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventDeleteBlindBoxContent) XXX_Merge

func (m *EventDeleteBlindBoxContent) XXX_Merge(src proto.Message)

func (*EventDeleteBlindBoxContent) XXX_Size

func (m *EventDeleteBlindBoxContent) XXX_Size() int

func (*EventDeleteBlindBoxContent) XXX_Unmarshal

func (m *EventDeleteBlindBoxContent) XXX_Unmarshal(b []byte) error

type EventDeleteListing

type EventDeleteListing struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
}

func (*EventDeleteListing) Descriptor

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

func (*EventDeleteListing) GetClassId

func (m *EventDeleteListing) GetClassId() string

func (*EventDeleteListing) GetNftId

func (m *EventDeleteListing) GetNftId() string

func (*EventDeleteListing) GetSeller

func (m *EventDeleteListing) GetSeller() string

func (*EventDeleteListing) Marshal

func (m *EventDeleteListing) Marshal() (dAtA []byte, err error)

func (*EventDeleteListing) MarshalTo

func (m *EventDeleteListing) MarshalTo(dAtA []byte) (int, error)

func (*EventDeleteListing) MarshalToSizedBuffer

func (m *EventDeleteListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventDeleteListing) ProtoMessage

func (*EventDeleteListing) ProtoMessage()

func (*EventDeleteListing) Reset

func (m *EventDeleteListing) Reset()

func (*EventDeleteListing) Size

func (m *EventDeleteListing) Size() (n int)

func (*EventDeleteListing) String

func (m *EventDeleteListing) String() string

func (*EventDeleteListing) Unmarshal

func (m *EventDeleteListing) Unmarshal(dAtA []byte) error

func (*EventDeleteListing) XXX_DiscardUnknown

func (m *EventDeleteListing) XXX_DiscardUnknown()

func (*EventDeleteListing) XXX_Marshal

func (m *EventDeleteListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventDeleteListing) XXX_Merge

func (m *EventDeleteListing) XXX_Merge(src proto.Message)

func (*EventDeleteListing) XXX_Size

func (m *EventDeleteListing) XXX_Size() int

func (*EventDeleteListing) XXX_Unmarshal

func (m *EventDeleteListing) XXX_Unmarshal(b []byte) error

type EventDeleteOffer

type EventDeleteOffer struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
}

func (*EventDeleteOffer) Descriptor

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

func (*EventDeleteOffer) GetBuyer

func (m *EventDeleteOffer) GetBuyer() string

func (*EventDeleteOffer) GetClassId

func (m *EventDeleteOffer) GetClassId() string

func (*EventDeleteOffer) GetNftId

func (m *EventDeleteOffer) GetNftId() string

func (*EventDeleteOffer) Marshal

func (m *EventDeleteOffer) Marshal() (dAtA []byte, err error)

func (*EventDeleteOffer) MarshalTo

func (m *EventDeleteOffer) MarshalTo(dAtA []byte) (int, error)

func (*EventDeleteOffer) MarshalToSizedBuffer

func (m *EventDeleteOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventDeleteOffer) ProtoMessage

func (*EventDeleteOffer) ProtoMessage()

func (*EventDeleteOffer) Reset

func (m *EventDeleteOffer) Reset()

func (*EventDeleteOffer) Size

func (m *EventDeleteOffer) Size() (n int)

func (*EventDeleteOffer) String

func (m *EventDeleteOffer) String() string

func (*EventDeleteOffer) Unmarshal

func (m *EventDeleteOffer) Unmarshal(dAtA []byte) error

func (*EventDeleteOffer) XXX_DiscardUnknown

func (m *EventDeleteOffer) XXX_DiscardUnknown()

func (*EventDeleteOffer) XXX_Marshal

func (m *EventDeleteOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventDeleteOffer) XXX_Merge

func (m *EventDeleteOffer) XXX_Merge(src proto.Message)

func (*EventDeleteOffer) XXX_Size

func (m *EventDeleteOffer) XXX_Size() int

func (*EventDeleteOffer) XXX_Unmarshal

func (m *EventDeleteOffer) XXX_Unmarshal(b []byte) error

type EventDeleteRoyaltyConfig

type EventDeleteRoyaltyConfig struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*EventDeleteRoyaltyConfig) Descriptor

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

func (*EventDeleteRoyaltyConfig) GetClassId

func (m *EventDeleteRoyaltyConfig) GetClassId() string

func (*EventDeleteRoyaltyConfig) Marshal

func (m *EventDeleteRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*EventDeleteRoyaltyConfig) MarshalTo

func (m *EventDeleteRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*EventDeleteRoyaltyConfig) MarshalToSizedBuffer

func (m *EventDeleteRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventDeleteRoyaltyConfig) ProtoMessage

func (*EventDeleteRoyaltyConfig) ProtoMessage()

func (*EventDeleteRoyaltyConfig) Reset

func (m *EventDeleteRoyaltyConfig) Reset()

func (*EventDeleteRoyaltyConfig) Size

func (m *EventDeleteRoyaltyConfig) Size() (n int)

func (*EventDeleteRoyaltyConfig) String

func (m *EventDeleteRoyaltyConfig) String() string

func (*EventDeleteRoyaltyConfig) Unmarshal

func (m *EventDeleteRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*EventDeleteRoyaltyConfig) XXX_DiscardUnknown

func (m *EventDeleteRoyaltyConfig) XXX_DiscardUnknown()

func (*EventDeleteRoyaltyConfig) XXX_Marshal

func (m *EventDeleteRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventDeleteRoyaltyConfig) XXX_Merge

func (m *EventDeleteRoyaltyConfig) XXX_Merge(src proto.Message)

func (*EventDeleteRoyaltyConfig) XXX_Size

func (m *EventDeleteRoyaltyConfig) XXX_Size() int

func (*EventDeleteRoyaltyConfig) XXX_Unmarshal

func (m *EventDeleteRoyaltyConfig) XXX_Unmarshal(b []byte) error

type EventExpireListing

type EventExpireListing struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
	Success bool   `protobuf:"varint,4,opt,name=success,proto3" json:"success,omitempty"`
	Error   string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
}

func (*EventExpireListing) Descriptor

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

func (*EventExpireListing) GetClassId

func (m *EventExpireListing) GetClassId() string

func (*EventExpireListing) GetError

func (m *EventExpireListing) GetError() string

func (*EventExpireListing) GetNftId

func (m *EventExpireListing) GetNftId() string

func (*EventExpireListing) GetSeller

func (m *EventExpireListing) GetSeller() string

func (*EventExpireListing) GetSuccess

func (m *EventExpireListing) GetSuccess() bool

func (*EventExpireListing) Marshal

func (m *EventExpireListing) Marshal() (dAtA []byte, err error)

func (*EventExpireListing) MarshalTo

func (m *EventExpireListing) MarshalTo(dAtA []byte) (int, error)

func (*EventExpireListing) MarshalToSizedBuffer

func (m *EventExpireListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventExpireListing) ProtoMessage

func (*EventExpireListing) ProtoMessage()

func (*EventExpireListing) Reset

func (m *EventExpireListing) Reset()

func (*EventExpireListing) Size

func (m *EventExpireListing) Size() (n int)

func (*EventExpireListing) String

func (m *EventExpireListing) String() string

func (*EventExpireListing) Unmarshal

func (m *EventExpireListing) Unmarshal(dAtA []byte) error

func (*EventExpireListing) XXX_DiscardUnknown

func (m *EventExpireListing) XXX_DiscardUnknown()

func (*EventExpireListing) XXX_Marshal

func (m *EventExpireListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventExpireListing) XXX_Merge

func (m *EventExpireListing) XXX_Merge(src proto.Message)

func (*EventExpireListing) XXX_Size

func (m *EventExpireListing) XXX_Size() int

func (*EventExpireListing) XXX_Unmarshal

func (m *EventExpireListing) XXX_Unmarshal(b []byte) error

type EventExpireOffer

type EventExpireOffer struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
	Success bool   `protobuf:"varint,4,opt,name=success,proto3" json:"success,omitempty"`
	Error   string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
}

func (*EventExpireOffer) Descriptor

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

func (*EventExpireOffer) GetBuyer

func (m *EventExpireOffer) GetBuyer() string

func (*EventExpireOffer) GetClassId

func (m *EventExpireOffer) GetClassId() string

func (*EventExpireOffer) GetError

func (m *EventExpireOffer) GetError() string

func (*EventExpireOffer) GetNftId

func (m *EventExpireOffer) GetNftId() string

func (*EventExpireOffer) GetSuccess

func (m *EventExpireOffer) GetSuccess() bool

func (*EventExpireOffer) Marshal

func (m *EventExpireOffer) Marshal() (dAtA []byte, err error)

func (*EventExpireOffer) MarshalTo

func (m *EventExpireOffer) MarshalTo(dAtA []byte) (int, error)

func (*EventExpireOffer) MarshalToSizedBuffer

func (m *EventExpireOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventExpireOffer) ProtoMessage

func (*EventExpireOffer) ProtoMessage()

func (*EventExpireOffer) Reset

func (m *EventExpireOffer) Reset()

func (*EventExpireOffer) Size

func (m *EventExpireOffer) Size() (n int)

func (*EventExpireOffer) String

func (m *EventExpireOffer) String() string

func (*EventExpireOffer) Unmarshal

func (m *EventExpireOffer) Unmarshal(dAtA []byte) error

func (*EventExpireOffer) XXX_DiscardUnknown

func (m *EventExpireOffer) XXX_DiscardUnknown()

func (*EventExpireOffer) XXX_Marshal

func (m *EventExpireOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventExpireOffer) XXX_Merge

func (m *EventExpireOffer) XXX_Merge(src proto.Message)

func (*EventExpireOffer) XXX_Size

func (m *EventExpireOffer) XXX_Size() int

func (*EventExpireOffer) XXX_Unmarshal

func (m *EventExpireOffer) XXX_Unmarshal(b []byte) error

type EventMintNFT

type EventMintNFT struct {
	ClassId                 string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId                   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Owner                   string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
	ClassParentIscnIdPrefix string `` /* 136-byte string literal not displayed */
	ClassParentAccount      string `protobuf:"bytes,5,opt,name=class_parent_account,json=classParentAccount,proto3" json:"class_parent_account,omitempty"`
}

func (*EventMintNFT) Descriptor

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

func (*EventMintNFT) GetClassId

func (m *EventMintNFT) GetClassId() string

func (*EventMintNFT) GetClassParentAccount

func (m *EventMintNFT) GetClassParentAccount() string

func (*EventMintNFT) GetClassParentIscnIdPrefix

func (m *EventMintNFT) GetClassParentIscnIdPrefix() string

func (*EventMintNFT) GetNftId

func (m *EventMintNFT) GetNftId() string

func (*EventMintNFT) GetOwner

func (m *EventMintNFT) GetOwner() string

func (*EventMintNFT) Marshal

func (m *EventMintNFT) Marshal() (dAtA []byte, err error)

func (*EventMintNFT) MarshalTo

func (m *EventMintNFT) MarshalTo(dAtA []byte) (int, error)

func (*EventMintNFT) MarshalToSizedBuffer

func (m *EventMintNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventMintNFT) ProtoMessage

func (*EventMintNFT) ProtoMessage()

func (*EventMintNFT) Reset

func (m *EventMintNFT) Reset()

func (*EventMintNFT) Size

func (m *EventMintNFT) Size() (n int)

func (*EventMintNFT) String

func (m *EventMintNFT) String() string

func (*EventMintNFT) Unmarshal

func (m *EventMintNFT) Unmarshal(dAtA []byte) error

func (*EventMintNFT) XXX_DiscardUnknown

func (m *EventMintNFT) XXX_DiscardUnknown()

func (*EventMintNFT) XXX_Marshal

func (m *EventMintNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventMintNFT) XXX_Merge

func (m *EventMintNFT) XXX_Merge(src proto.Message)

func (*EventMintNFT) XXX_Size

func (m *EventMintNFT) XXX_Size() int

func (*EventMintNFT) XXX_Unmarshal

func (m *EventMintNFT) XXX_Unmarshal(b []byte) error

type EventNewClass

type EventNewClass struct {
	ClassId            string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	ParentIscnIdPrefix string `protobuf:"bytes,2,opt,name=parent_iscn_id_prefix,json=parentIscnIdPrefix,proto3" json:"parent_iscn_id_prefix,omitempty"`
	ParentAccount      string `protobuf:"bytes,3,opt,name=parent_account,json=parentAccount,proto3" json:"parent_account,omitempty"`
}

func (*EventNewClass) Descriptor

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

func (*EventNewClass) GetClassId

func (m *EventNewClass) GetClassId() string

func (*EventNewClass) GetParentAccount

func (m *EventNewClass) GetParentAccount() string

func (*EventNewClass) GetParentIscnIdPrefix

func (m *EventNewClass) GetParentIscnIdPrefix() string

func (*EventNewClass) Marshal

func (m *EventNewClass) Marshal() (dAtA []byte, err error)

func (*EventNewClass) MarshalTo

func (m *EventNewClass) MarshalTo(dAtA []byte) (int, error)

func (*EventNewClass) MarshalToSizedBuffer

func (m *EventNewClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventNewClass) ProtoMessage

func (*EventNewClass) ProtoMessage()

func (*EventNewClass) Reset

func (m *EventNewClass) Reset()

func (*EventNewClass) Size

func (m *EventNewClass) Size() (n int)

func (*EventNewClass) String

func (m *EventNewClass) String() string

func (*EventNewClass) Unmarshal

func (m *EventNewClass) Unmarshal(dAtA []byte) error

func (*EventNewClass) XXX_DiscardUnknown

func (m *EventNewClass) XXX_DiscardUnknown()

func (*EventNewClass) XXX_Marshal

func (m *EventNewClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventNewClass) XXX_Merge

func (m *EventNewClass) XXX_Merge(src proto.Message)

func (*EventNewClass) XXX_Size

func (m *EventNewClass) XXX_Size() int

func (*EventNewClass) XXX_Unmarshal

func (m *EventNewClass) XXX_Unmarshal(b []byte) error

type EventRevealClass

type EventRevealClass struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Success bool   `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	Error   string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
}

func (*EventRevealClass) Descriptor

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

func (*EventRevealClass) GetClassId

func (m *EventRevealClass) GetClassId() string

func (*EventRevealClass) GetError

func (m *EventRevealClass) GetError() string

func (*EventRevealClass) GetSuccess

func (m *EventRevealClass) GetSuccess() bool

func (*EventRevealClass) Marshal

func (m *EventRevealClass) Marshal() (dAtA []byte, err error)

func (*EventRevealClass) MarshalTo

func (m *EventRevealClass) MarshalTo(dAtA []byte) (int, error)

func (*EventRevealClass) MarshalToSizedBuffer

func (m *EventRevealClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventRevealClass) ProtoMessage

func (*EventRevealClass) ProtoMessage()

func (*EventRevealClass) Reset

func (m *EventRevealClass) Reset()

func (*EventRevealClass) Size

func (m *EventRevealClass) Size() (n int)

func (*EventRevealClass) String

func (m *EventRevealClass) String() string

func (*EventRevealClass) Unmarshal

func (m *EventRevealClass) Unmarshal(dAtA []byte) error

func (*EventRevealClass) XXX_DiscardUnknown

func (m *EventRevealClass) XXX_DiscardUnknown()

func (*EventRevealClass) XXX_Marshal

func (m *EventRevealClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventRevealClass) XXX_Merge

func (m *EventRevealClass) XXX_Merge(src proto.Message)

func (*EventRevealClass) XXX_Size

func (m *EventRevealClass) XXX_Size() int

func (*EventRevealClass) XXX_Unmarshal

func (m *EventRevealClass) XXX_Unmarshal(b []byte) error

type EventSellNFT

type EventSellNFT struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
	Buyer   string `protobuf:"bytes,4,opt,name=buyer,proto3" json:"buyer,omitempty"`
	Price   uint64 `protobuf:"varint,5,opt,name=price,proto3" json:"price,omitempty"`
}

func (*EventSellNFT) Descriptor

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

func (*EventSellNFT) GetBuyer

func (m *EventSellNFT) GetBuyer() string

func (*EventSellNFT) GetClassId

func (m *EventSellNFT) GetClassId() string

func (*EventSellNFT) GetNftId

func (m *EventSellNFT) GetNftId() string

func (*EventSellNFT) GetPrice

func (m *EventSellNFT) GetPrice() uint64

func (*EventSellNFT) GetSeller

func (m *EventSellNFT) GetSeller() string

func (*EventSellNFT) Marshal

func (m *EventSellNFT) Marshal() (dAtA []byte, err error)

func (*EventSellNFT) MarshalTo

func (m *EventSellNFT) MarshalTo(dAtA []byte) (int, error)

func (*EventSellNFT) MarshalToSizedBuffer

func (m *EventSellNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventSellNFT) ProtoMessage

func (*EventSellNFT) ProtoMessage()

func (*EventSellNFT) Reset

func (m *EventSellNFT) Reset()

func (*EventSellNFT) Size

func (m *EventSellNFT) Size() (n int)

func (*EventSellNFT) String

func (m *EventSellNFT) String() string

func (*EventSellNFT) Unmarshal

func (m *EventSellNFT) Unmarshal(dAtA []byte) error

func (*EventSellNFT) XXX_DiscardUnknown

func (m *EventSellNFT) XXX_DiscardUnknown()

func (*EventSellNFT) XXX_Marshal

func (m *EventSellNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventSellNFT) XXX_Merge

func (m *EventSellNFT) XXX_Merge(src proto.Message)

func (*EventSellNFT) XXX_Size

func (m *EventSellNFT) XXX_Size() int

func (*EventSellNFT) XXX_Unmarshal

func (m *EventSellNFT) XXX_Unmarshal(b []byte) error

type EventUpdateBlindBoxContent

type EventUpdateBlindBoxContent struct {
	ClassId                 string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	ContentId               string `protobuf:"bytes,2,opt,name=content_id,json=contentId,proto3" json:"content_id,omitempty"`
	ClassParentIscnIdPrefix string `` /* 136-byte string literal not displayed */
	ClassParentAccount      string `protobuf:"bytes,4,opt,name=class_parent_account,json=classParentAccount,proto3" json:"class_parent_account,omitempty"`
}

func (*EventUpdateBlindBoxContent) Descriptor

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

func (*EventUpdateBlindBoxContent) GetClassId

func (m *EventUpdateBlindBoxContent) GetClassId() string

func (*EventUpdateBlindBoxContent) GetClassParentAccount

func (m *EventUpdateBlindBoxContent) GetClassParentAccount() string

func (*EventUpdateBlindBoxContent) GetClassParentIscnIdPrefix

func (m *EventUpdateBlindBoxContent) GetClassParentIscnIdPrefix() string

func (*EventUpdateBlindBoxContent) GetContentId

func (m *EventUpdateBlindBoxContent) GetContentId() string

func (*EventUpdateBlindBoxContent) Marshal

func (m *EventUpdateBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*EventUpdateBlindBoxContent) MarshalTo

func (m *EventUpdateBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*EventUpdateBlindBoxContent) MarshalToSizedBuffer

func (m *EventUpdateBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventUpdateBlindBoxContent) ProtoMessage

func (*EventUpdateBlindBoxContent) ProtoMessage()

func (*EventUpdateBlindBoxContent) Reset

func (m *EventUpdateBlindBoxContent) Reset()

func (*EventUpdateBlindBoxContent) Size

func (m *EventUpdateBlindBoxContent) Size() (n int)

func (*EventUpdateBlindBoxContent) String

func (m *EventUpdateBlindBoxContent) String() string

func (*EventUpdateBlindBoxContent) Unmarshal

func (m *EventUpdateBlindBoxContent) Unmarshal(dAtA []byte) error

func (*EventUpdateBlindBoxContent) XXX_DiscardUnknown

func (m *EventUpdateBlindBoxContent) XXX_DiscardUnknown()

func (*EventUpdateBlindBoxContent) XXX_Marshal

func (m *EventUpdateBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventUpdateBlindBoxContent) XXX_Merge

func (m *EventUpdateBlindBoxContent) XXX_Merge(src proto.Message)

func (*EventUpdateBlindBoxContent) XXX_Size

func (m *EventUpdateBlindBoxContent) XXX_Size() int

func (*EventUpdateBlindBoxContent) XXX_Unmarshal

func (m *EventUpdateBlindBoxContent) XXX_Unmarshal(b []byte) error

type EventUpdateClass

type EventUpdateClass struct {
	ClassId            string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	ParentIscnIdPrefix string `protobuf:"bytes,2,opt,name=parent_iscn_id_prefix,json=parentIscnIdPrefix,proto3" json:"parent_iscn_id_prefix,omitempty"`
	ParentAccount      string `protobuf:"bytes,3,opt,name=parent_account,json=parentAccount,proto3" json:"parent_account,omitempty"`
}

func (*EventUpdateClass) Descriptor

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

func (*EventUpdateClass) GetClassId

func (m *EventUpdateClass) GetClassId() string

func (*EventUpdateClass) GetParentAccount

func (m *EventUpdateClass) GetParentAccount() string

func (*EventUpdateClass) GetParentIscnIdPrefix

func (m *EventUpdateClass) GetParentIscnIdPrefix() string

func (*EventUpdateClass) Marshal

func (m *EventUpdateClass) Marshal() (dAtA []byte, err error)

func (*EventUpdateClass) MarshalTo

func (m *EventUpdateClass) MarshalTo(dAtA []byte) (int, error)

func (*EventUpdateClass) MarshalToSizedBuffer

func (m *EventUpdateClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventUpdateClass) ProtoMessage

func (*EventUpdateClass) ProtoMessage()

func (*EventUpdateClass) Reset

func (m *EventUpdateClass) Reset()

func (*EventUpdateClass) Size

func (m *EventUpdateClass) Size() (n int)

func (*EventUpdateClass) String

func (m *EventUpdateClass) String() string

func (*EventUpdateClass) Unmarshal

func (m *EventUpdateClass) Unmarshal(dAtA []byte) error

func (*EventUpdateClass) XXX_DiscardUnknown

func (m *EventUpdateClass) XXX_DiscardUnknown()

func (*EventUpdateClass) XXX_Marshal

func (m *EventUpdateClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventUpdateClass) XXX_Merge

func (m *EventUpdateClass) XXX_Merge(src proto.Message)

func (*EventUpdateClass) XXX_Size

func (m *EventUpdateClass) XXX_Size() int

func (*EventUpdateClass) XXX_Unmarshal

func (m *EventUpdateClass) XXX_Unmarshal(b []byte) error

type EventUpdateListing

type EventUpdateListing struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
}

func (*EventUpdateListing) Descriptor

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

func (*EventUpdateListing) GetClassId

func (m *EventUpdateListing) GetClassId() string

func (*EventUpdateListing) GetNftId

func (m *EventUpdateListing) GetNftId() string

func (*EventUpdateListing) GetSeller

func (m *EventUpdateListing) GetSeller() string

func (*EventUpdateListing) Marshal

func (m *EventUpdateListing) Marshal() (dAtA []byte, err error)

func (*EventUpdateListing) MarshalTo

func (m *EventUpdateListing) MarshalTo(dAtA []byte) (int, error)

func (*EventUpdateListing) MarshalToSizedBuffer

func (m *EventUpdateListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventUpdateListing) ProtoMessage

func (*EventUpdateListing) ProtoMessage()

func (*EventUpdateListing) Reset

func (m *EventUpdateListing) Reset()

func (*EventUpdateListing) Size

func (m *EventUpdateListing) Size() (n int)

func (*EventUpdateListing) String

func (m *EventUpdateListing) String() string

func (*EventUpdateListing) Unmarshal

func (m *EventUpdateListing) Unmarshal(dAtA []byte) error

func (*EventUpdateListing) XXX_DiscardUnknown

func (m *EventUpdateListing) XXX_DiscardUnknown()

func (*EventUpdateListing) XXX_Marshal

func (m *EventUpdateListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventUpdateListing) XXX_Merge

func (m *EventUpdateListing) XXX_Merge(src proto.Message)

func (*EventUpdateListing) XXX_Size

func (m *EventUpdateListing) XXX_Size() int

func (*EventUpdateListing) XXX_Unmarshal

func (m *EventUpdateListing) XXX_Unmarshal(b []byte) error

type EventUpdateOffer

type EventUpdateOffer struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
}

func (*EventUpdateOffer) Descriptor

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

func (*EventUpdateOffer) GetBuyer

func (m *EventUpdateOffer) GetBuyer() string

func (*EventUpdateOffer) GetClassId

func (m *EventUpdateOffer) GetClassId() string

func (*EventUpdateOffer) GetNftId

func (m *EventUpdateOffer) GetNftId() string

func (*EventUpdateOffer) Marshal

func (m *EventUpdateOffer) Marshal() (dAtA []byte, err error)

func (*EventUpdateOffer) MarshalTo

func (m *EventUpdateOffer) MarshalTo(dAtA []byte) (int, error)

func (*EventUpdateOffer) MarshalToSizedBuffer

func (m *EventUpdateOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventUpdateOffer) ProtoMessage

func (*EventUpdateOffer) ProtoMessage()

func (*EventUpdateOffer) Reset

func (m *EventUpdateOffer) Reset()

func (*EventUpdateOffer) Size

func (m *EventUpdateOffer) Size() (n int)

func (*EventUpdateOffer) String

func (m *EventUpdateOffer) String() string

func (*EventUpdateOffer) Unmarshal

func (m *EventUpdateOffer) Unmarshal(dAtA []byte) error

func (*EventUpdateOffer) XXX_DiscardUnknown

func (m *EventUpdateOffer) XXX_DiscardUnknown()

func (*EventUpdateOffer) XXX_Marshal

func (m *EventUpdateOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventUpdateOffer) XXX_Merge

func (m *EventUpdateOffer) XXX_Merge(src proto.Message)

func (*EventUpdateOffer) XXX_Size

func (m *EventUpdateOffer) XXX_Size() int

func (*EventUpdateOffer) XXX_Unmarshal

func (m *EventUpdateOffer) XXX_Unmarshal(b []byte) error

type EventUpdateRoyaltyConfig

type EventUpdateRoyaltyConfig struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*EventUpdateRoyaltyConfig) Descriptor

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

func (*EventUpdateRoyaltyConfig) GetClassId

func (m *EventUpdateRoyaltyConfig) GetClassId() string

func (*EventUpdateRoyaltyConfig) Marshal

func (m *EventUpdateRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*EventUpdateRoyaltyConfig) MarshalTo

func (m *EventUpdateRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*EventUpdateRoyaltyConfig) MarshalToSizedBuffer

func (m *EventUpdateRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EventUpdateRoyaltyConfig) ProtoMessage

func (*EventUpdateRoyaltyConfig) ProtoMessage()

func (*EventUpdateRoyaltyConfig) Reset

func (m *EventUpdateRoyaltyConfig) Reset()

func (*EventUpdateRoyaltyConfig) Size

func (m *EventUpdateRoyaltyConfig) Size() (n int)

func (*EventUpdateRoyaltyConfig) String

func (m *EventUpdateRoyaltyConfig) String() string

func (*EventUpdateRoyaltyConfig) Unmarshal

func (m *EventUpdateRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*EventUpdateRoyaltyConfig) XXX_DiscardUnknown

func (m *EventUpdateRoyaltyConfig) XXX_DiscardUnknown()

func (*EventUpdateRoyaltyConfig) XXX_Marshal

func (m *EventUpdateRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventUpdateRoyaltyConfig) XXX_Merge

func (m *EventUpdateRoyaltyConfig) XXX_Merge(src proto.Message)

func (*EventUpdateRoyaltyConfig) XXX_Size

func (m *EventUpdateRoyaltyConfig) XXX_Size() int

func (*EventUpdateRoyaltyConfig) XXX_Unmarshal

func (m *EventUpdateRoyaltyConfig) XXX_Unmarshal(b []byte) error

type GenesisState

type GenesisState struct {
	Params                   Params                    `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	ClassesByIscnList        []ClassesByISCN           `protobuf:"bytes,2,rep,name=classes_by_iscn_list,json=classesByIscnList,proto3" json:"classes_by_iscn_list"`
	ClassesByAccountList     []ClassesByAccount        `protobuf:"bytes,3,rep,name=classes_by_account_list,json=classesByAccountList,proto3" json:"classes_by_account_list"`
	BlindBoxContentList      []BlindBoxContent         `protobuf:"bytes,4,rep,name=blind_box_content_list,json=blindBoxContentList,proto3" json:"blind_box_content_list"`
	ClassRevealQueue         []ClassRevealQueueEntry   `protobuf:"bytes,5,rep,name=class_reveal_queue,json=classRevealQueue,proto3" json:"class_reveal_queue"`
	OfferList                []Offer                   `protobuf:"bytes,6,rep,name=offer_list,json=offerList,proto3" json:"offer_list"`
	ListingList              []Listing                 `protobuf:"bytes,7,rep,name=listing_list,json=listingList,proto3" json:"listing_list"`
	OfferExpireQueue         []OfferExpireQueueEntry   `protobuf:"bytes,8,rep,name=offer_expire_queue,json=offerExpireQueue,proto3" json:"offer_expire_queue"`
	ListingExpireQueue       []ListingExpireQueueEntry `protobuf:"bytes,9,rep,name=listing_expire_queue,json=listingExpireQueue,proto3" json:"listing_expire_queue"`
	RoyaltyConfigByClassList []RoyaltyConfigByClass    `` /* 130-byte string literal not displayed */
}

GenesisState defines the likenft module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default Capability genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetBlindBoxContentList

func (m *GenesisState) GetBlindBoxContentList() []BlindBoxContent

func (*GenesisState) GetClassRevealQueue

func (m *GenesisState) GetClassRevealQueue() []ClassRevealQueueEntry

func (*GenesisState) GetClassesByAccountList

func (m *GenesisState) GetClassesByAccountList() []ClassesByAccount

func (*GenesisState) GetClassesByIscnList

func (m *GenesisState) GetClassesByIscnList() []ClassesByISCN

func (*GenesisState) GetListingExpireQueue

func (m *GenesisState) GetListingExpireQueue() []ListingExpireQueueEntry

func (*GenesisState) GetListingList

func (m *GenesisState) GetListingList() []Listing

func (*GenesisState) GetOfferExpireQueue

func (m *GenesisState) GetOfferExpireQueue() []OfferExpireQueueEntry

func (*GenesisState) GetOfferList

func (m *GenesisState) GetOfferList() []Offer

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetRoyaltyConfigByClassList

func (m *GenesisState) GetRoyaltyConfigByClassList() []RoyaltyConfigByClass

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (GenesisState) Validate

func (gs GenesisState) Validate() error

Validate performs basic genesis state validation returning an error upon any failure.

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

func (m *GenesisState) XXX_Unmarshal(b []byte) error

type IscnKeeper

type IscnKeeper interface {
	// Methods imported from iscn should be defined here
	GetContentIdRecord(ctx sdk.Context, iscnIdPrefix iscntypes.IscnIdPrefix) *iscntypes.ContentIdRecord
	GetIscnIdSequence(ctx sdk.Context, iscnId iscntypes.IscnId) uint64
	GetStoreRecord(ctx sdk.Context, seq uint64) *iscntypes.StoreRecord
}

type JsonInput

type JsonInput json.RawMessage // JSON encoded

func (JsonInput) GetPath

func (input JsonInput) GetPath(path ...interface{}) (interface{}, bool)

for testing

func (JsonInput) Marshal

func (input JsonInput) Marshal() ([]byte, error)

func (JsonInput) MarshalJSON

func (input JsonInput) MarshalJSON() ([]byte, error)

func (*JsonInput) MarshalTo

func (input *JsonInput) MarshalTo(dAtA []byte) (int, error)

func (JsonInput) Normalize

func (input JsonInput) Normalize() (json.RawMessage, error)

Normalize returns a sorted JSON without indentation

func (JsonInput) Size

func (input JsonInput) Size() int

func (JsonInput) String

func (input JsonInput) String() string

func (*JsonInput) Unmarshal

func (input *JsonInput) Unmarshal(bz []byte) error

func (*JsonInput) UnmarshalJSON

func (input *JsonInput) UnmarshalJSON(bz []byte) error

func (JsonInput) Validate

func (input JsonInput) Validate() error

type Listing

type Listing struct {
	ClassId    string    `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller     string    `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func MapListingsToPublicRecords

func MapListingsToPublicRecords(records []ListingStoreRecord) (listings []Listing)

func (*Listing) Descriptor

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

func (*Listing) GetClassId

func (m *Listing) GetClassId() string

func (*Listing) GetExpiration

func (m *Listing) GetExpiration() time.Time

func (*Listing) GetNftId

func (m *Listing) GetNftId() string

func (*Listing) GetPrice

func (m *Listing) GetPrice() uint64

func (*Listing) GetSeller

func (m *Listing) GetSeller() string

func (*Listing) Marshal

func (m *Listing) Marshal() (dAtA []byte, err error)

func (*Listing) MarshalTo

func (m *Listing) MarshalTo(dAtA []byte) (int, error)

func (*Listing) MarshalToSizedBuffer

func (m *Listing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Listing) ProtoMessage

func (*Listing) ProtoMessage()

func (*Listing) Reset

func (m *Listing) Reset()

func (*Listing) Size

func (m *Listing) Size() (n int)

func (*Listing) String

func (m *Listing) String() string

func (Listing) ToStoreRecord

func (l Listing) ToStoreRecord() ListingStoreRecord

func (*Listing) Unmarshal

func (m *Listing) Unmarshal(dAtA []byte) error

func (*Listing) XXX_DiscardUnknown

func (m *Listing) XXX_DiscardUnknown()

func (*Listing) XXX_Marshal

func (m *Listing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Listing) XXX_Merge

func (m *Listing) XXX_Merge(src proto.Message)

func (*Listing) XXX_Size

func (m *Listing) XXX_Size() int

func (*Listing) XXX_Unmarshal

func (m *Listing) XXX_Unmarshal(b []byte) error

type ListingExpireQueueEntry

type ListingExpireQueueEntry struct {
	ExpireTime time.Time `protobuf:"bytes,1,opt,name=expire_time,json=expireTime,proto3,stdtime" json:"expire_time"`
	ListingKey []byte    `protobuf:"bytes,2,opt,name=listing_key,json=listingKey,proto3" json:"listing_key,omitempty"`
}

func (*ListingExpireQueueEntry) Descriptor

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

func (*ListingExpireQueueEntry) GetExpireTime

func (m *ListingExpireQueueEntry) GetExpireTime() time.Time

func (*ListingExpireQueueEntry) GetListingKey

func (m *ListingExpireQueueEntry) GetListingKey() []byte

func (*ListingExpireQueueEntry) Marshal

func (m *ListingExpireQueueEntry) Marshal() (dAtA []byte, err error)

func (*ListingExpireQueueEntry) MarshalTo

func (m *ListingExpireQueueEntry) MarshalTo(dAtA []byte) (int, error)

func (*ListingExpireQueueEntry) MarshalToSizedBuffer

func (m *ListingExpireQueueEntry) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListingExpireQueueEntry) ProtoMessage

func (*ListingExpireQueueEntry) ProtoMessage()

func (*ListingExpireQueueEntry) Reset

func (m *ListingExpireQueueEntry) Reset()

func (*ListingExpireQueueEntry) Size

func (m *ListingExpireQueueEntry) Size() (n int)

func (*ListingExpireQueueEntry) String

func (m *ListingExpireQueueEntry) String() string

func (*ListingExpireQueueEntry) Unmarshal

func (m *ListingExpireQueueEntry) Unmarshal(dAtA []byte) error

func (*ListingExpireQueueEntry) XXX_DiscardUnknown

func (m *ListingExpireQueueEntry) XXX_DiscardUnknown()

func (*ListingExpireQueueEntry) XXX_Marshal

func (m *ListingExpireQueueEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListingExpireQueueEntry) XXX_Merge

func (m *ListingExpireQueueEntry) XXX_Merge(src proto.Message)

func (*ListingExpireQueueEntry) XXX_Size

func (m *ListingExpireQueueEntry) XXX_Size() int

func (*ListingExpireQueueEntry) XXX_Unmarshal

func (m *ListingExpireQueueEntry) XXX_Unmarshal(b []byte) error

type ListingStoreRecord

type ListingStoreRecord struct {
	ClassId    string                                        `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string                                        `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller     github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,3,opt,name=seller,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"seller,omitempty"`
	Price      uint64                                        `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time                                     `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func MapListingsToStoreRecords

func MapListingsToStoreRecords(listings []Listing) (records []ListingStoreRecord)

func (*ListingStoreRecord) Descriptor

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

func (*ListingStoreRecord) GetClassId

func (m *ListingStoreRecord) GetClassId() string

func (*ListingStoreRecord) GetExpiration

func (m *ListingStoreRecord) GetExpiration() time.Time

func (*ListingStoreRecord) GetNftId

func (m *ListingStoreRecord) GetNftId() string

func (*ListingStoreRecord) GetPrice

func (m *ListingStoreRecord) GetPrice() uint64

func (*ListingStoreRecord) GetSeller

func (*ListingStoreRecord) Marshal

func (m *ListingStoreRecord) Marshal() (dAtA []byte, err error)

func (*ListingStoreRecord) MarshalTo

func (m *ListingStoreRecord) MarshalTo(dAtA []byte) (int, error)

func (*ListingStoreRecord) MarshalToSizedBuffer

func (m *ListingStoreRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListingStoreRecord) ProtoMessage

func (*ListingStoreRecord) ProtoMessage()

func (*ListingStoreRecord) Reset

func (m *ListingStoreRecord) Reset()

func (*ListingStoreRecord) Size

func (m *ListingStoreRecord) Size() (n int)

func (*ListingStoreRecord) String

func (m *ListingStoreRecord) String() string

func (ListingStoreRecord) ToPublicRecord

func (r ListingStoreRecord) ToPublicRecord() Listing

func (*ListingStoreRecord) Unmarshal

func (m *ListingStoreRecord) Unmarshal(dAtA []byte) error

func (*ListingStoreRecord) XXX_DiscardUnknown

func (m *ListingStoreRecord) XXX_DiscardUnknown()

func (*ListingStoreRecord) XXX_Marshal

func (m *ListingStoreRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListingStoreRecord) XXX_Merge

func (m *ListingStoreRecord) XXX_Merge(src proto.Message)

func (*ListingStoreRecord) XXX_Size

func (m *ListingStoreRecord) XXX_Size() int

func (*ListingStoreRecord) XXX_Unmarshal

func (m *ListingStoreRecord) XXX_Unmarshal(b []byte) error

type MintPeriod

type MintPeriod struct {
	StartTime        time.Time `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3,stdtime" json:"start_time"`
	AllowedAddresses []string  `protobuf:"bytes,2,rep,name=allowed_addresses,json=allowedAddresses,proto3" json:"allowed_addresses,omitempty"`
	MintPrice        uint64    `protobuf:"varint,3,opt,name=mint_price,json=mintPrice,proto3" json:"mint_price,omitempty"`
}

func (*MintPeriod) Descriptor

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

func (*MintPeriod) GetAllowedAddresses

func (m *MintPeriod) GetAllowedAddresses() []string

func (*MintPeriod) GetMintPrice

func (m *MintPeriod) GetMintPrice() uint64

func (*MintPeriod) GetStartTime

func (m *MintPeriod) GetStartTime() time.Time

func (*MintPeriod) Marshal

func (m *MintPeriod) Marshal() (dAtA []byte, err error)

func (*MintPeriod) MarshalTo

func (m *MintPeriod) MarshalTo(dAtA []byte) (int, error)

func (*MintPeriod) MarshalToSizedBuffer

func (m *MintPeriod) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MintPeriod) ProtoMessage

func (*MintPeriod) ProtoMessage()

func (*MintPeriod) Reset

func (m *MintPeriod) Reset()

func (*MintPeriod) Size

func (m *MintPeriod) Size() (n int)

func (*MintPeriod) String

func (m *MintPeriod) String() string

func (*MintPeriod) Unmarshal

func (m *MintPeriod) Unmarshal(dAtA []byte) error

func (*MintPeriod) XXX_DiscardUnknown

func (m *MintPeriod) XXX_DiscardUnknown()

func (*MintPeriod) XXX_Marshal

func (m *MintPeriod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MintPeriod) XXX_Merge

func (m *MintPeriod) XXX_Merge(src proto.Message)

func (*MintPeriod) XXX_Size

func (m *MintPeriod) XXX_Size() int

func (*MintPeriod) XXX_Unmarshal

func (m *MintPeriod) XXX_Unmarshal(b []byte) error

type MsgBurnNFT

type MsgBurnNFT struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
}

func NewMsgBurnNFT

func NewMsgBurnNFT(creator string, classID string, nftID string) *MsgBurnNFT

func (*MsgBurnNFT) Descriptor

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

func (*MsgBurnNFT) GetClassId

func (m *MsgBurnNFT) GetClassId() string

func (*MsgBurnNFT) GetCreator

func (m *MsgBurnNFT) GetCreator() string

func (*MsgBurnNFT) GetNftId

func (m *MsgBurnNFT) GetNftId() string

func (*MsgBurnNFT) GetSignBytes

func (msg *MsgBurnNFT) GetSignBytes() []byte

func (*MsgBurnNFT) GetSigners

func (msg *MsgBurnNFT) GetSigners() []sdk.AccAddress

func (*MsgBurnNFT) Marshal

func (m *MsgBurnNFT) Marshal() (dAtA []byte, err error)

func (*MsgBurnNFT) MarshalTo

func (m *MsgBurnNFT) MarshalTo(dAtA []byte) (int, error)

func (*MsgBurnNFT) MarshalToSizedBuffer

func (m *MsgBurnNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgBurnNFT) ProtoMessage

func (*MsgBurnNFT) ProtoMessage()

func (*MsgBurnNFT) Reset

func (m *MsgBurnNFT) Reset()

func (*MsgBurnNFT) Route

func (msg *MsgBurnNFT) Route() string

func (*MsgBurnNFT) Size

func (m *MsgBurnNFT) Size() (n int)

func (*MsgBurnNFT) String

func (m *MsgBurnNFT) String() string

func (*MsgBurnNFT) Type

func (msg *MsgBurnNFT) Type() string

func (*MsgBurnNFT) Unmarshal

func (m *MsgBurnNFT) Unmarshal(dAtA []byte) error

func (*MsgBurnNFT) ValidateBasic

func (msg *MsgBurnNFT) ValidateBasic() error

func (*MsgBurnNFT) XXX_DiscardUnknown

func (m *MsgBurnNFT) XXX_DiscardUnknown()

func (*MsgBurnNFT) XXX_Marshal

func (m *MsgBurnNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgBurnNFT) XXX_Merge

func (m *MsgBurnNFT) XXX_Merge(src proto.Message)

func (*MsgBurnNFT) XXX_Size

func (m *MsgBurnNFT) XXX_Size() int

func (*MsgBurnNFT) XXX_Unmarshal

func (m *MsgBurnNFT) XXX_Unmarshal(b []byte) error

type MsgBurnNFTResponse

type MsgBurnNFTResponse struct {
}

func (*MsgBurnNFTResponse) Descriptor

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

func (*MsgBurnNFTResponse) Marshal

func (m *MsgBurnNFTResponse) Marshal() (dAtA []byte, err error)

func (*MsgBurnNFTResponse) MarshalTo

func (m *MsgBurnNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgBurnNFTResponse) MarshalToSizedBuffer

func (m *MsgBurnNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgBurnNFTResponse) ProtoMessage

func (*MsgBurnNFTResponse) ProtoMessage()

func (*MsgBurnNFTResponse) Reset

func (m *MsgBurnNFTResponse) Reset()

func (*MsgBurnNFTResponse) Size

func (m *MsgBurnNFTResponse) Size() (n int)

func (*MsgBurnNFTResponse) String

func (m *MsgBurnNFTResponse) String() string

func (*MsgBurnNFTResponse) Unmarshal

func (m *MsgBurnNFTResponse) Unmarshal(dAtA []byte) error

func (*MsgBurnNFTResponse) XXX_DiscardUnknown

func (m *MsgBurnNFTResponse) XXX_DiscardUnknown()

func (*MsgBurnNFTResponse) XXX_Marshal

func (m *MsgBurnNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgBurnNFTResponse) XXX_Merge

func (m *MsgBurnNFTResponse) XXX_Merge(src proto.Message)

func (*MsgBurnNFTResponse) XXX_Size

func (m *MsgBurnNFTResponse) XXX_Size() int

func (*MsgBurnNFTResponse) XXX_Unmarshal

func (m *MsgBurnNFTResponse) XXX_Unmarshal(b []byte) error

type MsgBuyNFT

type MsgBuyNFT struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,4,opt,name=seller,proto3" json:"seller,omitempty"`
	Price   uint64 `protobuf:"varint,5,opt,name=price,proto3" json:"price,omitempty"`
}

func NewMsgBuyNFT

func NewMsgBuyNFT(creator string, classId string, nftId string, seller string, price uint64) *MsgBuyNFT

func (*MsgBuyNFT) Descriptor

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

func (*MsgBuyNFT) GetClassId

func (m *MsgBuyNFT) GetClassId() string

func (*MsgBuyNFT) GetCreator

func (m *MsgBuyNFT) GetCreator() string

func (*MsgBuyNFT) GetNftId

func (m *MsgBuyNFT) GetNftId() string

func (*MsgBuyNFT) GetPrice

func (m *MsgBuyNFT) GetPrice() uint64

func (*MsgBuyNFT) GetSeller

func (m *MsgBuyNFT) GetSeller() string

func (*MsgBuyNFT) GetSignBytes

func (msg *MsgBuyNFT) GetSignBytes() []byte

func (*MsgBuyNFT) GetSigners

func (msg *MsgBuyNFT) GetSigners() []sdk.AccAddress

func (*MsgBuyNFT) Marshal

func (m *MsgBuyNFT) Marshal() (dAtA []byte, err error)

func (*MsgBuyNFT) MarshalTo

func (m *MsgBuyNFT) MarshalTo(dAtA []byte) (int, error)

func (*MsgBuyNFT) MarshalToSizedBuffer

func (m *MsgBuyNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgBuyNFT) ProtoMessage

func (*MsgBuyNFT) ProtoMessage()

func (*MsgBuyNFT) Reset

func (m *MsgBuyNFT) Reset()

func (*MsgBuyNFT) Route

func (msg *MsgBuyNFT) Route() string

func (*MsgBuyNFT) Size

func (m *MsgBuyNFT) Size() (n int)

func (*MsgBuyNFT) String

func (m *MsgBuyNFT) String() string

func (*MsgBuyNFT) Type

func (msg *MsgBuyNFT) Type() string

func (*MsgBuyNFT) Unmarshal

func (m *MsgBuyNFT) Unmarshal(dAtA []byte) error

func (*MsgBuyNFT) ValidateBasic

func (msg *MsgBuyNFT) ValidateBasic() error

func (*MsgBuyNFT) XXX_DiscardUnknown

func (m *MsgBuyNFT) XXX_DiscardUnknown()

func (*MsgBuyNFT) XXX_Marshal

func (m *MsgBuyNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgBuyNFT) XXX_Merge

func (m *MsgBuyNFT) XXX_Merge(src proto.Message)

func (*MsgBuyNFT) XXX_Size

func (m *MsgBuyNFT) XXX_Size() int

func (*MsgBuyNFT) XXX_Unmarshal

func (m *MsgBuyNFT) XXX_Unmarshal(b []byte) error

type MsgBuyNFTResponse

type MsgBuyNFTResponse struct {
}

func (*MsgBuyNFTResponse) Descriptor

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

func (*MsgBuyNFTResponse) Marshal

func (m *MsgBuyNFTResponse) Marshal() (dAtA []byte, err error)

func (*MsgBuyNFTResponse) MarshalTo

func (m *MsgBuyNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgBuyNFTResponse) MarshalToSizedBuffer

func (m *MsgBuyNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgBuyNFTResponse) ProtoMessage

func (*MsgBuyNFTResponse) ProtoMessage()

func (*MsgBuyNFTResponse) Reset

func (m *MsgBuyNFTResponse) Reset()

func (*MsgBuyNFTResponse) Size

func (m *MsgBuyNFTResponse) Size() (n int)

func (*MsgBuyNFTResponse) String

func (m *MsgBuyNFTResponse) String() string

func (*MsgBuyNFTResponse) Unmarshal

func (m *MsgBuyNFTResponse) Unmarshal(dAtA []byte) error

func (*MsgBuyNFTResponse) XXX_DiscardUnknown

func (m *MsgBuyNFTResponse) XXX_DiscardUnknown()

func (*MsgBuyNFTResponse) XXX_Marshal

func (m *MsgBuyNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgBuyNFTResponse) XXX_Merge

func (m *MsgBuyNFTResponse) XXX_Merge(src proto.Message)

func (*MsgBuyNFTResponse) XXX_Size

func (m *MsgBuyNFTResponse) XXX_Size() int

func (*MsgBuyNFTResponse) XXX_Unmarshal

func (m *MsgBuyNFTResponse) XXX_Unmarshal(b []byte) error

type MsgClient

type MsgClient interface {
	NewClass(ctx context.Context, in *MsgNewClass, opts ...grpc.CallOption) (*MsgNewClassResponse, error)
	UpdateClass(ctx context.Context, in *MsgUpdateClass, opts ...grpc.CallOption) (*MsgUpdateClassResponse, error)
	MintNFT(ctx context.Context, in *MsgMintNFT, opts ...grpc.CallOption) (*MsgMintNFTResponse, error)
	BurnNFT(ctx context.Context, in *MsgBurnNFT, opts ...grpc.CallOption) (*MsgBurnNFTResponse, error)
	CreateBlindBoxContent(ctx context.Context, in *MsgCreateBlindBoxContent, opts ...grpc.CallOption) (*MsgCreateBlindBoxContentResponse, error)
	UpdateBlindBoxContent(ctx context.Context, in *MsgUpdateBlindBoxContent, opts ...grpc.CallOption) (*MsgUpdateBlindBoxContentResponse, error)
	DeleteBlindBoxContent(ctx context.Context, in *MsgDeleteBlindBoxContent, opts ...grpc.CallOption) (*MsgDeleteBlindBoxContentResponse, error)
	CreateOffer(ctx context.Context, in *MsgCreateOffer, opts ...grpc.CallOption) (*MsgCreateOfferResponse, error)
	UpdateOffer(ctx context.Context, in *MsgUpdateOffer, opts ...grpc.CallOption) (*MsgUpdateOfferResponse, error)
	DeleteOffer(ctx context.Context, in *MsgDeleteOffer, opts ...grpc.CallOption) (*MsgDeleteOfferResponse, error)
	CreateListing(ctx context.Context, in *MsgCreateListing, opts ...grpc.CallOption) (*MsgCreateListingResponse, error)
	UpdateListing(ctx context.Context, in *MsgUpdateListing, opts ...grpc.CallOption) (*MsgUpdateListingResponse, error)
	DeleteListing(ctx context.Context, in *MsgDeleteListing, opts ...grpc.CallOption) (*MsgDeleteListingResponse, error)
	SellNFT(ctx context.Context, in *MsgSellNFT, opts ...grpc.CallOption) (*MsgSellNFTResponse, error)
	BuyNFT(ctx context.Context, in *MsgBuyNFT, opts ...grpc.CallOption) (*MsgBuyNFTResponse, error)
	CreateRoyaltyConfig(ctx context.Context, in *MsgCreateRoyaltyConfig, opts ...grpc.CallOption) (*MsgCreateRoyaltyConfigResponse, error)
	UpdateRoyaltyConfig(ctx context.Context, in *MsgUpdateRoyaltyConfig, opts ...grpc.CallOption) (*MsgUpdateRoyaltyConfigResponse, error)
	DeleteRoyaltyConfig(ctx context.Context, in *MsgDeleteRoyaltyConfig, opts ...grpc.CallOption) (*MsgDeleteRoyaltyConfigResponse, error)
}

MsgClient is the client API for Msg service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgCreateBlindBoxContent

type MsgCreateBlindBoxContent struct {
	Creator string   `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string   `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string   `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
	Input   NFTInput `protobuf:"bytes,4,opt,name=input,proto3" json:"input"`
}

func NewMsgCreateBlindBoxContent

func NewMsgCreateBlindBoxContent(creator string, classId string, id string, input NFTInput) *MsgCreateBlindBoxContent

func (*MsgCreateBlindBoxContent) Descriptor

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

func (*MsgCreateBlindBoxContent) GetClassId

func (m *MsgCreateBlindBoxContent) GetClassId() string

func (*MsgCreateBlindBoxContent) GetCreator

func (m *MsgCreateBlindBoxContent) GetCreator() string

func (*MsgCreateBlindBoxContent) GetId

func (m *MsgCreateBlindBoxContent) GetId() string

func (*MsgCreateBlindBoxContent) GetInput

func (m *MsgCreateBlindBoxContent) GetInput() NFTInput

func (*MsgCreateBlindBoxContent) GetSignBytes

func (msg *MsgCreateBlindBoxContent) GetSignBytes() []byte

func (*MsgCreateBlindBoxContent) GetSigners

func (msg *MsgCreateBlindBoxContent) GetSigners() []sdk.AccAddress

func (*MsgCreateBlindBoxContent) Marshal

func (m *MsgCreateBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*MsgCreateBlindBoxContent) MarshalTo

func (m *MsgCreateBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateBlindBoxContent) MarshalToSizedBuffer

func (m *MsgCreateBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateBlindBoxContent) ProtoMessage

func (*MsgCreateBlindBoxContent) ProtoMessage()

func (*MsgCreateBlindBoxContent) Reset

func (m *MsgCreateBlindBoxContent) Reset()

func (*MsgCreateBlindBoxContent) Route

func (msg *MsgCreateBlindBoxContent) Route() string

func (*MsgCreateBlindBoxContent) Size

func (m *MsgCreateBlindBoxContent) Size() (n int)

func (*MsgCreateBlindBoxContent) String

func (m *MsgCreateBlindBoxContent) String() string

func (*MsgCreateBlindBoxContent) Type

func (msg *MsgCreateBlindBoxContent) Type() string

func (*MsgCreateBlindBoxContent) Unmarshal

func (m *MsgCreateBlindBoxContent) Unmarshal(dAtA []byte) error

func (*MsgCreateBlindBoxContent) ValidateBasic

func (msg *MsgCreateBlindBoxContent) ValidateBasic() error

func (*MsgCreateBlindBoxContent) XXX_DiscardUnknown

func (m *MsgCreateBlindBoxContent) XXX_DiscardUnknown()

func (*MsgCreateBlindBoxContent) XXX_Marshal

func (m *MsgCreateBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateBlindBoxContent) XXX_Merge

func (m *MsgCreateBlindBoxContent) XXX_Merge(src proto.Message)

func (*MsgCreateBlindBoxContent) XXX_Size

func (m *MsgCreateBlindBoxContent) XXX_Size() int

func (*MsgCreateBlindBoxContent) XXX_Unmarshal

func (m *MsgCreateBlindBoxContent) XXX_Unmarshal(b []byte) error

type MsgCreateBlindBoxContentResponse

type MsgCreateBlindBoxContentResponse struct {
	BlindBoxContent BlindBoxContent `protobuf:"bytes,1,opt,name=blind_box_content,json=blindBoxContent,proto3" json:"blind_box_content"`
}

func (*MsgCreateBlindBoxContentResponse) Descriptor

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

func (*MsgCreateBlindBoxContentResponse) GetBlindBoxContent

func (m *MsgCreateBlindBoxContentResponse) GetBlindBoxContent() BlindBoxContent

func (*MsgCreateBlindBoxContentResponse) Marshal

func (m *MsgCreateBlindBoxContentResponse) Marshal() (dAtA []byte, err error)

func (*MsgCreateBlindBoxContentResponse) MarshalTo

func (m *MsgCreateBlindBoxContentResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateBlindBoxContentResponse) MarshalToSizedBuffer

func (m *MsgCreateBlindBoxContentResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateBlindBoxContentResponse) ProtoMessage

func (*MsgCreateBlindBoxContentResponse) ProtoMessage()

func (*MsgCreateBlindBoxContentResponse) Reset

func (*MsgCreateBlindBoxContentResponse) Size

func (m *MsgCreateBlindBoxContentResponse) Size() (n int)

func (*MsgCreateBlindBoxContentResponse) String

func (*MsgCreateBlindBoxContentResponse) Unmarshal

func (m *MsgCreateBlindBoxContentResponse) Unmarshal(dAtA []byte) error

func (*MsgCreateBlindBoxContentResponse) XXX_DiscardUnknown

func (m *MsgCreateBlindBoxContentResponse) XXX_DiscardUnknown()

func (*MsgCreateBlindBoxContentResponse) XXX_Marshal

func (m *MsgCreateBlindBoxContentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateBlindBoxContentResponse) XXX_Merge

func (*MsgCreateBlindBoxContentResponse) XXX_Size

func (m *MsgCreateBlindBoxContentResponse) XXX_Size() int

func (*MsgCreateBlindBoxContentResponse) XXX_Unmarshal

func (m *MsgCreateBlindBoxContentResponse) XXX_Unmarshal(b []byte) error

type MsgCreateListing

type MsgCreateListing struct {
	Creator    string    `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId    string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func NewMsgCreateListing

func NewMsgCreateListing(
	creator string,
	classId string,
	nftId string,
	price uint64,
	expiration time.Time,

) *MsgCreateListing

func (*MsgCreateListing) Descriptor

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

func (*MsgCreateListing) GetClassId

func (m *MsgCreateListing) GetClassId() string

func (*MsgCreateListing) GetCreator

func (m *MsgCreateListing) GetCreator() string

func (*MsgCreateListing) GetExpiration

func (m *MsgCreateListing) GetExpiration() time.Time

func (*MsgCreateListing) GetNftId

func (m *MsgCreateListing) GetNftId() string

func (*MsgCreateListing) GetPrice

func (m *MsgCreateListing) GetPrice() uint64

func (*MsgCreateListing) GetSignBytes

func (msg *MsgCreateListing) GetSignBytes() []byte

func (*MsgCreateListing) GetSigners

func (msg *MsgCreateListing) GetSigners() []sdk.AccAddress

func (*MsgCreateListing) Marshal

func (m *MsgCreateListing) Marshal() (dAtA []byte, err error)

func (*MsgCreateListing) MarshalTo

func (m *MsgCreateListing) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateListing) MarshalToSizedBuffer

func (m *MsgCreateListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateListing) ProtoMessage

func (*MsgCreateListing) ProtoMessage()

func (*MsgCreateListing) Reset

func (m *MsgCreateListing) Reset()

func (*MsgCreateListing) Route

func (msg *MsgCreateListing) Route() string

func (*MsgCreateListing) Size

func (m *MsgCreateListing) Size() (n int)

func (*MsgCreateListing) String

func (m *MsgCreateListing) String() string

func (*MsgCreateListing) Type

func (msg *MsgCreateListing) Type() string

func (*MsgCreateListing) Unmarshal

func (m *MsgCreateListing) Unmarshal(dAtA []byte) error

func (*MsgCreateListing) ValidateBasic

func (msg *MsgCreateListing) ValidateBasic() error

func (*MsgCreateListing) XXX_DiscardUnknown

func (m *MsgCreateListing) XXX_DiscardUnknown()

func (*MsgCreateListing) XXX_Marshal

func (m *MsgCreateListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateListing) XXX_Merge

func (m *MsgCreateListing) XXX_Merge(src proto.Message)

func (*MsgCreateListing) XXX_Size

func (m *MsgCreateListing) XXX_Size() int

func (*MsgCreateListing) XXX_Unmarshal

func (m *MsgCreateListing) XXX_Unmarshal(b []byte) error

type MsgCreateListingResponse

type MsgCreateListingResponse struct {
	Listing Listing `protobuf:"bytes,1,opt,name=listing,proto3" json:"listing"`
}

func (*MsgCreateListingResponse) Descriptor

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

func (*MsgCreateListingResponse) GetListing

func (m *MsgCreateListingResponse) GetListing() Listing

func (*MsgCreateListingResponse) Marshal

func (m *MsgCreateListingResponse) Marshal() (dAtA []byte, err error)

func (*MsgCreateListingResponse) MarshalTo

func (m *MsgCreateListingResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateListingResponse) MarshalToSizedBuffer

func (m *MsgCreateListingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateListingResponse) ProtoMessage

func (*MsgCreateListingResponse) ProtoMessage()

func (*MsgCreateListingResponse) Reset

func (m *MsgCreateListingResponse) Reset()

func (*MsgCreateListingResponse) Size

func (m *MsgCreateListingResponse) Size() (n int)

func (*MsgCreateListingResponse) String

func (m *MsgCreateListingResponse) String() string

func (*MsgCreateListingResponse) Unmarshal

func (m *MsgCreateListingResponse) Unmarshal(dAtA []byte) error

func (*MsgCreateListingResponse) XXX_DiscardUnknown

func (m *MsgCreateListingResponse) XXX_DiscardUnknown()

func (*MsgCreateListingResponse) XXX_Marshal

func (m *MsgCreateListingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateListingResponse) XXX_Merge

func (m *MsgCreateListingResponse) XXX_Merge(src proto.Message)

func (*MsgCreateListingResponse) XXX_Size

func (m *MsgCreateListingResponse) XXX_Size() int

func (*MsgCreateListingResponse) XXX_Unmarshal

func (m *MsgCreateListingResponse) XXX_Unmarshal(b []byte) error

type MsgCreateOffer

type MsgCreateOffer struct {
	Creator    string    `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId    string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func NewMsgCreateOffer

func NewMsgCreateOffer(
	creator string,
	classId string,
	nftId string,
	price uint64,
	expiration time.Time,

) *MsgCreateOffer

func (*MsgCreateOffer) Descriptor

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

func (*MsgCreateOffer) GetClassId

func (m *MsgCreateOffer) GetClassId() string

func (*MsgCreateOffer) GetCreator

func (m *MsgCreateOffer) GetCreator() string

func (*MsgCreateOffer) GetExpiration

func (m *MsgCreateOffer) GetExpiration() time.Time

func (*MsgCreateOffer) GetNftId

func (m *MsgCreateOffer) GetNftId() string

func (*MsgCreateOffer) GetPrice

func (m *MsgCreateOffer) GetPrice() uint64

func (*MsgCreateOffer) GetSignBytes

func (msg *MsgCreateOffer) GetSignBytes() []byte

func (*MsgCreateOffer) GetSigners

func (msg *MsgCreateOffer) GetSigners() []sdk.AccAddress

func (*MsgCreateOffer) Marshal

func (m *MsgCreateOffer) Marshal() (dAtA []byte, err error)

func (*MsgCreateOffer) MarshalTo

func (m *MsgCreateOffer) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateOffer) MarshalToSizedBuffer

func (m *MsgCreateOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateOffer) ProtoMessage

func (*MsgCreateOffer) ProtoMessage()

func (*MsgCreateOffer) Reset

func (m *MsgCreateOffer) Reset()

func (*MsgCreateOffer) Route

func (msg *MsgCreateOffer) Route() string

func (*MsgCreateOffer) Size

func (m *MsgCreateOffer) Size() (n int)

func (*MsgCreateOffer) String

func (m *MsgCreateOffer) String() string

func (*MsgCreateOffer) Type

func (msg *MsgCreateOffer) Type() string

func (*MsgCreateOffer) Unmarshal

func (m *MsgCreateOffer) Unmarshal(dAtA []byte) error

func (*MsgCreateOffer) ValidateBasic

func (msg *MsgCreateOffer) ValidateBasic() error

func (*MsgCreateOffer) XXX_DiscardUnknown

func (m *MsgCreateOffer) XXX_DiscardUnknown()

func (*MsgCreateOffer) XXX_Marshal

func (m *MsgCreateOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateOffer) XXX_Merge

func (m *MsgCreateOffer) XXX_Merge(src proto.Message)

func (*MsgCreateOffer) XXX_Size

func (m *MsgCreateOffer) XXX_Size() int

func (*MsgCreateOffer) XXX_Unmarshal

func (m *MsgCreateOffer) XXX_Unmarshal(b []byte) error

type MsgCreateOfferResponse

type MsgCreateOfferResponse struct {
	Offer Offer `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer"`
}

func (*MsgCreateOfferResponse) Descriptor

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

func (*MsgCreateOfferResponse) GetOffer

func (m *MsgCreateOfferResponse) GetOffer() Offer

func (*MsgCreateOfferResponse) Marshal

func (m *MsgCreateOfferResponse) Marshal() (dAtA []byte, err error)

func (*MsgCreateOfferResponse) MarshalTo

func (m *MsgCreateOfferResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateOfferResponse) MarshalToSizedBuffer

func (m *MsgCreateOfferResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateOfferResponse) ProtoMessage

func (*MsgCreateOfferResponse) ProtoMessage()

func (*MsgCreateOfferResponse) Reset

func (m *MsgCreateOfferResponse) Reset()

func (*MsgCreateOfferResponse) Size

func (m *MsgCreateOfferResponse) Size() (n int)

func (*MsgCreateOfferResponse) String

func (m *MsgCreateOfferResponse) String() string

func (*MsgCreateOfferResponse) Unmarshal

func (m *MsgCreateOfferResponse) Unmarshal(dAtA []byte) error

func (*MsgCreateOfferResponse) XXX_DiscardUnknown

func (m *MsgCreateOfferResponse) XXX_DiscardUnknown()

func (*MsgCreateOfferResponse) XXX_Marshal

func (m *MsgCreateOfferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateOfferResponse) XXX_Merge

func (m *MsgCreateOfferResponse) XXX_Merge(src proto.Message)

func (*MsgCreateOfferResponse) XXX_Size

func (m *MsgCreateOfferResponse) XXX_Size() int

func (*MsgCreateOfferResponse) XXX_Unmarshal

func (m *MsgCreateOfferResponse) XXX_Unmarshal(b []byte) error

type MsgCreateRoyaltyConfig

type MsgCreateRoyaltyConfig struct {
	Creator       string             `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId       string             `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	RoyaltyConfig RoyaltyConfigInput `protobuf:"bytes,3,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func NewMsgCreateRoyaltyConfig

func NewMsgCreateRoyaltyConfig(
	creator string,
	classId string,
	royaltyConfig RoyaltyConfigInput,

) *MsgCreateRoyaltyConfig

func (*MsgCreateRoyaltyConfig) Descriptor

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

func (*MsgCreateRoyaltyConfig) GetClassId

func (m *MsgCreateRoyaltyConfig) GetClassId() string

func (*MsgCreateRoyaltyConfig) GetCreator

func (m *MsgCreateRoyaltyConfig) GetCreator() string

func (*MsgCreateRoyaltyConfig) GetRoyaltyConfig

func (m *MsgCreateRoyaltyConfig) GetRoyaltyConfig() RoyaltyConfigInput

func (*MsgCreateRoyaltyConfig) GetSignBytes

func (msg *MsgCreateRoyaltyConfig) GetSignBytes() []byte

func (*MsgCreateRoyaltyConfig) GetSigners

func (msg *MsgCreateRoyaltyConfig) GetSigners() []sdk.AccAddress

func (*MsgCreateRoyaltyConfig) Marshal

func (m *MsgCreateRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*MsgCreateRoyaltyConfig) MarshalTo

func (m *MsgCreateRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateRoyaltyConfig) MarshalToSizedBuffer

func (m *MsgCreateRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateRoyaltyConfig) ProtoMessage

func (*MsgCreateRoyaltyConfig) ProtoMessage()

func (*MsgCreateRoyaltyConfig) Reset

func (m *MsgCreateRoyaltyConfig) Reset()

func (*MsgCreateRoyaltyConfig) Route

func (msg *MsgCreateRoyaltyConfig) Route() string

func (*MsgCreateRoyaltyConfig) Size

func (m *MsgCreateRoyaltyConfig) Size() (n int)

func (*MsgCreateRoyaltyConfig) String

func (m *MsgCreateRoyaltyConfig) String() string

func (*MsgCreateRoyaltyConfig) Type

func (msg *MsgCreateRoyaltyConfig) Type() string

func (*MsgCreateRoyaltyConfig) Unmarshal

func (m *MsgCreateRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*MsgCreateRoyaltyConfig) ValidateBasic

func (msg *MsgCreateRoyaltyConfig) ValidateBasic() error

func (*MsgCreateRoyaltyConfig) XXX_DiscardUnknown

func (m *MsgCreateRoyaltyConfig) XXX_DiscardUnknown()

func (*MsgCreateRoyaltyConfig) XXX_Marshal

func (m *MsgCreateRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateRoyaltyConfig) XXX_Merge

func (m *MsgCreateRoyaltyConfig) XXX_Merge(src proto.Message)

func (*MsgCreateRoyaltyConfig) XXX_Size

func (m *MsgCreateRoyaltyConfig) XXX_Size() int

func (*MsgCreateRoyaltyConfig) XXX_Unmarshal

func (m *MsgCreateRoyaltyConfig) XXX_Unmarshal(b []byte) error

type MsgCreateRoyaltyConfigResponse

type MsgCreateRoyaltyConfigResponse struct {
	RoyaltyConfig RoyaltyConfig `protobuf:"bytes,1,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func (*MsgCreateRoyaltyConfigResponse) Descriptor

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

func (*MsgCreateRoyaltyConfigResponse) GetRoyaltyConfig

func (m *MsgCreateRoyaltyConfigResponse) GetRoyaltyConfig() RoyaltyConfig

func (*MsgCreateRoyaltyConfigResponse) Marshal

func (m *MsgCreateRoyaltyConfigResponse) Marshal() (dAtA []byte, err error)

func (*MsgCreateRoyaltyConfigResponse) MarshalTo

func (m *MsgCreateRoyaltyConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgCreateRoyaltyConfigResponse) MarshalToSizedBuffer

func (m *MsgCreateRoyaltyConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgCreateRoyaltyConfigResponse) ProtoMessage

func (*MsgCreateRoyaltyConfigResponse) ProtoMessage()

func (*MsgCreateRoyaltyConfigResponse) Reset

func (m *MsgCreateRoyaltyConfigResponse) Reset()

func (*MsgCreateRoyaltyConfigResponse) Size

func (m *MsgCreateRoyaltyConfigResponse) Size() (n int)

func (*MsgCreateRoyaltyConfigResponse) String

func (*MsgCreateRoyaltyConfigResponse) Unmarshal

func (m *MsgCreateRoyaltyConfigResponse) Unmarshal(dAtA []byte) error

func (*MsgCreateRoyaltyConfigResponse) XXX_DiscardUnknown

func (m *MsgCreateRoyaltyConfigResponse) XXX_DiscardUnknown()

func (*MsgCreateRoyaltyConfigResponse) XXX_Marshal

func (m *MsgCreateRoyaltyConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgCreateRoyaltyConfigResponse) XXX_Merge

func (m *MsgCreateRoyaltyConfigResponse) XXX_Merge(src proto.Message)

func (*MsgCreateRoyaltyConfigResponse) XXX_Size

func (m *MsgCreateRoyaltyConfigResponse) XXX_Size() int

func (*MsgCreateRoyaltyConfigResponse) XXX_Unmarshal

func (m *MsgCreateRoyaltyConfigResponse) XXX_Unmarshal(b []byte) error

type MsgDeleteBlindBoxContent

type MsgDeleteBlindBoxContent struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
}

func NewMsgDeleteBlindBoxContent

func NewMsgDeleteBlindBoxContent(creator string, classId string, id string) *MsgDeleteBlindBoxContent

func (*MsgDeleteBlindBoxContent) Descriptor

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

func (*MsgDeleteBlindBoxContent) GetClassId

func (m *MsgDeleteBlindBoxContent) GetClassId() string

func (*MsgDeleteBlindBoxContent) GetCreator

func (m *MsgDeleteBlindBoxContent) GetCreator() string

func (*MsgDeleteBlindBoxContent) GetId

func (m *MsgDeleteBlindBoxContent) GetId() string

func (*MsgDeleteBlindBoxContent) GetSignBytes

func (msg *MsgDeleteBlindBoxContent) GetSignBytes() []byte

func (*MsgDeleteBlindBoxContent) GetSigners

func (msg *MsgDeleteBlindBoxContent) GetSigners() []sdk.AccAddress

func (*MsgDeleteBlindBoxContent) Marshal

func (m *MsgDeleteBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*MsgDeleteBlindBoxContent) MarshalTo

func (m *MsgDeleteBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteBlindBoxContent) MarshalToSizedBuffer

func (m *MsgDeleteBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteBlindBoxContent) ProtoMessage

func (*MsgDeleteBlindBoxContent) ProtoMessage()

func (*MsgDeleteBlindBoxContent) Reset

func (m *MsgDeleteBlindBoxContent) Reset()

func (*MsgDeleteBlindBoxContent) Route

func (msg *MsgDeleteBlindBoxContent) Route() string

func (*MsgDeleteBlindBoxContent) Size

func (m *MsgDeleteBlindBoxContent) Size() (n int)

func (*MsgDeleteBlindBoxContent) String

func (m *MsgDeleteBlindBoxContent) String() string

func (*MsgDeleteBlindBoxContent) Type

func (msg *MsgDeleteBlindBoxContent) Type() string

func (*MsgDeleteBlindBoxContent) Unmarshal

func (m *MsgDeleteBlindBoxContent) Unmarshal(dAtA []byte) error

func (*MsgDeleteBlindBoxContent) ValidateBasic

func (msg *MsgDeleteBlindBoxContent) ValidateBasic() error

func (*MsgDeleteBlindBoxContent) XXX_DiscardUnknown

func (m *MsgDeleteBlindBoxContent) XXX_DiscardUnknown()

func (*MsgDeleteBlindBoxContent) XXX_Marshal

func (m *MsgDeleteBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteBlindBoxContent) XXX_Merge

func (m *MsgDeleteBlindBoxContent) XXX_Merge(src proto.Message)

func (*MsgDeleteBlindBoxContent) XXX_Size

func (m *MsgDeleteBlindBoxContent) XXX_Size() int

func (*MsgDeleteBlindBoxContent) XXX_Unmarshal

func (m *MsgDeleteBlindBoxContent) XXX_Unmarshal(b []byte) error

type MsgDeleteBlindBoxContentResponse

type MsgDeleteBlindBoxContentResponse struct {
}

func (*MsgDeleteBlindBoxContentResponse) Descriptor

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

func (*MsgDeleteBlindBoxContentResponse) Marshal

func (m *MsgDeleteBlindBoxContentResponse) Marshal() (dAtA []byte, err error)

func (*MsgDeleteBlindBoxContentResponse) MarshalTo

func (m *MsgDeleteBlindBoxContentResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteBlindBoxContentResponse) MarshalToSizedBuffer

func (m *MsgDeleteBlindBoxContentResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteBlindBoxContentResponse) ProtoMessage

func (*MsgDeleteBlindBoxContentResponse) ProtoMessage()

func (*MsgDeleteBlindBoxContentResponse) Reset

func (*MsgDeleteBlindBoxContentResponse) Size

func (m *MsgDeleteBlindBoxContentResponse) Size() (n int)

func (*MsgDeleteBlindBoxContentResponse) String

func (*MsgDeleteBlindBoxContentResponse) Unmarshal

func (m *MsgDeleteBlindBoxContentResponse) Unmarshal(dAtA []byte) error

func (*MsgDeleteBlindBoxContentResponse) XXX_DiscardUnknown

func (m *MsgDeleteBlindBoxContentResponse) XXX_DiscardUnknown()

func (*MsgDeleteBlindBoxContentResponse) XXX_Marshal

func (m *MsgDeleteBlindBoxContentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteBlindBoxContentResponse) XXX_Merge

func (*MsgDeleteBlindBoxContentResponse) XXX_Size

func (m *MsgDeleteBlindBoxContentResponse) XXX_Size() int

func (*MsgDeleteBlindBoxContentResponse) XXX_Unmarshal

func (m *MsgDeleteBlindBoxContentResponse) XXX_Unmarshal(b []byte) error

type MsgDeleteListing

type MsgDeleteListing struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
}

func NewMsgDeleteListing

func NewMsgDeleteListing(
	creator string,
	classId string,
	nftId string,
) *MsgDeleteListing

func (*MsgDeleteListing) Descriptor

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

func (*MsgDeleteListing) GetClassId

func (m *MsgDeleteListing) GetClassId() string

func (*MsgDeleteListing) GetCreator

func (m *MsgDeleteListing) GetCreator() string

func (*MsgDeleteListing) GetNftId

func (m *MsgDeleteListing) GetNftId() string

func (*MsgDeleteListing) GetSignBytes

func (msg *MsgDeleteListing) GetSignBytes() []byte

func (*MsgDeleteListing) GetSigners

func (msg *MsgDeleteListing) GetSigners() []sdk.AccAddress

func (*MsgDeleteListing) Marshal

func (m *MsgDeleteListing) Marshal() (dAtA []byte, err error)

func (*MsgDeleteListing) MarshalTo

func (m *MsgDeleteListing) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteListing) MarshalToSizedBuffer

func (m *MsgDeleteListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteListing) ProtoMessage

func (*MsgDeleteListing) ProtoMessage()

func (*MsgDeleteListing) Reset

func (m *MsgDeleteListing) Reset()

func (*MsgDeleteListing) Route

func (msg *MsgDeleteListing) Route() string

func (*MsgDeleteListing) Size

func (m *MsgDeleteListing) Size() (n int)

func (*MsgDeleteListing) String

func (m *MsgDeleteListing) String() string

func (*MsgDeleteListing) Type

func (msg *MsgDeleteListing) Type() string

func (*MsgDeleteListing) Unmarshal

func (m *MsgDeleteListing) Unmarshal(dAtA []byte) error

func (*MsgDeleteListing) ValidateBasic

func (msg *MsgDeleteListing) ValidateBasic() error

func (*MsgDeleteListing) XXX_DiscardUnknown

func (m *MsgDeleteListing) XXX_DiscardUnknown()

func (*MsgDeleteListing) XXX_Marshal

func (m *MsgDeleteListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteListing) XXX_Merge

func (m *MsgDeleteListing) XXX_Merge(src proto.Message)

func (*MsgDeleteListing) XXX_Size

func (m *MsgDeleteListing) XXX_Size() int

func (*MsgDeleteListing) XXX_Unmarshal

func (m *MsgDeleteListing) XXX_Unmarshal(b []byte) error

type MsgDeleteListingResponse

type MsgDeleteListingResponse struct {
}

func (*MsgDeleteListingResponse) Descriptor

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

func (*MsgDeleteListingResponse) Marshal

func (m *MsgDeleteListingResponse) Marshal() (dAtA []byte, err error)

func (*MsgDeleteListingResponse) MarshalTo

func (m *MsgDeleteListingResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteListingResponse) MarshalToSizedBuffer

func (m *MsgDeleteListingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteListingResponse) ProtoMessage

func (*MsgDeleteListingResponse) ProtoMessage()

func (*MsgDeleteListingResponse) Reset

func (m *MsgDeleteListingResponse) Reset()

func (*MsgDeleteListingResponse) Size

func (m *MsgDeleteListingResponse) Size() (n int)

func (*MsgDeleteListingResponse) String

func (m *MsgDeleteListingResponse) String() string

func (*MsgDeleteListingResponse) Unmarshal

func (m *MsgDeleteListingResponse) Unmarshal(dAtA []byte) error

func (*MsgDeleteListingResponse) XXX_DiscardUnknown

func (m *MsgDeleteListingResponse) XXX_DiscardUnknown()

func (*MsgDeleteListingResponse) XXX_Marshal

func (m *MsgDeleteListingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteListingResponse) XXX_Merge

func (m *MsgDeleteListingResponse) XXX_Merge(src proto.Message)

func (*MsgDeleteListingResponse) XXX_Size

func (m *MsgDeleteListingResponse) XXX_Size() int

func (*MsgDeleteListingResponse) XXX_Unmarshal

func (m *MsgDeleteListingResponse) XXX_Unmarshal(b []byte) error

type MsgDeleteOffer

type MsgDeleteOffer struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
}

func NewMsgDeleteOffer

func NewMsgDeleteOffer(
	creator string,
	classId string,
	nftId string,

) *MsgDeleteOffer

func (*MsgDeleteOffer) Descriptor

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

func (*MsgDeleteOffer) GetClassId

func (m *MsgDeleteOffer) GetClassId() string

func (*MsgDeleteOffer) GetCreator

func (m *MsgDeleteOffer) GetCreator() string

func (*MsgDeleteOffer) GetNftId

func (m *MsgDeleteOffer) GetNftId() string

func (*MsgDeleteOffer) GetSignBytes

func (msg *MsgDeleteOffer) GetSignBytes() []byte

func (*MsgDeleteOffer) GetSigners

func (msg *MsgDeleteOffer) GetSigners() []sdk.AccAddress

func (*MsgDeleteOffer) Marshal

func (m *MsgDeleteOffer) Marshal() (dAtA []byte, err error)

func (*MsgDeleteOffer) MarshalTo

func (m *MsgDeleteOffer) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteOffer) MarshalToSizedBuffer

func (m *MsgDeleteOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteOffer) ProtoMessage

func (*MsgDeleteOffer) ProtoMessage()

func (*MsgDeleteOffer) Reset

func (m *MsgDeleteOffer) Reset()

func (*MsgDeleteOffer) Route

func (msg *MsgDeleteOffer) Route() string

func (*MsgDeleteOffer) Size

func (m *MsgDeleteOffer) Size() (n int)

func (*MsgDeleteOffer) String

func (m *MsgDeleteOffer) String() string

func (*MsgDeleteOffer) Type

func (msg *MsgDeleteOffer) Type() string

func (*MsgDeleteOffer) Unmarshal

func (m *MsgDeleteOffer) Unmarshal(dAtA []byte) error

func (*MsgDeleteOffer) ValidateBasic

func (msg *MsgDeleteOffer) ValidateBasic() error

func (*MsgDeleteOffer) XXX_DiscardUnknown

func (m *MsgDeleteOffer) XXX_DiscardUnknown()

func (*MsgDeleteOffer) XXX_Marshal

func (m *MsgDeleteOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteOffer) XXX_Merge

func (m *MsgDeleteOffer) XXX_Merge(src proto.Message)

func (*MsgDeleteOffer) XXX_Size

func (m *MsgDeleteOffer) XXX_Size() int

func (*MsgDeleteOffer) XXX_Unmarshal

func (m *MsgDeleteOffer) XXX_Unmarshal(b []byte) error

type MsgDeleteOfferResponse

type MsgDeleteOfferResponse struct {
}

func (*MsgDeleteOfferResponse) Descriptor

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

func (*MsgDeleteOfferResponse) Marshal

func (m *MsgDeleteOfferResponse) Marshal() (dAtA []byte, err error)

func (*MsgDeleteOfferResponse) MarshalTo

func (m *MsgDeleteOfferResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteOfferResponse) MarshalToSizedBuffer

func (m *MsgDeleteOfferResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteOfferResponse) ProtoMessage

func (*MsgDeleteOfferResponse) ProtoMessage()

func (*MsgDeleteOfferResponse) Reset

func (m *MsgDeleteOfferResponse) Reset()

func (*MsgDeleteOfferResponse) Size

func (m *MsgDeleteOfferResponse) Size() (n int)

func (*MsgDeleteOfferResponse) String

func (m *MsgDeleteOfferResponse) String() string

func (*MsgDeleteOfferResponse) Unmarshal

func (m *MsgDeleteOfferResponse) Unmarshal(dAtA []byte) error

func (*MsgDeleteOfferResponse) XXX_DiscardUnknown

func (m *MsgDeleteOfferResponse) XXX_DiscardUnknown()

func (*MsgDeleteOfferResponse) XXX_Marshal

func (m *MsgDeleteOfferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteOfferResponse) XXX_Merge

func (m *MsgDeleteOfferResponse) XXX_Merge(src proto.Message)

func (*MsgDeleteOfferResponse) XXX_Size

func (m *MsgDeleteOfferResponse) XXX_Size() int

func (*MsgDeleteOfferResponse) XXX_Unmarshal

func (m *MsgDeleteOfferResponse) XXX_Unmarshal(b []byte) error

type MsgDeleteRoyaltyConfig

type MsgDeleteRoyaltyConfig struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func NewMsgDeleteRoyaltyConfig

func NewMsgDeleteRoyaltyConfig(
	creator string,
	classId string,

) *MsgDeleteRoyaltyConfig

func (*MsgDeleteRoyaltyConfig) Descriptor

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

func (*MsgDeleteRoyaltyConfig) GetClassId

func (m *MsgDeleteRoyaltyConfig) GetClassId() string

func (*MsgDeleteRoyaltyConfig) GetCreator

func (m *MsgDeleteRoyaltyConfig) GetCreator() string

func (*MsgDeleteRoyaltyConfig) GetSignBytes

func (msg *MsgDeleteRoyaltyConfig) GetSignBytes() []byte

func (*MsgDeleteRoyaltyConfig) GetSigners

func (msg *MsgDeleteRoyaltyConfig) GetSigners() []sdk.AccAddress

func (*MsgDeleteRoyaltyConfig) Marshal

func (m *MsgDeleteRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*MsgDeleteRoyaltyConfig) MarshalTo

func (m *MsgDeleteRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteRoyaltyConfig) MarshalToSizedBuffer

func (m *MsgDeleteRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteRoyaltyConfig) ProtoMessage

func (*MsgDeleteRoyaltyConfig) ProtoMessage()

func (*MsgDeleteRoyaltyConfig) Reset

func (m *MsgDeleteRoyaltyConfig) Reset()

func (*MsgDeleteRoyaltyConfig) Route

func (msg *MsgDeleteRoyaltyConfig) Route() string

func (*MsgDeleteRoyaltyConfig) Size

func (m *MsgDeleteRoyaltyConfig) Size() (n int)

func (*MsgDeleteRoyaltyConfig) String

func (m *MsgDeleteRoyaltyConfig) String() string

func (*MsgDeleteRoyaltyConfig) Type

func (msg *MsgDeleteRoyaltyConfig) Type() string

func (*MsgDeleteRoyaltyConfig) Unmarshal

func (m *MsgDeleteRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*MsgDeleteRoyaltyConfig) ValidateBasic

func (msg *MsgDeleteRoyaltyConfig) ValidateBasic() error

func (*MsgDeleteRoyaltyConfig) XXX_DiscardUnknown

func (m *MsgDeleteRoyaltyConfig) XXX_DiscardUnknown()

func (*MsgDeleteRoyaltyConfig) XXX_Marshal

func (m *MsgDeleteRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteRoyaltyConfig) XXX_Merge

func (m *MsgDeleteRoyaltyConfig) XXX_Merge(src proto.Message)

func (*MsgDeleteRoyaltyConfig) XXX_Size

func (m *MsgDeleteRoyaltyConfig) XXX_Size() int

func (*MsgDeleteRoyaltyConfig) XXX_Unmarshal

func (m *MsgDeleteRoyaltyConfig) XXX_Unmarshal(b []byte) error

type MsgDeleteRoyaltyConfigResponse

type MsgDeleteRoyaltyConfigResponse struct {
}

func (*MsgDeleteRoyaltyConfigResponse) Descriptor

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

func (*MsgDeleteRoyaltyConfigResponse) Marshal

func (m *MsgDeleteRoyaltyConfigResponse) Marshal() (dAtA []byte, err error)

func (*MsgDeleteRoyaltyConfigResponse) MarshalTo

func (m *MsgDeleteRoyaltyConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgDeleteRoyaltyConfigResponse) MarshalToSizedBuffer

func (m *MsgDeleteRoyaltyConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgDeleteRoyaltyConfigResponse) ProtoMessage

func (*MsgDeleteRoyaltyConfigResponse) ProtoMessage()

func (*MsgDeleteRoyaltyConfigResponse) Reset

func (m *MsgDeleteRoyaltyConfigResponse) Reset()

func (*MsgDeleteRoyaltyConfigResponse) Size

func (m *MsgDeleteRoyaltyConfigResponse) Size() (n int)

func (*MsgDeleteRoyaltyConfigResponse) String

func (*MsgDeleteRoyaltyConfigResponse) Unmarshal

func (m *MsgDeleteRoyaltyConfigResponse) Unmarshal(dAtA []byte) error

func (*MsgDeleteRoyaltyConfigResponse) XXX_DiscardUnknown

func (m *MsgDeleteRoyaltyConfigResponse) XXX_DiscardUnknown()

func (*MsgDeleteRoyaltyConfigResponse) XXX_Marshal

func (m *MsgDeleteRoyaltyConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgDeleteRoyaltyConfigResponse) XXX_Merge

func (m *MsgDeleteRoyaltyConfigResponse) XXX_Merge(src proto.Message)

func (*MsgDeleteRoyaltyConfigResponse) XXX_Size

func (m *MsgDeleteRoyaltyConfigResponse) XXX_Size() int

func (*MsgDeleteRoyaltyConfigResponse) XXX_Unmarshal

func (m *MsgDeleteRoyaltyConfigResponse) XXX_Unmarshal(b []byte) error

type MsgMintNFT

type MsgMintNFT struct {
	Creator string    `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string    `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
	Input   *NFTInput `protobuf:"bytes,4,opt,name=input,proto3" json:"input,omitempty"`
}

func NewMsgMintNFT

func NewMsgMintNFT(creator string, classId string, id string, input *NFTInput) *MsgMintNFT

func (*MsgMintNFT) Descriptor

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

func (*MsgMintNFT) GetClassId

func (m *MsgMintNFT) GetClassId() string

func (*MsgMintNFT) GetCreator

func (m *MsgMintNFT) GetCreator() string

func (*MsgMintNFT) GetId

func (m *MsgMintNFT) GetId() string

func (*MsgMintNFT) GetInput

func (m *MsgMintNFT) GetInput() *NFTInput

func (*MsgMintNFT) GetSignBytes

func (msg *MsgMintNFT) GetSignBytes() []byte

func (*MsgMintNFT) GetSigners

func (msg *MsgMintNFT) GetSigners() []sdk.AccAddress

func (*MsgMintNFT) Marshal

func (m *MsgMintNFT) Marshal() (dAtA []byte, err error)

func (*MsgMintNFT) MarshalTo

func (m *MsgMintNFT) MarshalTo(dAtA []byte) (int, error)

func (*MsgMintNFT) MarshalToSizedBuffer

func (m *MsgMintNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgMintNFT) ProtoMessage

func (*MsgMintNFT) ProtoMessage()

func (*MsgMintNFT) Reset

func (m *MsgMintNFT) Reset()

func (*MsgMintNFT) Route

func (msg *MsgMintNFT) Route() string

func (*MsgMintNFT) Size

func (m *MsgMintNFT) Size() (n int)

func (*MsgMintNFT) String

func (m *MsgMintNFT) String() string

func (*MsgMintNFT) Type

func (msg *MsgMintNFT) Type() string

func (*MsgMintNFT) Unmarshal

func (m *MsgMintNFT) Unmarshal(dAtA []byte) error

func (*MsgMintNFT) ValidateBasic

func (msg *MsgMintNFT) ValidateBasic() error

func (*MsgMintNFT) XXX_DiscardUnknown

func (m *MsgMintNFT) XXX_DiscardUnknown()

func (*MsgMintNFT) XXX_Marshal

func (m *MsgMintNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgMintNFT) XXX_Merge

func (m *MsgMintNFT) XXX_Merge(src proto.Message)

func (*MsgMintNFT) XXX_Size

func (m *MsgMintNFT) XXX_Size() int

func (*MsgMintNFT) XXX_Unmarshal

func (m *MsgMintNFT) XXX_Unmarshal(b []byte) error

type MsgMintNFTResponse

type MsgMintNFTResponse struct {
	Nft nft.NFT `protobuf:"bytes,1,opt,name=nft,proto3" json:"nft"`
}

func (*MsgMintNFTResponse) Descriptor

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

func (*MsgMintNFTResponse) GetNft

func (m *MsgMintNFTResponse) GetNft() nft.NFT

func (*MsgMintNFTResponse) Marshal

func (m *MsgMintNFTResponse) Marshal() (dAtA []byte, err error)

func (*MsgMintNFTResponse) MarshalTo

func (m *MsgMintNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgMintNFTResponse) MarshalToSizedBuffer

func (m *MsgMintNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgMintNFTResponse) ProtoMessage

func (*MsgMintNFTResponse) ProtoMessage()

func (*MsgMintNFTResponse) Reset

func (m *MsgMintNFTResponse) Reset()

func (*MsgMintNFTResponse) Size

func (m *MsgMintNFTResponse) Size() (n int)

func (*MsgMintNFTResponse) String

func (m *MsgMintNFTResponse) String() string

func (*MsgMintNFTResponse) Unmarshal

func (m *MsgMintNFTResponse) Unmarshal(dAtA []byte) error

func (*MsgMintNFTResponse) XXX_DiscardUnknown

func (m *MsgMintNFTResponse) XXX_DiscardUnknown()

func (*MsgMintNFTResponse) XXX_Marshal

func (m *MsgMintNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgMintNFTResponse) XXX_Merge

func (m *MsgMintNFTResponse) XXX_Merge(src proto.Message)

func (*MsgMintNFTResponse) XXX_Size

func (m *MsgMintNFTResponse) XXX_Size() int

func (*MsgMintNFTResponse) XXX_Unmarshal

func (m *MsgMintNFTResponse) XXX_Unmarshal(b []byte) error

type MsgNewClass

type MsgNewClass struct {
	Creator string           `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Parent  ClassParentInput `protobuf:"bytes,2,opt,name=parent,proto3" json:"parent"`
	Input   ClassInput       `protobuf:"bytes,3,opt,name=input,proto3" json:"input"`
}

func NewMsgNewClass

func NewMsgNewClass(creator string, parent ClassParentInput, input ClassInput) *MsgNewClass

func (*MsgNewClass) Descriptor

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

func (*MsgNewClass) GetCreator

func (m *MsgNewClass) GetCreator() string

func (*MsgNewClass) GetInput

func (m *MsgNewClass) GetInput() ClassInput

func (*MsgNewClass) GetParent

func (m *MsgNewClass) GetParent() ClassParentInput

func (*MsgNewClass) GetSignBytes

func (msg *MsgNewClass) GetSignBytes() []byte

func (*MsgNewClass) GetSigners

func (msg *MsgNewClass) GetSigners() []sdk.AccAddress

func (*MsgNewClass) Marshal

func (m *MsgNewClass) Marshal() (dAtA []byte, err error)

func (*MsgNewClass) MarshalTo

func (m *MsgNewClass) MarshalTo(dAtA []byte) (int, error)

func (*MsgNewClass) MarshalToSizedBuffer

func (m *MsgNewClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgNewClass) ProtoMessage

func (*MsgNewClass) ProtoMessage()

func (*MsgNewClass) Reset

func (m *MsgNewClass) Reset()

func (*MsgNewClass) Route

func (msg *MsgNewClass) Route() string

func (*MsgNewClass) Size

func (m *MsgNewClass) Size() (n int)

func (*MsgNewClass) String

func (m *MsgNewClass) String() string

func (*MsgNewClass) Type

func (msg *MsgNewClass) Type() string

func (*MsgNewClass) Unmarshal

func (m *MsgNewClass) Unmarshal(dAtA []byte) error

func (*MsgNewClass) ValidateBasic

func (msg *MsgNewClass) ValidateBasic() error

func (*MsgNewClass) XXX_DiscardUnknown

func (m *MsgNewClass) XXX_DiscardUnknown()

func (*MsgNewClass) XXX_Marshal

func (m *MsgNewClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgNewClass) XXX_Merge

func (m *MsgNewClass) XXX_Merge(src proto.Message)

func (*MsgNewClass) XXX_Size

func (m *MsgNewClass) XXX_Size() int

func (*MsgNewClass) XXX_Unmarshal

func (m *MsgNewClass) XXX_Unmarshal(b []byte) error

type MsgNewClassResponse

type MsgNewClassResponse struct {
	Class nft.Class `protobuf:"bytes,1,opt,name=class,proto3" json:"class"`
}

func (*MsgNewClassResponse) Descriptor

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

func (*MsgNewClassResponse) GetClass

func (m *MsgNewClassResponse) GetClass() nft.Class

func (*MsgNewClassResponse) Marshal

func (m *MsgNewClassResponse) Marshal() (dAtA []byte, err error)

func (*MsgNewClassResponse) MarshalTo

func (m *MsgNewClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgNewClassResponse) MarshalToSizedBuffer

func (m *MsgNewClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgNewClassResponse) ProtoMessage

func (*MsgNewClassResponse) ProtoMessage()

func (*MsgNewClassResponse) Reset

func (m *MsgNewClassResponse) Reset()

func (*MsgNewClassResponse) Size

func (m *MsgNewClassResponse) Size() (n int)

func (*MsgNewClassResponse) String

func (m *MsgNewClassResponse) String() string

func (*MsgNewClassResponse) Unmarshal

func (m *MsgNewClassResponse) Unmarshal(dAtA []byte) error

func (*MsgNewClassResponse) XXX_DiscardUnknown

func (m *MsgNewClassResponse) XXX_DiscardUnknown()

func (*MsgNewClassResponse) XXX_Marshal

func (m *MsgNewClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgNewClassResponse) XXX_Merge

func (m *MsgNewClassResponse) XXX_Merge(src proto.Message)

func (*MsgNewClassResponse) XXX_Size

func (m *MsgNewClassResponse) XXX_Size() int

func (*MsgNewClassResponse) XXX_Unmarshal

func (m *MsgNewClassResponse) XXX_Unmarshal(b []byte) error

type MsgSellNFT

type MsgSellNFT struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,4,opt,name=buyer,proto3" json:"buyer,omitempty"`
	Price   uint64 `protobuf:"varint,5,opt,name=price,proto3" json:"price,omitempty"`
}

func NewMsgSellNFT

func NewMsgSellNFT(creator string, classId string, nftId string, buyer string, price uint64) *MsgSellNFT

func (*MsgSellNFT) Descriptor

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

func (*MsgSellNFT) GetBuyer

func (m *MsgSellNFT) GetBuyer() string

func (*MsgSellNFT) GetClassId

func (m *MsgSellNFT) GetClassId() string

func (*MsgSellNFT) GetCreator

func (m *MsgSellNFT) GetCreator() string

func (*MsgSellNFT) GetNftId

func (m *MsgSellNFT) GetNftId() string

func (*MsgSellNFT) GetPrice

func (m *MsgSellNFT) GetPrice() uint64

func (*MsgSellNFT) GetSignBytes

func (msg *MsgSellNFT) GetSignBytes() []byte

func (*MsgSellNFT) GetSigners

func (msg *MsgSellNFT) GetSigners() []sdk.AccAddress

func (*MsgSellNFT) Marshal

func (m *MsgSellNFT) Marshal() (dAtA []byte, err error)

func (*MsgSellNFT) MarshalTo

func (m *MsgSellNFT) MarshalTo(dAtA []byte) (int, error)

func (*MsgSellNFT) MarshalToSizedBuffer

func (m *MsgSellNFT) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgSellNFT) ProtoMessage

func (*MsgSellNFT) ProtoMessage()

func (*MsgSellNFT) Reset

func (m *MsgSellNFT) Reset()

func (*MsgSellNFT) Route

func (msg *MsgSellNFT) Route() string

func (*MsgSellNFT) Size

func (m *MsgSellNFT) Size() (n int)

func (*MsgSellNFT) String

func (m *MsgSellNFT) String() string

func (*MsgSellNFT) Type

func (msg *MsgSellNFT) Type() string

func (*MsgSellNFT) Unmarshal

func (m *MsgSellNFT) Unmarshal(dAtA []byte) error

func (*MsgSellNFT) ValidateBasic

func (msg *MsgSellNFT) ValidateBasic() error

func (*MsgSellNFT) XXX_DiscardUnknown

func (m *MsgSellNFT) XXX_DiscardUnknown()

func (*MsgSellNFT) XXX_Marshal

func (m *MsgSellNFT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgSellNFT) XXX_Merge

func (m *MsgSellNFT) XXX_Merge(src proto.Message)

func (*MsgSellNFT) XXX_Size

func (m *MsgSellNFT) XXX_Size() int

func (*MsgSellNFT) XXX_Unmarshal

func (m *MsgSellNFT) XXX_Unmarshal(b []byte) error

type MsgSellNFTResponse

type MsgSellNFTResponse struct {
}

func (*MsgSellNFTResponse) Descriptor

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

func (*MsgSellNFTResponse) Marshal

func (m *MsgSellNFTResponse) Marshal() (dAtA []byte, err error)

func (*MsgSellNFTResponse) MarshalTo

func (m *MsgSellNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgSellNFTResponse) MarshalToSizedBuffer

func (m *MsgSellNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgSellNFTResponse) ProtoMessage

func (*MsgSellNFTResponse) ProtoMessage()

func (*MsgSellNFTResponse) Reset

func (m *MsgSellNFTResponse) Reset()

func (*MsgSellNFTResponse) Size

func (m *MsgSellNFTResponse) Size() (n int)

func (*MsgSellNFTResponse) String

func (m *MsgSellNFTResponse) String() string

func (*MsgSellNFTResponse) Unmarshal

func (m *MsgSellNFTResponse) Unmarshal(dAtA []byte) error

func (*MsgSellNFTResponse) XXX_DiscardUnknown

func (m *MsgSellNFTResponse) XXX_DiscardUnknown()

func (*MsgSellNFTResponse) XXX_Marshal

func (m *MsgSellNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgSellNFTResponse) XXX_Merge

func (m *MsgSellNFTResponse) XXX_Merge(src proto.Message)

func (*MsgSellNFTResponse) XXX_Size

func (m *MsgSellNFTResponse) XXX_Size() int

func (*MsgSellNFTResponse) XXX_Unmarshal

func (m *MsgSellNFTResponse) XXX_Unmarshal(b []byte) error

type MsgServer

type MsgServer interface {
	NewClass(context.Context, *MsgNewClass) (*MsgNewClassResponse, error)
	UpdateClass(context.Context, *MsgUpdateClass) (*MsgUpdateClassResponse, error)
	MintNFT(context.Context, *MsgMintNFT) (*MsgMintNFTResponse, error)
	BurnNFT(context.Context, *MsgBurnNFT) (*MsgBurnNFTResponse, error)
	CreateBlindBoxContent(context.Context, *MsgCreateBlindBoxContent) (*MsgCreateBlindBoxContentResponse, error)
	UpdateBlindBoxContent(context.Context, *MsgUpdateBlindBoxContent) (*MsgUpdateBlindBoxContentResponse, error)
	DeleteBlindBoxContent(context.Context, *MsgDeleteBlindBoxContent) (*MsgDeleteBlindBoxContentResponse, error)
	CreateOffer(context.Context, *MsgCreateOffer) (*MsgCreateOfferResponse, error)
	UpdateOffer(context.Context, *MsgUpdateOffer) (*MsgUpdateOfferResponse, error)
	DeleteOffer(context.Context, *MsgDeleteOffer) (*MsgDeleteOfferResponse, error)
	CreateListing(context.Context, *MsgCreateListing) (*MsgCreateListingResponse, error)
	UpdateListing(context.Context, *MsgUpdateListing) (*MsgUpdateListingResponse, error)
	DeleteListing(context.Context, *MsgDeleteListing) (*MsgDeleteListingResponse, error)
	SellNFT(context.Context, *MsgSellNFT) (*MsgSellNFTResponse, error)
	BuyNFT(context.Context, *MsgBuyNFT) (*MsgBuyNFTResponse, error)
	CreateRoyaltyConfig(context.Context, *MsgCreateRoyaltyConfig) (*MsgCreateRoyaltyConfigResponse, error)
	UpdateRoyaltyConfig(context.Context, *MsgUpdateRoyaltyConfig) (*MsgUpdateRoyaltyConfigResponse, error)
	DeleteRoyaltyConfig(context.Context, *MsgDeleteRoyaltyConfig) (*MsgDeleteRoyaltyConfigResponse, error)
}

MsgServer is the server API for Msg service.

type MsgUpdateBlindBoxContent

type MsgUpdateBlindBoxContent struct {
	Creator string   `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string   `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string   `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
	Input   NFTInput `protobuf:"bytes,4,opt,name=input,proto3" json:"input"`
}

func NewMsgUpdateBlindBoxContent

func NewMsgUpdateBlindBoxContent(creator string, classId string, id string, input NFTInput) *MsgUpdateBlindBoxContent

func (*MsgUpdateBlindBoxContent) Descriptor

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

func (*MsgUpdateBlindBoxContent) GetClassId

func (m *MsgUpdateBlindBoxContent) GetClassId() string

func (*MsgUpdateBlindBoxContent) GetCreator

func (m *MsgUpdateBlindBoxContent) GetCreator() string

func (*MsgUpdateBlindBoxContent) GetId

func (m *MsgUpdateBlindBoxContent) GetId() string

func (*MsgUpdateBlindBoxContent) GetInput

func (m *MsgUpdateBlindBoxContent) GetInput() NFTInput

func (*MsgUpdateBlindBoxContent) GetSignBytes

func (msg *MsgUpdateBlindBoxContent) GetSignBytes() []byte

func (*MsgUpdateBlindBoxContent) GetSigners

func (msg *MsgUpdateBlindBoxContent) GetSigners() []sdk.AccAddress

func (*MsgUpdateBlindBoxContent) Marshal

func (m *MsgUpdateBlindBoxContent) Marshal() (dAtA []byte, err error)

func (*MsgUpdateBlindBoxContent) MarshalTo

func (m *MsgUpdateBlindBoxContent) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateBlindBoxContent) MarshalToSizedBuffer

func (m *MsgUpdateBlindBoxContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateBlindBoxContent) ProtoMessage

func (*MsgUpdateBlindBoxContent) ProtoMessage()

func (*MsgUpdateBlindBoxContent) Reset

func (m *MsgUpdateBlindBoxContent) Reset()

func (*MsgUpdateBlindBoxContent) Route

func (msg *MsgUpdateBlindBoxContent) Route() string

func (*MsgUpdateBlindBoxContent) Size

func (m *MsgUpdateBlindBoxContent) Size() (n int)

func (*MsgUpdateBlindBoxContent) String

func (m *MsgUpdateBlindBoxContent) String() string

func (*MsgUpdateBlindBoxContent) Type

func (msg *MsgUpdateBlindBoxContent) Type() string

func (*MsgUpdateBlindBoxContent) Unmarshal

func (m *MsgUpdateBlindBoxContent) Unmarshal(dAtA []byte) error

func (*MsgUpdateBlindBoxContent) ValidateBasic

func (msg *MsgUpdateBlindBoxContent) ValidateBasic() error

func (*MsgUpdateBlindBoxContent) XXX_DiscardUnknown

func (m *MsgUpdateBlindBoxContent) XXX_DiscardUnknown()

func (*MsgUpdateBlindBoxContent) XXX_Marshal

func (m *MsgUpdateBlindBoxContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateBlindBoxContent) XXX_Merge

func (m *MsgUpdateBlindBoxContent) XXX_Merge(src proto.Message)

func (*MsgUpdateBlindBoxContent) XXX_Size

func (m *MsgUpdateBlindBoxContent) XXX_Size() int

func (*MsgUpdateBlindBoxContent) XXX_Unmarshal

func (m *MsgUpdateBlindBoxContent) XXX_Unmarshal(b []byte) error

type MsgUpdateBlindBoxContentResponse

type MsgUpdateBlindBoxContentResponse struct {
	BlindBoxContent BlindBoxContent `protobuf:"bytes,1,opt,name=blind_box_content,json=blindBoxContent,proto3" json:"blind_box_content"`
}

func (*MsgUpdateBlindBoxContentResponse) Descriptor

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

func (*MsgUpdateBlindBoxContentResponse) GetBlindBoxContent

func (m *MsgUpdateBlindBoxContentResponse) GetBlindBoxContent() BlindBoxContent

func (*MsgUpdateBlindBoxContentResponse) Marshal

func (m *MsgUpdateBlindBoxContentResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateBlindBoxContentResponse) MarshalTo

func (m *MsgUpdateBlindBoxContentResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateBlindBoxContentResponse) MarshalToSizedBuffer

func (m *MsgUpdateBlindBoxContentResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateBlindBoxContentResponse) ProtoMessage

func (*MsgUpdateBlindBoxContentResponse) ProtoMessage()

func (*MsgUpdateBlindBoxContentResponse) Reset

func (*MsgUpdateBlindBoxContentResponse) Size

func (m *MsgUpdateBlindBoxContentResponse) Size() (n int)

func (*MsgUpdateBlindBoxContentResponse) String

func (*MsgUpdateBlindBoxContentResponse) Unmarshal

func (m *MsgUpdateBlindBoxContentResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateBlindBoxContentResponse) XXX_DiscardUnknown

func (m *MsgUpdateBlindBoxContentResponse) XXX_DiscardUnknown()

func (*MsgUpdateBlindBoxContentResponse) XXX_Marshal

func (m *MsgUpdateBlindBoxContentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateBlindBoxContentResponse) XXX_Merge

func (*MsgUpdateBlindBoxContentResponse) XXX_Size

func (m *MsgUpdateBlindBoxContentResponse) XXX_Size() int

func (*MsgUpdateBlindBoxContentResponse) XXX_Unmarshal

func (m *MsgUpdateBlindBoxContentResponse) XXX_Unmarshal(b []byte) error

type MsgUpdateClass

type MsgUpdateClass struct {
	Creator string     `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId string     `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Input   ClassInput `protobuf:"bytes,3,opt,name=input,proto3" json:"input"`
}

func NewMsgUpdateClass

func NewMsgUpdateClass(creator string, classId string, input ClassInput) *MsgUpdateClass

func (*MsgUpdateClass) Descriptor

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

func (*MsgUpdateClass) GetClassId

func (m *MsgUpdateClass) GetClassId() string

func (*MsgUpdateClass) GetCreator

func (m *MsgUpdateClass) GetCreator() string

func (*MsgUpdateClass) GetInput

func (m *MsgUpdateClass) GetInput() ClassInput

func (*MsgUpdateClass) GetSignBytes

func (msg *MsgUpdateClass) GetSignBytes() []byte

func (*MsgUpdateClass) GetSigners

func (msg *MsgUpdateClass) GetSigners() []sdk.AccAddress

func (*MsgUpdateClass) Marshal

func (m *MsgUpdateClass) Marshal() (dAtA []byte, err error)

func (*MsgUpdateClass) MarshalTo

func (m *MsgUpdateClass) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateClass) MarshalToSizedBuffer

func (m *MsgUpdateClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateClass) ProtoMessage

func (*MsgUpdateClass) ProtoMessage()

func (*MsgUpdateClass) Reset

func (m *MsgUpdateClass) Reset()

func (*MsgUpdateClass) Route

func (msg *MsgUpdateClass) Route() string

func (*MsgUpdateClass) Size

func (m *MsgUpdateClass) Size() (n int)

func (*MsgUpdateClass) String

func (m *MsgUpdateClass) String() string

func (*MsgUpdateClass) Type

func (msg *MsgUpdateClass) Type() string

func (*MsgUpdateClass) Unmarshal

func (m *MsgUpdateClass) Unmarshal(dAtA []byte) error

func (*MsgUpdateClass) ValidateBasic

func (msg *MsgUpdateClass) ValidateBasic() error

func (*MsgUpdateClass) XXX_DiscardUnknown

func (m *MsgUpdateClass) XXX_DiscardUnknown()

func (*MsgUpdateClass) XXX_Marshal

func (m *MsgUpdateClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateClass) XXX_Merge

func (m *MsgUpdateClass) XXX_Merge(src proto.Message)

func (*MsgUpdateClass) XXX_Size

func (m *MsgUpdateClass) XXX_Size() int

func (*MsgUpdateClass) XXX_Unmarshal

func (m *MsgUpdateClass) XXX_Unmarshal(b []byte) error

type MsgUpdateClassResponse

type MsgUpdateClassResponse struct {
	Class nft.Class `protobuf:"bytes,1,opt,name=class,proto3" json:"class"`
}

func (*MsgUpdateClassResponse) Descriptor

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

func (*MsgUpdateClassResponse) GetClass

func (m *MsgUpdateClassResponse) GetClass() nft.Class

func (*MsgUpdateClassResponse) Marshal

func (m *MsgUpdateClassResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateClassResponse) MarshalTo

func (m *MsgUpdateClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateClassResponse) MarshalToSizedBuffer

func (m *MsgUpdateClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateClassResponse) ProtoMessage

func (*MsgUpdateClassResponse) ProtoMessage()

func (*MsgUpdateClassResponse) Reset

func (m *MsgUpdateClassResponse) Reset()

func (*MsgUpdateClassResponse) Size

func (m *MsgUpdateClassResponse) Size() (n int)

func (*MsgUpdateClassResponse) String

func (m *MsgUpdateClassResponse) String() string

func (*MsgUpdateClassResponse) Unmarshal

func (m *MsgUpdateClassResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateClassResponse) XXX_DiscardUnknown

func (m *MsgUpdateClassResponse) XXX_DiscardUnknown()

func (*MsgUpdateClassResponse) XXX_Marshal

func (m *MsgUpdateClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateClassResponse) XXX_Merge

func (m *MsgUpdateClassResponse) XXX_Merge(src proto.Message)

func (*MsgUpdateClassResponse) XXX_Size

func (m *MsgUpdateClassResponse) XXX_Size() int

func (*MsgUpdateClassResponse) XXX_Unmarshal

func (m *MsgUpdateClassResponse) XXX_Unmarshal(b []byte) error

type MsgUpdateListing

type MsgUpdateListing struct {
	Creator    string    `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId    string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func NewMsgUpdateListing

func NewMsgUpdateListing(
	creator string,
	classId string,
	nftId string,
	price uint64,
	expiration time.Time,

) *MsgUpdateListing

func (*MsgUpdateListing) Descriptor

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

func (*MsgUpdateListing) GetClassId

func (m *MsgUpdateListing) GetClassId() string

func (*MsgUpdateListing) GetCreator

func (m *MsgUpdateListing) GetCreator() string

func (*MsgUpdateListing) GetExpiration

func (m *MsgUpdateListing) GetExpiration() time.Time

func (*MsgUpdateListing) GetNftId

func (m *MsgUpdateListing) GetNftId() string

func (*MsgUpdateListing) GetPrice

func (m *MsgUpdateListing) GetPrice() uint64

func (*MsgUpdateListing) GetSignBytes

func (msg *MsgUpdateListing) GetSignBytes() []byte

func (*MsgUpdateListing) GetSigners

func (msg *MsgUpdateListing) GetSigners() []sdk.AccAddress

func (*MsgUpdateListing) Marshal

func (m *MsgUpdateListing) Marshal() (dAtA []byte, err error)

func (*MsgUpdateListing) MarshalTo

func (m *MsgUpdateListing) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateListing) MarshalToSizedBuffer

func (m *MsgUpdateListing) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateListing) ProtoMessage

func (*MsgUpdateListing) ProtoMessage()

func (*MsgUpdateListing) Reset

func (m *MsgUpdateListing) Reset()

func (*MsgUpdateListing) Route

func (msg *MsgUpdateListing) Route() string

func (*MsgUpdateListing) Size

func (m *MsgUpdateListing) Size() (n int)

func (*MsgUpdateListing) String

func (m *MsgUpdateListing) String() string

func (*MsgUpdateListing) Type

func (msg *MsgUpdateListing) Type() string

func (*MsgUpdateListing) Unmarshal

func (m *MsgUpdateListing) Unmarshal(dAtA []byte) error

func (*MsgUpdateListing) ValidateBasic

func (msg *MsgUpdateListing) ValidateBasic() error

func (*MsgUpdateListing) XXX_DiscardUnknown

func (m *MsgUpdateListing) XXX_DiscardUnknown()

func (*MsgUpdateListing) XXX_Marshal

func (m *MsgUpdateListing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateListing) XXX_Merge

func (m *MsgUpdateListing) XXX_Merge(src proto.Message)

func (*MsgUpdateListing) XXX_Size

func (m *MsgUpdateListing) XXX_Size() int

func (*MsgUpdateListing) XXX_Unmarshal

func (m *MsgUpdateListing) XXX_Unmarshal(b []byte) error

type MsgUpdateListingResponse

type MsgUpdateListingResponse struct {
	Listing Listing `protobuf:"bytes,1,opt,name=listing,proto3" json:"listing"`
}

func (*MsgUpdateListingResponse) Descriptor

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

func (*MsgUpdateListingResponse) GetListing

func (m *MsgUpdateListingResponse) GetListing() Listing

func (*MsgUpdateListingResponse) Marshal

func (m *MsgUpdateListingResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateListingResponse) MarshalTo

func (m *MsgUpdateListingResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateListingResponse) MarshalToSizedBuffer

func (m *MsgUpdateListingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateListingResponse) ProtoMessage

func (*MsgUpdateListingResponse) ProtoMessage()

func (*MsgUpdateListingResponse) Reset

func (m *MsgUpdateListingResponse) Reset()

func (*MsgUpdateListingResponse) Size

func (m *MsgUpdateListingResponse) Size() (n int)

func (*MsgUpdateListingResponse) String

func (m *MsgUpdateListingResponse) String() string

func (*MsgUpdateListingResponse) Unmarshal

func (m *MsgUpdateListingResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateListingResponse) XXX_DiscardUnknown

func (m *MsgUpdateListingResponse) XXX_DiscardUnknown()

func (*MsgUpdateListingResponse) XXX_Marshal

func (m *MsgUpdateListingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateListingResponse) XXX_Merge

func (m *MsgUpdateListingResponse) XXX_Merge(src proto.Message)

func (*MsgUpdateListingResponse) XXX_Size

func (m *MsgUpdateListingResponse) XXX_Size() int

func (*MsgUpdateListingResponse) XXX_Unmarshal

func (m *MsgUpdateListingResponse) XXX_Unmarshal(b []byte) error

type MsgUpdateOffer

type MsgUpdateOffer struct {
	Creator    string    `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId    string    `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,3,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func NewMsgUpdateOffer

func NewMsgUpdateOffer(
	creator string,
	classId string,
	nftId string,
	price uint64,
	expiration time.Time,

) *MsgUpdateOffer

func (*MsgUpdateOffer) Descriptor

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

func (*MsgUpdateOffer) GetClassId

func (m *MsgUpdateOffer) GetClassId() string

func (*MsgUpdateOffer) GetCreator

func (m *MsgUpdateOffer) GetCreator() string

func (*MsgUpdateOffer) GetExpiration

func (m *MsgUpdateOffer) GetExpiration() time.Time

func (*MsgUpdateOffer) GetNftId

func (m *MsgUpdateOffer) GetNftId() string

func (*MsgUpdateOffer) GetPrice

func (m *MsgUpdateOffer) GetPrice() uint64

func (*MsgUpdateOffer) GetSignBytes

func (msg *MsgUpdateOffer) GetSignBytes() []byte

func (*MsgUpdateOffer) GetSigners

func (msg *MsgUpdateOffer) GetSigners() []sdk.AccAddress

func (*MsgUpdateOffer) Marshal

func (m *MsgUpdateOffer) Marshal() (dAtA []byte, err error)

func (*MsgUpdateOffer) MarshalTo

func (m *MsgUpdateOffer) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateOffer) MarshalToSizedBuffer

func (m *MsgUpdateOffer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateOffer) ProtoMessage

func (*MsgUpdateOffer) ProtoMessage()

func (*MsgUpdateOffer) Reset

func (m *MsgUpdateOffer) Reset()

func (*MsgUpdateOffer) Route

func (msg *MsgUpdateOffer) Route() string

func (*MsgUpdateOffer) Size

func (m *MsgUpdateOffer) Size() (n int)

func (*MsgUpdateOffer) String

func (m *MsgUpdateOffer) String() string

func (*MsgUpdateOffer) Type

func (msg *MsgUpdateOffer) Type() string

func (*MsgUpdateOffer) Unmarshal

func (m *MsgUpdateOffer) Unmarshal(dAtA []byte) error

func (*MsgUpdateOffer) ValidateBasic

func (msg *MsgUpdateOffer) ValidateBasic() error

func (*MsgUpdateOffer) XXX_DiscardUnknown

func (m *MsgUpdateOffer) XXX_DiscardUnknown()

func (*MsgUpdateOffer) XXX_Marshal

func (m *MsgUpdateOffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateOffer) XXX_Merge

func (m *MsgUpdateOffer) XXX_Merge(src proto.Message)

func (*MsgUpdateOffer) XXX_Size

func (m *MsgUpdateOffer) XXX_Size() int

func (*MsgUpdateOffer) XXX_Unmarshal

func (m *MsgUpdateOffer) XXX_Unmarshal(b []byte) error

type MsgUpdateOfferResponse

type MsgUpdateOfferResponse struct {
	Offer Offer `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer"`
}

func (*MsgUpdateOfferResponse) Descriptor

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

func (*MsgUpdateOfferResponse) GetOffer

func (m *MsgUpdateOfferResponse) GetOffer() Offer

func (*MsgUpdateOfferResponse) Marshal

func (m *MsgUpdateOfferResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateOfferResponse) MarshalTo

func (m *MsgUpdateOfferResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateOfferResponse) MarshalToSizedBuffer

func (m *MsgUpdateOfferResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateOfferResponse) ProtoMessage

func (*MsgUpdateOfferResponse) ProtoMessage()

func (*MsgUpdateOfferResponse) Reset

func (m *MsgUpdateOfferResponse) Reset()

func (*MsgUpdateOfferResponse) Size

func (m *MsgUpdateOfferResponse) Size() (n int)

func (*MsgUpdateOfferResponse) String

func (m *MsgUpdateOfferResponse) String() string

func (*MsgUpdateOfferResponse) Unmarshal

func (m *MsgUpdateOfferResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateOfferResponse) XXX_DiscardUnknown

func (m *MsgUpdateOfferResponse) XXX_DiscardUnknown()

func (*MsgUpdateOfferResponse) XXX_Marshal

func (m *MsgUpdateOfferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateOfferResponse) XXX_Merge

func (m *MsgUpdateOfferResponse) XXX_Merge(src proto.Message)

func (*MsgUpdateOfferResponse) XXX_Size

func (m *MsgUpdateOfferResponse) XXX_Size() int

func (*MsgUpdateOfferResponse) XXX_Unmarshal

func (m *MsgUpdateOfferResponse) XXX_Unmarshal(b []byte) error

type MsgUpdateRoyaltyConfig

type MsgUpdateRoyaltyConfig struct {
	Creator       string             `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ClassId       string             `protobuf:"bytes,2,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	RoyaltyConfig RoyaltyConfigInput `protobuf:"bytes,3,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func NewMsgUpdateRoyaltyConfig

func NewMsgUpdateRoyaltyConfig(
	creator string,
	classId string,
	royaltyConfig RoyaltyConfigInput,

) *MsgUpdateRoyaltyConfig

func (*MsgUpdateRoyaltyConfig) Descriptor

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

func (*MsgUpdateRoyaltyConfig) GetClassId

func (m *MsgUpdateRoyaltyConfig) GetClassId() string

func (*MsgUpdateRoyaltyConfig) GetCreator

func (m *MsgUpdateRoyaltyConfig) GetCreator() string

func (*MsgUpdateRoyaltyConfig) GetRoyaltyConfig

func (m *MsgUpdateRoyaltyConfig) GetRoyaltyConfig() RoyaltyConfigInput

func (*MsgUpdateRoyaltyConfig) GetSignBytes

func (msg *MsgUpdateRoyaltyConfig) GetSignBytes() []byte

func (*MsgUpdateRoyaltyConfig) GetSigners

func (msg *MsgUpdateRoyaltyConfig) GetSigners() []sdk.AccAddress

func (*MsgUpdateRoyaltyConfig) Marshal

func (m *MsgUpdateRoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*MsgUpdateRoyaltyConfig) MarshalTo

func (m *MsgUpdateRoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateRoyaltyConfig) MarshalToSizedBuffer

func (m *MsgUpdateRoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateRoyaltyConfig) ProtoMessage

func (*MsgUpdateRoyaltyConfig) ProtoMessage()

func (*MsgUpdateRoyaltyConfig) Reset

func (m *MsgUpdateRoyaltyConfig) Reset()

func (*MsgUpdateRoyaltyConfig) Route

func (msg *MsgUpdateRoyaltyConfig) Route() string

func (*MsgUpdateRoyaltyConfig) Size

func (m *MsgUpdateRoyaltyConfig) Size() (n int)

func (*MsgUpdateRoyaltyConfig) String

func (m *MsgUpdateRoyaltyConfig) String() string

func (*MsgUpdateRoyaltyConfig) Type

func (msg *MsgUpdateRoyaltyConfig) Type() string

func (*MsgUpdateRoyaltyConfig) Unmarshal

func (m *MsgUpdateRoyaltyConfig) Unmarshal(dAtA []byte) error

func (*MsgUpdateRoyaltyConfig) ValidateBasic

func (msg *MsgUpdateRoyaltyConfig) ValidateBasic() error

func (*MsgUpdateRoyaltyConfig) XXX_DiscardUnknown

func (m *MsgUpdateRoyaltyConfig) XXX_DiscardUnknown()

func (*MsgUpdateRoyaltyConfig) XXX_Marshal

func (m *MsgUpdateRoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateRoyaltyConfig) XXX_Merge

func (m *MsgUpdateRoyaltyConfig) XXX_Merge(src proto.Message)

func (*MsgUpdateRoyaltyConfig) XXX_Size

func (m *MsgUpdateRoyaltyConfig) XXX_Size() int

func (*MsgUpdateRoyaltyConfig) XXX_Unmarshal

func (m *MsgUpdateRoyaltyConfig) XXX_Unmarshal(b []byte) error

type MsgUpdateRoyaltyConfigResponse

type MsgUpdateRoyaltyConfigResponse struct {
	RoyaltyConfig RoyaltyConfig `protobuf:"bytes,1,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func (*MsgUpdateRoyaltyConfigResponse) Descriptor

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

func (*MsgUpdateRoyaltyConfigResponse) GetRoyaltyConfig

func (m *MsgUpdateRoyaltyConfigResponse) GetRoyaltyConfig() RoyaltyConfig

func (*MsgUpdateRoyaltyConfigResponse) Marshal

func (m *MsgUpdateRoyaltyConfigResponse) Marshal() (dAtA []byte, err error)

func (*MsgUpdateRoyaltyConfigResponse) MarshalTo

func (m *MsgUpdateRoyaltyConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*MsgUpdateRoyaltyConfigResponse) MarshalToSizedBuffer

func (m *MsgUpdateRoyaltyConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MsgUpdateRoyaltyConfigResponse) ProtoMessage

func (*MsgUpdateRoyaltyConfigResponse) ProtoMessage()

func (*MsgUpdateRoyaltyConfigResponse) Reset

func (m *MsgUpdateRoyaltyConfigResponse) Reset()

func (*MsgUpdateRoyaltyConfigResponse) Size

func (m *MsgUpdateRoyaltyConfigResponse) Size() (n int)

func (*MsgUpdateRoyaltyConfigResponse) String

func (*MsgUpdateRoyaltyConfigResponse) Unmarshal

func (m *MsgUpdateRoyaltyConfigResponse) Unmarshal(dAtA []byte) error

func (*MsgUpdateRoyaltyConfigResponse) XXX_DiscardUnknown

func (m *MsgUpdateRoyaltyConfigResponse) XXX_DiscardUnknown()

func (*MsgUpdateRoyaltyConfigResponse) XXX_Marshal

func (m *MsgUpdateRoyaltyConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MsgUpdateRoyaltyConfigResponse) XXX_Merge

func (m *MsgUpdateRoyaltyConfigResponse) XXX_Merge(src proto.Message)

func (*MsgUpdateRoyaltyConfigResponse) XXX_Size

func (m *MsgUpdateRoyaltyConfigResponse) XXX_Size() int

func (*MsgUpdateRoyaltyConfigResponse) XXX_Unmarshal

func (m *MsgUpdateRoyaltyConfigResponse) XXX_Unmarshal(b []byte) error

type NFTData

type NFTData struct {
	Metadata     JsonInput   `protobuf:"bytes,1,opt,name=metadata,proto3,customtype=JsonInput" json:"metadata"`
	ClassParent  ClassParent `protobuf:"bytes,2,opt,name=class_parent,json=classParent,proto3" json:"class_parent"`
	ToBeRevealed bool        `protobuf:"varint,3,opt,name=to_be_revealed,json=toBeRevealed,proto3" json:"to_be_revealed,omitempty"`
}

func (*NFTData) Descriptor

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

func (*NFTData) GetClassParent

func (m *NFTData) GetClassParent() ClassParent

func (*NFTData) GetToBeRevealed

func (m *NFTData) GetToBeRevealed() bool

func (*NFTData) Marshal

func (m *NFTData) Marshal() (dAtA []byte, err error)

func (*NFTData) MarshalTo

func (m *NFTData) MarshalTo(dAtA []byte) (int, error)

func (*NFTData) MarshalToSizedBuffer

func (m *NFTData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NFTData) ProtoMessage

func (*NFTData) ProtoMessage()

func (*NFTData) Reset

func (m *NFTData) Reset()

func (*NFTData) Size

func (m *NFTData) Size() (n int)

func (*NFTData) String

func (m *NFTData) String() string

func (*NFTData) Unmarshal

func (m *NFTData) Unmarshal(dAtA []byte) error

func (*NFTData) XXX_DiscardUnknown

func (m *NFTData) XXX_DiscardUnknown()

func (*NFTData) XXX_Marshal

func (m *NFTData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NFTData) XXX_Merge

func (m *NFTData) XXX_Merge(src proto.Message)

func (*NFTData) XXX_Size

func (m *NFTData) XXX_Size() int

func (*NFTData) XXX_Unmarshal

func (m *NFTData) XXX_Unmarshal(b []byte) error

type NFTInput

type NFTInput struct {
	Uri      string    `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	UriHash  string    `protobuf:"bytes,2,opt,name=uri_hash,json=uriHash,proto3" json:"uri_hash,omitempty"`
	Metadata JsonInput `protobuf:"bytes,3,opt,name=metadata,proto3,customtype=JsonInput" json:"metadata"`
}

func (*NFTInput) Descriptor

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

func (*NFTInput) GetUri

func (m *NFTInput) GetUri() string

func (*NFTInput) GetUriHash

func (m *NFTInput) GetUriHash() string

func (*NFTInput) Marshal

func (m *NFTInput) Marshal() (dAtA []byte, err error)

func (*NFTInput) MarshalTo

func (m *NFTInput) MarshalTo(dAtA []byte) (int, error)

func (*NFTInput) MarshalToSizedBuffer

func (m *NFTInput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NFTInput) ProtoMessage

func (*NFTInput) ProtoMessage()

func (*NFTInput) Reset

func (m *NFTInput) Reset()

func (*NFTInput) Size

func (m *NFTInput) Size() (n int)

func (*NFTInput) String

func (m *NFTInput) String() string

func (*NFTInput) Unmarshal

func (m *NFTInput) Unmarshal(dAtA []byte) error

func (*NFTInput) XXX_DiscardUnknown

func (m *NFTInput) XXX_DiscardUnknown()

func (*NFTInput) XXX_Marshal

func (m *NFTInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NFTInput) XXX_Merge

func (m *NFTInput) XXX_Merge(src proto.Message)

func (*NFTInput) XXX_Size

func (m *NFTInput) XXX_Size() int

func (*NFTInput) XXX_Unmarshal

func (m *NFTInput) XXX_Unmarshal(b []byte) error

type NftKeeper

type NftKeeper interface {
	// Methods imported from nft should be defined here
	SaveClass(ctx sdk.Context, class nft.Class) error
	GetClass(ctx sdk.Context, classID string) (nft.Class, bool)
	GetTotalSupply(ctx sdk.Context, classID string) uint64
	UpdateClass(ctx sdk.Context, class nft.Class) error
	Mint(ctx sdk.Context, token nft.NFT, receiver sdk.AccAddress) error
	HasNFT(ctx sdk.Context, classID, id string) bool
	GetOwner(ctx sdk.Context, classID string, nftID string) sdk.AccAddress
	Burn(ctx sdk.Context, classID string, nftID string) error
	GetNFTsOfClass(ctx sdk.Context, classID string) (nfts []nft.NFT)
	Update(ctx sdk.Context, token nft.NFT) error
	Transfer(ctx sdk.Context, classID string, nftID string, receiver sdk.AccAddress) error
}

type Offer

type Offer struct {
	ClassId    string    `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string    `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer      string    `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
	Price      uint64    `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func MapOffersToPublicRecords

func MapOffersToPublicRecords(records []OfferStoreRecord) (offers []Offer)

func (*Offer) Descriptor

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

func (*Offer) GetBuyer

func (m *Offer) GetBuyer() string

func (*Offer) GetClassId

func (m *Offer) GetClassId() string

func (*Offer) GetExpiration

func (m *Offer) GetExpiration() time.Time

func (*Offer) GetNftId

func (m *Offer) GetNftId() string

func (*Offer) GetPrice

func (m *Offer) GetPrice() uint64

func (*Offer) Marshal

func (m *Offer) Marshal() (dAtA []byte, err error)

func (*Offer) MarshalTo

func (m *Offer) MarshalTo(dAtA []byte) (int, error)

func (*Offer) MarshalToSizedBuffer

func (m *Offer) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Offer) ProtoMessage

func (*Offer) ProtoMessage()

func (*Offer) Reset

func (m *Offer) Reset()

func (*Offer) Size

func (m *Offer) Size() (n int)

func (*Offer) String

func (m *Offer) String() string

func (Offer) ToStoreRecord

func (o Offer) ToStoreRecord() OfferStoreRecord

func (*Offer) Unmarshal

func (m *Offer) Unmarshal(dAtA []byte) error

func (*Offer) XXX_DiscardUnknown

func (m *Offer) XXX_DiscardUnknown()

func (*Offer) XXX_Marshal

func (m *Offer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Offer) XXX_Merge

func (m *Offer) XXX_Merge(src proto.Message)

func (*Offer) XXX_Size

func (m *Offer) XXX_Size() int

func (*Offer) XXX_Unmarshal

func (m *Offer) XXX_Unmarshal(b []byte) error

type OfferExpireQueueEntry

type OfferExpireQueueEntry struct {
	ExpireTime time.Time `protobuf:"bytes,1,opt,name=expire_time,json=expireTime,proto3,stdtime" json:"expire_time"`
	OfferKey   []byte    `protobuf:"bytes,2,opt,name=offer_key,json=offerKey,proto3" json:"offer_key,omitempty"`
}

func (*OfferExpireQueueEntry) Descriptor

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

func (*OfferExpireQueueEntry) GetExpireTime

func (m *OfferExpireQueueEntry) GetExpireTime() time.Time

func (*OfferExpireQueueEntry) GetOfferKey

func (m *OfferExpireQueueEntry) GetOfferKey() []byte

func (*OfferExpireQueueEntry) Marshal

func (m *OfferExpireQueueEntry) Marshal() (dAtA []byte, err error)

func (*OfferExpireQueueEntry) MarshalTo

func (m *OfferExpireQueueEntry) MarshalTo(dAtA []byte) (int, error)

func (*OfferExpireQueueEntry) MarshalToSizedBuffer

func (m *OfferExpireQueueEntry) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*OfferExpireQueueEntry) ProtoMessage

func (*OfferExpireQueueEntry) ProtoMessage()

func (*OfferExpireQueueEntry) Reset

func (m *OfferExpireQueueEntry) Reset()

func (*OfferExpireQueueEntry) Size

func (m *OfferExpireQueueEntry) Size() (n int)

func (*OfferExpireQueueEntry) String

func (m *OfferExpireQueueEntry) String() string

func (*OfferExpireQueueEntry) Unmarshal

func (m *OfferExpireQueueEntry) Unmarshal(dAtA []byte) error

func (*OfferExpireQueueEntry) XXX_DiscardUnknown

func (m *OfferExpireQueueEntry) XXX_DiscardUnknown()

func (*OfferExpireQueueEntry) XXX_Marshal

func (m *OfferExpireQueueEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*OfferExpireQueueEntry) XXX_Merge

func (m *OfferExpireQueueEntry) XXX_Merge(src proto.Message)

func (*OfferExpireQueueEntry) XXX_Size

func (m *OfferExpireQueueEntry) XXX_Size() int

func (*OfferExpireQueueEntry) XXX_Unmarshal

func (m *OfferExpireQueueEntry) XXX_Unmarshal(b []byte) error

type OfferStoreRecord

type OfferStoreRecord struct {
	ClassId    string                                        `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string                                        `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer      github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,3,opt,name=buyer,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"buyer,omitempty"`
	Price      uint64                                        `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
	Expiration time.Time                                     `protobuf:"bytes,5,opt,name=expiration,proto3,stdtime" json:"expiration"`
}

func MapOffersToStoreRecords

func MapOffersToStoreRecords(offers []Offer) (records []OfferStoreRecord)

func (*OfferStoreRecord) Descriptor

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

func (*OfferStoreRecord) GetBuyer

func (*OfferStoreRecord) GetClassId

func (m *OfferStoreRecord) GetClassId() string

func (*OfferStoreRecord) GetExpiration

func (m *OfferStoreRecord) GetExpiration() time.Time

func (*OfferStoreRecord) GetNftId

func (m *OfferStoreRecord) GetNftId() string

func (*OfferStoreRecord) GetPrice

func (m *OfferStoreRecord) GetPrice() uint64

func (*OfferStoreRecord) Marshal

func (m *OfferStoreRecord) Marshal() (dAtA []byte, err error)

func (*OfferStoreRecord) MarshalTo

func (m *OfferStoreRecord) MarshalTo(dAtA []byte) (int, error)

func (*OfferStoreRecord) MarshalToSizedBuffer

func (m *OfferStoreRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*OfferStoreRecord) ProtoMessage

func (*OfferStoreRecord) ProtoMessage()

func (*OfferStoreRecord) Reset

func (m *OfferStoreRecord) Reset()

func (*OfferStoreRecord) Size

func (m *OfferStoreRecord) Size() (n int)

func (*OfferStoreRecord) String

func (m *OfferStoreRecord) String() string

func (OfferStoreRecord) ToPublicRecord

func (r OfferStoreRecord) ToPublicRecord() Offer

func (*OfferStoreRecord) Unmarshal

func (m *OfferStoreRecord) Unmarshal(dAtA []byte) error

func (*OfferStoreRecord) XXX_DiscardUnknown

func (m *OfferStoreRecord) XXX_DiscardUnknown()

func (*OfferStoreRecord) XXX_Marshal

func (m *OfferStoreRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*OfferStoreRecord) XXX_Merge

func (m *OfferStoreRecord) XXX_Merge(src proto.Message)

func (*OfferStoreRecord) XXX_Size

func (m *OfferStoreRecord) XXX_Size() int

func (*OfferStoreRecord) XXX_Unmarshal

func (m *OfferStoreRecord) XXX_Unmarshal(b []byte) error

type Params

type Params struct {
	PriceDenom             string        `protobuf:"bytes,1,opt,name=price_denom,json=priceDenom,proto3" json:"price_denom,omitempty"`
	FeePerByte             types.DecCoin `protobuf:"bytes,2,opt,name=fee_per_byte,json=feePerByte,proto3" json:"fee_per_byte"`
	MaxOfferDurationDays   uint64        `` /* 126-byte string literal not displayed */
	MaxListingDurationDays uint64        `` /* 132-byte string literal not displayed */
	MaxRoyaltyBasisPoints  uint64        `` /* 129-byte string literal not displayed */
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func (*Params) Descriptor

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

func (*Params) GetFeePerByte

func (m *Params) GetFeePerByte() types.DecCoin

func (*Params) GetMaxListingDurationDays

func (m *Params) GetMaxListingDurationDays() uint64

func (*Params) GetMaxOfferDurationDays

func (m *Params) GetMaxOfferDurationDays() uint64

func (*Params) GetMaxRoyaltyBasisPoints

func (m *Params) GetMaxRoyaltyBasisPoints() uint64

func (*Params) GetPriceDenom

func (m *Params) GetPriceDenom() string

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

func (m *Params) XXX_Unmarshal(b []byte) error

type QueryAccountByClassRequest

type QueryAccountByClassRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*QueryAccountByClassRequest) Descriptor

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

func (*QueryAccountByClassRequest) GetClassId

func (m *QueryAccountByClassRequest) GetClassId() string

func (*QueryAccountByClassRequest) Marshal

func (m *QueryAccountByClassRequest) Marshal() (dAtA []byte, err error)

func (*QueryAccountByClassRequest) MarshalTo

func (m *QueryAccountByClassRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryAccountByClassRequest) MarshalToSizedBuffer

func (m *QueryAccountByClassRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryAccountByClassRequest) ProtoMessage

func (*QueryAccountByClassRequest) ProtoMessage()

func (*QueryAccountByClassRequest) Reset

func (m *QueryAccountByClassRequest) Reset()

func (*QueryAccountByClassRequest) Size

func (m *QueryAccountByClassRequest) Size() (n int)

func (*QueryAccountByClassRequest) String

func (m *QueryAccountByClassRequest) String() string

func (*QueryAccountByClassRequest) Unmarshal

func (m *QueryAccountByClassRequest) Unmarshal(dAtA []byte) error

func (*QueryAccountByClassRequest) XXX_DiscardUnknown

func (m *QueryAccountByClassRequest) XXX_DiscardUnknown()

func (*QueryAccountByClassRequest) XXX_Marshal

func (m *QueryAccountByClassRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryAccountByClassRequest) XXX_Merge

func (m *QueryAccountByClassRequest) XXX_Merge(src proto.Message)

func (*QueryAccountByClassRequest) XXX_Size

func (m *QueryAccountByClassRequest) XXX_Size() int

func (*QueryAccountByClassRequest) XXX_Unmarshal

func (m *QueryAccountByClassRequest) XXX_Unmarshal(b []byte) error

type QueryAccountByClassResponse

type QueryAccountByClassResponse struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryAccountByClassResponse) Descriptor

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

func (*QueryAccountByClassResponse) GetAddress

func (m *QueryAccountByClassResponse) GetAddress() string

func (*QueryAccountByClassResponse) Marshal

func (m *QueryAccountByClassResponse) Marshal() (dAtA []byte, err error)

func (*QueryAccountByClassResponse) MarshalTo

func (m *QueryAccountByClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryAccountByClassResponse) MarshalToSizedBuffer

func (m *QueryAccountByClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryAccountByClassResponse) ProtoMessage

func (*QueryAccountByClassResponse) ProtoMessage()

func (*QueryAccountByClassResponse) Reset

func (m *QueryAccountByClassResponse) Reset()

func (*QueryAccountByClassResponse) Size

func (m *QueryAccountByClassResponse) Size() (n int)

func (*QueryAccountByClassResponse) String

func (m *QueryAccountByClassResponse) String() string

func (*QueryAccountByClassResponse) Unmarshal

func (m *QueryAccountByClassResponse) Unmarshal(dAtA []byte) error

func (*QueryAccountByClassResponse) XXX_DiscardUnknown

func (m *QueryAccountByClassResponse) XXX_DiscardUnknown()

func (*QueryAccountByClassResponse) XXX_Marshal

func (m *QueryAccountByClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryAccountByClassResponse) XXX_Merge

func (m *QueryAccountByClassResponse) XXX_Merge(src proto.Message)

func (*QueryAccountByClassResponse) XXX_Size

func (m *QueryAccountByClassResponse) XXX_Size() int

func (*QueryAccountByClassResponse) XXX_Unmarshal

func (m *QueryAccountByClassResponse) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentIndexRequest

type QueryBlindBoxContentIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryBlindBoxContentIndexRequest) Descriptor

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

func (*QueryBlindBoxContentIndexRequest) GetPagination

func (*QueryBlindBoxContentIndexRequest) Marshal

func (m *QueryBlindBoxContentIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentIndexRequest) MarshalTo

func (m *QueryBlindBoxContentIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentIndexRequest) MarshalToSizedBuffer

func (m *QueryBlindBoxContentIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentIndexRequest) ProtoMessage

func (*QueryBlindBoxContentIndexRequest) ProtoMessage()

func (*QueryBlindBoxContentIndexRequest) Reset

func (*QueryBlindBoxContentIndexRequest) Size

func (m *QueryBlindBoxContentIndexRequest) Size() (n int)

func (*QueryBlindBoxContentIndexRequest) String

func (*QueryBlindBoxContentIndexRequest) Unmarshal

func (m *QueryBlindBoxContentIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentIndexRequest) XXX_DiscardUnknown

func (m *QueryBlindBoxContentIndexRequest) XXX_DiscardUnknown()

func (*QueryBlindBoxContentIndexRequest) XXX_Marshal

func (m *QueryBlindBoxContentIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentIndexRequest) XXX_Merge

func (*QueryBlindBoxContentIndexRequest) XXX_Size

func (m *QueryBlindBoxContentIndexRequest) XXX_Size() int

func (*QueryBlindBoxContentIndexRequest) XXX_Unmarshal

func (m *QueryBlindBoxContentIndexRequest) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentIndexResponse

type QueryBlindBoxContentIndexResponse struct {
	BlindBoxContents []BlindBoxContent   `protobuf:"bytes,1,rep,name=blind_box_contents,json=blindBoxContents,proto3" json:"blind_box_contents"`
	Pagination       *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryBlindBoxContentIndexResponse) Descriptor

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

func (*QueryBlindBoxContentIndexResponse) GetBlindBoxContents

func (m *QueryBlindBoxContentIndexResponse) GetBlindBoxContents() []BlindBoxContent

func (*QueryBlindBoxContentIndexResponse) GetPagination

func (*QueryBlindBoxContentIndexResponse) Marshal

func (m *QueryBlindBoxContentIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentIndexResponse) MarshalTo

func (m *QueryBlindBoxContentIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentIndexResponse) MarshalToSizedBuffer

func (m *QueryBlindBoxContentIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentIndexResponse) ProtoMessage

func (*QueryBlindBoxContentIndexResponse) ProtoMessage()

func (*QueryBlindBoxContentIndexResponse) Reset

func (*QueryBlindBoxContentIndexResponse) Size

func (m *QueryBlindBoxContentIndexResponse) Size() (n int)

func (*QueryBlindBoxContentIndexResponse) String

func (*QueryBlindBoxContentIndexResponse) Unmarshal

func (m *QueryBlindBoxContentIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentIndexResponse) XXX_DiscardUnknown

func (m *QueryBlindBoxContentIndexResponse) XXX_DiscardUnknown()

func (*QueryBlindBoxContentIndexResponse) XXX_Marshal

func (m *QueryBlindBoxContentIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentIndexResponse) XXX_Merge

func (*QueryBlindBoxContentIndexResponse) XXX_Size

func (m *QueryBlindBoxContentIndexResponse) XXX_Size() int

func (*QueryBlindBoxContentIndexResponse) XXX_Unmarshal

func (m *QueryBlindBoxContentIndexResponse) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentRequest

type QueryBlindBoxContentRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Id      string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
}

func (*QueryBlindBoxContentRequest) Descriptor

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

func (*QueryBlindBoxContentRequest) GetClassId

func (m *QueryBlindBoxContentRequest) GetClassId() string

func (*QueryBlindBoxContentRequest) GetId

func (*QueryBlindBoxContentRequest) Marshal

func (m *QueryBlindBoxContentRequest) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentRequest) MarshalTo

func (m *QueryBlindBoxContentRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentRequest) MarshalToSizedBuffer

func (m *QueryBlindBoxContentRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentRequest) ProtoMessage

func (*QueryBlindBoxContentRequest) ProtoMessage()

func (*QueryBlindBoxContentRequest) Reset

func (m *QueryBlindBoxContentRequest) Reset()

func (*QueryBlindBoxContentRequest) Size

func (m *QueryBlindBoxContentRequest) Size() (n int)

func (*QueryBlindBoxContentRequest) String

func (m *QueryBlindBoxContentRequest) String() string

func (*QueryBlindBoxContentRequest) Unmarshal

func (m *QueryBlindBoxContentRequest) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentRequest) XXX_DiscardUnknown

func (m *QueryBlindBoxContentRequest) XXX_DiscardUnknown()

func (*QueryBlindBoxContentRequest) XXX_Marshal

func (m *QueryBlindBoxContentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentRequest) XXX_Merge

func (m *QueryBlindBoxContentRequest) XXX_Merge(src proto.Message)

func (*QueryBlindBoxContentRequest) XXX_Size

func (m *QueryBlindBoxContentRequest) XXX_Size() int

func (*QueryBlindBoxContentRequest) XXX_Unmarshal

func (m *QueryBlindBoxContentRequest) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentResponse

type QueryBlindBoxContentResponse struct {
	BlindBoxContent BlindBoxContent `protobuf:"bytes,1,opt,name=blind_box_content,json=blindBoxContent,proto3" json:"blind_box_content"`
}

func (*QueryBlindBoxContentResponse) Descriptor

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

func (*QueryBlindBoxContentResponse) GetBlindBoxContent

func (m *QueryBlindBoxContentResponse) GetBlindBoxContent() BlindBoxContent

func (*QueryBlindBoxContentResponse) Marshal

func (m *QueryBlindBoxContentResponse) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentResponse) MarshalTo

func (m *QueryBlindBoxContentResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentResponse) MarshalToSizedBuffer

func (m *QueryBlindBoxContentResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentResponse) ProtoMessage

func (*QueryBlindBoxContentResponse) ProtoMessage()

func (*QueryBlindBoxContentResponse) Reset

func (m *QueryBlindBoxContentResponse) Reset()

func (*QueryBlindBoxContentResponse) Size

func (m *QueryBlindBoxContentResponse) Size() (n int)

func (*QueryBlindBoxContentResponse) String

func (*QueryBlindBoxContentResponse) Unmarshal

func (m *QueryBlindBoxContentResponse) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentResponse) XXX_DiscardUnknown

func (m *QueryBlindBoxContentResponse) XXX_DiscardUnknown()

func (*QueryBlindBoxContentResponse) XXX_Marshal

func (m *QueryBlindBoxContentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentResponse) XXX_Merge

func (m *QueryBlindBoxContentResponse) XXX_Merge(src proto.Message)

func (*QueryBlindBoxContentResponse) XXX_Size

func (m *QueryBlindBoxContentResponse) XXX_Size() int

func (*QueryBlindBoxContentResponse) XXX_Unmarshal

func (m *QueryBlindBoxContentResponse) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentsRequest

type QueryBlindBoxContentsRequest struct {
	ClassId    string             `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryBlindBoxContentsRequest) Descriptor

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

func (*QueryBlindBoxContentsRequest) GetClassId

func (m *QueryBlindBoxContentsRequest) GetClassId() string

func (*QueryBlindBoxContentsRequest) GetPagination

func (m *QueryBlindBoxContentsRequest) GetPagination() *query.PageRequest

func (*QueryBlindBoxContentsRequest) Marshal

func (m *QueryBlindBoxContentsRequest) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentsRequest) MarshalTo

func (m *QueryBlindBoxContentsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentsRequest) MarshalToSizedBuffer

func (m *QueryBlindBoxContentsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentsRequest) ProtoMessage

func (*QueryBlindBoxContentsRequest) ProtoMessage()

func (*QueryBlindBoxContentsRequest) Reset

func (m *QueryBlindBoxContentsRequest) Reset()

func (*QueryBlindBoxContentsRequest) Size

func (m *QueryBlindBoxContentsRequest) Size() (n int)

func (*QueryBlindBoxContentsRequest) String

func (*QueryBlindBoxContentsRequest) Unmarshal

func (m *QueryBlindBoxContentsRequest) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentsRequest) XXX_DiscardUnknown

func (m *QueryBlindBoxContentsRequest) XXX_DiscardUnknown()

func (*QueryBlindBoxContentsRequest) XXX_Marshal

func (m *QueryBlindBoxContentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentsRequest) XXX_Merge

func (m *QueryBlindBoxContentsRequest) XXX_Merge(src proto.Message)

func (*QueryBlindBoxContentsRequest) XXX_Size

func (m *QueryBlindBoxContentsRequest) XXX_Size() int

func (*QueryBlindBoxContentsRequest) XXX_Unmarshal

func (m *QueryBlindBoxContentsRequest) XXX_Unmarshal(b []byte) error

type QueryBlindBoxContentsResponse

type QueryBlindBoxContentsResponse struct {
	BlindBoxContents []BlindBoxContent   `protobuf:"bytes,1,rep,name=blind_box_contents,json=blindBoxContents,proto3" json:"blind_box_contents"`
	Pagination       *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryBlindBoxContentsResponse) Descriptor

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

func (*QueryBlindBoxContentsResponse) GetBlindBoxContents

func (m *QueryBlindBoxContentsResponse) GetBlindBoxContents() []BlindBoxContent

func (*QueryBlindBoxContentsResponse) GetPagination

func (m *QueryBlindBoxContentsResponse) GetPagination() *query.PageResponse

func (*QueryBlindBoxContentsResponse) Marshal

func (m *QueryBlindBoxContentsResponse) Marshal() (dAtA []byte, err error)

func (*QueryBlindBoxContentsResponse) MarshalTo

func (m *QueryBlindBoxContentsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryBlindBoxContentsResponse) MarshalToSizedBuffer

func (m *QueryBlindBoxContentsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryBlindBoxContentsResponse) ProtoMessage

func (*QueryBlindBoxContentsResponse) ProtoMessage()

func (*QueryBlindBoxContentsResponse) Reset

func (m *QueryBlindBoxContentsResponse) Reset()

func (*QueryBlindBoxContentsResponse) Size

func (m *QueryBlindBoxContentsResponse) Size() (n int)

func (*QueryBlindBoxContentsResponse) String

func (*QueryBlindBoxContentsResponse) Unmarshal

func (m *QueryBlindBoxContentsResponse) Unmarshal(dAtA []byte) error

func (*QueryBlindBoxContentsResponse) XXX_DiscardUnknown

func (m *QueryBlindBoxContentsResponse) XXX_DiscardUnknown()

func (*QueryBlindBoxContentsResponse) XXX_Marshal

func (m *QueryBlindBoxContentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryBlindBoxContentsResponse) XXX_Merge

func (m *QueryBlindBoxContentsResponse) XXX_Merge(src proto.Message)

func (*QueryBlindBoxContentsResponse) XXX_Size

func (m *QueryBlindBoxContentsResponse) XXX_Size() int

func (*QueryBlindBoxContentsResponse) XXX_Unmarshal

func (m *QueryBlindBoxContentsResponse) XXX_Unmarshal(b []byte) error

type QueryClassesByAccountIndexRequest

type QueryClassesByAccountIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByAccountIndexRequest) Descriptor

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

func (*QueryClassesByAccountIndexRequest) GetPagination

func (*QueryClassesByAccountIndexRequest) Marshal

func (m *QueryClassesByAccountIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryClassesByAccountIndexRequest) MarshalTo

func (m *QueryClassesByAccountIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByAccountIndexRequest) MarshalToSizedBuffer

func (m *QueryClassesByAccountIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByAccountIndexRequest) ProtoMessage

func (*QueryClassesByAccountIndexRequest) ProtoMessage()

func (*QueryClassesByAccountIndexRequest) Reset

func (*QueryClassesByAccountIndexRequest) Size

func (m *QueryClassesByAccountIndexRequest) Size() (n int)

func (*QueryClassesByAccountIndexRequest) String

func (*QueryClassesByAccountIndexRequest) Unmarshal

func (m *QueryClassesByAccountIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryClassesByAccountIndexRequest) XXX_DiscardUnknown

func (m *QueryClassesByAccountIndexRequest) XXX_DiscardUnknown()

func (*QueryClassesByAccountIndexRequest) XXX_Marshal

func (m *QueryClassesByAccountIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByAccountIndexRequest) XXX_Merge

func (*QueryClassesByAccountIndexRequest) XXX_Size

func (m *QueryClassesByAccountIndexRequest) XXX_Size() int

func (*QueryClassesByAccountIndexRequest) XXX_Unmarshal

func (m *QueryClassesByAccountIndexRequest) XXX_Unmarshal(b []byte) error

type QueryClassesByAccountIndexResponse

type QueryClassesByAccountIndexResponse struct {
	ClassesByAccounts []ClassesByAccount  `protobuf:"bytes,1,rep,name=classes_by_accounts,json=classesByAccounts,proto3" json:"classes_by_accounts"`
	Pagination        *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByAccountIndexResponse) Descriptor

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

func (*QueryClassesByAccountIndexResponse) GetClassesByAccounts

func (m *QueryClassesByAccountIndexResponse) GetClassesByAccounts() []ClassesByAccount

func (*QueryClassesByAccountIndexResponse) GetPagination

func (*QueryClassesByAccountIndexResponse) Marshal

func (m *QueryClassesByAccountIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryClassesByAccountIndexResponse) MarshalTo

func (m *QueryClassesByAccountIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByAccountIndexResponse) MarshalToSizedBuffer

func (m *QueryClassesByAccountIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByAccountIndexResponse) ProtoMessage

func (*QueryClassesByAccountIndexResponse) ProtoMessage()

func (*QueryClassesByAccountIndexResponse) Reset

func (*QueryClassesByAccountIndexResponse) Size

func (*QueryClassesByAccountIndexResponse) String

func (*QueryClassesByAccountIndexResponse) Unmarshal

func (m *QueryClassesByAccountIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryClassesByAccountIndexResponse) XXX_DiscardUnknown

func (m *QueryClassesByAccountIndexResponse) XXX_DiscardUnknown()

func (*QueryClassesByAccountIndexResponse) XXX_Marshal

func (m *QueryClassesByAccountIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByAccountIndexResponse) XXX_Merge

func (*QueryClassesByAccountIndexResponse) XXX_Size

func (*QueryClassesByAccountIndexResponse) XXX_Unmarshal

func (m *QueryClassesByAccountIndexResponse) XXX_Unmarshal(b []byte) error

type QueryClassesByAccountRequest

type QueryClassesByAccountRequest struct {
	Account    string             `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByAccountRequest) Descriptor

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

func (*QueryClassesByAccountRequest) GetAccount

func (m *QueryClassesByAccountRequest) GetAccount() string

func (*QueryClassesByAccountRequest) GetPagination

func (m *QueryClassesByAccountRequest) GetPagination() *query.PageRequest

func (*QueryClassesByAccountRequest) Marshal

func (m *QueryClassesByAccountRequest) Marshal() (dAtA []byte, err error)

func (*QueryClassesByAccountRequest) MarshalTo

func (m *QueryClassesByAccountRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByAccountRequest) MarshalToSizedBuffer

func (m *QueryClassesByAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByAccountRequest) ProtoMessage

func (*QueryClassesByAccountRequest) ProtoMessage()

func (*QueryClassesByAccountRequest) Reset

func (m *QueryClassesByAccountRequest) Reset()

func (*QueryClassesByAccountRequest) Size

func (m *QueryClassesByAccountRequest) Size() (n int)

func (*QueryClassesByAccountRequest) String

func (*QueryClassesByAccountRequest) Unmarshal

func (m *QueryClassesByAccountRequest) Unmarshal(dAtA []byte) error

func (*QueryClassesByAccountRequest) XXX_DiscardUnknown

func (m *QueryClassesByAccountRequest) XXX_DiscardUnknown()

func (*QueryClassesByAccountRequest) XXX_Marshal

func (m *QueryClassesByAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByAccountRequest) XXX_Merge

func (m *QueryClassesByAccountRequest) XXX_Merge(src proto.Message)

func (*QueryClassesByAccountRequest) XXX_Size

func (m *QueryClassesByAccountRequest) XXX_Size() int

func (*QueryClassesByAccountRequest) XXX_Unmarshal

func (m *QueryClassesByAccountRequest) XXX_Unmarshal(b []byte) error

type QueryClassesByAccountResponse

type QueryClassesByAccountResponse struct {
	Account    string              `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	Classes    []nft.Class         `protobuf:"bytes,2,rep,name=classes,proto3" json:"classes"`
	Pagination *query.PageResponse `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByAccountResponse) Descriptor

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

func (*QueryClassesByAccountResponse) GetAccount

func (m *QueryClassesByAccountResponse) GetAccount() string

func (*QueryClassesByAccountResponse) GetClasses

func (m *QueryClassesByAccountResponse) GetClasses() []nft.Class

func (*QueryClassesByAccountResponse) GetPagination

func (m *QueryClassesByAccountResponse) GetPagination() *query.PageResponse

func (*QueryClassesByAccountResponse) Marshal

func (m *QueryClassesByAccountResponse) Marshal() (dAtA []byte, err error)

func (*QueryClassesByAccountResponse) MarshalTo

func (m *QueryClassesByAccountResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByAccountResponse) MarshalToSizedBuffer

func (m *QueryClassesByAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByAccountResponse) ProtoMessage

func (*QueryClassesByAccountResponse) ProtoMessage()

func (*QueryClassesByAccountResponse) Reset

func (m *QueryClassesByAccountResponse) Reset()

func (*QueryClassesByAccountResponse) Size

func (m *QueryClassesByAccountResponse) Size() (n int)

func (*QueryClassesByAccountResponse) String

func (*QueryClassesByAccountResponse) Unmarshal

func (m *QueryClassesByAccountResponse) Unmarshal(dAtA []byte) error

func (*QueryClassesByAccountResponse) XXX_DiscardUnknown

func (m *QueryClassesByAccountResponse) XXX_DiscardUnknown()

func (*QueryClassesByAccountResponse) XXX_Marshal

func (m *QueryClassesByAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByAccountResponse) XXX_Merge

func (m *QueryClassesByAccountResponse) XXX_Merge(src proto.Message)

func (*QueryClassesByAccountResponse) XXX_Size

func (m *QueryClassesByAccountResponse) XXX_Size() int

func (*QueryClassesByAccountResponse) XXX_Unmarshal

func (m *QueryClassesByAccountResponse) XXX_Unmarshal(b []byte) error

type QueryClassesByISCNIndexRequest

type QueryClassesByISCNIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByISCNIndexRequest) Descriptor

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

func (*QueryClassesByISCNIndexRequest) GetPagination

func (m *QueryClassesByISCNIndexRequest) GetPagination() *query.PageRequest

func (*QueryClassesByISCNIndexRequest) Marshal

func (m *QueryClassesByISCNIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryClassesByISCNIndexRequest) MarshalTo

func (m *QueryClassesByISCNIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByISCNIndexRequest) MarshalToSizedBuffer

func (m *QueryClassesByISCNIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByISCNIndexRequest) ProtoMessage

func (*QueryClassesByISCNIndexRequest) ProtoMessage()

func (*QueryClassesByISCNIndexRequest) Reset

func (m *QueryClassesByISCNIndexRequest) Reset()

func (*QueryClassesByISCNIndexRequest) Size

func (m *QueryClassesByISCNIndexRequest) Size() (n int)

func (*QueryClassesByISCNIndexRequest) String

func (*QueryClassesByISCNIndexRequest) Unmarshal

func (m *QueryClassesByISCNIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryClassesByISCNIndexRequest) XXX_DiscardUnknown

func (m *QueryClassesByISCNIndexRequest) XXX_DiscardUnknown()

func (*QueryClassesByISCNIndexRequest) XXX_Marshal

func (m *QueryClassesByISCNIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByISCNIndexRequest) XXX_Merge

func (m *QueryClassesByISCNIndexRequest) XXX_Merge(src proto.Message)

func (*QueryClassesByISCNIndexRequest) XXX_Size

func (m *QueryClassesByISCNIndexRequest) XXX_Size() int

func (*QueryClassesByISCNIndexRequest) XXX_Unmarshal

func (m *QueryClassesByISCNIndexRequest) XXX_Unmarshal(b []byte) error

type QueryClassesByISCNIndexResponse

type QueryClassesByISCNIndexResponse struct {
	ClassesByIscns []ClassesByISCN     `protobuf:"bytes,1,rep,name=classes_by_iscns,json=classesByIscns,proto3" json:"classes_by_iscns"`
	Pagination     *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByISCNIndexResponse) Descriptor

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

func (*QueryClassesByISCNIndexResponse) GetClassesByIscns

func (m *QueryClassesByISCNIndexResponse) GetClassesByIscns() []ClassesByISCN

func (*QueryClassesByISCNIndexResponse) GetPagination

func (*QueryClassesByISCNIndexResponse) Marshal

func (m *QueryClassesByISCNIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryClassesByISCNIndexResponse) MarshalTo

func (m *QueryClassesByISCNIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByISCNIndexResponse) MarshalToSizedBuffer

func (m *QueryClassesByISCNIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByISCNIndexResponse) ProtoMessage

func (*QueryClassesByISCNIndexResponse) ProtoMessage()

func (*QueryClassesByISCNIndexResponse) Reset

func (*QueryClassesByISCNIndexResponse) Size

func (m *QueryClassesByISCNIndexResponse) Size() (n int)

func (*QueryClassesByISCNIndexResponse) String

func (*QueryClassesByISCNIndexResponse) Unmarshal

func (m *QueryClassesByISCNIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryClassesByISCNIndexResponse) XXX_DiscardUnknown

func (m *QueryClassesByISCNIndexResponse) XXX_DiscardUnknown()

func (*QueryClassesByISCNIndexResponse) XXX_Marshal

func (m *QueryClassesByISCNIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByISCNIndexResponse) XXX_Merge

func (m *QueryClassesByISCNIndexResponse) XXX_Merge(src proto.Message)

func (*QueryClassesByISCNIndexResponse) XXX_Size

func (m *QueryClassesByISCNIndexResponse) XXX_Size() int

func (*QueryClassesByISCNIndexResponse) XXX_Unmarshal

func (m *QueryClassesByISCNIndexResponse) XXX_Unmarshal(b []byte) error

type QueryClassesByISCNRequest

type QueryClassesByISCNRequest struct {
	IscnIdPrefix string             `protobuf:"bytes,1,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
	Pagination   *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByISCNRequest) Descriptor

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

func (*QueryClassesByISCNRequest) GetIscnIdPrefix

func (m *QueryClassesByISCNRequest) GetIscnIdPrefix() string

func (*QueryClassesByISCNRequest) GetPagination

func (m *QueryClassesByISCNRequest) GetPagination() *query.PageRequest

func (*QueryClassesByISCNRequest) Marshal

func (m *QueryClassesByISCNRequest) Marshal() (dAtA []byte, err error)

func (*QueryClassesByISCNRequest) MarshalTo

func (m *QueryClassesByISCNRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByISCNRequest) MarshalToSizedBuffer

func (m *QueryClassesByISCNRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByISCNRequest) ProtoMessage

func (*QueryClassesByISCNRequest) ProtoMessage()

func (*QueryClassesByISCNRequest) Reset

func (m *QueryClassesByISCNRequest) Reset()

func (*QueryClassesByISCNRequest) Size

func (m *QueryClassesByISCNRequest) Size() (n int)

func (*QueryClassesByISCNRequest) String

func (m *QueryClassesByISCNRequest) String() string

func (*QueryClassesByISCNRequest) Unmarshal

func (m *QueryClassesByISCNRequest) Unmarshal(dAtA []byte) error

func (*QueryClassesByISCNRequest) XXX_DiscardUnknown

func (m *QueryClassesByISCNRequest) XXX_DiscardUnknown()

func (*QueryClassesByISCNRequest) XXX_Marshal

func (m *QueryClassesByISCNRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByISCNRequest) XXX_Merge

func (m *QueryClassesByISCNRequest) XXX_Merge(src proto.Message)

func (*QueryClassesByISCNRequest) XXX_Size

func (m *QueryClassesByISCNRequest) XXX_Size() int

func (*QueryClassesByISCNRequest) XXX_Unmarshal

func (m *QueryClassesByISCNRequest) XXX_Unmarshal(b []byte) error

type QueryClassesByISCNResponse

type QueryClassesByISCNResponse struct {
	IscnIdPrefix string              `protobuf:"bytes,1,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
	Classes      []nft.Class         `protobuf:"bytes,2,rep,name=classes,proto3" json:"classes"`
	Pagination   *query.PageResponse `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryClassesByISCNResponse) Descriptor

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

func (*QueryClassesByISCNResponse) GetClasses

func (m *QueryClassesByISCNResponse) GetClasses() []nft.Class

func (*QueryClassesByISCNResponse) GetIscnIdPrefix

func (m *QueryClassesByISCNResponse) GetIscnIdPrefix() string

func (*QueryClassesByISCNResponse) GetPagination

func (m *QueryClassesByISCNResponse) GetPagination() *query.PageResponse

func (*QueryClassesByISCNResponse) Marshal

func (m *QueryClassesByISCNResponse) Marshal() (dAtA []byte, err error)

func (*QueryClassesByISCNResponse) MarshalTo

func (m *QueryClassesByISCNResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryClassesByISCNResponse) MarshalToSizedBuffer

func (m *QueryClassesByISCNResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryClassesByISCNResponse) ProtoMessage

func (*QueryClassesByISCNResponse) ProtoMessage()

func (*QueryClassesByISCNResponse) Reset

func (m *QueryClassesByISCNResponse) Reset()

func (*QueryClassesByISCNResponse) Size

func (m *QueryClassesByISCNResponse) Size() (n int)

func (*QueryClassesByISCNResponse) String

func (m *QueryClassesByISCNResponse) String() string

func (*QueryClassesByISCNResponse) Unmarshal

func (m *QueryClassesByISCNResponse) Unmarshal(dAtA []byte) error

func (*QueryClassesByISCNResponse) XXX_DiscardUnknown

func (m *QueryClassesByISCNResponse) XXX_DiscardUnknown()

func (*QueryClassesByISCNResponse) XXX_Marshal

func (m *QueryClassesByISCNResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryClassesByISCNResponse) XXX_Merge

func (m *QueryClassesByISCNResponse) XXX_Merge(src proto.Message)

func (*QueryClassesByISCNResponse) XXX_Size

func (m *QueryClassesByISCNResponse) XXX_Size() int

func (*QueryClassesByISCNResponse) XXX_Unmarshal

func (m *QueryClassesByISCNResponse) XXX_Unmarshal(b []byte) error

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a ClassesByISCN by index.
	ClassesByISCN(ctx context.Context, in *QueryClassesByISCNRequest, opts ...grpc.CallOption) (*QueryClassesByISCNResponse, error)
	// Queries a list of ClassesByISCN items.
	ClassesByISCNIndex(ctx context.Context, in *QueryClassesByISCNIndexRequest, opts ...grpc.CallOption) (*QueryClassesByISCNIndexResponse, error)
	// Queries a list of ISCNByClass items.
	ISCNByClass(ctx context.Context, in *QueryISCNByClassRequest, opts ...grpc.CallOption) (*QueryISCNByClassResponse, error)
	// Queries a ClassesByAccount by index.
	ClassesByAccount(ctx context.Context, in *QueryClassesByAccountRequest, opts ...grpc.CallOption) (*QueryClassesByAccountResponse, error)
	// Queries a list of ClassesByAccount items.
	ClassesByAccountIndex(ctx context.Context, in *QueryClassesByAccountIndexRequest, opts ...grpc.CallOption) (*QueryClassesByAccountIndexResponse, error)
	// Queries a list of AccountByClass items.
	AccountByClass(ctx context.Context, in *QueryAccountByClassRequest, opts ...grpc.CallOption) (*QueryAccountByClassResponse, error)
	// Queries a BlindBoxContent by index.
	BlindBoxContent(ctx context.Context, in *QueryBlindBoxContentRequest, opts ...grpc.CallOption) (*QueryBlindBoxContentResponse, error)
	// Queries a list of BlindBoxContent items.
	BlindBoxContentIndex(ctx context.Context, in *QueryBlindBoxContentIndexRequest, opts ...grpc.CallOption) (*QueryBlindBoxContentIndexResponse, error)
	// Queries a list of BlindBoxContents by class_id
	BlindBoxContents(ctx context.Context, in *QueryBlindBoxContentsRequest, opts ...grpc.CallOption) (*QueryBlindBoxContentsResponse, error)
	// Queries a Offer by index.
	Offer(ctx context.Context, in *QueryOfferRequest, opts ...grpc.CallOption) (*QueryOfferResponse, error)
	// Queries a list of Offer items.
	OfferIndex(ctx context.Context, in *QueryOfferIndexRequest, opts ...grpc.CallOption) (*QueryOfferIndexResponse, error)
	// Queries a list of OffersByClass items.
	OffersByClass(ctx context.Context, in *QueryOffersByClassRequest, opts ...grpc.CallOption) (*QueryOffersByClassResponse, error)
	// Queries a list of OffersByNFT items.
	OffersByNFT(ctx context.Context, in *QueryOffersByNFTRequest, opts ...grpc.CallOption) (*QueryOffersByNFTResponse, error)
	// Queries a Listing by index.
	Listing(ctx context.Context, in *QueryListingRequest, opts ...grpc.CallOption) (*QueryListingResponse, error)
	// Queries a list of Listing items.
	ListingIndex(ctx context.Context, in *QueryListingIndexRequest, opts ...grpc.CallOption) (*QueryListingIndexResponse, error)
	// Queries a list of Listing items by class
	ListingsByClass(ctx context.Context, in *QueryListingsByClassRequest, opts ...grpc.CallOption) (*QueryListingsByClassResponse, error)
	// Queries a list of Listing items by nft
	ListingsByNFT(ctx context.Context, in *QueryListingsByNFTRequest, opts ...grpc.CallOption) (*QueryListingsByNFTResponse, error)
	// Queries a RoyaltyConfig by class
	RoyaltyConfig(ctx context.Context, in *QueryRoyaltyConfigRequest, opts ...grpc.CallOption) (*QueryRoyaltyConfigResponse, error)
	// Queries index of RoyaltyConfig of all classes
	RoyaltyConfigIndex(ctx context.Context, in *QueryRoyaltyConfigIndexRequest, opts ...grpc.CallOption) (*QueryRoyaltyConfigIndexResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryISCNByClassRequest

type QueryISCNByClassRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*QueryISCNByClassRequest) Descriptor

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

func (*QueryISCNByClassRequest) GetClassId

func (m *QueryISCNByClassRequest) GetClassId() string

func (*QueryISCNByClassRequest) Marshal

func (m *QueryISCNByClassRequest) Marshal() (dAtA []byte, err error)

func (*QueryISCNByClassRequest) MarshalTo

func (m *QueryISCNByClassRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryISCNByClassRequest) MarshalToSizedBuffer

func (m *QueryISCNByClassRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryISCNByClassRequest) ProtoMessage

func (*QueryISCNByClassRequest) ProtoMessage()

func (*QueryISCNByClassRequest) Reset

func (m *QueryISCNByClassRequest) Reset()

func (*QueryISCNByClassRequest) Size

func (m *QueryISCNByClassRequest) Size() (n int)

func (*QueryISCNByClassRequest) String

func (m *QueryISCNByClassRequest) String() string

func (*QueryISCNByClassRequest) Unmarshal

func (m *QueryISCNByClassRequest) Unmarshal(dAtA []byte) error

func (*QueryISCNByClassRequest) XXX_DiscardUnknown

func (m *QueryISCNByClassRequest) XXX_DiscardUnknown()

func (*QueryISCNByClassRequest) XXX_Marshal

func (m *QueryISCNByClassRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryISCNByClassRequest) XXX_Merge

func (m *QueryISCNByClassRequest) XXX_Merge(src proto.Message)

func (*QueryISCNByClassRequest) XXX_Size

func (m *QueryISCNByClassRequest) XXX_Size() int

func (*QueryISCNByClassRequest) XXX_Unmarshal

func (m *QueryISCNByClassRequest) XXX_Unmarshal(b []byte) error

type QueryISCNByClassResponse

type QueryISCNByClassResponse struct {
	IscnIdPrefix  string                    `protobuf:"bytes,1,opt,name=iscn_id_prefix,json=iscnIdPrefix,proto3" json:"iscn_id_prefix,omitempty"`
	Owner         string                    `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	LatestVersion uint64                    `protobuf:"varint,3,opt,name=latest_version,json=latestVersion,proto3" json:"latest_version,omitempty"`
	LatestRecord  types.QueryResponseRecord `protobuf:"bytes,4,opt,name=latest_record,json=latestRecord,proto3" json:"latest_record"`
}

func (*QueryISCNByClassResponse) Descriptor

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

func (*QueryISCNByClassResponse) GetIscnIdPrefix

func (m *QueryISCNByClassResponse) GetIscnIdPrefix() string

func (*QueryISCNByClassResponse) GetLatestRecord

func (m *QueryISCNByClassResponse) GetLatestRecord() types.QueryResponseRecord

func (*QueryISCNByClassResponse) GetLatestVersion

func (m *QueryISCNByClassResponse) GetLatestVersion() uint64

func (*QueryISCNByClassResponse) GetOwner

func (m *QueryISCNByClassResponse) GetOwner() string

func (*QueryISCNByClassResponse) Marshal

func (m *QueryISCNByClassResponse) Marshal() (dAtA []byte, err error)

func (*QueryISCNByClassResponse) MarshalTo

func (m *QueryISCNByClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryISCNByClassResponse) MarshalToSizedBuffer

func (m *QueryISCNByClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryISCNByClassResponse) ProtoMessage

func (*QueryISCNByClassResponse) ProtoMessage()

func (*QueryISCNByClassResponse) Reset

func (m *QueryISCNByClassResponse) Reset()

func (*QueryISCNByClassResponse) Size

func (m *QueryISCNByClassResponse) Size() (n int)

func (*QueryISCNByClassResponse) String

func (m *QueryISCNByClassResponse) String() string

func (*QueryISCNByClassResponse) Unmarshal

func (m *QueryISCNByClassResponse) Unmarshal(dAtA []byte) error

func (*QueryISCNByClassResponse) XXX_DiscardUnknown

func (m *QueryISCNByClassResponse) XXX_DiscardUnknown()

func (*QueryISCNByClassResponse) XXX_Marshal

func (m *QueryISCNByClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryISCNByClassResponse) XXX_Merge

func (m *QueryISCNByClassResponse) XXX_Merge(src proto.Message)

func (*QueryISCNByClassResponse) XXX_Size

func (m *QueryISCNByClassResponse) XXX_Size() int

func (*QueryISCNByClassResponse) XXX_Unmarshal

func (m *QueryISCNByClassResponse) XXX_Unmarshal(b []byte) error

type QueryListingIndexRequest

type QueryListingIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingIndexRequest) Descriptor

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

func (*QueryListingIndexRequest) GetPagination

func (m *QueryListingIndexRequest) GetPagination() *query.PageRequest

func (*QueryListingIndexRequest) Marshal

func (m *QueryListingIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryListingIndexRequest) MarshalTo

func (m *QueryListingIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingIndexRequest) MarshalToSizedBuffer

func (m *QueryListingIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingIndexRequest) ProtoMessage

func (*QueryListingIndexRequest) ProtoMessage()

func (*QueryListingIndexRequest) Reset

func (m *QueryListingIndexRequest) Reset()

func (*QueryListingIndexRequest) Size

func (m *QueryListingIndexRequest) Size() (n int)

func (*QueryListingIndexRequest) String

func (m *QueryListingIndexRequest) String() string

func (*QueryListingIndexRequest) Unmarshal

func (m *QueryListingIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryListingIndexRequest) XXX_DiscardUnknown

func (m *QueryListingIndexRequest) XXX_DiscardUnknown()

func (*QueryListingIndexRequest) XXX_Marshal

func (m *QueryListingIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingIndexRequest) XXX_Merge

func (m *QueryListingIndexRequest) XXX_Merge(src proto.Message)

func (*QueryListingIndexRequest) XXX_Size

func (m *QueryListingIndexRequest) XXX_Size() int

func (*QueryListingIndexRequest) XXX_Unmarshal

func (m *QueryListingIndexRequest) XXX_Unmarshal(b []byte) error

type QueryListingIndexResponse

type QueryListingIndexResponse struct {
	Listings   []Listing           `protobuf:"bytes,1,rep,name=listings,proto3" json:"listings"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingIndexResponse) Descriptor

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

func (*QueryListingIndexResponse) GetListings

func (m *QueryListingIndexResponse) GetListings() []Listing

func (*QueryListingIndexResponse) GetPagination

func (m *QueryListingIndexResponse) GetPagination() *query.PageResponse

func (*QueryListingIndexResponse) Marshal

func (m *QueryListingIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryListingIndexResponse) MarshalTo

func (m *QueryListingIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingIndexResponse) MarshalToSizedBuffer

func (m *QueryListingIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingIndexResponse) ProtoMessage

func (*QueryListingIndexResponse) ProtoMessage()

func (*QueryListingIndexResponse) Reset

func (m *QueryListingIndexResponse) Reset()

func (*QueryListingIndexResponse) Size

func (m *QueryListingIndexResponse) Size() (n int)

func (*QueryListingIndexResponse) String

func (m *QueryListingIndexResponse) String() string

func (*QueryListingIndexResponse) Unmarshal

func (m *QueryListingIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryListingIndexResponse) XXX_DiscardUnknown

func (m *QueryListingIndexResponse) XXX_DiscardUnknown()

func (*QueryListingIndexResponse) XXX_Marshal

func (m *QueryListingIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingIndexResponse) XXX_Merge

func (m *QueryListingIndexResponse) XXX_Merge(src proto.Message)

func (*QueryListingIndexResponse) XXX_Size

func (m *QueryListingIndexResponse) XXX_Size() int

func (*QueryListingIndexResponse) XXX_Unmarshal

func (m *QueryListingIndexResponse) XXX_Unmarshal(b []byte) error

type QueryListingRequest

type QueryListingRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Seller  string `protobuf:"bytes,3,opt,name=seller,proto3" json:"seller,omitempty"`
}

func (*QueryListingRequest) Descriptor

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

func (*QueryListingRequest) GetClassId

func (m *QueryListingRequest) GetClassId() string

func (*QueryListingRequest) GetNftId

func (m *QueryListingRequest) GetNftId() string

func (*QueryListingRequest) GetSeller

func (m *QueryListingRequest) GetSeller() string

func (*QueryListingRequest) Marshal

func (m *QueryListingRequest) Marshal() (dAtA []byte, err error)

func (*QueryListingRequest) MarshalTo

func (m *QueryListingRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingRequest) MarshalToSizedBuffer

func (m *QueryListingRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingRequest) ProtoMessage

func (*QueryListingRequest) ProtoMessage()

func (*QueryListingRequest) Reset

func (m *QueryListingRequest) Reset()

func (*QueryListingRequest) Size

func (m *QueryListingRequest) Size() (n int)

func (*QueryListingRequest) String

func (m *QueryListingRequest) String() string

func (*QueryListingRequest) Unmarshal

func (m *QueryListingRequest) Unmarshal(dAtA []byte) error

func (*QueryListingRequest) XXX_DiscardUnknown

func (m *QueryListingRequest) XXX_DiscardUnknown()

func (*QueryListingRequest) XXX_Marshal

func (m *QueryListingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingRequest) XXX_Merge

func (m *QueryListingRequest) XXX_Merge(src proto.Message)

func (*QueryListingRequest) XXX_Size

func (m *QueryListingRequest) XXX_Size() int

func (*QueryListingRequest) XXX_Unmarshal

func (m *QueryListingRequest) XXX_Unmarshal(b []byte) error

type QueryListingResponse

type QueryListingResponse struct {
	Listing Listing `protobuf:"bytes,1,opt,name=listing,proto3" json:"listing"`
}

func (*QueryListingResponse) Descriptor

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

func (*QueryListingResponse) GetListing

func (m *QueryListingResponse) GetListing() Listing

func (*QueryListingResponse) Marshal

func (m *QueryListingResponse) Marshal() (dAtA []byte, err error)

func (*QueryListingResponse) MarshalTo

func (m *QueryListingResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingResponse) MarshalToSizedBuffer

func (m *QueryListingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingResponse) ProtoMessage

func (*QueryListingResponse) ProtoMessage()

func (*QueryListingResponse) Reset

func (m *QueryListingResponse) Reset()

func (*QueryListingResponse) Size

func (m *QueryListingResponse) Size() (n int)

func (*QueryListingResponse) String

func (m *QueryListingResponse) String() string

func (*QueryListingResponse) Unmarshal

func (m *QueryListingResponse) Unmarshal(dAtA []byte) error

func (*QueryListingResponse) XXX_DiscardUnknown

func (m *QueryListingResponse) XXX_DiscardUnknown()

func (*QueryListingResponse) XXX_Marshal

func (m *QueryListingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingResponse) XXX_Merge

func (m *QueryListingResponse) XXX_Merge(src proto.Message)

func (*QueryListingResponse) XXX_Size

func (m *QueryListingResponse) XXX_Size() int

func (*QueryListingResponse) XXX_Unmarshal

func (m *QueryListingResponse) XXX_Unmarshal(b []byte) error

type QueryListingsByClassRequest

type QueryListingsByClassRequest struct {
	ClassId    string             `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingsByClassRequest) Descriptor

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

func (*QueryListingsByClassRequest) GetClassId

func (m *QueryListingsByClassRequest) GetClassId() string

func (*QueryListingsByClassRequest) GetPagination

func (m *QueryListingsByClassRequest) GetPagination() *query.PageRequest

func (*QueryListingsByClassRequest) Marshal

func (m *QueryListingsByClassRequest) Marshal() (dAtA []byte, err error)

func (*QueryListingsByClassRequest) MarshalTo

func (m *QueryListingsByClassRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingsByClassRequest) MarshalToSizedBuffer

func (m *QueryListingsByClassRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingsByClassRequest) ProtoMessage

func (*QueryListingsByClassRequest) ProtoMessage()

func (*QueryListingsByClassRequest) Reset

func (m *QueryListingsByClassRequest) Reset()

func (*QueryListingsByClassRequest) Size

func (m *QueryListingsByClassRequest) Size() (n int)

func (*QueryListingsByClassRequest) String

func (m *QueryListingsByClassRequest) String() string

func (*QueryListingsByClassRequest) Unmarshal

func (m *QueryListingsByClassRequest) Unmarshal(dAtA []byte) error

func (*QueryListingsByClassRequest) XXX_DiscardUnknown

func (m *QueryListingsByClassRequest) XXX_DiscardUnknown()

func (*QueryListingsByClassRequest) XXX_Marshal

func (m *QueryListingsByClassRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingsByClassRequest) XXX_Merge

func (m *QueryListingsByClassRequest) XXX_Merge(src proto.Message)

func (*QueryListingsByClassRequest) XXX_Size

func (m *QueryListingsByClassRequest) XXX_Size() int

func (*QueryListingsByClassRequest) XXX_Unmarshal

func (m *QueryListingsByClassRequest) XXX_Unmarshal(b []byte) error

type QueryListingsByClassResponse

type QueryListingsByClassResponse struct {
	Listings   []Listing           `protobuf:"bytes,1,rep,name=listings,proto3" json:"listings"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingsByClassResponse) Descriptor

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

func (*QueryListingsByClassResponse) GetListings

func (m *QueryListingsByClassResponse) GetListings() []Listing

func (*QueryListingsByClassResponse) GetPagination

func (m *QueryListingsByClassResponse) GetPagination() *query.PageResponse

func (*QueryListingsByClassResponse) Marshal

func (m *QueryListingsByClassResponse) Marshal() (dAtA []byte, err error)

func (*QueryListingsByClassResponse) MarshalTo

func (m *QueryListingsByClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingsByClassResponse) MarshalToSizedBuffer

func (m *QueryListingsByClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingsByClassResponse) ProtoMessage

func (*QueryListingsByClassResponse) ProtoMessage()

func (*QueryListingsByClassResponse) Reset

func (m *QueryListingsByClassResponse) Reset()

func (*QueryListingsByClassResponse) Size

func (m *QueryListingsByClassResponse) Size() (n int)

func (*QueryListingsByClassResponse) String

func (*QueryListingsByClassResponse) Unmarshal

func (m *QueryListingsByClassResponse) Unmarshal(dAtA []byte) error

func (*QueryListingsByClassResponse) XXX_DiscardUnknown

func (m *QueryListingsByClassResponse) XXX_DiscardUnknown()

func (*QueryListingsByClassResponse) XXX_Marshal

func (m *QueryListingsByClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingsByClassResponse) XXX_Merge

func (m *QueryListingsByClassResponse) XXX_Merge(src proto.Message)

func (*QueryListingsByClassResponse) XXX_Size

func (m *QueryListingsByClassResponse) XXX_Size() int

func (*QueryListingsByClassResponse) XXX_Unmarshal

func (m *QueryListingsByClassResponse) XXX_Unmarshal(b []byte) error

type QueryListingsByNFTRequest

type QueryListingsByNFTRequest struct {
	ClassId    string             `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string             `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingsByNFTRequest) Descriptor

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

func (*QueryListingsByNFTRequest) GetClassId

func (m *QueryListingsByNFTRequest) GetClassId() string

func (*QueryListingsByNFTRequest) GetNftId

func (m *QueryListingsByNFTRequest) GetNftId() string

func (*QueryListingsByNFTRequest) GetPagination

func (m *QueryListingsByNFTRequest) GetPagination() *query.PageRequest

func (*QueryListingsByNFTRequest) Marshal

func (m *QueryListingsByNFTRequest) Marshal() (dAtA []byte, err error)

func (*QueryListingsByNFTRequest) MarshalTo

func (m *QueryListingsByNFTRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingsByNFTRequest) MarshalToSizedBuffer

func (m *QueryListingsByNFTRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingsByNFTRequest) ProtoMessage

func (*QueryListingsByNFTRequest) ProtoMessage()

func (*QueryListingsByNFTRequest) Reset

func (m *QueryListingsByNFTRequest) Reset()

func (*QueryListingsByNFTRequest) Size

func (m *QueryListingsByNFTRequest) Size() (n int)

func (*QueryListingsByNFTRequest) String

func (m *QueryListingsByNFTRequest) String() string

func (*QueryListingsByNFTRequest) Unmarshal

func (m *QueryListingsByNFTRequest) Unmarshal(dAtA []byte) error

func (*QueryListingsByNFTRequest) XXX_DiscardUnknown

func (m *QueryListingsByNFTRequest) XXX_DiscardUnknown()

func (*QueryListingsByNFTRequest) XXX_Marshal

func (m *QueryListingsByNFTRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingsByNFTRequest) XXX_Merge

func (m *QueryListingsByNFTRequest) XXX_Merge(src proto.Message)

func (*QueryListingsByNFTRequest) XXX_Size

func (m *QueryListingsByNFTRequest) XXX_Size() int

func (*QueryListingsByNFTRequest) XXX_Unmarshal

func (m *QueryListingsByNFTRequest) XXX_Unmarshal(b []byte) error

type QueryListingsByNFTResponse

type QueryListingsByNFTResponse struct {
	Listings   []Listing           `protobuf:"bytes,1,rep,name=listings,proto3" json:"listings"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListingsByNFTResponse) Descriptor

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

func (*QueryListingsByNFTResponse) GetListings

func (m *QueryListingsByNFTResponse) GetListings() []Listing

func (*QueryListingsByNFTResponse) GetPagination

func (m *QueryListingsByNFTResponse) GetPagination() *query.PageResponse

func (*QueryListingsByNFTResponse) Marshal

func (m *QueryListingsByNFTResponse) Marshal() (dAtA []byte, err error)

func (*QueryListingsByNFTResponse) MarshalTo

func (m *QueryListingsByNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListingsByNFTResponse) MarshalToSizedBuffer

func (m *QueryListingsByNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListingsByNFTResponse) ProtoMessage

func (*QueryListingsByNFTResponse) ProtoMessage()

func (*QueryListingsByNFTResponse) Reset

func (m *QueryListingsByNFTResponse) Reset()

func (*QueryListingsByNFTResponse) Size

func (m *QueryListingsByNFTResponse) Size() (n int)

func (*QueryListingsByNFTResponse) String

func (m *QueryListingsByNFTResponse) String() string

func (*QueryListingsByNFTResponse) Unmarshal

func (m *QueryListingsByNFTResponse) Unmarshal(dAtA []byte) error

func (*QueryListingsByNFTResponse) XXX_DiscardUnknown

func (m *QueryListingsByNFTResponse) XXX_DiscardUnknown()

func (*QueryListingsByNFTResponse) XXX_Marshal

func (m *QueryListingsByNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListingsByNFTResponse) XXX_Merge

func (m *QueryListingsByNFTResponse) XXX_Merge(src proto.Message)

func (*QueryListingsByNFTResponse) XXX_Size

func (m *QueryListingsByNFTResponse) XXX_Size() int

func (*QueryListingsByNFTResponse) XXX_Unmarshal

func (m *QueryListingsByNFTResponse) XXX_Unmarshal(b []byte) error

type QueryOfferIndexRequest

type QueryOfferIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOfferIndexRequest) Descriptor

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

func (*QueryOfferIndexRequest) GetPagination

func (m *QueryOfferIndexRequest) GetPagination() *query.PageRequest

func (*QueryOfferIndexRequest) Marshal

func (m *QueryOfferIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryOfferIndexRequest) MarshalTo

func (m *QueryOfferIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryOfferIndexRequest) MarshalToSizedBuffer

func (m *QueryOfferIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOfferIndexRequest) ProtoMessage

func (*QueryOfferIndexRequest) ProtoMessage()

func (*QueryOfferIndexRequest) Reset

func (m *QueryOfferIndexRequest) Reset()

func (*QueryOfferIndexRequest) Size

func (m *QueryOfferIndexRequest) Size() (n int)

func (*QueryOfferIndexRequest) String

func (m *QueryOfferIndexRequest) String() string

func (*QueryOfferIndexRequest) Unmarshal

func (m *QueryOfferIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryOfferIndexRequest) XXX_DiscardUnknown

func (m *QueryOfferIndexRequest) XXX_DiscardUnknown()

func (*QueryOfferIndexRequest) XXX_Marshal

func (m *QueryOfferIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOfferIndexRequest) XXX_Merge

func (m *QueryOfferIndexRequest) XXX_Merge(src proto.Message)

func (*QueryOfferIndexRequest) XXX_Size

func (m *QueryOfferIndexRequest) XXX_Size() int

func (*QueryOfferIndexRequest) XXX_Unmarshal

func (m *QueryOfferIndexRequest) XXX_Unmarshal(b []byte) error

type QueryOfferIndexResponse

type QueryOfferIndexResponse struct {
	Offers     []Offer             `protobuf:"bytes,1,rep,name=offers,proto3" json:"offers"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOfferIndexResponse) Descriptor

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

func (*QueryOfferIndexResponse) GetOffers

func (m *QueryOfferIndexResponse) GetOffers() []Offer

func (*QueryOfferIndexResponse) GetPagination

func (m *QueryOfferIndexResponse) GetPagination() *query.PageResponse

func (*QueryOfferIndexResponse) Marshal

func (m *QueryOfferIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryOfferIndexResponse) MarshalTo

func (m *QueryOfferIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOfferIndexResponse) MarshalToSizedBuffer

func (m *QueryOfferIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOfferIndexResponse) ProtoMessage

func (*QueryOfferIndexResponse) ProtoMessage()

func (*QueryOfferIndexResponse) Reset

func (m *QueryOfferIndexResponse) Reset()

func (*QueryOfferIndexResponse) Size

func (m *QueryOfferIndexResponse) Size() (n int)

func (*QueryOfferIndexResponse) String

func (m *QueryOfferIndexResponse) String() string

func (*QueryOfferIndexResponse) Unmarshal

func (m *QueryOfferIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryOfferIndexResponse) XXX_DiscardUnknown

func (m *QueryOfferIndexResponse) XXX_DiscardUnknown()

func (*QueryOfferIndexResponse) XXX_Marshal

func (m *QueryOfferIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOfferIndexResponse) XXX_Merge

func (m *QueryOfferIndexResponse) XXX_Merge(src proto.Message)

func (*QueryOfferIndexResponse) XXX_Size

func (m *QueryOfferIndexResponse) XXX_Size() int

func (*QueryOfferIndexResponse) XXX_Unmarshal

func (m *QueryOfferIndexResponse) XXX_Unmarshal(b []byte) error

type QueryOfferRequest

type QueryOfferRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId   string `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Buyer   string `protobuf:"bytes,3,opt,name=buyer,proto3" json:"buyer,omitempty"`
}

func (*QueryOfferRequest) Descriptor

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

func (*QueryOfferRequest) GetBuyer

func (m *QueryOfferRequest) GetBuyer() string

func (*QueryOfferRequest) GetClassId

func (m *QueryOfferRequest) GetClassId() string

func (*QueryOfferRequest) GetNftId

func (m *QueryOfferRequest) GetNftId() string

func (*QueryOfferRequest) Marshal

func (m *QueryOfferRequest) Marshal() (dAtA []byte, err error)

func (*QueryOfferRequest) MarshalTo

func (m *QueryOfferRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryOfferRequest) MarshalToSizedBuffer

func (m *QueryOfferRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOfferRequest) ProtoMessage

func (*QueryOfferRequest) ProtoMessage()

func (*QueryOfferRequest) Reset

func (m *QueryOfferRequest) Reset()

func (*QueryOfferRequest) Size

func (m *QueryOfferRequest) Size() (n int)

func (*QueryOfferRequest) String

func (m *QueryOfferRequest) String() string

func (*QueryOfferRequest) Unmarshal

func (m *QueryOfferRequest) Unmarshal(dAtA []byte) error

func (*QueryOfferRequest) XXX_DiscardUnknown

func (m *QueryOfferRequest) XXX_DiscardUnknown()

func (*QueryOfferRequest) XXX_Marshal

func (m *QueryOfferRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOfferRequest) XXX_Merge

func (m *QueryOfferRequest) XXX_Merge(src proto.Message)

func (*QueryOfferRequest) XXX_Size

func (m *QueryOfferRequest) XXX_Size() int

func (*QueryOfferRequest) XXX_Unmarshal

func (m *QueryOfferRequest) XXX_Unmarshal(b []byte) error

type QueryOfferResponse

type QueryOfferResponse struct {
	Offer Offer `protobuf:"bytes,1,opt,name=offer,proto3" json:"offer"`
}

func (*QueryOfferResponse) Descriptor

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

func (*QueryOfferResponse) GetOffer

func (m *QueryOfferResponse) GetOffer() Offer

func (*QueryOfferResponse) Marshal

func (m *QueryOfferResponse) Marshal() (dAtA []byte, err error)

func (*QueryOfferResponse) MarshalTo

func (m *QueryOfferResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOfferResponse) MarshalToSizedBuffer

func (m *QueryOfferResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOfferResponse) ProtoMessage

func (*QueryOfferResponse) ProtoMessage()

func (*QueryOfferResponse) Reset

func (m *QueryOfferResponse) Reset()

func (*QueryOfferResponse) Size

func (m *QueryOfferResponse) Size() (n int)

func (*QueryOfferResponse) String

func (m *QueryOfferResponse) String() string

func (*QueryOfferResponse) Unmarshal

func (m *QueryOfferResponse) Unmarshal(dAtA []byte) error

func (*QueryOfferResponse) XXX_DiscardUnknown

func (m *QueryOfferResponse) XXX_DiscardUnknown()

func (*QueryOfferResponse) XXX_Marshal

func (m *QueryOfferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOfferResponse) XXX_Merge

func (m *QueryOfferResponse) XXX_Merge(src proto.Message)

func (*QueryOfferResponse) XXX_Size

func (m *QueryOfferResponse) XXX_Size() int

func (*QueryOfferResponse) XXX_Unmarshal

func (m *QueryOfferResponse) XXX_Unmarshal(b []byte) error

type QueryOffersByClassRequest

type QueryOffersByClassRequest struct {
	ClassId    string             `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOffersByClassRequest) Descriptor

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

func (*QueryOffersByClassRequest) GetClassId

func (m *QueryOffersByClassRequest) GetClassId() string

func (*QueryOffersByClassRequest) GetPagination

func (m *QueryOffersByClassRequest) GetPagination() *query.PageRequest

func (*QueryOffersByClassRequest) Marshal

func (m *QueryOffersByClassRequest) Marshal() (dAtA []byte, err error)

func (*QueryOffersByClassRequest) MarshalTo

func (m *QueryOffersByClassRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryOffersByClassRequest) MarshalToSizedBuffer

func (m *QueryOffersByClassRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOffersByClassRequest) ProtoMessage

func (*QueryOffersByClassRequest) ProtoMessage()

func (*QueryOffersByClassRequest) Reset

func (m *QueryOffersByClassRequest) Reset()

func (*QueryOffersByClassRequest) Size

func (m *QueryOffersByClassRequest) Size() (n int)

func (*QueryOffersByClassRequest) String

func (m *QueryOffersByClassRequest) String() string

func (*QueryOffersByClassRequest) Unmarshal

func (m *QueryOffersByClassRequest) Unmarshal(dAtA []byte) error

func (*QueryOffersByClassRequest) XXX_DiscardUnknown

func (m *QueryOffersByClassRequest) XXX_DiscardUnknown()

func (*QueryOffersByClassRequest) XXX_Marshal

func (m *QueryOffersByClassRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOffersByClassRequest) XXX_Merge

func (m *QueryOffersByClassRequest) XXX_Merge(src proto.Message)

func (*QueryOffersByClassRequest) XXX_Size

func (m *QueryOffersByClassRequest) XXX_Size() int

func (*QueryOffersByClassRequest) XXX_Unmarshal

func (m *QueryOffersByClassRequest) XXX_Unmarshal(b []byte) error

type QueryOffersByClassResponse

type QueryOffersByClassResponse struct {
	Offers     []Offer             `protobuf:"bytes,1,rep,name=offers,proto3" json:"offers"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOffersByClassResponse) Descriptor

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

func (*QueryOffersByClassResponse) GetOffers

func (m *QueryOffersByClassResponse) GetOffers() []Offer

func (*QueryOffersByClassResponse) GetPagination

func (m *QueryOffersByClassResponse) GetPagination() *query.PageResponse

func (*QueryOffersByClassResponse) Marshal

func (m *QueryOffersByClassResponse) Marshal() (dAtA []byte, err error)

func (*QueryOffersByClassResponse) MarshalTo

func (m *QueryOffersByClassResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOffersByClassResponse) MarshalToSizedBuffer

func (m *QueryOffersByClassResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOffersByClassResponse) ProtoMessage

func (*QueryOffersByClassResponse) ProtoMessage()

func (*QueryOffersByClassResponse) Reset

func (m *QueryOffersByClassResponse) Reset()

func (*QueryOffersByClassResponse) Size

func (m *QueryOffersByClassResponse) Size() (n int)

func (*QueryOffersByClassResponse) String

func (m *QueryOffersByClassResponse) String() string

func (*QueryOffersByClassResponse) Unmarshal

func (m *QueryOffersByClassResponse) Unmarshal(dAtA []byte) error

func (*QueryOffersByClassResponse) XXX_DiscardUnknown

func (m *QueryOffersByClassResponse) XXX_DiscardUnknown()

func (*QueryOffersByClassResponse) XXX_Marshal

func (m *QueryOffersByClassResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOffersByClassResponse) XXX_Merge

func (m *QueryOffersByClassResponse) XXX_Merge(src proto.Message)

func (*QueryOffersByClassResponse) XXX_Size

func (m *QueryOffersByClassResponse) XXX_Size() int

func (*QueryOffersByClassResponse) XXX_Unmarshal

func (m *QueryOffersByClassResponse) XXX_Unmarshal(b []byte) error

type QueryOffersByNFTRequest

type QueryOffersByNFTRequest struct {
	ClassId    string             `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	NftId      string             `protobuf:"bytes,2,opt,name=nft_id,json=nftId,proto3" json:"nft_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOffersByNFTRequest) Descriptor

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

func (*QueryOffersByNFTRequest) GetClassId

func (m *QueryOffersByNFTRequest) GetClassId() string

func (*QueryOffersByNFTRequest) GetNftId

func (m *QueryOffersByNFTRequest) GetNftId() string

func (*QueryOffersByNFTRequest) GetPagination

func (m *QueryOffersByNFTRequest) GetPagination() *query.PageRequest

func (*QueryOffersByNFTRequest) Marshal

func (m *QueryOffersByNFTRequest) Marshal() (dAtA []byte, err error)

func (*QueryOffersByNFTRequest) MarshalTo

func (m *QueryOffersByNFTRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryOffersByNFTRequest) MarshalToSizedBuffer

func (m *QueryOffersByNFTRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOffersByNFTRequest) ProtoMessage

func (*QueryOffersByNFTRequest) ProtoMessage()

func (*QueryOffersByNFTRequest) Reset

func (m *QueryOffersByNFTRequest) Reset()

func (*QueryOffersByNFTRequest) Size

func (m *QueryOffersByNFTRequest) Size() (n int)

func (*QueryOffersByNFTRequest) String

func (m *QueryOffersByNFTRequest) String() string

func (*QueryOffersByNFTRequest) Unmarshal

func (m *QueryOffersByNFTRequest) Unmarshal(dAtA []byte) error

func (*QueryOffersByNFTRequest) XXX_DiscardUnknown

func (m *QueryOffersByNFTRequest) XXX_DiscardUnknown()

func (*QueryOffersByNFTRequest) XXX_Marshal

func (m *QueryOffersByNFTRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOffersByNFTRequest) XXX_Merge

func (m *QueryOffersByNFTRequest) XXX_Merge(src proto.Message)

func (*QueryOffersByNFTRequest) XXX_Size

func (m *QueryOffersByNFTRequest) XXX_Size() int

func (*QueryOffersByNFTRequest) XXX_Unmarshal

func (m *QueryOffersByNFTRequest) XXX_Unmarshal(b []byte) error

type QueryOffersByNFTResponse

type QueryOffersByNFTResponse struct {
	Offers     []Offer             `protobuf:"bytes,1,rep,name=offers,proto3" json:"offers"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryOffersByNFTResponse) Descriptor

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

func (*QueryOffersByNFTResponse) GetOffers

func (m *QueryOffersByNFTResponse) GetOffers() []Offer

func (*QueryOffersByNFTResponse) GetPagination

func (m *QueryOffersByNFTResponse) GetPagination() *query.PageResponse

func (*QueryOffersByNFTResponse) Marshal

func (m *QueryOffersByNFTResponse) Marshal() (dAtA []byte, err error)

func (*QueryOffersByNFTResponse) MarshalTo

func (m *QueryOffersByNFTResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOffersByNFTResponse) MarshalToSizedBuffer

func (m *QueryOffersByNFTResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOffersByNFTResponse) ProtoMessage

func (*QueryOffersByNFTResponse) ProtoMessage()

func (*QueryOffersByNFTResponse) Reset

func (m *QueryOffersByNFTResponse) Reset()

func (*QueryOffersByNFTResponse) Size

func (m *QueryOffersByNFTResponse) Size() (n int)

func (*QueryOffersByNFTResponse) String

func (m *QueryOffersByNFTResponse) String() string

func (*QueryOffersByNFTResponse) Unmarshal

func (m *QueryOffersByNFTResponse) Unmarshal(dAtA []byte) error

func (*QueryOffersByNFTResponse) XXX_DiscardUnknown

func (m *QueryOffersByNFTResponse) XXX_DiscardUnknown()

func (*QueryOffersByNFTResponse) XXX_Marshal

func (m *QueryOffersByNFTResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOffersByNFTResponse) XXX_Merge

func (m *QueryOffersByNFTResponse) XXX_Merge(src proto.Message)

func (*QueryOffersByNFTResponse) XXX_Size

func (m *QueryOffersByNFTResponse) XXX_Size() int

func (*QueryOffersByNFTResponse) XXX_Unmarshal

func (m *QueryOffersByNFTResponse) XXX_Unmarshal(b []byte) error

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error)

func (*QueryParamsRequest) MarshalTo

func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsRequest) MarshalToSizedBuffer

func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

func (m *QueryParamsRequest) Size() (n int)

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryParamsRequest) XXX_Merge

func (m *QueryParamsRequest) XXX_Merge(src proto.Message)

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error)

func (*QueryParamsResponse) MarshalTo

func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryParamsResponse) MarshalToSizedBuffer

func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

func (m *QueryParamsResponse) Size() (n int)

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryParamsResponse) XXX_Merge

func (m *QueryParamsResponse) XXX_Merge(src proto.Message)

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error

type QueryRoyaltyConfigIndexRequest

type QueryRoyaltyConfigIndexRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryRoyaltyConfigIndexRequest) Descriptor

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

func (*QueryRoyaltyConfigIndexRequest) GetPagination

func (m *QueryRoyaltyConfigIndexRequest) GetPagination() *query.PageRequest

func (*QueryRoyaltyConfigIndexRequest) Marshal

func (m *QueryRoyaltyConfigIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryRoyaltyConfigIndexRequest) MarshalTo

func (m *QueryRoyaltyConfigIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigIndexRequest) MarshalToSizedBuffer

func (m *QueryRoyaltyConfigIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigIndexRequest) ProtoMessage

func (*QueryRoyaltyConfigIndexRequest) ProtoMessage()

func (*QueryRoyaltyConfigIndexRequest) Reset

func (m *QueryRoyaltyConfigIndexRequest) Reset()

func (*QueryRoyaltyConfigIndexRequest) Size

func (m *QueryRoyaltyConfigIndexRequest) Size() (n int)

func (*QueryRoyaltyConfigIndexRequest) String

func (*QueryRoyaltyConfigIndexRequest) Unmarshal

func (m *QueryRoyaltyConfigIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryRoyaltyConfigIndexRequest) XXX_DiscardUnknown

func (m *QueryRoyaltyConfigIndexRequest) XXX_DiscardUnknown()

func (*QueryRoyaltyConfigIndexRequest) XXX_Marshal

func (m *QueryRoyaltyConfigIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRoyaltyConfigIndexRequest) XXX_Merge

func (m *QueryRoyaltyConfigIndexRequest) XXX_Merge(src proto.Message)

func (*QueryRoyaltyConfigIndexRequest) XXX_Size

func (m *QueryRoyaltyConfigIndexRequest) XXX_Size() int

func (*QueryRoyaltyConfigIndexRequest) XXX_Unmarshal

func (m *QueryRoyaltyConfigIndexRequest) XXX_Unmarshal(b []byte) error

type QueryRoyaltyConfigIndexResponse

type QueryRoyaltyConfigIndexResponse struct {
	RoyaltyConfigByClass []RoyaltyConfigByClass `protobuf:"bytes,1,rep,name=royalty_config_by_class,json=royaltyConfigByClass,proto3" json:"royalty_config_by_class"`
	Pagination           *query.PageResponse    `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryRoyaltyConfigIndexResponse) Descriptor

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

func (*QueryRoyaltyConfigIndexResponse) GetPagination

func (*QueryRoyaltyConfigIndexResponse) GetRoyaltyConfigByClass

func (m *QueryRoyaltyConfigIndexResponse) GetRoyaltyConfigByClass() []RoyaltyConfigByClass

func (*QueryRoyaltyConfigIndexResponse) Marshal

func (m *QueryRoyaltyConfigIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryRoyaltyConfigIndexResponse) MarshalTo

func (m *QueryRoyaltyConfigIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigIndexResponse) MarshalToSizedBuffer

func (m *QueryRoyaltyConfigIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigIndexResponse) ProtoMessage

func (*QueryRoyaltyConfigIndexResponse) ProtoMessage()

func (*QueryRoyaltyConfigIndexResponse) Reset

func (*QueryRoyaltyConfigIndexResponse) Size

func (m *QueryRoyaltyConfigIndexResponse) Size() (n int)

func (*QueryRoyaltyConfigIndexResponse) String

func (*QueryRoyaltyConfigIndexResponse) Unmarshal

func (m *QueryRoyaltyConfigIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryRoyaltyConfigIndexResponse) XXX_DiscardUnknown

func (m *QueryRoyaltyConfigIndexResponse) XXX_DiscardUnknown()

func (*QueryRoyaltyConfigIndexResponse) XXX_Marshal

func (m *QueryRoyaltyConfigIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRoyaltyConfigIndexResponse) XXX_Merge

func (m *QueryRoyaltyConfigIndexResponse) XXX_Merge(src proto.Message)

func (*QueryRoyaltyConfigIndexResponse) XXX_Size

func (m *QueryRoyaltyConfigIndexResponse) XXX_Size() int

func (*QueryRoyaltyConfigIndexResponse) XXX_Unmarshal

func (m *QueryRoyaltyConfigIndexResponse) XXX_Unmarshal(b []byte) error

type QueryRoyaltyConfigRequest

type QueryRoyaltyConfigRequest struct {
	ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
}

func (*QueryRoyaltyConfigRequest) Descriptor

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

func (*QueryRoyaltyConfigRequest) GetClassId

func (m *QueryRoyaltyConfigRequest) GetClassId() string

func (*QueryRoyaltyConfigRequest) Marshal

func (m *QueryRoyaltyConfigRequest) Marshal() (dAtA []byte, err error)

func (*QueryRoyaltyConfigRequest) MarshalTo

func (m *QueryRoyaltyConfigRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigRequest) MarshalToSizedBuffer

func (m *QueryRoyaltyConfigRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigRequest) ProtoMessage

func (*QueryRoyaltyConfigRequest) ProtoMessage()

func (*QueryRoyaltyConfigRequest) Reset

func (m *QueryRoyaltyConfigRequest) Reset()

func (*QueryRoyaltyConfigRequest) Size

func (m *QueryRoyaltyConfigRequest) Size() (n int)

func (*QueryRoyaltyConfigRequest) String

func (m *QueryRoyaltyConfigRequest) String() string

func (*QueryRoyaltyConfigRequest) Unmarshal

func (m *QueryRoyaltyConfigRequest) Unmarshal(dAtA []byte) error

func (*QueryRoyaltyConfigRequest) XXX_DiscardUnknown

func (m *QueryRoyaltyConfigRequest) XXX_DiscardUnknown()

func (*QueryRoyaltyConfigRequest) XXX_Marshal

func (m *QueryRoyaltyConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRoyaltyConfigRequest) XXX_Merge

func (m *QueryRoyaltyConfigRequest) XXX_Merge(src proto.Message)

func (*QueryRoyaltyConfigRequest) XXX_Size

func (m *QueryRoyaltyConfigRequest) XXX_Size() int

func (*QueryRoyaltyConfigRequest) XXX_Unmarshal

func (m *QueryRoyaltyConfigRequest) XXX_Unmarshal(b []byte) error

type QueryRoyaltyConfigResponse

type QueryRoyaltyConfigResponse struct {
	RoyaltyConfig RoyaltyConfig `protobuf:"bytes,1,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func (*QueryRoyaltyConfigResponse) Descriptor

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

func (*QueryRoyaltyConfigResponse) GetRoyaltyConfig

func (m *QueryRoyaltyConfigResponse) GetRoyaltyConfig() RoyaltyConfig

func (*QueryRoyaltyConfigResponse) Marshal

func (m *QueryRoyaltyConfigResponse) Marshal() (dAtA []byte, err error)

func (*QueryRoyaltyConfigResponse) MarshalTo

func (m *QueryRoyaltyConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigResponse) MarshalToSizedBuffer

func (m *QueryRoyaltyConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRoyaltyConfigResponse) ProtoMessage

func (*QueryRoyaltyConfigResponse) ProtoMessage()

func (*QueryRoyaltyConfigResponse) Reset

func (m *QueryRoyaltyConfigResponse) Reset()

func (*QueryRoyaltyConfigResponse) Size

func (m *QueryRoyaltyConfigResponse) Size() (n int)

func (*QueryRoyaltyConfigResponse) String

func (m *QueryRoyaltyConfigResponse) String() string

func (*QueryRoyaltyConfigResponse) Unmarshal

func (m *QueryRoyaltyConfigResponse) Unmarshal(dAtA []byte) error

func (*QueryRoyaltyConfigResponse) XXX_DiscardUnknown

func (m *QueryRoyaltyConfigResponse) XXX_DiscardUnknown()

func (*QueryRoyaltyConfigResponse) XXX_Marshal

func (m *QueryRoyaltyConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRoyaltyConfigResponse) XXX_Merge

func (m *QueryRoyaltyConfigResponse) XXX_Merge(src proto.Message)

func (*QueryRoyaltyConfigResponse) XXX_Size

func (m *QueryRoyaltyConfigResponse) XXX_Size() int

func (*QueryRoyaltyConfigResponse) XXX_Unmarshal

func (m *QueryRoyaltyConfigResponse) XXX_Unmarshal(b []byte) error

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a ClassesByISCN by index.
	ClassesByISCN(context.Context, *QueryClassesByISCNRequest) (*QueryClassesByISCNResponse, error)
	// Queries a list of ClassesByISCN items.
	ClassesByISCNIndex(context.Context, *QueryClassesByISCNIndexRequest) (*QueryClassesByISCNIndexResponse, error)
	// Queries a list of ISCNByClass items.
	ISCNByClass(context.Context, *QueryISCNByClassRequest) (*QueryISCNByClassResponse, error)
	// Queries a ClassesByAccount by index.
	ClassesByAccount(context.Context, *QueryClassesByAccountRequest) (*QueryClassesByAccountResponse, error)
	// Queries a list of ClassesByAccount items.
	ClassesByAccountIndex(context.Context, *QueryClassesByAccountIndexRequest) (*QueryClassesByAccountIndexResponse, error)
	// Queries a list of AccountByClass items.
	AccountByClass(context.Context, *QueryAccountByClassRequest) (*QueryAccountByClassResponse, error)
	// Queries a BlindBoxContent by index.
	BlindBoxContent(context.Context, *QueryBlindBoxContentRequest) (*QueryBlindBoxContentResponse, error)
	// Queries a list of BlindBoxContent items.
	BlindBoxContentIndex(context.Context, *QueryBlindBoxContentIndexRequest) (*QueryBlindBoxContentIndexResponse, error)
	// Queries a list of BlindBoxContents by class_id
	BlindBoxContents(context.Context, *QueryBlindBoxContentsRequest) (*QueryBlindBoxContentsResponse, error)
	// Queries a Offer by index.
	Offer(context.Context, *QueryOfferRequest) (*QueryOfferResponse, error)
	// Queries a list of Offer items.
	OfferIndex(context.Context, *QueryOfferIndexRequest) (*QueryOfferIndexResponse, error)
	// Queries a list of OffersByClass items.
	OffersByClass(context.Context, *QueryOffersByClassRequest) (*QueryOffersByClassResponse, error)
	// Queries a list of OffersByNFT items.
	OffersByNFT(context.Context, *QueryOffersByNFTRequest) (*QueryOffersByNFTResponse, error)
	// Queries a Listing by index.
	Listing(context.Context, *QueryListingRequest) (*QueryListingResponse, error)
	// Queries a list of Listing items.
	ListingIndex(context.Context, *QueryListingIndexRequest) (*QueryListingIndexResponse, error)
	// Queries a list of Listing items by class
	ListingsByClass(context.Context, *QueryListingsByClassRequest) (*QueryListingsByClassResponse, error)
	// Queries a list of Listing items by nft
	ListingsByNFT(context.Context, *QueryListingsByNFTRequest) (*QueryListingsByNFTResponse, error)
	// Queries a RoyaltyConfig by class
	RoyaltyConfig(context.Context, *QueryRoyaltyConfigRequest) (*QueryRoyaltyConfigResponse, error)
	// Queries index of RoyaltyConfig of all classes
	RoyaltyConfigIndex(context.Context, *QueryRoyaltyConfigIndexRequest) (*QueryRoyaltyConfigIndexResponse, error)
}

QueryServer is the server API for Query service.

type RoyaltyAllocation

type RoyaltyAllocation struct {
	Account sdk.AccAddress
	Amount  uint64
}

type RoyaltyConfig

type RoyaltyConfig struct {
	RateBasisPoints uint64               `protobuf:"varint,1,opt,name=rate_basis_points,json=rateBasisPoints,proto3" json:"rate_basis_points,omitempty"`
	Stakeholders    []RoyaltyStakeholder `protobuf:"bytes,2,rep,name=stakeholders,proto3" json:"stakeholders"`
}

func (*RoyaltyConfig) Descriptor

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

func (*RoyaltyConfig) GetRateBasisPoints

func (m *RoyaltyConfig) GetRateBasisPoints() uint64

func (*RoyaltyConfig) GetStakeholders

func (m *RoyaltyConfig) GetStakeholders() []RoyaltyStakeholder

func (*RoyaltyConfig) Marshal

func (m *RoyaltyConfig) Marshal() (dAtA []byte, err error)

func (*RoyaltyConfig) MarshalTo

func (m *RoyaltyConfig) MarshalTo(dAtA []byte) (int, error)

func (*RoyaltyConfig) MarshalToSizedBuffer

func (m *RoyaltyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RoyaltyConfig) ProtoMessage

func (*RoyaltyConfig) ProtoMessage()

func (*RoyaltyConfig) Reset

func (m *RoyaltyConfig) Reset()

func (*RoyaltyConfig) Size

func (m *RoyaltyConfig) Size() (n int)

func (*RoyaltyConfig) String

func (m *RoyaltyConfig) String() string

func (*RoyaltyConfig) Unmarshal

func (m *RoyaltyConfig) Unmarshal(dAtA []byte) error

func (*RoyaltyConfig) XXX_DiscardUnknown

func (m *RoyaltyConfig) XXX_DiscardUnknown()

func (*RoyaltyConfig) XXX_Marshal

func (m *RoyaltyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoyaltyConfig) XXX_Merge

func (m *RoyaltyConfig) XXX_Merge(src proto.Message)

func (*RoyaltyConfig) XXX_Size

func (m *RoyaltyConfig) XXX_Size() int

func (*RoyaltyConfig) XXX_Unmarshal

func (m *RoyaltyConfig) XXX_Unmarshal(b []byte) error

type RoyaltyConfigByClass

type RoyaltyConfigByClass struct {
	ClassId       string        `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
	RoyaltyConfig RoyaltyConfig `protobuf:"bytes,2,opt,name=royalty_config,json=royaltyConfig,proto3" json:"royalty_config"`
}

func (*RoyaltyConfigByClass) Descriptor

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

func (*RoyaltyConfigByClass) GetClassId

func (m *RoyaltyConfigByClass) GetClassId() string

func (*RoyaltyConfigByClass) GetRoyaltyConfig

func (m *RoyaltyConfigByClass) GetRoyaltyConfig() RoyaltyConfig

func (*RoyaltyConfigByClass) Marshal

func (m *RoyaltyConfigByClass) Marshal() (dAtA []byte, err error)

func (*RoyaltyConfigByClass) MarshalTo

func (m *RoyaltyConfigByClass) MarshalTo(dAtA []byte) (int, error)

func (*RoyaltyConfigByClass) MarshalToSizedBuffer

func (m *RoyaltyConfigByClass) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RoyaltyConfigByClass) ProtoMessage

func (*RoyaltyConfigByClass) ProtoMessage()

func (*RoyaltyConfigByClass) Reset

func (m *RoyaltyConfigByClass) Reset()

func (*RoyaltyConfigByClass) Size

func (m *RoyaltyConfigByClass) Size() (n int)

func (*RoyaltyConfigByClass) String

func (m *RoyaltyConfigByClass) String() string

func (*RoyaltyConfigByClass) Unmarshal

func (m *RoyaltyConfigByClass) Unmarshal(dAtA []byte) error

func (*RoyaltyConfigByClass) XXX_DiscardUnknown

func (m *RoyaltyConfigByClass) XXX_DiscardUnknown()

func (*RoyaltyConfigByClass) XXX_Marshal

func (m *RoyaltyConfigByClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoyaltyConfigByClass) XXX_Merge

func (m *RoyaltyConfigByClass) XXX_Merge(src proto.Message)

func (*RoyaltyConfigByClass) XXX_Size

func (m *RoyaltyConfigByClass) XXX_Size() int

func (*RoyaltyConfigByClass) XXX_Unmarshal

func (m *RoyaltyConfigByClass) XXX_Unmarshal(b []byte) error

type RoyaltyConfigInput

type RoyaltyConfigInput struct {
	RateBasisPoints uint64                    `protobuf:"varint,1,opt,name=rate_basis_points,json=rateBasisPoints,proto3" json:"rate_basis_points,omitempty"`
	Stakeholders    []RoyaltyStakeholderInput `protobuf:"bytes,2,rep,name=stakeholders,proto3" json:"stakeholders"`
}

func (*RoyaltyConfigInput) Descriptor

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

func (*RoyaltyConfigInput) GetRateBasisPoints

func (m *RoyaltyConfigInput) GetRateBasisPoints() uint64

func (*RoyaltyConfigInput) GetStakeholders

func (m *RoyaltyConfigInput) GetStakeholders() []RoyaltyStakeholderInput

func (*RoyaltyConfigInput) Marshal

func (m *RoyaltyConfigInput) Marshal() (dAtA []byte, err error)

func (*RoyaltyConfigInput) MarshalTo

func (m *RoyaltyConfigInput) MarshalTo(dAtA []byte) (int, error)

func (*RoyaltyConfigInput) MarshalToSizedBuffer

func (m *RoyaltyConfigInput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RoyaltyConfigInput) ProtoMessage

func (*RoyaltyConfigInput) ProtoMessage()

func (*RoyaltyConfigInput) Reset

func (m *RoyaltyConfigInput) Reset()

func (*RoyaltyConfigInput) Size

func (m *RoyaltyConfigInput) Size() (n int)

func (*RoyaltyConfigInput) String

func (m *RoyaltyConfigInput) String() string

func (RoyaltyConfigInput) ToConfig

func (r RoyaltyConfigInput) ToConfig() RoyaltyConfig

func (*RoyaltyConfigInput) Unmarshal

func (m *RoyaltyConfigInput) Unmarshal(dAtA []byte) error

func (*RoyaltyConfigInput) XXX_DiscardUnknown

func (m *RoyaltyConfigInput) XXX_DiscardUnknown()

func (*RoyaltyConfigInput) XXX_Marshal

func (m *RoyaltyConfigInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoyaltyConfigInput) XXX_Merge

func (m *RoyaltyConfigInput) XXX_Merge(src proto.Message)

func (*RoyaltyConfigInput) XXX_Size

func (m *RoyaltyConfigInput) XXX_Size() int

func (*RoyaltyConfigInput) XXX_Unmarshal

func (m *RoyaltyConfigInput) XXX_Unmarshal(b []byte) error

type RoyaltyStakeholder

type RoyaltyStakeholder struct {
	Account github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=account,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"account,omitempty"`
	Weight  uint64                                        `protobuf:"varint,2,opt,name=weight,proto3" json:"weight,omitempty"`
}

func (*RoyaltyStakeholder) Descriptor

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

func (*RoyaltyStakeholder) GetAccount

func (*RoyaltyStakeholder) GetWeight

func (m *RoyaltyStakeholder) GetWeight() uint64

func (*RoyaltyStakeholder) Marshal

func (m *RoyaltyStakeholder) Marshal() (dAtA []byte, err error)

func (*RoyaltyStakeholder) MarshalTo

func (m *RoyaltyStakeholder) MarshalTo(dAtA []byte) (int, error)

func (*RoyaltyStakeholder) MarshalToSizedBuffer

func (m *RoyaltyStakeholder) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RoyaltyStakeholder) ProtoMessage

func (*RoyaltyStakeholder) ProtoMessage()

func (*RoyaltyStakeholder) Reset

func (m *RoyaltyStakeholder) Reset()

func (*RoyaltyStakeholder) Size

func (m *RoyaltyStakeholder) Size() (n int)

func (*RoyaltyStakeholder) String

func (m *RoyaltyStakeholder) String() string

func (*RoyaltyStakeholder) Unmarshal

func (m *RoyaltyStakeholder) Unmarshal(dAtA []byte) error

func (*RoyaltyStakeholder) XXX_DiscardUnknown

func (m *RoyaltyStakeholder) XXX_DiscardUnknown()

func (*RoyaltyStakeholder) XXX_Marshal

func (m *RoyaltyStakeholder) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoyaltyStakeholder) XXX_Merge

func (m *RoyaltyStakeholder) XXX_Merge(src proto.Message)

func (*RoyaltyStakeholder) XXX_Size

func (m *RoyaltyStakeholder) XXX_Size() int

func (*RoyaltyStakeholder) XXX_Unmarshal

func (m *RoyaltyStakeholder) XXX_Unmarshal(b []byte) error

type RoyaltyStakeholderInput

type RoyaltyStakeholderInput struct {
	Account string `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
	Weight  uint64 `protobuf:"varint,2,opt,name=weight,proto3" json:"weight,omitempty"`
}

func (*RoyaltyStakeholderInput) Descriptor

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

func (*RoyaltyStakeholderInput) GetAccount

func (m *RoyaltyStakeholderInput) GetAccount() string

func (*RoyaltyStakeholderInput) GetWeight

func (m *RoyaltyStakeholderInput) GetWeight() uint64

func (*RoyaltyStakeholderInput) Marshal

func (m *RoyaltyStakeholderInput) Marshal() (dAtA []byte, err error)

func (*RoyaltyStakeholderInput) MarshalTo

func (m *RoyaltyStakeholderInput) MarshalTo(dAtA []byte) (int, error)

func (*RoyaltyStakeholderInput) MarshalToSizedBuffer

func (m *RoyaltyStakeholderInput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RoyaltyStakeholderInput) ProtoMessage

func (*RoyaltyStakeholderInput) ProtoMessage()

func (*RoyaltyStakeholderInput) Reset

func (m *RoyaltyStakeholderInput) Reset()

func (*RoyaltyStakeholderInput) Size

func (m *RoyaltyStakeholderInput) Size() (n int)

func (*RoyaltyStakeholderInput) String

func (m *RoyaltyStakeholderInput) String() string

func (RoyaltyStakeholderInput) ToStakeholder

func (r RoyaltyStakeholderInput) ToStakeholder() RoyaltyStakeholder

func (*RoyaltyStakeholderInput) Unmarshal

func (m *RoyaltyStakeholderInput) Unmarshal(dAtA []byte) error

func (*RoyaltyStakeholderInput) XXX_DiscardUnknown

func (m *RoyaltyStakeholderInput) XXX_DiscardUnknown()

func (*RoyaltyStakeholderInput) XXX_Marshal

func (m *RoyaltyStakeholderInput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RoyaltyStakeholderInput) XXX_Merge

func (m *RoyaltyStakeholderInput) XXX_Merge(src proto.Message)

func (*RoyaltyStakeholderInput) XXX_Size

func (m *RoyaltyStakeholderInput) XXX_Size() int

func (*RoyaltyStakeholderInput) XXX_Unmarshal

func (m *RoyaltyStakeholderInput) XXX_Unmarshal(b []byte) error

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) BurnNFT

func (*UnimplementedMsgServer) BuyNFT

func (*UnimplementedMsgServer) CreateBlindBoxContent

func (*UnimplementedMsgServer) CreateListing

func (*UnimplementedMsgServer) CreateOffer

func (*UnimplementedMsgServer) CreateRoyaltyConfig

func (*UnimplementedMsgServer) DeleteBlindBoxContent

func (*UnimplementedMsgServer) DeleteListing

func (*UnimplementedMsgServer) DeleteOffer

func (*UnimplementedMsgServer) DeleteRoyaltyConfig

func (*UnimplementedMsgServer) MintNFT

func (*UnimplementedMsgServer) NewClass

func (*UnimplementedMsgServer) SellNFT

func (*UnimplementedMsgServer) UpdateBlindBoxContent

func (*UnimplementedMsgServer) UpdateClass

func (*UnimplementedMsgServer) UpdateListing

func (*UnimplementedMsgServer) UpdateOffer

func (*UnimplementedMsgServer) UpdateRoyaltyConfig

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) AccountByClass

func (*UnimplementedQueryServer) BlindBoxContent

func (*UnimplementedQueryServer) BlindBoxContents

func (*UnimplementedQueryServer) ClassesByAccount

func (*UnimplementedQueryServer) ClassesByISCN

func (*UnimplementedQueryServer) ClassesByISCNIndex

func (*UnimplementedQueryServer) ISCNByClass

func (*UnimplementedQueryServer) Listing

func (*UnimplementedQueryServer) ListingIndex

func (*UnimplementedQueryServer) ListingsByClass

func (*UnimplementedQueryServer) ListingsByNFT

func (*UnimplementedQueryServer) Offer

func (*UnimplementedQueryServer) OfferIndex

func (*UnimplementedQueryServer) OffersByClass

func (*UnimplementedQueryServer) OffersByNFT

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) RoyaltyConfig

func (*UnimplementedQueryServer) RoyaltyConfigIndex

Jump to

Keyboard shortcuts

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