types

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Dec 23, 2023 License: MIT Imports: 29 Imported by: 11

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// ItemKeyPrefix is the prefix to retrieve all Item
	ItemKeyPrefix        = "Item/value/"
	OnChainItemKeyPrefix = "OnChainItem/value/"
	SeedKeyPrefix        = "Seed/value/"
)
View Source
const (
	// ModuleName defines the module name
	ModuleName = "tokenmanager"

	// 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_tokenmanager"

	// ParamsKey defines the store key for module params entry
	ParamsKey = "params"
)
View Source
const (
	ProposalTypeUpgradeContract       = "tokenmanager/UpgradeContract"
	ProposalTypeAddNetwork            = "tokenmanager/AddNetwork"
	ProposalTypeRemoveNetwork         = "tokenmanager/RemoveNetwork"
	ProposalTypeUpdateContractAddress = "tokenmanager/UpdateContractAddressNetwork"
	ProposalTypeAddFeeToken           = "tokenmanager/AddFeeToken"
	ProposalTypeRemoveFeeToken        = "tokenmanager/RemoveFeeToken"
	ProposalTypeUpdateFeeToken        = "tokenmanager/UpdateFeeToken"
	ProposalTypeWithdrawFee           = "tokenmanager/WithdrawFee"

	ProposalTypeUpdateTokenItem      = "tokenmanager/UpdateTokenItem"
	ProposalTypeRemoveTokenItem      = "tokenmanager/RemoveTokenItem"
	ProposalTypeCreateCollection     = "tokenmanager/CreateCollection"
	ProposalTypeUpdateCollectionData = "tokenmanager/UpdateCollectionData"
	ProposalTypeAddCollectionData    = "tokenmanager/AddCollectionData"
	ProposalTypeRemoveCollectionData = "tokenmanager/RemoveCollectionData"
	ProposalTypeRemoveCollection     = "tokenmanager/RemoveCollection"
)
View Source
const (
	EventTypeCollectionCreated = "collection_created" // emitted only from proposals
	EventTypeCollectionRemoved = "collection_removed" // emitted only from proposals

	EventTypeCollectionDataCreated = "collection_data_created" // emitted only from proposals
	EventTypeCollectionDataUpdated = "collection_data_updated" // emitted only from proposals
	EventTypeCollectionDataRemoved = "collection_data_removed" // emitted only from proposals

	EventTypeItemCreated = "item_created" // emitted from both transactions and proposals
	EventTypeItemRemoved = "item_removed" // emitted only from proposals

	EventTypeSeedCreated = "seed_created" // emitted from both transactions and proposals
	EventTypeSeedRemoved = "seed_removed" // emitted only from proposals

	EventTypeOnChainItemCreated = "on_chain_item_created" // emitted from both transactions and proposals
	EventTypeOnChainItemRemoved = "on_chain_item_removed" // emitted only from proposals

	AttributeKeyCollectionIndex     = "collection_index"
	AttributeKeyCollectionDataChain = "collection_data.chain"

	AttributeKeyItemIndex        = "item_index"
	AttributeKeyOnChainItemChain = "on_chain_item.chain"

	AttributeKeySeed = "seed"
)
View Source
const (
	// CollectionDataKeyPrefix is the prefix to retrieve all CollectionData
	CollectionDataKeyPrefix = "CollectionData/value/"
)
View Source
const (
	// CollectionKeyPrefix is the prefix to retrieve all Collection
	CollectionKeyPrefix = "Collection/value/"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default capability global index

Variables

View Source
var (
	ErrInvalidLengthCollection        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCollection          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCollection = 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 (
	ErrInvalidLengthItem        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowItem          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupItem = fmt.Errorf("proto: unexpected end of group")
)
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 (
	ErrInvalidLengthProposal        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowProposal          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupProposal = 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 (
	ErrSample = sdkerrors.Register(ModuleName, 1100, "sample error")
)

x/tokenmanager module sentinel errors

View Source
var NetworkParamType_name = map[int32]string{
	0: "BRIDGE",
	1: "FEE",
	2: "IDENTITY",
}
View Source
var NetworkParamType_value = map[string]int32{
	"BRIDGE":   0,
	"FEE":      1,
	"IDENTITY": 2,
}
View Source
var NetworkType_name = map[int32]string{
	0: "EVM",
	1: "Solana",
	2: "Near",
	3: "Other",
	4: "Rarimo",
}
View Source
var NetworkType_value = map[string]int32{
	"EVM":    0,
	"Solana": 1,
	"Near":   2,
	"Other":  3,
	"Rarimo": 4,
}
View Source
var Type_name = map[int32]string{
	0: "NATIVE",
	1: "ERC20",
	2: "ERC721",
	3: "ERC1155",
	4: "METAPLEX_NFT",
	5: "METAPLEX_FT",
	6: "NEAR_FT",
	7: "NEAR_NFT",
}
View Source
var Type_value = map[string]int32{
	"NATIVE":       0,
	"ERC20":        1,
	"ERC721":       2,
	"ERC1155":      3,
	"METAPLEX_NFT": 4,
	"METAPLEX_FT":  5,
	"NEAR_FT":      6,
	"NEAR_NFT":     7,
}
View Source
var UpgradeType_name = map[int32]string{
	0: "NONE",
	1: "BASIC_IMPLEMENTATION",
	2: "OTHER",
}
View Source
var UpgradeType_value = map[string]int32{
	"NONE":                 0,
	"BASIC_IMPLEMENTATION": 1,
	"OTHER":                2,
}

Functions

func CollectionDataKey

func CollectionDataKey(index *CollectionDataIndex) []byte

func CollectionKey

func CollectionKey(index string) []byte

func ItemKey

func ItemKey(
	index string,
) []byte

ItemKey returns the store key to retrieve an Item from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func OnChainItemKey

func OnChainItemKey(index *OnChainItemIndex) []byte

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 SeedKey

func SeedKey(
	seed string,
) []byte

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 AddCollectionDataProposal

type AddCollectionDataProposal struct {
	Title       string            `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string            `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Data        []*CollectionData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
}

func (*AddCollectionDataProposal) Descriptor

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

func (*AddCollectionDataProposal) GetData

func (m *AddCollectionDataProposal) GetData() []*CollectionData

func (*AddCollectionDataProposal) GetDescription

func (m *AddCollectionDataProposal) GetDescription() string

func (*AddCollectionDataProposal) GetTitle

func (m *AddCollectionDataProposal) GetTitle() string

func (*AddCollectionDataProposal) Marshal

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

func (*AddCollectionDataProposal) MarshalTo

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

func (*AddCollectionDataProposal) MarshalToSizedBuffer

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

func (*AddCollectionDataProposal) ProposalRoute

func (m *AddCollectionDataProposal) ProposalRoute() string

func (*AddCollectionDataProposal) ProposalType

func (m *AddCollectionDataProposal) ProposalType() string

func (*AddCollectionDataProposal) ProtoMessage

func (*AddCollectionDataProposal) ProtoMessage()

func (*AddCollectionDataProposal) Reset

func (m *AddCollectionDataProposal) Reset()

func (*AddCollectionDataProposal) Size

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

func (*AddCollectionDataProposal) String

func (m *AddCollectionDataProposal) String() string

func (*AddCollectionDataProposal) Unmarshal

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

func (*AddCollectionDataProposal) ValidateBasic

func (m *AddCollectionDataProposal) ValidateBasic() error

func (*AddCollectionDataProposal) XXX_DiscardUnknown

func (m *AddCollectionDataProposal) XXX_DiscardUnknown()

func (*AddCollectionDataProposal) XXX_Marshal

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

func (*AddCollectionDataProposal) XXX_Merge

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

func (*AddCollectionDataProposal) XXX_Size

func (m *AddCollectionDataProposal) XXX_Size() int

func (*AddCollectionDataProposal) XXX_Unmarshal

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

type AddFeeTokenProposal

type AddFeeTokenProposal struct {
	Title       string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string   `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	Nonce       string   `protobuf:"bytes,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Token       FeeToken `protobuf:"bytes,5,opt,name=token,proto3" json:"token"`
}

func (*AddFeeTokenProposal) Descriptor

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

func (*AddFeeTokenProposal) GetChain

func (m *AddFeeTokenProposal) GetChain() string

func (*AddFeeTokenProposal) GetDescription

func (m *AddFeeTokenProposal) GetDescription() string

func (*AddFeeTokenProposal) GetNonce

func (m *AddFeeTokenProposal) GetNonce() string

func (*AddFeeTokenProposal) GetTitle

func (m *AddFeeTokenProposal) GetTitle() string

func (*AddFeeTokenProposal) GetToken

func (m *AddFeeTokenProposal) GetToken() FeeToken

func (*AddFeeTokenProposal) Marshal

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

func (*AddFeeTokenProposal) MarshalTo

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

func (*AddFeeTokenProposal) MarshalToSizedBuffer

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

func (*AddFeeTokenProposal) ProposalRoute

func (m *AddFeeTokenProposal) ProposalRoute() string

func (*AddFeeTokenProposal) ProposalType

func (m *AddFeeTokenProposal) ProposalType() string

func (*AddFeeTokenProposal) ProtoMessage

func (*AddFeeTokenProposal) ProtoMessage()

func (*AddFeeTokenProposal) Reset

func (m *AddFeeTokenProposal) Reset()

func (*AddFeeTokenProposal) Size

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

func (*AddFeeTokenProposal) String

func (m *AddFeeTokenProposal) String() string

func (*AddFeeTokenProposal) Unmarshal

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

func (*AddFeeTokenProposal) ValidateBasic

func (m *AddFeeTokenProposal) ValidateBasic() error

func (*AddFeeTokenProposal) XXX_DiscardUnknown

func (m *AddFeeTokenProposal) XXX_DiscardUnknown()

func (*AddFeeTokenProposal) XXX_Marshal

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

func (*AddFeeTokenProposal) XXX_Merge

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

func (*AddFeeTokenProposal) XXX_Size

func (m *AddFeeTokenProposal) XXX_Size() int

func (*AddFeeTokenProposal) XXX_Unmarshal

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

type AddNetworkProposal

type AddNetworkProposal struct {
	Title       string  `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string  `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Network     Network `protobuf:"bytes,3,opt,name=network,proto3" json:"network"`
}

func (*AddNetworkProposal) Descriptor

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

func (*AddNetworkProposal) GetDescription

func (m *AddNetworkProposal) GetDescription() string

func (*AddNetworkProposal) GetNetwork

func (m *AddNetworkProposal) GetNetwork() Network

func (*AddNetworkProposal) GetTitle

func (m *AddNetworkProposal) GetTitle() string

func (*AddNetworkProposal) Marshal

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

func (*AddNetworkProposal) MarshalTo

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

func (*AddNetworkProposal) MarshalToSizedBuffer

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

func (*AddNetworkProposal) ProposalRoute

func (m *AddNetworkProposal) ProposalRoute() string

func (*AddNetworkProposal) ProposalType

func (m *AddNetworkProposal) ProposalType() string

func (*AddNetworkProposal) ProtoMessage

func (*AddNetworkProposal) ProtoMessage()

func (*AddNetworkProposal) Reset

func (m *AddNetworkProposal) Reset()

func (*AddNetworkProposal) Size

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

func (*AddNetworkProposal) String

func (m *AddNetworkProposal) String() string

func (*AddNetworkProposal) Unmarshal

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

func (*AddNetworkProposal) ValidateBasic

func (m *AddNetworkProposal) ValidateBasic() error

func (*AddNetworkProposal) XXX_DiscardUnknown

func (m *AddNetworkProposal) XXX_DiscardUnknown()

func (*AddNetworkProposal) XXX_Marshal

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

func (*AddNetworkProposal) XXX_Merge

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

func (*AddNetworkProposal) XXX_Size

func (m *AddNetworkProposal) XXX_Size() int

func (*AddNetworkProposal) XXX_Unmarshal

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

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
}

BankKeeper defines the expected interface needed to retrieve account balances.

type BridgeNetworkParams

type BridgeNetworkParams struct {
	Contract string `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	// BridgeAdmin only for Solana
	Admin string `protobuf:"bytes,2,opt,name=admin,proto3" json:"admin,omitempty"`
}

func (*BridgeNetworkParams) Descriptor

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

func (*BridgeNetworkParams) GetAdmin

func (m *BridgeNetworkParams) GetAdmin() string

func (*BridgeNetworkParams) GetContract

func (m *BridgeNetworkParams) GetContract() string

func (*BridgeNetworkParams) Marshal

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

func (*BridgeNetworkParams) MarshalTo

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

func (*BridgeNetworkParams) MarshalToSizedBuffer

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

func (*BridgeNetworkParams) ProtoMessage

func (*BridgeNetworkParams) ProtoMessage()

func (*BridgeNetworkParams) Reset

func (m *BridgeNetworkParams) Reset()

func (*BridgeNetworkParams) Size

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

func (*BridgeNetworkParams) String

func (m *BridgeNetworkParams) String() string

func (*BridgeNetworkParams) Unmarshal

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

func (*BridgeNetworkParams) XXX_DiscardUnknown

func (m *BridgeNetworkParams) XXX_DiscardUnknown()

func (*BridgeNetworkParams) XXX_Marshal

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

func (*BridgeNetworkParams) XXX_Merge

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

func (*BridgeNetworkParams) XXX_Size

func (m *BridgeNetworkParams) XXX_Size() int

func (*BridgeNetworkParams) XXX_Unmarshal

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

type Collection

type Collection struct {
	Index string                 `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Meta  CollectionMetadata     `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta"`
	Data  []*CollectionDataIndex `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
}

func (*Collection) Descriptor

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

func (*Collection) GetData

func (m *Collection) GetData() []*CollectionDataIndex

func (*Collection) GetIndex

func (m *Collection) GetIndex() string

func (*Collection) GetMeta

func (m *Collection) GetMeta() CollectionMetadata

func (*Collection) Marshal

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

func (*Collection) MarshalTo

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

func (*Collection) MarshalToSizedBuffer

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

func (*Collection) ProtoMessage

func (*Collection) ProtoMessage()

func (*Collection) Reset

func (m *Collection) Reset()

func (*Collection) Size

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

func (*Collection) String

func (m *Collection) String() string

func (*Collection) Unmarshal

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

func (*Collection) XXX_DiscardUnknown

func (m *Collection) XXX_DiscardUnknown()

func (*Collection) XXX_Marshal

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

func (*Collection) XXX_Merge

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

func (*Collection) XXX_Size

func (m *Collection) XXX_Size() int

func (*Collection) XXX_Unmarshal

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

type CollectionData

type CollectionData struct {
	Index      *CollectionDataIndex `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Collection string               `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
	TokenType  Type                 `protobuf:"varint,3,opt,name=tokenType,proto3,enum=rarimo.rarimocore.tokenmanager.Type" json:"tokenType,omitempty"`
	Wrapped    bool                 `protobuf:"varint,4,opt,name=wrapped,proto3" json:"wrapped,omitempty"`
	Decimals   uint32               `protobuf:"varint,5,opt,name=decimals,proto3" json:"decimals,omitempty"`
}

func (*CollectionData) Descriptor

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

func (*CollectionData) GetCollection

func (m *CollectionData) GetCollection() string

func (*CollectionData) GetDecimals

func (m *CollectionData) GetDecimals() uint32

func (*CollectionData) GetIndex

func (m *CollectionData) GetIndex() *CollectionDataIndex

func (*CollectionData) GetTokenType

func (m *CollectionData) GetTokenType() Type

func (*CollectionData) GetWrapped

func (m *CollectionData) GetWrapped() bool

func (*CollectionData) Marshal

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

func (*CollectionData) MarshalTo

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

func (*CollectionData) MarshalToSizedBuffer

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

func (*CollectionData) ProtoMessage

func (*CollectionData) ProtoMessage()

func (*CollectionData) Reset

func (m *CollectionData) Reset()

func (*CollectionData) Size

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

func (*CollectionData) String

func (m *CollectionData) String() string

func (*CollectionData) Unmarshal

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

func (*CollectionData) XXX_DiscardUnknown

func (m *CollectionData) XXX_DiscardUnknown()

func (*CollectionData) XXX_Marshal

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

func (*CollectionData) XXX_Merge

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

func (*CollectionData) XXX_Size

func (m *CollectionData) XXX_Size() int

func (*CollectionData) XXX_Unmarshal

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

type CollectionDataIndex

type CollectionDataIndex struct {
	// Chain name
	Chain string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	// Collection contract address
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

func (*CollectionDataIndex) Descriptor

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

func (*CollectionDataIndex) GetAddress

func (m *CollectionDataIndex) GetAddress() string

func (*CollectionDataIndex) GetChain

func (m *CollectionDataIndex) GetChain() string

func (*CollectionDataIndex) Marshal

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

func (*CollectionDataIndex) MarshalTo

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

func (*CollectionDataIndex) MarshalToSizedBuffer

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

func (*CollectionDataIndex) ProtoMessage

func (*CollectionDataIndex) ProtoMessage()

func (*CollectionDataIndex) Reset

func (m *CollectionDataIndex) Reset()

func (*CollectionDataIndex) Size

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

func (*CollectionDataIndex) String

func (m *CollectionDataIndex) String() string

func (*CollectionDataIndex) Unmarshal

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

func (*CollectionDataIndex) XXX_DiscardUnknown

func (m *CollectionDataIndex) XXX_DiscardUnknown()

func (*CollectionDataIndex) XXX_Marshal

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

func (*CollectionDataIndex) XXX_Merge

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

func (*CollectionDataIndex) XXX_Size

func (m *CollectionDataIndex) XXX_Size() int

func (*CollectionDataIndex) XXX_Unmarshal

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

type CollectionMetadata

type CollectionMetadata 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"`
	MetadataURI string `protobuf:"bytes,3,opt,name=metadataURI,proto3" json:"metadataURI,omitempty"`
}

func (*CollectionMetadata) Descriptor

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

func (*CollectionMetadata) GetMetadataURI

func (m *CollectionMetadata) GetMetadataURI() string

func (*CollectionMetadata) GetName

func (m *CollectionMetadata) GetName() string

func (*CollectionMetadata) GetSymbol

func (m *CollectionMetadata) GetSymbol() string

func (*CollectionMetadata) Marshal

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

func (*CollectionMetadata) MarshalTo

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

func (*CollectionMetadata) MarshalToSizedBuffer

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

func (*CollectionMetadata) ProtoMessage

func (*CollectionMetadata) ProtoMessage()

func (*CollectionMetadata) Reset

func (m *CollectionMetadata) Reset()

func (*CollectionMetadata) Size

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

func (*CollectionMetadata) String

func (m *CollectionMetadata) String() string

func (*CollectionMetadata) Unmarshal

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

func (*CollectionMetadata) XXX_DiscardUnknown

func (m *CollectionMetadata) XXX_DiscardUnknown()

func (*CollectionMetadata) XXX_Marshal

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

func (*CollectionMetadata) XXX_Merge

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

func (*CollectionMetadata) XXX_Size

func (m *CollectionMetadata) XXX_Size() int

func (*CollectionMetadata) XXX_Unmarshal

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

type ContractUpgradeDetails

type ContractUpgradeDetails struct {
	// Target contract address upgrade to
	TargetContract string `protobuf:"bytes,1,opt,name=targetContract,proto3" json:"targetContract,omitempty"`
	// New contract address: used on EVM
	NewImplementationContract string `protobuf:"bytes,2,opt,name=newImplementationContract,proto3" json:"newImplementationContract,omitempty"`
	// byte code hash: used on Solana and Near
	Hash string `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	// Solana buffer account
	BufferAccount string `protobuf:"bytes,4,opt,name=bufferAccount,proto3" json:"bufferAccount,omitempty"`
	// chain name according to stored in tokenmanager params
	Chain string `protobuf:"bytes,5,opt,name=chain,proto3" json:"chain,omitempty"`
	// dec nonce
	Nonce string      `protobuf:"bytes,6,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Type  UpgradeType `protobuf:"varint,7,opt,name=type,proto3,enum=rarimo.rarimocore.tokenmanager.UpgradeType" json:"type,omitempty"`
}

func (*ContractUpgradeDetails) Descriptor

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

func (*ContractUpgradeDetails) GetBufferAccount

func (m *ContractUpgradeDetails) GetBufferAccount() string

func (*ContractUpgradeDetails) GetChain

func (m *ContractUpgradeDetails) GetChain() string

func (*ContractUpgradeDetails) GetHash

func (m *ContractUpgradeDetails) GetHash() string

func (*ContractUpgradeDetails) GetNewImplementationContract

func (m *ContractUpgradeDetails) GetNewImplementationContract() string

func (*ContractUpgradeDetails) GetNonce

func (m *ContractUpgradeDetails) GetNonce() string

func (*ContractUpgradeDetails) GetTargetContract

func (m *ContractUpgradeDetails) GetTargetContract() string

func (*ContractUpgradeDetails) GetType

func (m *ContractUpgradeDetails) GetType() UpgradeType

func (*ContractUpgradeDetails) Marshal

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

func (*ContractUpgradeDetails) MarshalTo

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

func (*ContractUpgradeDetails) MarshalToSizedBuffer

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

func (*ContractUpgradeDetails) ProtoMessage

func (*ContractUpgradeDetails) ProtoMessage()

func (*ContractUpgradeDetails) Reset

func (m *ContractUpgradeDetails) Reset()

func (*ContractUpgradeDetails) Size

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

func (*ContractUpgradeDetails) String

func (m *ContractUpgradeDetails) String() string

func (*ContractUpgradeDetails) Unmarshal

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

func (*ContractUpgradeDetails) XXX_DiscardUnknown

func (m *ContractUpgradeDetails) XXX_DiscardUnknown()

func (*ContractUpgradeDetails) XXX_Marshal

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

func (*ContractUpgradeDetails) XXX_Merge

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

func (*ContractUpgradeDetails) XXX_Size

func (m *ContractUpgradeDetails) XXX_Size() int

func (*ContractUpgradeDetails) XXX_Unmarshal

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

type CreateCollectionProposal

type CreateCollectionProposal struct {
	Title       string             `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string             `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Index       string             `protobuf:"bytes,3,opt,name=index,proto3" json:"index,omitempty"`
	Metadata    CollectionMetadata `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata"`
	// All supported networks described
	Data        []*CollectionData `protobuf:"bytes,5,rep,name=data,proto3" json:"data,omitempty"`
	Item        []*Item           `protobuf:"bytes,6,rep,name=item,proto3" json:"item,omitempty"`
	OnChainItem []*OnChainItem    `protobuf:"bytes,7,rep,name=onChainItem,proto3" json:"onChainItem,omitempty"`
}

func (*CreateCollectionProposal) Descriptor

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

func (*CreateCollectionProposal) GetData

func (m *CreateCollectionProposal) GetData() []*CollectionData

func (*CreateCollectionProposal) GetDescription

func (m *CreateCollectionProposal) GetDescription() string

func (*CreateCollectionProposal) GetIndex

func (m *CreateCollectionProposal) GetIndex() string

func (*CreateCollectionProposal) GetItem

func (m *CreateCollectionProposal) GetItem() []*Item

func (*CreateCollectionProposal) GetMetadata

func (*CreateCollectionProposal) GetOnChainItem

func (m *CreateCollectionProposal) GetOnChainItem() []*OnChainItem

func (*CreateCollectionProposal) GetTitle

func (m *CreateCollectionProposal) GetTitle() string

func (*CreateCollectionProposal) Marshal

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

func (*CreateCollectionProposal) MarshalTo

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

func (*CreateCollectionProposal) MarshalToSizedBuffer

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

func (*CreateCollectionProposal) ProposalRoute

func (m *CreateCollectionProposal) ProposalRoute() string

func (*CreateCollectionProposal) ProposalType

func (m *CreateCollectionProposal) ProposalType() string

func (*CreateCollectionProposal) ProtoMessage

func (*CreateCollectionProposal) ProtoMessage()

func (*CreateCollectionProposal) Reset

func (m *CreateCollectionProposal) Reset()

func (*CreateCollectionProposal) Size

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

func (*CreateCollectionProposal) String

func (m *CreateCollectionProposal) String() string

func (*CreateCollectionProposal) Unmarshal

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

func (*CreateCollectionProposal) ValidateBasic

func (m *CreateCollectionProposal) ValidateBasic() error

func (*CreateCollectionProposal) XXX_DiscardUnknown

func (m *CreateCollectionProposal) XXX_DiscardUnknown()

func (*CreateCollectionProposal) XXX_Marshal

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

func (*CreateCollectionProposal) XXX_Merge

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

func (*CreateCollectionProposal) XXX_Size

func (m *CreateCollectionProposal) XXX_Size() int

func (*CreateCollectionProposal) XXX_Unmarshal

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

type FeeNetworkParams

type FeeNetworkParams struct {
	Contract  string      `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	FeeTokens []*FeeToken `protobuf:"bytes,2,rep,name=feeTokens,proto3" json:"feeTokens,omitempty"`
}

func (*FeeNetworkParams) Descriptor

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

func (*FeeNetworkParams) GetContract

func (m *FeeNetworkParams) GetContract() string

func (*FeeNetworkParams) GetFeeToken

func (p *FeeNetworkParams) GetFeeToken(contract string) *FeeToken

func (*FeeNetworkParams) GetFeeTokens

func (m *FeeNetworkParams) GetFeeTokens() []*FeeToken

func (*FeeNetworkParams) Marshal

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

func (*FeeNetworkParams) MarshalTo

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

func (*FeeNetworkParams) MarshalToSizedBuffer

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

func (*FeeNetworkParams) ProtoMessage

func (*FeeNetworkParams) ProtoMessage()

func (*FeeNetworkParams) RemoveFeeToken

func (p *FeeNetworkParams) RemoveFeeToken(token *FeeToken)

func (*FeeNetworkParams) Reset

func (m *FeeNetworkParams) Reset()

func (*FeeNetworkParams) SetFeeToken

func (p *FeeNetworkParams) SetFeeToken(token *FeeToken)

func (*FeeNetworkParams) Size

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

func (*FeeNetworkParams) String

func (m *FeeNetworkParams) String() string

func (*FeeNetworkParams) Unmarshal

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

func (*FeeNetworkParams) XXX_DiscardUnknown

func (m *FeeNetworkParams) XXX_DiscardUnknown()

func (*FeeNetworkParams) XXX_Marshal

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

func (*FeeNetworkParams) XXX_Merge

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

func (*FeeNetworkParams) XXX_Size

func (m *FeeNetworkParams) XXX_Size() int

func (*FeeNetworkParams) XXX_Unmarshal

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

type FeeToken

type FeeToken struct {
	// contract address hex
	Contract string `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	Amount   string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
}

func (*FeeToken) Descriptor

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

func (*FeeToken) GetAmount

func (m *FeeToken) GetAmount() string

func (*FeeToken) GetContract

func (m *FeeToken) GetContract() string

func (*FeeToken) Marshal

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

func (*FeeToken) MarshalTo

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

func (*FeeToken) MarshalToSizedBuffer

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

func (*FeeToken) ProtoMessage

func (*FeeToken) ProtoMessage()

func (*FeeToken) Reset

func (m *FeeToken) Reset()

func (*FeeToken) Size

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

func (*FeeToken) String

func (m *FeeToken) String() string

func (*FeeToken) Unmarshal

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

func (*FeeToken) XXX_DiscardUnknown

func (m *FeeToken) XXX_DiscardUnknown()

func (*FeeToken) XXX_Marshal

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

func (*FeeToken) XXX_Merge

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

func (*FeeToken) XXX_Size

func (m *FeeToken) XXX_Size() int

func (*FeeToken) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Params       Params           `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	Collections  []Collection     `protobuf:"bytes,2,rep,name=collections,proto3" json:"collections"`
	Datas        []CollectionData `protobuf:"bytes,3,rep,name=datas,proto3" json:"datas"`
	Items        []Item           `protobuf:"bytes,4,rep,name=items,proto3" json:"items"`
	OnChainItems []OnChainItem    `protobuf:"bytes,5,rep,name=onChainItems,proto3" json:"onChainItems"`
	Seeds        []Seed           `protobuf:"bytes,6,rep,name=seeds,proto3" json:"seeds"`
}

GenesisState defines the tokenmanager 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) GetCollections

func (m *GenesisState) GetCollections() []Collection

func (*GenesisState) GetDatas

func (m *GenesisState) GetDatas() []CollectionData

func (*GenesisState) GetItems

func (m *GenesisState) GetItems() []Item

func (*GenesisState) GetOnChainItems

func (m *GenesisState) GetOnChainItems() []OnChainItem

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetSeeds

func (m *GenesisState) GetSeeds() []Seed

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 IdentityNetworkParams

type IdentityNetworkParams struct {
	Contract string `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
}

func (*IdentityNetworkParams) Descriptor

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

func (*IdentityNetworkParams) GetContract

func (m *IdentityNetworkParams) GetContract() string

func (*IdentityNetworkParams) Marshal

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

func (*IdentityNetworkParams) MarshalTo

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

func (*IdentityNetworkParams) MarshalToSizedBuffer

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

func (*IdentityNetworkParams) ProtoMessage

func (*IdentityNetworkParams) ProtoMessage()

func (*IdentityNetworkParams) Reset

func (m *IdentityNetworkParams) Reset()

func (*IdentityNetworkParams) Size

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

func (*IdentityNetworkParams) String

func (m *IdentityNetworkParams) String() string

func (*IdentityNetworkParams) Unmarshal

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

func (*IdentityNetworkParams) XXX_DiscardUnknown

func (m *IdentityNetworkParams) XXX_DiscardUnknown()

func (*IdentityNetworkParams) XXX_Marshal

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

func (*IdentityNetworkParams) XXX_Merge

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

func (*IdentityNetworkParams) XXX_Size

func (m *IdentityNetworkParams) XXX_Size() int

func (*IdentityNetworkParams) XXX_Unmarshal

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

type Item

type Item struct {
	Index      string              `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Collection string              `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
	Meta       ItemMetadata        `protobuf:"bytes,3,opt,name=meta,proto3" json:"meta"`
	OnChain    []*OnChainItemIndex `protobuf:"bytes,4,rep,name=onChain,proto3" json:"onChain,omitempty"`
}

func (*Item) Descriptor

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

func (*Item) GetCollection

func (m *Item) GetCollection() string

func (*Item) GetIndex

func (m *Item) GetIndex() string

func (*Item) GetMeta

func (m *Item) GetMeta() ItemMetadata

func (*Item) GetOnChain

func (m *Item) GetOnChain() []*OnChainItemIndex

func (*Item) Marshal

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

func (*Item) MarshalTo

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

func (*Item) MarshalToSizedBuffer

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

func (*Item) ProtoMessage

func (*Item) ProtoMessage()

func (*Item) Reset

func (m *Item) Reset()

func (*Item) Size

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

func (*Item) String

func (m *Item) String() string

func (*Item) Unmarshal

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

func (*Item) XXX_DiscardUnknown

func (m *Item) XXX_DiscardUnknown()

func (*Item) XXX_Marshal

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

func (*Item) XXX_Merge

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

func (*Item) XXX_Size

func (m *Item) XXX_Size() int

func (*Item) XXX_Unmarshal

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

type ItemMetadata

type ItemMetadata struct {
	ImageUri string `protobuf:"bytes,1,opt,name=imageUri,proto3" json:"imageUri,omitempty"`
	// Hash of the token image. Encoded into hex string. (optional)
	ImageHash string `protobuf:"bytes,2,opt,name=imageHash,proto3" json:"imageHash,omitempty"`
	// Seed is used to generate PDA address for Solana
	Seed string `protobuf:"bytes,3,opt,name=seed,proto3" json:"seed,omitempty"`
	Uri  string `protobuf:"bytes,4,opt,name=uri,proto3" json:"uri,omitempty"`
}

func (*ItemMetadata) Descriptor

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

func (*ItemMetadata) GetImageHash

func (m *ItemMetadata) GetImageHash() string

func (*ItemMetadata) GetImageUri

func (m *ItemMetadata) GetImageUri() string

func (*ItemMetadata) GetSeed

func (m *ItemMetadata) GetSeed() string

func (*ItemMetadata) GetUri

func (m *ItemMetadata) GetUri() string

func (*ItemMetadata) Marshal

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

func (*ItemMetadata) MarshalTo

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

func (*ItemMetadata) MarshalToSizedBuffer

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

func (*ItemMetadata) ProtoMessage

func (*ItemMetadata) ProtoMessage()

func (*ItemMetadata) Reset

func (m *ItemMetadata) Reset()

func (*ItemMetadata) Size

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

func (*ItemMetadata) String

func (m *ItemMetadata) String() string

func (*ItemMetadata) Unmarshal

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

func (*ItemMetadata) XXX_DiscardUnknown

func (m *ItemMetadata) XXX_DiscardUnknown()

func (*ItemMetadata) XXX_Marshal

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

func (*ItemMetadata) XXX_Merge

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

func (*ItemMetadata) XXX_Size

func (m *ItemMetadata) XXX_Size() int

func (*ItemMetadata) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
}

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 MsgServer

type MsgServer interface {
}

MsgServer is the server API for Msg service.

type Network

type Network struct {
	// network name
	Name   string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type   NetworkType     `protobuf:"varint,2,opt,name=type,proto3,enum=rarimo.rarimocore.tokenmanager.NetworkType" json:"type,omitempty"`
	Params []NetworkParams `protobuf:"bytes,3,rep,name=params,proto3" json:"params"`
}

func (*Network) Descriptor

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

func (*Network) GetBridgeParams

func (n *Network) GetBridgeParams() *BridgeNetworkParams

func (*Network) GetFeeParams

func (n *Network) GetFeeParams() *FeeNetworkParams

func (*Network) GetIdentityParams

func (n *Network) GetIdentityParams() *IdentityNetworkParams

func (*Network) GetName

func (m *Network) GetName() string

func (*Network) GetParams

func (m *Network) GetParams() []NetworkParams

func (*Network) GetType

func (m *Network) GetType() NetworkType

func (*Network) Marshal

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

func (*Network) MarshalTo

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

func (*Network) MarshalToSizedBuffer

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

func (*Network) ProtoMessage

func (*Network) ProtoMessage()

func (*Network) Reset

func (m *Network) Reset()

func (*Network) SetBridgeParams

func (n *Network) SetBridgeParams(params *BridgeNetworkParams)

func (*Network) SetFeeParams

func (n *Network) SetFeeParams(params *FeeNetworkParams)

func (*Network) SetIdentityParams

func (n *Network) SetIdentityParams(params *IdentityNetworkParams)

func (*Network) Size

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

func (*Network) String

func (m *Network) String() string

func (*Network) Unmarshal

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

func (*Network) XXX_DiscardUnknown

func (m *Network) XXX_DiscardUnknown()

func (*Network) XXX_Marshal

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

func (*Network) XXX_Merge

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

func (*Network) XXX_Size

func (m *Network) XXX_Size() int

func (*Network) XXX_Unmarshal

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

type NetworkParamType

type NetworkParamType int32
const (
	NetworkParamType_BRIDGE   NetworkParamType = 0
	NetworkParamType_FEE      NetworkParamType = 1
	NetworkParamType_IDENTITY NetworkParamType = 2
)

func (NetworkParamType) EnumDescriptor

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

func (NetworkParamType) String

func (x NetworkParamType) String() string

type NetworkParams

type NetworkParams struct {
	Type NetworkParamType `protobuf:"varint,1,opt,name=type,proto3,enum=rarimo.rarimocore.tokenmanager.NetworkParamType" json:"type,omitempty"`
	// Corresponding to type details
	Details *types.Any `protobuf:"bytes,2,opt,name=details,proto3" json:"details,omitempty"`
}

func (*NetworkParams) Descriptor

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

func (*NetworkParams) GetDetails

func (m *NetworkParams) GetDetails() *types.Any

func (*NetworkParams) GetType

func (m *NetworkParams) GetType() NetworkParamType

func (*NetworkParams) Marshal

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

func (*NetworkParams) MarshalTo

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

func (*NetworkParams) MarshalToSizedBuffer

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

func (*NetworkParams) ProtoMessage

func (*NetworkParams) ProtoMessage()

func (*NetworkParams) Reset

func (m *NetworkParams) Reset()

func (*NetworkParams) Size

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

func (*NetworkParams) String

func (m *NetworkParams) String() string

func (*NetworkParams) Unmarshal

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

func (*NetworkParams) XXX_DiscardUnknown

func (m *NetworkParams) XXX_DiscardUnknown()

func (*NetworkParams) XXX_Marshal

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

func (*NetworkParams) XXX_Merge

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

func (*NetworkParams) XXX_Size

func (m *NetworkParams) XXX_Size() int

func (*NetworkParams) XXX_Unmarshal

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

type NetworkType

type NetworkType int32
const (
	NetworkType_EVM    NetworkType = 0
	NetworkType_Solana NetworkType = 1
	NetworkType_Near   NetworkType = 2
	NetworkType_Other  NetworkType = 3
	NetworkType_Rarimo NetworkType = 4
)

func (NetworkType) EnumDescriptor

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

func (NetworkType) String

func (x NetworkType) String() string

type OnChainItem

type OnChainItem struct {
	Index *OnChainItemIndex `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Item  string            `protobuf:"bytes,2,opt,name=item,proto3" json:"item,omitempty"`
}

func (*OnChainItem) Descriptor

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

func (*OnChainItem) GetIndex

func (m *OnChainItem) GetIndex() *OnChainItemIndex

func (*OnChainItem) GetItem

func (m *OnChainItem) GetItem() string

func (*OnChainItem) Marshal

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

func (*OnChainItem) MarshalTo

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

func (*OnChainItem) MarshalToSizedBuffer

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

func (*OnChainItem) ProtoMessage

func (*OnChainItem) ProtoMessage()

func (*OnChainItem) Reset

func (m *OnChainItem) Reset()

func (*OnChainItem) Size

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

func (*OnChainItem) String

func (m *OnChainItem) String() string

func (*OnChainItem) Unmarshal

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

func (*OnChainItem) XXX_DiscardUnknown

func (m *OnChainItem) XXX_DiscardUnknown()

func (*OnChainItem) XXX_Marshal

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

func (*OnChainItem) XXX_Merge

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

func (*OnChainItem) XXX_Size

func (m *OnChainItem) XXX_Size() int

func (*OnChainItem) XXX_Unmarshal

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

type OnChainItemIndex

type OnChainItemIndex struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	TokenID string `protobuf:"bytes,3,opt,name=tokenID,proto3" json:"tokenID,omitempty"`
}

func (*OnChainItemIndex) Descriptor

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

func (*OnChainItemIndex) GetAddress

func (m *OnChainItemIndex) GetAddress() string

func (*OnChainItemIndex) GetChain

func (m *OnChainItemIndex) GetChain() string

func (*OnChainItemIndex) GetTokenID

func (m *OnChainItemIndex) GetTokenID() string

func (*OnChainItemIndex) Marshal

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

func (*OnChainItemIndex) MarshalTo

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

func (*OnChainItemIndex) MarshalToSizedBuffer

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

func (*OnChainItemIndex) ProtoMessage

func (*OnChainItemIndex) ProtoMessage()

func (*OnChainItemIndex) Reset

func (m *OnChainItemIndex) Reset()

func (*OnChainItemIndex) Size

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

func (*OnChainItemIndex) String

func (m *OnChainItemIndex) String() string

func (*OnChainItemIndex) Unmarshal

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

func (*OnChainItemIndex) XXX_DiscardUnknown

func (m *OnChainItemIndex) XXX_DiscardUnknown()

func (*OnChainItemIndex) XXX_Marshal

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

func (*OnChainItemIndex) XXX_Merge

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

func (*OnChainItemIndex) XXX_Size

func (m *OnChainItemIndex) XXX_Size() int

func (*OnChainItemIndex) XXX_Unmarshal

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

type Params

type Params struct {
	Networks []*Network `protobuf:"bytes,1,rep,name=networks,proto3" json:"networks,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams(networks []*Network) Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetNetworks

func (m *Params) GetNetworks() []*Network

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) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

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 QueryAllCollectionDataRequest

type QueryAllCollectionDataRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllCollectionDataRequest) Descriptor

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

func (*QueryAllCollectionDataRequest) GetPagination

func (m *QueryAllCollectionDataRequest) GetPagination() *query.PageRequest

func (*QueryAllCollectionDataRequest) Marshal

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

func (*QueryAllCollectionDataRequest) MarshalTo

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

func (*QueryAllCollectionDataRequest) MarshalToSizedBuffer

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

func (*QueryAllCollectionDataRequest) ProtoMessage

func (*QueryAllCollectionDataRequest) ProtoMessage()

func (*QueryAllCollectionDataRequest) Reset

func (m *QueryAllCollectionDataRequest) Reset()

func (*QueryAllCollectionDataRequest) Size

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

func (*QueryAllCollectionDataRequest) String

func (*QueryAllCollectionDataRequest) Unmarshal

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

func (*QueryAllCollectionDataRequest) XXX_DiscardUnknown

func (m *QueryAllCollectionDataRequest) XXX_DiscardUnknown()

func (*QueryAllCollectionDataRequest) XXX_Marshal

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

func (*QueryAllCollectionDataRequest) XXX_Merge

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

func (*QueryAllCollectionDataRequest) XXX_Size

func (m *QueryAllCollectionDataRequest) XXX_Size() int

func (*QueryAllCollectionDataRequest) XXX_Unmarshal

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

type QueryAllCollectionDataResponse

type QueryAllCollectionDataResponse struct {
	Data       []CollectionData    `protobuf:"bytes,1,rep,name=data,proto3" json:"data"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllCollectionDataResponse) Descriptor

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

func (*QueryAllCollectionDataResponse) GetData

func (*QueryAllCollectionDataResponse) GetPagination

func (*QueryAllCollectionDataResponse) Marshal

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

func (*QueryAllCollectionDataResponse) MarshalTo

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

func (*QueryAllCollectionDataResponse) MarshalToSizedBuffer

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

func (*QueryAllCollectionDataResponse) ProtoMessage

func (*QueryAllCollectionDataResponse) ProtoMessage()

func (*QueryAllCollectionDataResponse) Reset

func (m *QueryAllCollectionDataResponse) Reset()

func (*QueryAllCollectionDataResponse) Size

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

func (*QueryAllCollectionDataResponse) String

func (*QueryAllCollectionDataResponse) Unmarshal

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

func (*QueryAllCollectionDataResponse) XXX_DiscardUnknown

func (m *QueryAllCollectionDataResponse) XXX_DiscardUnknown()

func (*QueryAllCollectionDataResponse) XXX_Marshal

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

func (*QueryAllCollectionDataResponse) XXX_Merge

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

func (*QueryAllCollectionDataResponse) XXX_Size

func (m *QueryAllCollectionDataResponse) XXX_Size() int

func (*QueryAllCollectionDataResponse) XXX_Unmarshal

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

type QueryAllCollectionRequest

type QueryAllCollectionRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllCollectionRequest) Descriptor

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

func (*QueryAllCollectionRequest) GetPagination

func (m *QueryAllCollectionRequest) GetPagination() *query.PageRequest

func (*QueryAllCollectionRequest) Marshal

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

func (*QueryAllCollectionRequest) MarshalTo

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

func (*QueryAllCollectionRequest) MarshalToSizedBuffer

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

func (*QueryAllCollectionRequest) ProtoMessage

func (*QueryAllCollectionRequest) ProtoMessage()

func (*QueryAllCollectionRequest) Reset

func (m *QueryAllCollectionRequest) Reset()

func (*QueryAllCollectionRequest) Size

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

func (*QueryAllCollectionRequest) String

func (m *QueryAllCollectionRequest) String() string

func (*QueryAllCollectionRequest) Unmarshal

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

func (*QueryAllCollectionRequest) XXX_DiscardUnknown

func (m *QueryAllCollectionRequest) XXX_DiscardUnknown()

func (*QueryAllCollectionRequest) XXX_Marshal

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

func (*QueryAllCollectionRequest) XXX_Merge

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

func (*QueryAllCollectionRequest) XXX_Size

func (m *QueryAllCollectionRequest) XXX_Size() int

func (*QueryAllCollectionRequest) XXX_Unmarshal

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

type QueryAllCollectionResponse

type QueryAllCollectionResponse struct {
	Collection []Collection        `protobuf:"bytes,1,rep,name=collection,proto3" json:"collection"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllCollectionResponse) Descriptor

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

func (*QueryAllCollectionResponse) GetCollection

func (m *QueryAllCollectionResponse) GetCollection() []Collection

func (*QueryAllCollectionResponse) GetPagination

func (m *QueryAllCollectionResponse) GetPagination() *query.PageResponse

func (*QueryAllCollectionResponse) Marshal

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

func (*QueryAllCollectionResponse) MarshalTo

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

func (*QueryAllCollectionResponse) MarshalToSizedBuffer

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

func (*QueryAllCollectionResponse) ProtoMessage

func (*QueryAllCollectionResponse) ProtoMessage()

func (*QueryAllCollectionResponse) Reset

func (m *QueryAllCollectionResponse) Reset()

func (*QueryAllCollectionResponse) Size

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

func (*QueryAllCollectionResponse) String

func (m *QueryAllCollectionResponse) String() string

func (*QueryAllCollectionResponse) Unmarshal

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

func (*QueryAllCollectionResponse) XXX_DiscardUnknown

func (m *QueryAllCollectionResponse) XXX_DiscardUnknown()

func (*QueryAllCollectionResponse) XXX_Marshal

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

func (*QueryAllCollectionResponse) XXX_Merge

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

func (*QueryAllCollectionResponse) XXX_Size

func (m *QueryAllCollectionResponse) XXX_Size() int

func (*QueryAllCollectionResponse) XXX_Unmarshal

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

type QueryAllItemRequest

type QueryAllItemRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllItemRequest) Descriptor

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

func (*QueryAllItemRequest) GetPagination

func (m *QueryAllItemRequest) GetPagination() *query.PageRequest

func (*QueryAllItemRequest) Marshal

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

func (*QueryAllItemRequest) MarshalTo

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

func (*QueryAllItemRequest) MarshalToSizedBuffer

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

func (*QueryAllItemRequest) ProtoMessage

func (*QueryAllItemRequest) ProtoMessage()

func (*QueryAllItemRequest) Reset

func (m *QueryAllItemRequest) Reset()

func (*QueryAllItemRequest) Size

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

func (*QueryAllItemRequest) String

func (m *QueryAllItemRequest) String() string

func (*QueryAllItemRequest) Unmarshal

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

func (*QueryAllItemRequest) XXX_DiscardUnknown

func (m *QueryAllItemRequest) XXX_DiscardUnknown()

func (*QueryAllItemRequest) XXX_Marshal

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

func (*QueryAllItemRequest) XXX_Merge

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

func (*QueryAllItemRequest) XXX_Size

func (m *QueryAllItemRequest) XXX_Size() int

func (*QueryAllItemRequest) XXX_Unmarshal

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

type QueryAllItemResponse

type QueryAllItemResponse struct {
	Item       []Item              `protobuf:"bytes,1,rep,name=item,proto3" json:"item"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllItemResponse) Descriptor

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

func (*QueryAllItemResponse) GetItem

func (m *QueryAllItemResponse) GetItem() []Item

func (*QueryAllItemResponse) GetPagination

func (m *QueryAllItemResponse) GetPagination() *query.PageResponse

func (*QueryAllItemResponse) Marshal

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

func (*QueryAllItemResponse) MarshalTo

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

func (*QueryAllItemResponse) MarshalToSizedBuffer

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

func (*QueryAllItemResponse) ProtoMessage

func (*QueryAllItemResponse) ProtoMessage()

func (*QueryAllItemResponse) Reset

func (m *QueryAllItemResponse) Reset()

func (*QueryAllItemResponse) Size

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

func (*QueryAllItemResponse) String

func (m *QueryAllItemResponse) String() string

func (*QueryAllItemResponse) Unmarshal

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

func (*QueryAllItemResponse) XXX_DiscardUnknown

func (m *QueryAllItemResponse) XXX_DiscardUnknown()

func (*QueryAllItemResponse) XXX_Marshal

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

func (*QueryAllItemResponse) XXX_Merge

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

func (*QueryAllItemResponse) XXX_Size

func (m *QueryAllItemResponse) XXX_Size() int

func (*QueryAllItemResponse) XXX_Unmarshal

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

type QueryAllOnChainItemRequest

type QueryAllOnChainItemRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllOnChainItemRequest) Descriptor

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

func (*QueryAllOnChainItemRequest) GetPagination

func (m *QueryAllOnChainItemRequest) GetPagination() *query.PageRequest

func (*QueryAllOnChainItemRequest) Marshal

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

func (*QueryAllOnChainItemRequest) MarshalTo

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

func (*QueryAllOnChainItemRequest) MarshalToSizedBuffer

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

func (*QueryAllOnChainItemRequest) ProtoMessage

func (*QueryAllOnChainItemRequest) ProtoMessage()

func (*QueryAllOnChainItemRequest) Reset

func (m *QueryAllOnChainItemRequest) Reset()

func (*QueryAllOnChainItemRequest) Size

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

func (*QueryAllOnChainItemRequest) String

func (m *QueryAllOnChainItemRequest) String() string

func (*QueryAllOnChainItemRequest) Unmarshal

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

func (*QueryAllOnChainItemRequest) XXX_DiscardUnknown

func (m *QueryAllOnChainItemRequest) XXX_DiscardUnknown()

func (*QueryAllOnChainItemRequest) XXX_Marshal

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

func (*QueryAllOnChainItemRequest) XXX_Merge

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

func (*QueryAllOnChainItemRequest) XXX_Size

func (m *QueryAllOnChainItemRequest) XXX_Size() int

func (*QueryAllOnChainItemRequest) XXX_Unmarshal

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

type QueryAllOnChainItemResponse

type QueryAllOnChainItemResponse struct {
	Item       []OnChainItem       `protobuf:"bytes,1,rep,name=item,proto3" json:"item"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllOnChainItemResponse) Descriptor

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

func (*QueryAllOnChainItemResponse) GetItem

func (*QueryAllOnChainItemResponse) GetPagination

func (m *QueryAllOnChainItemResponse) GetPagination() *query.PageResponse

func (*QueryAllOnChainItemResponse) Marshal

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

func (*QueryAllOnChainItemResponse) MarshalTo

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

func (*QueryAllOnChainItemResponse) MarshalToSizedBuffer

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

func (*QueryAllOnChainItemResponse) ProtoMessage

func (*QueryAllOnChainItemResponse) ProtoMessage()

func (*QueryAllOnChainItemResponse) Reset

func (m *QueryAllOnChainItemResponse) Reset()

func (*QueryAllOnChainItemResponse) Size

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

func (*QueryAllOnChainItemResponse) String

func (m *QueryAllOnChainItemResponse) String() string

func (*QueryAllOnChainItemResponse) Unmarshal

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

func (*QueryAllOnChainItemResponse) XXX_DiscardUnknown

func (m *QueryAllOnChainItemResponse) XXX_DiscardUnknown()

func (*QueryAllOnChainItemResponse) XXX_Marshal

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

func (*QueryAllOnChainItemResponse) XXX_Merge

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

func (*QueryAllOnChainItemResponse) XXX_Size

func (m *QueryAllOnChainItemResponse) XXX_Size() int

func (*QueryAllOnChainItemResponse) XXX_Unmarshal

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

type QueryAllSeedRequest

type QueryAllSeedRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllSeedRequest) Descriptor

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

func (*QueryAllSeedRequest) GetPagination

func (m *QueryAllSeedRequest) GetPagination() *query.PageRequest

func (*QueryAllSeedRequest) Marshal

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

func (*QueryAllSeedRequest) MarshalTo

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

func (*QueryAllSeedRequest) MarshalToSizedBuffer

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

func (*QueryAllSeedRequest) ProtoMessage

func (*QueryAllSeedRequest) ProtoMessage()

func (*QueryAllSeedRequest) Reset

func (m *QueryAllSeedRequest) Reset()

func (*QueryAllSeedRequest) Size

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

func (*QueryAllSeedRequest) String

func (m *QueryAllSeedRequest) String() string

func (*QueryAllSeedRequest) Unmarshal

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

func (*QueryAllSeedRequest) XXX_DiscardUnknown

func (m *QueryAllSeedRequest) XXX_DiscardUnknown()

func (*QueryAllSeedRequest) XXX_Marshal

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

func (*QueryAllSeedRequest) XXX_Merge

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

func (*QueryAllSeedRequest) XXX_Size

func (m *QueryAllSeedRequest) XXX_Size() int

func (*QueryAllSeedRequest) XXX_Unmarshal

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

type QueryAllSeedResponse

type QueryAllSeedResponse struct {
	Seed       []Seed              `protobuf:"bytes,1,rep,name=seed,proto3" json:"seed"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllSeedResponse) Descriptor

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

func (*QueryAllSeedResponse) GetPagination

func (m *QueryAllSeedResponse) GetPagination() *query.PageResponse

func (*QueryAllSeedResponse) GetSeed

func (m *QueryAllSeedResponse) GetSeed() []Seed

func (*QueryAllSeedResponse) Marshal

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

func (*QueryAllSeedResponse) MarshalTo

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

func (*QueryAllSeedResponse) MarshalToSizedBuffer

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

func (*QueryAllSeedResponse) ProtoMessage

func (*QueryAllSeedResponse) ProtoMessage()

func (*QueryAllSeedResponse) Reset

func (m *QueryAllSeedResponse) Reset()

func (*QueryAllSeedResponse) Size

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

func (*QueryAllSeedResponse) String

func (m *QueryAllSeedResponse) String() string

func (*QueryAllSeedResponse) Unmarshal

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

func (*QueryAllSeedResponse) XXX_DiscardUnknown

func (m *QueryAllSeedResponse) XXX_DiscardUnknown()

func (*QueryAllSeedResponse) XXX_Marshal

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

func (*QueryAllSeedResponse) XXX_Merge

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

func (*QueryAllSeedResponse) XXX_Size

func (m *QueryAllSeedResponse) XXX_Size() int

func (*QueryAllSeedResponse) XXX_Unmarshal

func (m *QueryAllSeedResponse) 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)
	// Parameters queries the parameters of the module.
	NetworkParams(ctx context.Context, in *QueryNetworkParamsRequest, opts ...grpc.CallOption) (*QueryNetworkParamsResponse, error)
	// Queries a Item by index.
	Item(ctx context.Context, in *QueryGetItemRequest, opts ...grpc.CallOption) (*QueryGetItemResponse, error)
	// Queries a Item by index.
	ItemByOnChainItem(ctx context.Context, in *QueryGetItemByOnChainItemRequest, opts ...grpc.CallOption) (*QueryGetItemByOnChainItemResponse, error)
	// Queries a list of Item entries.
	ItemAll(ctx context.Context, in *QueryAllItemRequest, opts ...grpc.CallOption) (*QueryAllItemResponse, error)
	// Queries a Item by index.
	OnChainItem(ctx context.Context, in *QueryGetOnChainItemRequest, opts ...grpc.CallOption) (*QueryGetOnChainItemResponse, error)
	// Queries a Item by index.
	OnChainItemByOther(ctx context.Context, in *QueryGetOnChainItemByOtherRequest, opts ...grpc.CallOption) (*QueryGetOnChainItemByOtherResponse, error)
	OnChainItemByItemForChain(ctx context.Context, in *QueryGetOnChainItemByItemForChainRequest, opts ...grpc.CallOption) (*QueryGetOnChainItemByItemForChainResponse, error)
	// Queries a list of Item entries.
	OnChainItemAll(ctx context.Context, in *QueryAllOnChainItemRequest, opts ...grpc.CallOption) (*QueryAllOnChainItemResponse, error)
	Collection(ctx context.Context, in *QueryGetCollectionRequest, opts ...grpc.CallOption) (*QueryGetCollectionResponse, error)
	CollectionByCollectionData(ctx context.Context, in *QueryGetCollectionByCollectionDataRequest, opts ...grpc.CallOption) (*QueryGetCollectionByCollectionDataResponse, error)
	CollectionAll(ctx context.Context, in *QueryAllCollectionRequest, opts ...grpc.CallOption) (*QueryAllCollectionResponse, error)
	CollectionData(ctx context.Context, in *QueryGetCollectionDataRequest, opts ...grpc.CallOption) (*QueryGetCollectionDataResponse, error)
	CollectionDataByCollectionForChain(ctx context.Context, in *QueryGetCollectionDataByCollectionForChainRequest, opts ...grpc.CallOption) (*QueryGetCollectionDataByCollectionForChainResponse, error)
	NativeCollectionData(ctx context.Context, in *QueryGetNativeCollectionDataRequest, opts ...grpc.CallOption) (*QueryGetNativeCollectionDataResponse, error)
	CollectionDataAll(ctx context.Context, in *QueryAllCollectionDataRequest, opts ...grpc.CallOption) (*QueryAllCollectionDataResponse, error)
	Seed(ctx context.Context, in *QueryGetSeedRequest, opts ...grpc.CallOption) (*QueryGetSeedResponse, error)
	SeedAll(ctx context.Context, in *QueryAllSeedRequest, opts ...grpc.CallOption) (*QueryAllSeedResponse, 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 QueryGetCollectionByCollectionDataRequest

type QueryGetCollectionByCollectionDataRequest struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryGetCollectionByCollectionDataRequest) Descriptor

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

func (*QueryGetCollectionByCollectionDataRequest) GetAddress

func (*QueryGetCollectionByCollectionDataRequest) GetChain

func (*QueryGetCollectionByCollectionDataRequest) Marshal

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

func (*QueryGetCollectionByCollectionDataRequest) MarshalTo

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

func (*QueryGetCollectionByCollectionDataRequest) MarshalToSizedBuffer

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

func (*QueryGetCollectionByCollectionDataRequest) ProtoMessage

func (*QueryGetCollectionByCollectionDataRequest) Reset

func (*QueryGetCollectionByCollectionDataRequest) Size

func (*QueryGetCollectionByCollectionDataRequest) String

func (*QueryGetCollectionByCollectionDataRequest) Unmarshal

func (*QueryGetCollectionByCollectionDataRequest) XXX_DiscardUnknown

func (m *QueryGetCollectionByCollectionDataRequest) XXX_DiscardUnknown()

func (*QueryGetCollectionByCollectionDataRequest) XXX_Marshal

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

func (*QueryGetCollectionByCollectionDataRequest) XXX_Merge

func (*QueryGetCollectionByCollectionDataRequest) XXX_Size

func (*QueryGetCollectionByCollectionDataRequest) XXX_Unmarshal

type QueryGetCollectionByCollectionDataResponse

type QueryGetCollectionByCollectionDataResponse struct {
	Collection Collection `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection"`
}

func (*QueryGetCollectionByCollectionDataResponse) Descriptor

func (*QueryGetCollectionByCollectionDataResponse) GetCollection

func (*QueryGetCollectionByCollectionDataResponse) Marshal

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

func (*QueryGetCollectionByCollectionDataResponse) MarshalTo

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

func (*QueryGetCollectionByCollectionDataResponse) MarshalToSizedBuffer

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

func (*QueryGetCollectionByCollectionDataResponse) ProtoMessage

func (*QueryGetCollectionByCollectionDataResponse) Reset

func (*QueryGetCollectionByCollectionDataResponse) Size

func (*QueryGetCollectionByCollectionDataResponse) String

func (*QueryGetCollectionByCollectionDataResponse) Unmarshal

func (*QueryGetCollectionByCollectionDataResponse) XXX_DiscardUnknown

func (m *QueryGetCollectionByCollectionDataResponse) XXX_DiscardUnknown()

func (*QueryGetCollectionByCollectionDataResponse) XXX_Marshal

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

func (*QueryGetCollectionByCollectionDataResponse) XXX_Merge

func (*QueryGetCollectionByCollectionDataResponse) XXX_Size

func (*QueryGetCollectionByCollectionDataResponse) XXX_Unmarshal

type QueryGetCollectionDataByCollectionForChainRequest

type QueryGetCollectionDataByCollectionForChainRequest struct {
	CollectionIndex string `protobuf:"bytes,1,opt,name=collection_index,json=collectionIndex,proto3" json:"collection_index,omitempty"`
	Chain           string `protobuf:"bytes,2,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*QueryGetCollectionDataByCollectionForChainRequest) Descriptor

func (*QueryGetCollectionDataByCollectionForChainRequest) GetChain

func (*QueryGetCollectionDataByCollectionForChainRequest) GetCollectionIndex

func (*QueryGetCollectionDataByCollectionForChainRequest) Marshal

func (*QueryGetCollectionDataByCollectionForChainRequest) MarshalTo

func (*QueryGetCollectionDataByCollectionForChainRequest) MarshalToSizedBuffer

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

func (*QueryGetCollectionDataByCollectionForChainRequest) ProtoMessage

func (*QueryGetCollectionDataByCollectionForChainRequest) Reset

func (*QueryGetCollectionDataByCollectionForChainRequest) Size

func (*QueryGetCollectionDataByCollectionForChainRequest) String

func (*QueryGetCollectionDataByCollectionForChainRequest) Unmarshal

func (*QueryGetCollectionDataByCollectionForChainRequest) XXX_DiscardUnknown

func (m *QueryGetCollectionDataByCollectionForChainRequest) XXX_DiscardUnknown()

func (*QueryGetCollectionDataByCollectionForChainRequest) XXX_Marshal

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

func (*QueryGetCollectionDataByCollectionForChainRequest) XXX_Merge

func (*QueryGetCollectionDataByCollectionForChainRequest) XXX_Size

func (*QueryGetCollectionDataByCollectionForChainRequest) XXX_Unmarshal

type QueryGetCollectionDataByCollectionForChainResponse

type QueryGetCollectionDataByCollectionForChainResponse struct {
	Data CollectionData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
}

func (*QueryGetCollectionDataByCollectionForChainResponse) Descriptor

func (*QueryGetCollectionDataByCollectionForChainResponse) GetData

func (*QueryGetCollectionDataByCollectionForChainResponse) Marshal

func (*QueryGetCollectionDataByCollectionForChainResponse) MarshalTo

func (*QueryGetCollectionDataByCollectionForChainResponse) MarshalToSizedBuffer

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

func (*QueryGetCollectionDataByCollectionForChainResponse) ProtoMessage

func (*QueryGetCollectionDataByCollectionForChainResponse) Reset

func (*QueryGetCollectionDataByCollectionForChainResponse) Size

func (*QueryGetCollectionDataByCollectionForChainResponse) String

func (*QueryGetCollectionDataByCollectionForChainResponse) Unmarshal

func (*QueryGetCollectionDataByCollectionForChainResponse) XXX_DiscardUnknown

func (*QueryGetCollectionDataByCollectionForChainResponse) XXX_Marshal

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

func (*QueryGetCollectionDataByCollectionForChainResponse) XXX_Merge

func (*QueryGetCollectionDataByCollectionForChainResponse) XXX_Size

func (*QueryGetCollectionDataByCollectionForChainResponse) XXX_Unmarshal

type QueryGetCollectionDataRequest

type QueryGetCollectionDataRequest struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryGetCollectionDataRequest) Descriptor

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

func (*QueryGetCollectionDataRequest) GetAddress

func (m *QueryGetCollectionDataRequest) GetAddress() string

func (*QueryGetCollectionDataRequest) GetChain

func (m *QueryGetCollectionDataRequest) GetChain() string

func (*QueryGetCollectionDataRequest) Marshal

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

func (*QueryGetCollectionDataRequest) MarshalTo

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

func (*QueryGetCollectionDataRequest) MarshalToSizedBuffer

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

func (*QueryGetCollectionDataRequest) ProtoMessage

func (*QueryGetCollectionDataRequest) ProtoMessage()

func (*QueryGetCollectionDataRequest) Reset

func (m *QueryGetCollectionDataRequest) Reset()

func (*QueryGetCollectionDataRequest) Size

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

func (*QueryGetCollectionDataRequest) String

func (*QueryGetCollectionDataRequest) Unmarshal

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

func (*QueryGetCollectionDataRequest) XXX_DiscardUnknown

func (m *QueryGetCollectionDataRequest) XXX_DiscardUnknown()

func (*QueryGetCollectionDataRequest) XXX_Marshal

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

func (*QueryGetCollectionDataRequest) XXX_Merge

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

func (*QueryGetCollectionDataRequest) XXX_Size

func (m *QueryGetCollectionDataRequest) XXX_Size() int

func (*QueryGetCollectionDataRequest) XXX_Unmarshal

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

type QueryGetCollectionDataResponse

type QueryGetCollectionDataResponse struct {
	Data CollectionData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
}

func (*QueryGetCollectionDataResponse) Descriptor

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

func (*QueryGetCollectionDataResponse) GetData

func (*QueryGetCollectionDataResponse) Marshal

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

func (*QueryGetCollectionDataResponse) MarshalTo

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

func (*QueryGetCollectionDataResponse) MarshalToSizedBuffer

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

func (*QueryGetCollectionDataResponse) ProtoMessage

func (*QueryGetCollectionDataResponse) ProtoMessage()

func (*QueryGetCollectionDataResponse) Reset

func (m *QueryGetCollectionDataResponse) Reset()

func (*QueryGetCollectionDataResponse) Size

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

func (*QueryGetCollectionDataResponse) String

func (*QueryGetCollectionDataResponse) Unmarshal

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

func (*QueryGetCollectionDataResponse) XXX_DiscardUnknown

func (m *QueryGetCollectionDataResponse) XXX_DiscardUnknown()

func (*QueryGetCollectionDataResponse) XXX_Marshal

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

func (*QueryGetCollectionDataResponse) XXX_Merge

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

func (*QueryGetCollectionDataResponse) XXX_Size

func (m *QueryGetCollectionDataResponse) XXX_Size() int

func (*QueryGetCollectionDataResponse) XXX_Unmarshal

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

type QueryGetCollectionRequest

type QueryGetCollectionRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetCollectionRequest) Descriptor

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

func (*QueryGetCollectionRequest) GetIndex

func (m *QueryGetCollectionRequest) GetIndex() string

func (*QueryGetCollectionRequest) Marshal

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

func (*QueryGetCollectionRequest) MarshalTo

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

func (*QueryGetCollectionRequest) MarshalToSizedBuffer

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

func (*QueryGetCollectionRequest) ProtoMessage

func (*QueryGetCollectionRequest) ProtoMessage()

func (*QueryGetCollectionRequest) Reset

func (m *QueryGetCollectionRequest) Reset()

func (*QueryGetCollectionRequest) Size

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

func (*QueryGetCollectionRequest) String

func (m *QueryGetCollectionRequest) String() string

func (*QueryGetCollectionRequest) Unmarshal

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

func (*QueryGetCollectionRequest) XXX_DiscardUnknown

func (m *QueryGetCollectionRequest) XXX_DiscardUnknown()

func (*QueryGetCollectionRequest) XXX_Marshal

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

func (*QueryGetCollectionRequest) XXX_Merge

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

func (*QueryGetCollectionRequest) XXX_Size

func (m *QueryGetCollectionRequest) XXX_Size() int

func (*QueryGetCollectionRequest) XXX_Unmarshal

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

type QueryGetCollectionResponse

type QueryGetCollectionResponse struct {
	Collection Collection `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection"`
}

func (*QueryGetCollectionResponse) Descriptor

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

func (*QueryGetCollectionResponse) GetCollection

func (m *QueryGetCollectionResponse) GetCollection() Collection

func (*QueryGetCollectionResponse) Marshal

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

func (*QueryGetCollectionResponse) MarshalTo

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

func (*QueryGetCollectionResponse) MarshalToSizedBuffer

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

func (*QueryGetCollectionResponse) ProtoMessage

func (*QueryGetCollectionResponse) ProtoMessage()

func (*QueryGetCollectionResponse) Reset

func (m *QueryGetCollectionResponse) Reset()

func (*QueryGetCollectionResponse) Size

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

func (*QueryGetCollectionResponse) String

func (m *QueryGetCollectionResponse) String() string

func (*QueryGetCollectionResponse) Unmarshal

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

func (*QueryGetCollectionResponse) XXX_DiscardUnknown

func (m *QueryGetCollectionResponse) XXX_DiscardUnknown()

func (*QueryGetCollectionResponse) XXX_Marshal

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

func (*QueryGetCollectionResponse) XXX_Merge

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

func (*QueryGetCollectionResponse) XXX_Size

func (m *QueryGetCollectionResponse) XXX_Size() int

func (*QueryGetCollectionResponse) XXX_Unmarshal

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

type QueryGetItemByOnChainItemRequest

type QueryGetItemByOnChainItemRequest struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	TokenID string `protobuf:"bytes,3,opt,name=tokenID,proto3" json:"tokenID,omitempty"`
}

func (*QueryGetItemByOnChainItemRequest) Descriptor

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

func (*QueryGetItemByOnChainItemRequest) GetAddress

func (m *QueryGetItemByOnChainItemRequest) GetAddress() string

func (*QueryGetItemByOnChainItemRequest) GetChain

func (*QueryGetItemByOnChainItemRequest) GetTokenID

func (m *QueryGetItemByOnChainItemRequest) GetTokenID() string

func (*QueryGetItemByOnChainItemRequest) Marshal

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

func (*QueryGetItemByOnChainItemRequest) MarshalTo

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

func (*QueryGetItemByOnChainItemRequest) MarshalToSizedBuffer

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

func (*QueryGetItemByOnChainItemRequest) ProtoMessage

func (*QueryGetItemByOnChainItemRequest) ProtoMessage()

func (*QueryGetItemByOnChainItemRequest) Reset

func (*QueryGetItemByOnChainItemRequest) Size

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

func (*QueryGetItemByOnChainItemRequest) String

func (*QueryGetItemByOnChainItemRequest) Unmarshal

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

func (*QueryGetItemByOnChainItemRequest) XXX_DiscardUnknown

func (m *QueryGetItemByOnChainItemRequest) XXX_DiscardUnknown()

func (*QueryGetItemByOnChainItemRequest) XXX_Marshal

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

func (*QueryGetItemByOnChainItemRequest) XXX_Merge

func (*QueryGetItemByOnChainItemRequest) XXX_Size

func (m *QueryGetItemByOnChainItemRequest) XXX_Size() int

func (*QueryGetItemByOnChainItemRequest) XXX_Unmarshal

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

type QueryGetItemByOnChainItemResponse

type QueryGetItemByOnChainItemResponse struct {
	Item Item `protobuf:"bytes,1,opt,name=item,proto3" json:"item"`
}

func (*QueryGetItemByOnChainItemResponse) Descriptor

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

func (*QueryGetItemByOnChainItemResponse) GetItem

func (*QueryGetItemByOnChainItemResponse) Marshal

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

func (*QueryGetItemByOnChainItemResponse) MarshalTo

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

func (*QueryGetItemByOnChainItemResponse) MarshalToSizedBuffer

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

func (*QueryGetItemByOnChainItemResponse) ProtoMessage

func (*QueryGetItemByOnChainItemResponse) ProtoMessage()

func (*QueryGetItemByOnChainItemResponse) Reset

func (*QueryGetItemByOnChainItemResponse) Size

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

func (*QueryGetItemByOnChainItemResponse) String

func (*QueryGetItemByOnChainItemResponse) Unmarshal

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

func (*QueryGetItemByOnChainItemResponse) XXX_DiscardUnknown

func (m *QueryGetItemByOnChainItemResponse) XXX_DiscardUnknown()

func (*QueryGetItemByOnChainItemResponse) XXX_Marshal

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

func (*QueryGetItemByOnChainItemResponse) XXX_Merge

func (*QueryGetItemByOnChainItemResponse) XXX_Size

func (m *QueryGetItemByOnChainItemResponse) XXX_Size() int

func (*QueryGetItemByOnChainItemResponse) XXX_Unmarshal

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

type QueryGetItemRequest

type QueryGetItemRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetItemRequest) Descriptor

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

func (*QueryGetItemRequest) GetIndex

func (m *QueryGetItemRequest) GetIndex() string

func (*QueryGetItemRequest) Marshal

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

func (*QueryGetItemRequest) MarshalTo

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

func (*QueryGetItemRequest) MarshalToSizedBuffer

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

func (*QueryGetItemRequest) ProtoMessage

func (*QueryGetItemRequest) ProtoMessage()

func (*QueryGetItemRequest) Reset

func (m *QueryGetItemRequest) Reset()

func (*QueryGetItemRequest) Size

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

func (*QueryGetItemRequest) String

func (m *QueryGetItemRequest) String() string

func (*QueryGetItemRequest) Unmarshal

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

func (*QueryGetItemRequest) XXX_DiscardUnknown

func (m *QueryGetItemRequest) XXX_DiscardUnknown()

func (*QueryGetItemRequest) XXX_Marshal

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

func (*QueryGetItemRequest) XXX_Merge

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

func (*QueryGetItemRequest) XXX_Size

func (m *QueryGetItemRequest) XXX_Size() int

func (*QueryGetItemRequest) XXX_Unmarshal

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

type QueryGetItemResponse

type QueryGetItemResponse struct {
	Item Item `protobuf:"bytes,1,opt,name=item,proto3" json:"item"`
}

func (*QueryGetItemResponse) Descriptor

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

func (*QueryGetItemResponse) GetItem

func (m *QueryGetItemResponse) GetItem() Item

func (*QueryGetItemResponse) Marshal

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

func (*QueryGetItemResponse) MarshalTo

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

func (*QueryGetItemResponse) MarshalToSizedBuffer

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

func (*QueryGetItemResponse) ProtoMessage

func (*QueryGetItemResponse) ProtoMessage()

func (*QueryGetItemResponse) Reset

func (m *QueryGetItemResponse) Reset()

func (*QueryGetItemResponse) Size

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

func (*QueryGetItemResponse) String

func (m *QueryGetItemResponse) String() string

func (*QueryGetItemResponse) Unmarshal

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

func (*QueryGetItemResponse) XXX_DiscardUnknown

func (m *QueryGetItemResponse) XXX_DiscardUnknown()

func (*QueryGetItemResponse) XXX_Marshal

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

func (*QueryGetItemResponse) XXX_Merge

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

func (*QueryGetItemResponse) XXX_Size

func (m *QueryGetItemResponse) XXX_Size() int

func (*QueryGetItemResponse) XXX_Unmarshal

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

type QueryGetNativeCollectionDataRequest

type QueryGetNativeCollectionDataRequest struct {
	Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
}

func (*QueryGetNativeCollectionDataRequest) Descriptor

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

func (*QueryGetNativeCollectionDataRequest) GetCollection

func (m *QueryGetNativeCollectionDataRequest) GetCollection() string

func (*QueryGetNativeCollectionDataRequest) Marshal

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

func (*QueryGetNativeCollectionDataRequest) MarshalTo

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

func (*QueryGetNativeCollectionDataRequest) MarshalToSizedBuffer

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

func (*QueryGetNativeCollectionDataRequest) ProtoMessage

func (*QueryGetNativeCollectionDataRequest) ProtoMessage()

func (*QueryGetNativeCollectionDataRequest) Reset

func (*QueryGetNativeCollectionDataRequest) Size

func (*QueryGetNativeCollectionDataRequest) String

func (*QueryGetNativeCollectionDataRequest) Unmarshal

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

func (*QueryGetNativeCollectionDataRequest) XXX_DiscardUnknown

func (m *QueryGetNativeCollectionDataRequest) XXX_DiscardUnknown()

func (*QueryGetNativeCollectionDataRequest) XXX_Marshal

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

func (*QueryGetNativeCollectionDataRequest) XXX_Merge

func (*QueryGetNativeCollectionDataRequest) XXX_Size

func (*QueryGetNativeCollectionDataRequest) XXX_Unmarshal

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

type QueryGetNativeCollectionDataResponse

type QueryGetNativeCollectionDataResponse struct {
	Data CollectionData `protobuf:"bytes,1,opt,name=data,proto3" json:"data"`
}

func (*QueryGetNativeCollectionDataResponse) Descriptor

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

func (*QueryGetNativeCollectionDataResponse) GetData

func (*QueryGetNativeCollectionDataResponse) Marshal

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

func (*QueryGetNativeCollectionDataResponse) MarshalTo

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

func (*QueryGetNativeCollectionDataResponse) MarshalToSizedBuffer

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

func (*QueryGetNativeCollectionDataResponse) ProtoMessage

func (*QueryGetNativeCollectionDataResponse) ProtoMessage()

func (*QueryGetNativeCollectionDataResponse) Reset

func (*QueryGetNativeCollectionDataResponse) Size

func (*QueryGetNativeCollectionDataResponse) String

func (*QueryGetNativeCollectionDataResponse) Unmarshal

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

func (*QueryGetNativeCollectionDataResponse) XXX_DiscardUnknown

func (m *QueryGetNativeCollectionDataResponse) XXX_DiscardUnknown()

func (*QueryGetNativeCollectionDataResponse) XXX_Marshal

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

func (*QueryGetNativeCollectionDataResponse) XXX_Merge

func (*QueryGetNativeCollectionDataResponse) XXX_Size

func (*QueryGetNativeCollectionDataResponse) XXX_Unmarshal

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

type QueryGetOnChainItemByItemForChainRequest

type QueryGetOnChainItemByItemForChainRequest struct {
	ItemIndex string `protobuf:"bytes,1,opt,name=item_index,json=itemIndex,proto3" json:"item_index,omitempty"`
	Chain     string `protobuf:"bytes,2,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*QueryGetOnChainItemByItemForChainRequest) Descriptor

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

func (*QueryGetOnChainItemByItemForChainRequest) GetChain

func (*QueryGetOnChainItemByItemForChainRequest) GetItemIndex

func (*QueryGetOnChainItemByItemForChainRequest) Marshal

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

func (*QueryGetOnChainItemByItemForChainRequest) MarshalTo

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

func (*QueryGetOnChainItemByItemForChainRequest) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemByItemForChainRequest) ProtoMessage

func (*QueryGetOnChainItemByItemForChainRequest) Reset

func (*QueryGetOnChainItemByItemForChainRequest) Size

func (*QueryGetOnChainItemByItemForChainRequest) String

func (*QueryGetOnChainItemByItemForChainRequest) Unmarshal

func (*QueryGetOnChainItemByItemForChainRequest) XXX_DiscardUnknown

func (m *QueryGetOnChainItemByItemForChainRequest) XXX_DiscardUnknown()

func (*QueryGetOnChainItemByItemForChainRequest) XXX_Marshal

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

func (*QueryGetOnChainItemByItemForChainRequest) XXX_Merge

func (*QueryGetOnChainItemByItemForChainRequest) XXX_Size

func (*QueryGetOnChainItemByItemForChainRequest) XXX_Unmarshal

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

type QueryGetOnChainItemByItemForChainResponse

type QueryGetOnChainItemByItemForChainResponse struct {
	Item OnChainItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item"`
}

func (*QueryGetOnChainItemByItemForChainResponse) Descriptor

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

func (*QueryGetOnChainItemByItemForChainResponse) GetItem

func (*QueryGetOnChainItemByItemForChainResponse) Marshal

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

func (*QueryGetOnChainItemByItemForChainResponse) MarshalTo

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

func (*QueryGetOnChainItemByItemForChainResponse) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemByItemForChainResponse) ProtoMessage

func (*QueryGetOnChainItemByItemForChainResponse) Reset

func (*QueryGetOnChainItemByItemForChainResponse) Size

func (*QueryGetOnChainItemByItemForChainResponse) String

func (*QueryGetOnChainItemByItemForChainResponse) Unmarshal

func (*QueryGetOnChainItemByItemForChainResponse) XXX_DiscardUnknown

func (m *QueryGetOnChainItemByItemForChainResponse) XXX_DiscardUnknown()

func (*QueryGetOnChainItemByItemForChainResponse) XXX_Marshal

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

func (*QueryGetOnChainItemByItemForChainResponse) XXX_Merge

func (*QueryGetOnChainItemByItemForChainResponse) XXX_Size

func (*QueryGetOnChainItemByItemForChainResponse) XXX_Unmarshal

type QueryGetOnChainItemByOtherRequest

type QueryGetOnChainItemByOtherRequest struct {
	Chain       string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address     string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	TokenID     string `protobuf:"bytes,3,opt,name=tokenID,proto3" json:"tokenID,omitempty"`
	TargetChain string `protobuf:"bytes,4,opt,name=targetChain,proto3" json:"targetChain,omitempty"`
}

func (*QueryGetOnChainItemByOtherRequest) Descriptor

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

func (*QueryGetOnChainItemByOtherRequest) GetAddress

func (m *QueryGetOnChainItemByOtherRequest) GetAddress() string

func (*QueryGetOnChainItemByOtherRequest) GetChain

func (*QueryGetOnChainItemByOtherRequest) GetTargetChain

func (m *QueryGetOnChainItemByOtherRequest) GetTargetChain() string

func (*QueryGetOnChainItemByOtherRequest) GetTokenID

func (m *QueryGetOnChainItemByOtherRequest) GetTokenID() string

func (*QueryGetOnChainItemByOtherRequest) Marshal

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

func (*QueryGetOnChainItemByOtherRequest) MarshalTo

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

func (*QueryGetOnChainItemByOtherRequest) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemByOtherRequest) ProtoMessage

func (*QueryGetOnChainItemByOtherRequest) ProtoMessage()

func (*QueryGetOnChainItemByOtherRequest) Reset

func (*QueryGetOnChainItemByOtherRequest) Size

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

func (*QueryGetOnChainItemByOtherRequest) String

func (*QueryGetOnChainItemByOtherRequest) Unmarshal

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

func (*QueryGetOnChainItemByOtherRequest) XXX_DiscardUnknown

func (m *QueryGetOnChainItemByOtherRequest) XXX_DiscardUnknown()

func (*QueryGetOnChainItemByOtherRequest) XXX_Marshal

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

func (*QueryGetOnChainItemByOtherRequest) XXX_Merge

func (*QueryGetOnChainItemByOtherRequest) XXX_Size

func (m *QueryGetOnChainItemByOtherRequest) XXX_Size() int

func (*QueryGetOnChainItemByOtherRequest) XXX_Unmarshal

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

type QueryGetOnChainItemByOtherResponse

type QueryGetOnChainItemByOtherResponse struct {
	Item OnChainItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item"`
}

func (*QueryGetOnChainItemByOtherResponse) Descriptor

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

func (*QueryGetOnChainItemByOtherResponse) GetItem

func (*QueryGetOnChainItemByOtherResponse) Marshal

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

func (*QueryGetOnChainItemByOtherResponse) MarshalTo

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

func (*QueryGetOnChainItemByOtherResponse) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemByOtherResponse) ProtoMessage

func (*QueryGetOnChainItemByOtherResponse) ProtoMessage()

func (*QueryGetOnChainItemByOtherResponse) Reset

func (*QueryGetOnChainItemByOtherResponse) Size

func (*QueryGetOnChainItemByOtherResponse) String

func (*QueryGetOnChainItemByOtherResponse) Unmarshal

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

func (*QueryGetOnChainItemByOtherResponse) XXX_DiscardUnknown

func (m *QueryGetOnChainItemByOtherResponse) XXX_DiscardUnknown()

func (*QueryGetOnChainItemByOtherResponse) XXX_Marshal

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

func (*QueryGetOnChainItemByOtherResponse) XXX_Merge

func (*QueryGetOnChainItemByOtherResponse) XXX_Size

func (*QueryGetOnChainItemByOtherResponse) XXX_Unmarshal

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

type QueryGetOnChainItemRequest

type QueryGetOnChainItemRequest struct {
	Chain   string `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	TokenID string `protobuf:"bytes,3,opt,name=tokenID,proto3" json:"tokenID,omitempty"`
}

func (*QueryGetOnChainItemRequest) Descriptor

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

func (*QueryGetOnChainItemRequest) GetAddress

func (m *QueryGetOnChainItemRequest) GetAddress() string

func (*QueryGetOnChainItemRequest) GetChain

func (m *QueryGetOnChainItemRequest) GetChain() string

func (*QueryGetOnChainItemRequest) GetTokenID

func (m *QueryGetOnChainItemRequest) GetTokenID() string

func (*QueryGetOnChainItemRequest) Marshal

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

func (*QueryGetOnChainItemRequest) MarshalTo

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

func (*QueryGetOnChainItemRequest) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemRequest) ProtoMessage

func (*QueryGetOnChainItemRequest) ProtoMessage()

func (*QueryGetOnChainItemRequest) Reset

func (m *QueryGetOnChainItemRequest) Reset()

func (*QueryGetOnChainItemRequest) Size

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

func (*QueryGetOnChainItemRequest) String

func (m *QueryGetOnChainItemRequest) String() string

func (*QueryGetOnChainItemRequest) Unmarshal

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

func (*QueryGetOnChainItemRequest) XXX_DiscardUnknown

func (m *QueryGetOnChainItemRequest) XXX_DiscardUnknown()

func (*QueryGetOnChainItemRequest) XXX_Marshal

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

func (*QueryGetOnChainItemRequest) XXX_Merge

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

func (*QueryGetOnChainItemRequest) XXX_Size

func (m *QueryGetOnChainItemRequest) XXX_Size() int

func (*QueryGetOnChainItemRequest) XXX_Unmarshal

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

type QueryGetOnChainItemResponse

type QueryGetOnChainItemResponse struct {
	Item OnChainItem `protobuf:"bytes,1,opt,name=item,proto3" json:"item"`
}

func (*QueryGetOnChainItemResponse) Descriptor

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

func (*QueryGetOnChainItemResponse) GetItem

func (*QueryGetOnChainItemResponse) Marshal

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

func (*QueryGetOnChainItemResponse) MarshalTo

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

func (*QueryGetOnChainItemResponse) MarshalToSizedBuffer

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

func (*QueryGetOnChainItemResponse) ProtoMessage

func (*QueryGetOnChainItemResponse) ProtoMessage()

func (*QueryGetOnChainItemResponse) Reset

func (m *QueryGetOnChainItemResponse) Reset()

func (*QueryGetOnChainItemResponse) Size

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

func (*QueryGetOnChainItemResponse) String

func (m *QueryGetOnChainItemResponse) String() string

func (*QueryGetOnChainItemResponse) Unmarshal

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

func (*QueryGetOnChainItemResponse) XXX_DiscardUnknown

func (m *QueryGetOnChainItemResponse) XXX_DiscardUnknown()

func (*QueryGetOnChainItemResponse) XXX_Marshal

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

func (*QueryGetOnChainItemResponse) XXX_Merge

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

func (*QueryGetOnChainItemResponse) XXX_Size

func (m *QueryGetOnChainItemResponse) XXX_Size() int

func (*QueryGetOnChainItemResponse) XXX_Unmarshal

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

type QueryGetSeedRequest

type QueryGetSeedRequest struct {
	Seed string `protobuf:"bytes,1,opt,name=seed,proto3" json:"seed,omitempty"`
}

func (*QueryGetSeedRequest) Descriptor

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

func (*QueryGetSeedRequest) GetSeed

func (m *QueryGetSeedRequest) GetSeed() string

func (*QueryGetSeedRequest) Marshal

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

func (*QueryGetSeedRequest) MarshalTo

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

func (*QueryGetSeedRequest) MarshalToSizedBuffer

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

func (*QueryGetSeedRequest) ProtoMessage

func (*QueryGetSeedRequest) ProtoMessage()

func (*QueryGetSeedRequest) Reset

func (m *QueryGetSeedRequest) Reset()

func (*QueryGetSeedRequest) Size

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

func (*QueryGetSeedRequest) String

func (m *QueryGetSeedRequest) String() string

func (*QueryGetSeedRequest) Unmarshal

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

func (*QueryGetSeedRequest) XXX_DiscardUnknown

func (m *QueryGetSeedRequest) XXX_DiscardUnknown()

func (*QueryGetSeedRequest) XXX_Marshal

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

func (*QueryGetSeedRequest) XXX_Merge

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

func (*QueryGetSeedRequest) XXX_Size

func (m *QueryGetSeedRequest) XXX_Size() int

func (*QueryGetSeedRequest) XXX_Unmarshal

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

type QueryGetSeedResponse

type QueryGetSeedResponse struct {
	Seed Seed `protobuf:"bytes,1,opt,name=seed,proto3" json:"seed"`
}

func (*QueryGetSeedResponse) Descriptor

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

func (*QueryGetSeedResponse) GetSeed

func (m *QueryGetSeedResponse) GetSeed() Seed

func (*QueryGetSeedResponse) Marshal

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

func (*QueryGetSeedResponse) MarshalTo

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

func (*QueryGetSeedResponse) MarshalToSizedBuffer

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

func (*QueryGetSeedResponse) ProtoMessage

func (*QueryGetSeedResponse) ProtoMessage()

func (*QueryGetSeedResponse) Reset

func (m *QueryGetSeedResponse) Reset()

func (*QueryGetSeedResponse) Size

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

func (*QueryGetSeedResponse) String

func (m *QueryGetSeedResponse) String() string

func (*QueryGetSeedResponse) Unmarshal

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

func (*QueryGetSeedResponse) XXX_DiscardUnknown

func (m *QueryGetSeedResponse) XXX_DiscardUnknown()

func (*QueryGetSeedResponse) XXX_Marshal

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

func (*QueryGetSeedResponse) XXX_Merge

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

func (*QueryGetSeedResponse) XXX_Size

func (m *QueryGetSeedResponse) XXX_Size() int

func (*QueryGetSeedResponse) XXX_Unmarshal

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

type QueryNetworkParamsRequest

type QueryNetworkParamsRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
}

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryNetworkParamsRequest) Descriptor

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

func (*QueryNetworkParamsRequest) GetName

func (m *QueryNetworkParamsRequest) GetName() string

func (*QueryNetworkParamsRequest) Marshal

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

func (*QueryNetworkParamsRequest) MarshalTo

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

func (*QueryNetworkParamsRequest) MarshalToSizedBuffer

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

func (*QueryNetworkParamsRequest) ProtoMessage

func (*QueryNetworkParamsRequest) ProtoMessage()

func (*QueryNetworkParamsRequest) Reset

func (m *QueryNetworkParamsRequest) Reset()

func (*QueryNetworkParamsRequest) Size

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

func (*QueryNetworkParamsRequest) String

func (m *QueryNetworkParamsRequest) String() string

func (*QueryNetworkParamsRequest) Unmarshal

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

func (*QueryNetworkParamsRequest) XXX_DiscardUnknown

func (m *QueryNetworkParamsRequest) XXX_DiscardUnknown()

func (*QueryNetworkParamsRequest) XXX_Marshal

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

func (*QueryNetworkParamsRequest) XXX_Merge

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

func (*QueryNetworkParamsRequest) XXX_Size

func (m *QueryNetworkParamsRequest) XXX_Size() int

func (*QueryNetworkParamsRequest) XXX_Unmarshal

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

type QueryNetworkParamsResponse

type QueryNetworkParamsResponse struct {
	Params Network `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryNetworkParamsResponse) Descriptor

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

func (*QueryNetworkParamsResponse) GetParams

func (m *QueryNetworkParamsResponse) GetParams() Network

func (*QueryNetworkParamsResponse) Marshal

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

func (*QueryNetworkParamsResponse) MarshalTo

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

func (*QueryNetworkParamsResponse) MarshalToSizedBuffer

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

func (*QueryNetworkParamsResponse) ProtoMessage

func (*QueryNetworkParamsResponse) ProtoMessage()

func (*QueryNetworkParamsResponse) Reset

func (m *QueryNetworkParamsResponse) Reset()

func (*QueryNetworkParamsResponse) Size

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

func (*QueryNetworkParamsResponse) String

func (m *QueryNetworkParamsResponse) String() string

func (*QueryNetworkParamsResponse) Unmarshal

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

func (*QueryNetworkParamsResponse) XXX_DiscardUnknown

func (m *QueryNetworkParamsResponse) XXX_DiscardUnknown()

func (*QueryNetworkParamsResponse) XXX_Marshal

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

func (*QueryNetworkParamsResponse) XXX_Merge

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

func (*QueryNetworkParamsResponse) XXX_Size

func (m *QueryNetworkParamsResponse) XXX_Size() int

func (*QueryNetworkParamsResponse) XXX_Unmarshal

func (m *QueryNetworkParamsResponse) 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 QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Parameters queries the parameters of the module.
	NetworkParams(context.Context, *QueryNetworkParamsRequest) (*QueryNetworkParamsResponse, error)
	// Queries a Item by index.
	Item(context.Context, *QueryGetItemRequest) (*QueryGetItemResponse, error)
	// Queries a Item by index.
	ItemByOnChainItem(context.Context, *QueryGetItemByOnChainItemRequest) (*QueryGetItemByOnChainItemResponse, error)
	// Queries a list of Item entries.
	ItemAll(context.Context, *QueryAllItemRequest) (*QueryAllItemResponse, error)
	// Queries a Item by index.
	OnChainItem(context.Context, *QueryGetOnChainItemRequest) (*QueryGetOnChainItemResponse, error)
	// Queries a Item by index.
	OnChainItemByOther(context.Context, *QueryGetOnChainItemByOtherRequest) (*QueryGetOnChainItemByOtherResponse, error)
	OnChainItemByItemForChain(context.Context, *QueryGetOnChainItemByItemForChainRequest) (*QueryGetOnChainItemByItemForChainResponse, error)
	// Queries a list of Item entries.
	OnChainItemAll(context.Context, *QueryAllOnChainItemRequest) (*QueryAllOnChainItemResponse, error)
	Collection(context.Context, *QueryGetCollectionRequest) (*QueryGetCollectionResponse, error)
	CollectionByCollectionData(context.Context, *QueryGetCollectionByCollectionDataRequest) (*QueryGetCollectionByCollectionDataResponse, error)
	CollectionAll(context.Context, *QueryAllCollectionRequest) (*QueryAllCollectionResponse, error)
	CollectionData(context.Context, *QueryGetCollectionDataRequest) (*QueryGetCollectionDataResponse, error)
	CollectionDataByCollectionForChain(context.Context, *QueryGetCollectionDataByCollectionForChainRequest) (*QueryGetCollectionDataByCollectionForChainResponse, error)
	NativeCollectionData(context.Context, *QueryGetNativeCollectionDataRequest) (*QueryGetNativeCollectionDataResponse, error)
	CollectionDataAll(context.Context, *QueryAllCollectionDataRequest) (*QueryAllCollectionDataResponse, error)
	Seed(context.Context, *QueryGetSeedRequest) (*QueryGetSeedResponse, error)
	SeedAll(context.Context, *QueryAllSeedRequest) (*QueryAllSeedResponse, error)
}

QueryServer is the server API for Query service.

type RarimocoreKeeper

type RarimocoreKeeper interface {
	CreateAddFeeTokenOperation(ctx sdk.Context, token FeeToken, chain string, nonce string) error
	CreateRemoveFeeTokenOperation(ctx sdk.Context, token FeeToken, chain string, nonce string) error
	CreateUpdateFeeTokenOperation(ctx sdk.Context, token FeeToken, chain string, nonce string) error
	CreateWithdrawFeeOperation(ctx sdk.Context, token FeeToken, chain string, receiver string, nonce string) error
	CreateContractUpgradeOperation(ctx sdk.Context, upgradeDetails *ContractUpgradeDetails) error
}

type RemoveCollectionDataProposal

type RemoveCollectionDataProposal struct {
	Title       string                 `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Index       []*CollectionDataIndex `protobuf:"bytes,3,rep,name=index,proto3" json:"index,omitempty"`
}

func (*RemoveCollectionDataProposal) Descriptor

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

func (*RemoveCollectionDataProposal) GetDescription

func (m *RemoveCollectionDataProposal) GetDescription() string

func (*RemoveCollectionDataProposal) GetIndex

func (*RemoveCollectionDataProposal) GetTitle

func (m *RemoveCollectionDataProposal) GetTitle() string

func (*RemoveCollectionDataProposal) Marshal

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

func (*RemoveCollectionDataProposal) MarshalTo

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

func (*RemoveCollectionDataProposal) MarshalToSizedBuffer

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

func (*RemoveCollectionDataProposal) ProposalRoute

func (m *RemoveCollectionDataProposal) ProposalRoute() string

func (*RemoveCollectionDataProposal) ProposalType

func (m *RemoveCollectionDataProposal) ProposalType() string

func (*RemoveCollectionDataProposal) ProtoMessage

func (*RemoveCollectionDataProposal) ProtoMessage()

func (*RemoveCollectionDataProposal) Reset

func (m *RemoveCollectionDataProposal) Reset()

func (*RemoveCollectionDataProposal) Size

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

func (*RemoveCollectionDataProposal) String

func (*RemoveCollectionDataProposal) Unmarshal

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

func (*RemoveCollectionDataProposal) ValidateBasic

func (m *RemoveCollectionDataProposal) ValidateBasic() error

func (*RemoveCollectionDataProposal) XXX_DiscardUnknown

func (m *RemoveCollectionDataProposal) XXX_DiscardUnknown()

func (*RemoveCollectionDataProposal) XXX_Marshal

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

func (*RemoveCollectionDataProposal) XXX_Merge

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

func (*RemoveCollectionDataProposal) XXX_Size

func (m *RemoveCollectionDataProposal) XXX_Size() int

func (*RemoveCollectionDataProposal) XXX_Unmarshal

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

type RemoveCollectionProposal

type RemoveCollectionProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Index       string `protobuf:"bytes,3,opt,name=index,proto3" json:"index,omitempty"`
}

func (*RemoveCollectionProposal) Descriptor

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

func (*RemoveCollectionProposal) GetDescription

func (m *RemoveCollectionProposal) GetDescription() string

func (*RemoveCollectionProposal) GetIndex

func (m *RemoveCollectionProposal) GetIndex() string

func (*RemoveCollectionProposal) GetTitle

func (m *RemoveCollectionProposal) GetTitle() string

func (*RemoveCollectionProposal) Marshal

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

func (*RemoveCollectionProposal) MarshalTo

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

func (*RemoveCollectionProposal) MarshalToSizedBuffer

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

func (*RemoveCollectionProposal) ProposalRoute

func (m *RemoveCollectionProposal) ProposalRoute() string

func (*RemoveCollectionProposal) ProposalType

func (m *RemoveCollectionProposal) ProposalType() string

func (*RemoveCollectionProposal) ProtoMessage

func (*RemoveCollectionProposal) ProtoMessage()

func (*RemoveCollectionProposal) Reset

func (m *RemoveCollectionProposal) Reset()

func (*RemoveCollectionProposal) Size

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

func (*RemoveCollectionProposal) String

func (m *RemoveCollectionProposal) String() string

func (*RemoveCollectionProposal) Unmarshal

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

func (*RemoveCollectionProposal) ValidateBasic

func (m *RemoveCollectionProposal) ValidateBasic() error

func (*RemoveCollectionProposal) XXX_DiscardUnknown

func (m *RemoveCollectionProposal) XXX_DiscardUnknown()

func (*RemoveCollectionProposal) XXX_Marshal

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

func (*RemoveCollectionProposal) XXX_Merge

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

func (*RemoveCollectionProposal) XXX_Size

func (m *RemoveCollectionProposal) XXX_Size() int

func (*RemoveCollectionProposal) XXX_Unmarshal

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

type RemoveFeeTokenProposal

type RemoveFeeTokenProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	Contract    string `protobuf:"bytes,4,opt,name=contract,proto3" json:"contract,omitempty"`
	Nonce       string `protobuf:"bytes,5,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*RemoveFeeTokenProposal) Descriptor

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

func (*RemoveFeeTokenProposal) GetChain

func (m *RemoveFeeTokenProposal) GetChain() string

func (*RemoveFeeTokenProposal) GetContract

func (m *RemoveFeeTokenProposal) GetContract() string

func (*RemoveFeeTokenProposal) GetDescription

func (m *RemoveFeeTokenProposal) GetDescription() string

func (*RemoveFeeTokenProposal) GetNonce

func (m *RemoveFeeTokenProposal) GetNonce() string

func (*RemoveFeeTokenProposal) GetTitle

func (m *RemoveFeeTokenProposal) GetTitle() string

func (*RemoveFeeTokenProposal) Marshal

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

func (*RemoveFeeTokenProposal) MarshalTo

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

func (*RemoveFeeTokenProposal) MarshalToSizedBuffer

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

func (*RemoveFeeTokenProposal) ProposalRoute

func (m *RemoveFeeTokenProposal) ProposalRoute() string

func (*RemoveFeeTokenProposal) ProposalType

func (m *RemoveFeeTokenProposal) ProposalType() string

func (*RemoveFeeTokenProposal) ProtoMessage

func (*RemoveFeeTokenProposal) ProtoMessage()

func (*RemoveFeeTokenProposal) Reset

func (m *RemoveFeeTokenProposal) Reset()

func (*RemoveFeeTokenProposal) Size

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

func (*RemoveFeeTokenProposal) String

func (m *RemoveFeeTokenProposal) String() string

func (*RemoveFeeTokenProposal) Unmarshal

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

func (*RemoveFeeTokenProposal) ValidateBasic

func (m *RemoveFeeTokenProposal) ValidateBasic() error

func (*RemoveFeeTokenProposal) XXX_DiscardUnknown

func (m *RemoveFeeTokenProposal) XXX_DiscardUnknown()

func (*RemoveFeeTokenProposal) XXX_Marshal

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

func (*RemoveFeeTokenProposal) XXX_Merge

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

func (*RemoveFeeTokenProposal) XXX_Size

func (m *RemoveFeeTokenProposal) XXX_Size() int

func (*RemoveFeeTokenProposal) XXX_Unmarshal

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

type RemoveNetworkProposal

type RemoveNetworkProposal struct {
	Title       string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
}

func (*RemoveNetworkProposal) Descriptor

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

func (*RemoveNetworkProposal) GetChain

func (m *RemoveNetworkProposal) GetChain() string

func (*RemoveNetworkProposal) GetDescription

func (m *RemoveNetworkProposal) GetDescription() string

func (*RemoveNetworkProposal) GetTitle

func (m *RemoveNetworkProposal) GetTitle() string

func (*RemoveNetworkProposal) Marshal

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

func (*RemoveNetworkProposal) MarshalTo

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

func (*RemoveNetworkProposal) MarshalToSizedBuffer

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

func (*RemoveNetworkProposal) ProposalRoute

func (m *RemoveNetworkProposal) ProposalRoute() string

func (*RemoveNetworkProposal) ProposalType

func (m *RemoveNetworkProposal) ProposalType() string

func (*RemoveNetworkProposal) ProtoMessage

func (*RemoveNetworkProposal) ProtoMessage()

func (*RemoveNetworkProposal) Reset

func (m *RemoveNetworkProposal) Reset()

func (*RemoveNetworkProposal) Size

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

func (*RemoveNetworkProposal) String

func (m *RemoveNetworkProposal) String() string

func (*RemoveNetworkProposal) Unmarshal

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

func (*RemoveNetworkProposal) ValidateBasic

func (m *RemoveNetworkProposal) ValidateBasic() error

func (*RemoveNetworkProposal) XXX_DiscardUnknown

func (m *RemoveNetworkProposal) XXX_DiscardUnknown()

func (*RemoveNetworkProposal) XXX_Marshal

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

func (*RemoveNetworkProposal) XXX_Merge

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

func (*RemoveNetworkProposal) XXX_Size

func (m *RemoveNetworkProposal) XXX_Size() int

func (*RemoveNetworkProposal) XXX_Unmarshal

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

type RemoveTokenItemProposal

type RemoveTokenItemProposal struct {
	Title       string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Index       []string `protobuf:"bytes,3,rep,name=index,proto3" json:"index,omitempty"`
}

func (*RemoveTokenItemProposal) Descriptor

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

func (*RemoveTokenItemProposal) GetDescription

func (m *RemoveTokenItemProposal) GetDescription() string

func (*RemoveTokenItemProposal) GetIndex

func (m *RemoveTokenItemProposal) GetIndex() []string

func (*RemoveTokenItemProposal) GetTitle

func (m *RemoveTokenItemProposal) GetTitle() string

func (*RemoveTokenItemProposal) Marshal

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

func (*RemoveTokenItemProposal) MarshalTo

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

func (*RemoveTokenItemProposal) MarshalToSizedBuffer

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

func (*RemoveTokenItemProposal) ProposalRoute

func (m *RemoveTokenItemProposal) ProposalRoute() string

func (*RemoveTokenItemProposal) ProposalType

func (m *RemoveTokenItemProposal) ProposalType() string

func (*RemoveTokenItemProposal) ProtoMessage

func (*RemoveTokenItemProposal) ProtoMessage()

func (*RemoveTokenItemProposal) Reset

func (m *RemoveTokenItemProposal) Reset()

func (*RemoveTokenItemProposal) Size

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

func (*RemoveTokenItemProposal) String

func (m *RemoveTokenItemProposal) String() string

func (*RemoveTokenItemProposal) Unmarshal

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

func (*RemoveTokenItemProposal) ValidateBasic

func (m *RemoveTokenItemProposal) ValidateBasic() error

func (*RemoveTokenItemProposal) XXX_DiscardUnknown

func (m *RemoveTokenItemProposal) XXX_DiscardUnknown()

func (*RemoveTokenItemProposal) XXX_Marshal

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

func (*RemoveTokenItemProposal) XXX_Merge

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

func (*RemoveTokenItemProposal) XXX_Size

func (m *RemoveTokenItemProposal) XXX_Size() int

func (*RemoveTokenItemProposal) XXX_Unmarshal

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

type Seed

type Seed struct {
	// index
	Seed string `protobuf:"bytes,1,opt,name=seed,proto3" json:"seed,omitempty"`
	Item string `protobuf:"bytes,2,opt,name=item,proto3" json:"item,omitempty"`
}

func (*Seed) Descriptor

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

func (*Seed) GetItem

func (m *Seed) GetItem() string

func (*Seed) GetSeed

func (m *Seed) GetSeed() string

func (*Seed) Marshal

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

func (*Seed) MarshalTo

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

func (*Seed) MarshalToSizedBuffer

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

func (*Seed) ProtoMessage

func (*Seed) ProtoMessage()

func (*Seed) Reset

func (m *Seed) Reset()

func (*Seed) Size

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

func (*Seed) String

func (m *Seed) String() string

func (*Seed) Unmarshal

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

func (*Seed) XXX_DiscardUnknown

func (m *Seed) XXX_DiscardUnknown()

func (*Seed) XXX_Marshal

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

func (*Seed) XXX_Merge

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

func (*Seed) XXX_Size

func (m *Seed) XXX_Size() int

func (*Seed) XXX_Unmarshal

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

type Type

type Type int32
const (
	Type_NATIVE       Type = 0
	Type_ERC20        Type = 1
	Type_ERC721       Type = 2
	Type_ERC1155      Type = 3
	Type_METAPLEX_NFT Type = 4
	Type_METAPLEX_FT  Type = 5
	Type_NEAR_FT      Type = 6
	Type_NEAR_NFT     Type = 7
)

func (Type) EnumDescriptor

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

func (Type) String

func (x Type) String() string

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Collection

func (*UnimplementedQueryServer) CollectionAll

func (*UnimplementedQueryServer) CollectionData

func (*UnimplementedQueryServer) CollectionDataAll

func (*UnimplementedQueryServer) Item

func (*UnimplementedQueryServer) ItemAll

func (*UnimplementedQueryServer) NetworkParams

func (*UnimplementedQueryServer) OnChainItem

func (*UnimplementedQueryServer) OnChainItemAll

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Seed

func (*UnimplementedQueryServer) SeedAll

type UpdateCollectionDataProposal

type UpdateCollectionDataProposal struct {
	Title       string            `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string            `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Data        []*CollectionData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
}

func (*UpdateCollectionDataProposal) Descriptor

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

func (*UpdateCollectionDataProposal) GetData

func (*UpdateCollectionDataProposal) GetDescription

func (m *UpdateCollectionDataProposal) GetDescription() string

func (*UpdateCollectionDataProposal) GetTitle

func (m *UpdateCollectionDataProposal) GetTitle() string

func (*UpdateCollectionDataProposal) Marshal

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

func (*UpdateCollectionDataProposal) MarshalTo

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

func (*UpdateCollectionDataProposal) MarshalToSizedBuffer

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

func (*UpdateCollectionDataProposal) ProposalRoute

func (m *UpdateCollectionDataProposal) ProposalRoute() string

func (*UpdateCollectionDataProposal) ProposalType

func (m *UpdateCollectionDataProposal) ProposalType() string

func (*UpdateCollectionDataProposal) ProtoMessage

func (*UpdateCollectionDataProposal) ProtoMessage()

func (*UpdateCollectionDataProposal) Reset

func (m *UpdateCollectionDataProposal) Reset()

func (*UpdateCollectionDataProposal) Size

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

func (*UpdateCollectionDataProposal) String

func (*UpdateCollectionDataProposal) Unmarshal

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

func (*UpdateCollectionDataProposal) ValidateBasic

func (m *UpdateCollectionDataProposal) ValidateBasic() error

func (*UpdateCollectionDataProposal) XXX_DiscardUnknown

func (m *UpdateCollectionDataProposal) XXX_DiscardUnknown()

func (*UpdateCollectionDataProposal) XXX_Marshal

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

func (*UpdateCollectionDataProposal) XXX_Merge

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

func (*UpdateCollectionDataProposal) XXX_Size

func (m *UpdateCollectionDataProposal) XXX_Size() int

func (*UpdateCollectionDataProposal) XXX_Unmarshal

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

type UpdateFeeTokenProposal

type UpdateFeeTokenProposal struct {
	Title       string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string   `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	Nonce       string   `protobuf:"bytes,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Token       FeeToken `protobuf:"bytes,5,opt,name=token,proto3" json:"token"`
}

func (*UpdateFeeTokenProposal) Descriptor

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

func (*UpdateFeeTokenProposal) GetChain

func (m *UpdateFeeTokenProposal) GetChain() string

func (*UpdateFeeTokenProposal) GetDescription

func (m *UpdateFeeTokenProposal) GetDescription() string

func (*UpdateFeeTokenProposal) GetNonce

func (m *UpdateFeeTokenProposal) GetNonce() string

func (*UpdateFeeTokenProposal) GetTitle

func (m *UpdateFeeTokenProposal) GetTitle() string

func (*UpdateFeeTokenProposal) GetToken

func (m *UpdateFeeTokenProposal) GetToken() FeeToken

func (*UpdateFeeTokenProposal) Marshal

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

func (*UpdateFeeTokenProposal) MarshalTo

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

func (*UpdateFeeTokenProposal) MarshalToSizedBuffer

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

func (*UpdateFeeTokenProposal) ProposalRoute

func (m *UpdateFeeTokenProposal) ProposalRoute() string

func (*UpdateFeeTokenProposal) ProposalType

func (m *UpdateFeeTokenProposal) ProposalType() string

func (*UpdateFeeTokenProposal) ProtoMessage

func (*UpdateFeeTokenProposal) ProtoMessage()

func (*UpdateFeeTokenProposal) Reset

func (m *UpdateFeeTokenProposal) Reset()

func (*UpdateFeeTokenProposal) Size

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

func (*UpdateFeeTokenProposal) String

func (m *UpdateFeeTokenProposal) String() string

func (*UpdateFeeTokenProposal) Unmarshal

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

func (*UpdateFeeTokenProposal) ValidateBasic

func (m *UpdateFeeTokenProposal) ValidateBasic() error

func (*UpdateFeeTokenProposal) XXX_DiscardUnknown

func (m *UpdateFeeTokenProposal) XXX_DiscardUnknown()

func (*UpdateFeeTokenProposal) XXX_Marshal

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

func (*UpdateFeeTokenProposal) XXX_Merge

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

func (*UpdateFeeTokenProposal) XXX_Size

func (m *UpdateFeeTokenProposal) XXX_Size() int

func (*UpdateFeeTokenProposal) XXX_Unmarshal

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

type UpdateTokenItemProposal

type UpdateTokenItemProposal struct {
	Title       string  `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string  `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Item        []*Item `protobuf:"bytes,3,rep,name=item,proto3" json:"item,omitempty"`
}

func (*UpdateTokenItemProposal) Descriptor

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

func (*UpdateTokenItemProposal) GetDescription

func (m *UpdateTokenItemProposal) GetDescription() string

func (*UpdateTokenItemProposal) GetItem

func (m *UpdateTokenItemProposal) GetItem() []*Item

func (*UpdateTokenItemProposal) GetTitle

func (m *UpdateTokenItemProposal) GetTitle() string

func (*UpdateTokenItemProposal) Marshal

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

func (*UpdateTokenItemProposal) MarshalTo

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

func (*UpdateTokenItemProposal) MarshalToSizedBuffer

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

func (*UpdateTokenItemProposal) ProposalRoute

func (m *UpdateTokenItemProposal) ProposalRoute() string

func (*UpdateTokenItemProposal) ProposalType

func (m *UpdateTokenItemProposal) ProposalType() string

func (*UpdateTokenItemProposal) ProtoMessage

func (*UpdateTokenItemProposal) ProtoMessage()

func (*UpdateTokenItemProposal) Reset

func (m *UpdateTokenItemProposal) Reset()

func (*UpdateTokenItemProposal) Size

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

func (*UpdateTokenItemProposal) String

func (m *UpdateTokenItemProposal) String() string

func (*UpdateTokenItemProposal) Unmarshal

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

func (*UpdateTokenItemProposal) ValidateBasic

func (m *UpdateTokenItemProposal) ValidateBasic() error

func (*UpdateTokenItemProposal) XXX_DiscardUnknown

func (m *UpdateTokenItemProposal) XXX_DiscardUnknown()

func (*UpdateTokenItemProposal) XXX_Marshal

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

func (*UpdateTokenItemProposal) XXX_Merge

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

func (*UpdateTokenItemProposal) XXX_Size

func (m *UpdateTokenItemProposal) XXX_Size() int

func (*UpdateTokenItemProposal) XXX_Unmarshal

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

type UpgradeContractProposal

type UpgradeContractProposal struct {
	Title       string                 `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string                 `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Details     ContractUpgradeDetails `protobuf:"bytes,4,opt,name=details,proto3" json:"details"`
}

func (*UpgradeContractProposal) Descriptor

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

func (*UpgradeContractProposal) GetDescription

func (m *UpgradeContractProposal) GetDescription() string

func (*UpgradeContractProposal) GetDetails

func (*UpgradeContractProposal) GetTitle

func (m *UpgradeContractProposal) GetTitle() string

func (*UpgradeContractProposal) Marshal

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

func (*UpgradeContractProposal) MarshalTo

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

func (*UpgradeContractProposal) MarshalToSizedBuffer

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

func (*UpgradeContractProposal) ProposalRoute

func (m *UpgradeContractProposal) ProposalRoute() string

func (*UpgradeContractProposal) ProposalType

func (m *UpgradeContractProposal) ProposalType() string

func (*UpgradeContractProposal) ProtoMessage

func (*UpgradeContractProposal) ProtoMessage()

func (*UpgradeContractProposal) Reset

func (m *UpgradeContractProposal) Reset()

func (*UpgradeContractProposal) Size

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

func (*UpgradeContractProposal) String

func (m *UpgradeContractProposal) String() string

func (*UpgradeContractProposal) Unmarshal

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

func (*UpgradeContractProposal) ValidateBasic

func (m *UpgradeContractProposal) ValidateBasic() error

func (*UpgradeContractProposal) XXX_DiscardUnknown

func (m *UpgradeContractProposal) XXX_DiscardUnknown()

func (*UpgradeContractProposal) XXX_Marshal

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

func (*UpgradeContractProposal) XXX_Merge

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

func (*UpgradeContractProposal) XXX_Size

func (m *UpgradeContractProposal) XXX_Size() int

func (*UpgradeContractProposal) XXX_Unmarshal

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

type UpgradeType

type UpgradeType int32
const (
	UpgradeType_NONE                 UpgradeType = 0
	UpgradeType_BASIC_IMPLEMENTATION UpgradeType = 1
	UpgradeType_OTHER                UpgradeType = 2
)

func (UpgradeType) EnumDescriptor

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

func (UpgradeType) String

func (x UpgradeType) String() string

type WithdrawFeeProposal

type WithdrawFeeProposal struct {
	Title       string   `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Chain       string   `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	Token       FeeToken `protobuf:"bytes,4,opt,name=token,proto3" json:"token"`
	Receiver    string   `protobuf:"bytes,5,opt,name=receiver,proto3" json:"receiver,omitempty"`
	Nonce       string   `protobuf:"bytes,6,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*WithdrawFeeProposal) Descriptor

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

func (*WithdrawFeeProposal) GetChain

func (m *WithdrawFeeProposal) GetChain() string

func (*WithdrawFeeProposal) GetDescription

func (m *WithdrawFeeProposal) GetDescription() string

func (*WithdrawFeeProposal) GetNonce

func (m *WithdrawFeeProposal) GetNonce() string

func (*WithdrawFeeProposal) GetReceiver

func (m *WithdrawFeeProposal) GetReceiver() string

func (*WithdrawFeeProposal) GetTitle

func (m *WithdrawFeeProposal) GetTitle() string

func (*WithdrawFeeProposal) GetToken

func (m *WithdrawFeeProposal) GetToken() FeeToken

func (*WithdrawFeeProposal) Marshal

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

func (*WithdrawFeeProposal) MarshalTo

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

func (*WithdrawFeeProposal) MarshalToSizedBuffer

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

func (*WithdrawFeeProposal) ProposalRoute

func (m *WithdrawFeeProposal) ProposalRoute() string

func (*WithdrawFeeProposal) ProposalType

func (m *WithdrawFeeProposal) ProposalType() string

func (*WithdrawFeeProposal) ProtoMessage

func (*WithdrawFeeProposal) ProtoMessage()

func (*WithdrawFeeProposal) Reset

func (m *WithdrawFeeProposal) Reset()

func (*WithdrawFeeProposal) Size

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

func (*WithdrawFeeProposal) String

func (m *WithdrawFeeProposal) String() string

func (*WithdrawFeeProposal) Unmarshal

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

func (*WithdrawFeeProposal) ValidateBasic

func (m *WithdrawFeeProposal) ValidateBasic() error

func (*WithdrawFeeProposal) XXX_DiscardUnknown

func (m *WithdrawFeeProposal) XXX_DiscardUnknown()

func (*WithdrawFeeProposal) XXX_Marshal

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

func (*WithdrawFeeProposal) XXX_Merge

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

func (*WithdrawFeeProposal) XXX_Size

func (m *WithdrawFeeProposal) XXX_Size() int

func (*WithdrawFeeProposal) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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