types

package
v0.0.0-...-3aeaace Latest Latest
Warning

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

Go to latest
Published: Oct 12, 2023 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

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

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

	// RouterKey defines the module's message routing key
	RouterKey = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_mic"
)
View Source
const (
	TypeMsgRegisterMarketIdentificationCode = "register_market_identification_code"
	TypeMsgUpdateMarketIdentificationCode   = "update_market_identification_code"
	TypeMsgDeleteMarketIdentificationCode   = "delete_market_identification_code"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

Variables

View Source
var (
	ErrSample                = sdkerrors.Register(ModuleName, 1100, "sample error")
	ErrMICExistsAlready      = sdkerrors.Register(ModuleName, 1, "MIC exists already")
	ErrMICCreatorIsTaken     = sdkerrors.Register(ModuleName, 2, "Account Address is used Already")
	ErrMICCreatorIsWrong     = sdkerrors.Register(ModuleName, 3, "Incorrect Account Address")
	ErrMICIsNotFound         = sdkerrors.Register(ModuleName, 4, "MIC does not exist")
	ErrMICIsEmpty            = sdkerrors.Register(ModuleName, 5, "MIC is empty")
	ErrOperatingMICIsEmpty   = sdkerrors.Register(ModuleName, 6, "Operating_MIC is empty")
	ErrOPRTSGMTIsEmpty       = sdkerrors.Register(ModuleName, 7, "OPRT_SGMT is empty")
	ErrMarketNameIsEmpty     = sdkerrors.Register(ModuleName, 8, "MarketName is empty")
	ErrMarketCategoryIsEmpty = sdkerrors.Register(ModuleName, 9, "MarketCategory is empty")
	ErrISOCountryCodeIsEmpty = sdkerrors.Register(ModuleName, 10, "ISOCountryCode is empty")
	ErrCityIsEmpty           = sdkerrors.Register(ModuleName, 11, "City is empty")
	ErrStatusIsEmpty         = sdkerrors.Register(ModuleName, 12, "Status is empty")
	ErrCreationDateIsEmpty   = sdkerrors.Register(ModuleName, 13, "CreationDate is empty")
	ErrLastUpdateDateIsEmpty = sdkerrors.Register(ModuleName, 14, "LastUpdateDate is empty")
)

x/mic module sentinel errors

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 (
	ErrInvalidLengthMarketIdentificationCode        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMarketIdentificationCode          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMarketIdentificationCode = 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 (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var MarketIdentificationCodeKeyPrefix = "MarketIdentificationCode/value/"

Functions

func GetMarketIdentificationCodeKey

func GetMarketIdentificationCodeKey(mic string) []byte

func KeyPrefix

func KeyPrefix(p string) []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)

Types

type AccountKeeper

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

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

type BankKeeper

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

BankKeeper defines the expected interface needed to retrieve account balances.

type GenesisState

type GenesisState struct {
	MarketIdentificationCodeList  []MarketIdentificationCode `protobuf:"bytes,2,rep,name=marketIdentificationCodeList,proto3" json:"marketIdentificationCodeList"`
	MarketIdentificationCodeCount uint64                     `protobuf:"varint,3,opt,name=marketIdentificationCodeCount,proto3" json:"marketIdentificationCodeCount,omitempty"`
}

GenesisState defines the mic module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetMarketIdentificationCodeCount

func (m *GenesisState) GetMarketIdentificationCodeCount() uint64

func (*GenesisState) GetMarketIdentificationCodeList

func (m *GenesisState) GetMarketIdentificationCodeList() []MarketIdentificationCode

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 MarketIdentificationCode

type MarketIdentificationCode struct {
	// Market Identifier Code allocated to the market named in ‘Market
	// Name-Institution Description’.
	MIC string `protobuf:"bytes,1,opt,name=MIC,proto3" json:"MIC,omitempty"`
	// Entity operating an exchange/market/trade reporting facility in a specific
	// market/country.
	Operating_MIC string `protobuf:"bytes,2,opt,name=operating_MIC,json=operatingMIC,proto3" json:"operating_MIC,omitempty"`
	// Indicates whether the MIC is an operating MIC or a market segment MIC.
	OPRT_SGMT string `protobuf:"bytes,3,opt,name=OPRT_SGMT,json=OPRTSGMT,proto3" json:"OPRT_SGMT,omitempty"`
	// Institution Description: name of the market.
	MarketName string `protobuf:"bytes,4,opt,name=market_name,json=marketName,proto3" json:"market_name,omitempty"`
	// Legal name of the entity owning the market.
	LegalEntityName string `protobuf:"bytes,5,opt,name=legal_entity_name,json=legalEntityName,proto3" json:"legal_entity_name,omitempty"`
	// Legal Entity Identifier (LEI) see ISO 17442-1.
	LegalEntityIdentifier string `` /* 126-byte string literal not displayed */
	// Specifies the type of market. The list of market types is predefined (1).
	// The list can be updated upon request to the RA, which will validate the
	// request.
	MarketCategory string `protobuf:"bytes,7,opt,name=market_category,json=marketCategory,proto3" json:"market_category,omitempty"`
	// Known acronym of the market.
	Acronym string `protobuf:"bytes,8,opt,name=acronym,proto3" json:"acronym,omitempty"`
	// Alpha-2 code of the country where the market is registered.
	ISOCountryCode string `protobuf:"bytes,9,opt,name=ISO_country_code,json=ISOCountryCode,proto3" json:"ISO_country_code,omitempty"`
	// City where the market is located.
	City string `protobuf:"bytes,10,opt,name=city,proto3" json:"city,omitempty"`
	// Website of the market.
	Website string `protobuf:"bytes,11,opt,name=website,proto3" json:"website,omitempty"`
	// Active, updated (since last publication), expired (= deactivated).
	Status string `protobuf:"bytes,12,opt,name=status,proto3" json:"status,omitempty"`
	// Date indicating when the MIC was originally created.
	CreationDate string `protobuf:"bytes,13,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	// Date indicating when the MIC was last modified.
	LastUpdateDate string `protobuf:"bytes,14,opt,name=last_update_date,json=lastUpdateDate,proto3" json:"last_update_date,omitempty"`
	// Date indicating when the MIC was last reviewed for correctness.
	LastValidationDate string `protobuf:"bytes,15,opt,name=last_validation_date,json=lastValidationDate,proto3" json:"last_validation_date,omitempty"`
	// The expiry date is populated when the MIC is deactivated; upon request from
	// the MIC owner; following market research (user request) or maintenance. The
	// expiry date field is left blank when a MIC is created.
	ExpiryDate string `protobuf:"bytes,16,opt,name=expiry_date,json=expiryDate,proto3" json:"expiry_date,omitempty"`
	// Any additional information worth mentioning to help users with identifying
	// the exchange or understanding a modification.
	Comments string `protobuf:"bytes,17,opt,name=comments,proto3" json:"comments,omitempty"`
	// Address for MIC creator.
	Creator string `protobuf:"bytes,18,opt,name=creator,proto3" json:"creator,omitempty"`
}

Definition of MarketIdentificationCode message

func (*MarketIdentificationCode) Descriptor

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

func (*MarketIdentificationCode) GetAcronym

func (m *MarketIdentificationCode) GetAcronym() string

func (*MarketIdentificationCode) GetCity

func (m *MarketIdentificationCode) GetCity() string

func (*MarketIdentificationCode) GetComments

func (m *MarketIdentificationCode) GetComments() string

func (*MarketIdentificationCode) GetCreationDate

func (m *MarketIdentificationCode) GetCreationDate() string

func (*MarketIdentificationCode) GetCreator

func (m *MarketIdentificationCode) GetCreator() string

func (*MarketIdentificationCode) GetExpiryDate

func (m *MarketIdentificationCode) GetExpiryDate() string

func (*MarketIdentificationCode) GetISOCountryCode

func (m *MarketIdentificationCode) GetISOCountryCode() string

func (*MarketIdentificationCode) GetLastUpdateDate

func (m *MarketIdentificationCode) GetLastUpdateDate() string

func (*MarketIdentificationCode) GetLastValidationDate

func (m *MarketIdentificationCode) GetLastValidationDate() string

func (*MarketIdentificationCode) GetLegalEntityIdentifier

func (m *MarketIdentificationCode) GetLegalEntityIdentifier() string

func (*MarketIdentificationCode) GetLegalEntityName

func (m *MarketIdentificationCode) GetLegalEntityName() string

func (*MarketIdentificationCode) GetMIC

func (m *MarketIdentificationCode) GetMIC() string

func (*MarketIdentificationCode) GetMarketCategory

func (m *MarketIdentificationCode) GetMarketCategory() string

func (*MarketIdentificationCode) GetMarketName

func (m *MarketIdentificationCode) GetMarketName() string

func (*MarketIdentificationCode) GetOPRT_SGMT

func (m *MarketIdentificationCode) GetOPRT_SGMT() string

func (*MarketIdentificationCode) GetOperating_MIC

func (m *MarketIdentificationCode) GetOperating_MIC() string

func (*MarketIdentificationCode) GetStatus

func (m *MarketIdentificationCode) GetStatus() string

func (*MarketIdentificationCode) GetWebsite

func (m *MarketIdentificationCode) GetWebsite() string

func (*MarketIdentificationCode) Marshal

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

func (*MarketIdentificationCode) MarshalTo

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

func (*MarketIdentificationCode) MarshalToSizedBuffer

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

func (*MarketIdentificationCode) ProtoMessage

func (*MarketIdentificationCode) ProtoMessage()

func (*MarketIdentificationCode) Reset

func (m *MarketIdentificationCode) Reset()

func (*MarketIdentificationCode) Size

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

func (*MarketIdentificationCode) String

func (m *MarketIdentificationCode) String() string

func (*MarketIdentificationCode) Unmarshal

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

func (*MarketIdentificationCode) XXX_DiscardUnknown

func (m *MarketIdentificationCode) XXX_DiscardUnknown()

func (*MarketIdentificationCode) XXX_Marshal

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

func (*MarketIdentificationCode) XXX_Merge

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

func (*MarketIdentificationCode) XXX_Size

func (m *MarketIdentificationCode) XXX_Size() int

func (*MarketIdentificationCode) XXX_Unmarshal

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

type MsgClient

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 MsgDeleteMarketIdentificationCode

type MsgDeleteMarketIdentificationCode struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	MIC     string `protobuf:"bytes,2,opt,name=MIC,proto3" json:"MIC,omitempty"`
}

func NewMsgDeleteMarketIdentificationCode

func NewMsgDeleteMarketIdentificationCode(creator string, mic string) *MsgDeleteMarketIdentificationCode

func (*MsgDeleteMarketIdentificationCode) Descriptor

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

func (*MsgDeleteMarketIdentificationCode) GetCreator

func (m *MsgDeleteMarketIdentificationCode) GetCreator() string

func (*MsgDeleteMarketIdentificationCode) GetMIC

func (*MsgDeleteMarketIdentificationCode) GetSignBytes

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

func (*MsgDeleteMarketIdentificationCode) GetSigners

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

func (*MsgDeleteMarketIdentificationCode) Marshal

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

func (*MsgDeleteMarketIdentificationCode) MarshalTo

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

func (*MsgDeleteMarketIdentificationCode) MarshalToSizedBuffer

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

func (*MsgDeleteMarketIdentificationCode) ProtoMessage

func (*MsgDeleteMarketIdentificationCode) ProtoMessage()

func (*MsgDeleteMarketIdentificationCode) Reset

func (*MsgDeleteMarketIdentificationCode) Route

func (*MsgDeleteMarketIdentificationCode) Size

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

func (*MsgDeleteMarketIdentificationCode) String

func (*MsgDeleteMarketIdentificationCode) Type

func (*MsgDeleteMarketIdentificationCode) Unmarshal

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

func (*MsgDeleteMarketIdentificationCode) ValidateBasic

func (msg *MsgDeleteMarketIdentificationCode) ValidateBasic() error

func (*MsgDeleteMarketIdentificationCode) XXX_DiscardUnknown

func (m *MsgDeleteMarketIdentificationCode) XXX_DiscardUnknown()

func (*MsgDeleteMarketIdentificationCode) XXX_Marshal

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

func (*MsgDeleteMarketIdentificationCode) XXX_Merge

func (*MsgDeleteMarketIdentificationCode) XXX_Size

func (m *MsgDeleteMarketIdentificationCode) XXX_Size() int

func (*MsgDeleteMarketIdentificationCode) XXX_Unmarshal

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

type MsgDeleteMarketIdentificationCodeResponse

type MsgDeleteMarketIdentificationCodeResponse struct {
}

func (*MsgDeleteMarketIdentificationCodeResponse) Descriptor

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

func (*MsgDeleteMarketIdentificationCodeResponse) Marshal

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

func (*MsgDeleteMarketIdentificationCodeResponse) MarshalTo

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

func (*MsgDeleteMarketIdentificationCodeResponse) MarshalToSizedBuffer

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

func (*MsgDeleteMarketIdentificationCodeResponse) ProtoMessage

func (*MsgDeleteMarketIdentificationCodeResponse) Reset

func (*MsgDeleteMarketIdentificationCodeResponse) Size

func (*MsgDeleteMarketIdentificationCodeResponse) String

func (*MsgDeleteMarketIdentificationCodeResponse) Unmarshal

func (*MsgDeleteMarketIdentificationCodeResponse) XXX_DiscardUnknown

func (m *MsgDeleteMarketIdentificationCodeResponse) XXX_DiscardUnknown()

func (*MsgDeleteMarketIdentificationCodeResponse) XXX_Marshal

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

func (*MsgDeleteMarketIdentificationCodeResponse) XXX_Merge

func (*MsgDeleteMarketIdentificationCodeResponse) XXX_Size

func (*MsgDeleteMarketIdentificationCodeResponse) XXX_Unmarshal

type MsgRegisterMarketIdentificationCode

type MsgRegisterMarketIdentificationCode struct {
	MIC                   string `protobuf:"bytes,1,opt,name=MIC,proto3" json:"MIC,omitempty"`
	Operating_MIC         string `protobuf:"bytes,2,opt,name=operating_MIC,json=operatingMIC,proto3" json:"operating_MIC,omitempty"`
	OPRT_SGMT             string `protobuf:"bytes,3,opt,name=OPRT_SGMT,json=OPRTSGMT,proto3" json:"OPRT_SGMT,omitempty"`
	MarketName            string `protobuf:"bytes,4,opt,name=market_name,json=marketName,proto3" json:"market_name,omitempty"`
	LegalEntityName       string `protobuf:"bytes,5,opt,name=legal_entity_name,json=legalEntityName,proto3" json:"legal_entity_name,omitempty"`
	LegalEntityIdentifier string `` /* 126-byte string literal not displayed */
	MarketCategory        string `protobuf:"bytes,7,opt,name=market_category,json=marketCategory,proto3" json:"market_category,omitempty"`
	Acronym               string `protobuf:"bytes,8,opt,name=acronym,proto3" json:"acronym,omitempty"`
	ISOCountryCode        string `protobuf:"bytes,9,opt,name=ISO_country_code,json=ISOCountryCode,proto3" json:"ISO_country_code,omitempty"`
	City                  string `protobuf:"bytes,10,opt,name=city,proto3" json:"city,omitempty"`
	Website               string `protobuf:"bytes,11,opt,name=website,proto3" json:"website,omitempty"`
	Status                string `protobuf:"bytes,12,opt,name=status,proto3" json:"status,omitempty"`
	CreationDate          string `protobuf:"bytes,13,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	LastUpdateDate        string `protobuf:"bytes,14,opt,name=last_update_date,json=lastUpdateDate,proto3" json:"last_update_date,omitempty"`
	LastValidationDate    string `protobuf:"bytes,15,opt,name=last_validation_date,json=lastValidationDate,proto3" json:"last_validation_date,omitempty"`
	ExpiryDate            string `protobuf:"bytes,16,opt,name=expiry_date,json=expiryDate,proto3" json:"expiry_date,omitempty"`
	Comments              string `protobuf:"bytes,17,opt,name=comments,proto3" json:"comments,omitempty"`
	Creator               string `protobuf:"bytes,18,opt,name=creator,proto3" json:"creator,omitempty"`
}

func NewMsgRegisterMarketIdentificationCode

func NewMsgRegisterMarketIdentificationCode(creator string, mic string, operatingMIC string, oprtSGMT string, marketName string, legalEntityName string, legalEntityIdentifier string, marketCategory string, acronym string, isoCountryCode string, city string, website string, status string, creationDate string, lastUpdateDate string, lastValidationDate string, expiryDate string, comments string) *MsgRegisterMarketIdentificationCode

func (*MsgRegisterMarketIdentificationCode) Descriptor

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

func (*MsgRegisterMarketIdentificationCode) GetAcronym

func (*MsgRegisterMarketIdentificationCode) GetCity

func (*MsgRegisterMarketIdentificationCode) GetComments

func (*MsgRegisterMarketIdentificationCode) GetCreationDate

func (m *MsgRegisterMarketIdentificationCode) GetCreationDate() string

func (*MsgRegisterMarketIdentificationCode) GetCreator

func (*MsgRegisterMarketIdentificationCode) GetExpiryDate

func (m *MsgRegisterMarketIdentificationCode) GetExpiryDate() string

func (*MsgRegisterMarketIdentificationCode) GetISOCountryCode

func (m *MsgRegisterMarketIdentificationCode) GetISOCountryCode() string

func (*MsgRegisterMarketIdentificationCode) GetLastUpdateDate

func (m *MsgRegisterMarketIdentificationCode) GetLastUpdateDate() string

func (*MsgRegisterMarketIdentificationCode) GetLastValidationDate

func (m *MsgRegisterMarketIdentificationCode) GetLastValidationDate() string

func (*MsgRegisterMarketIdentificationCode) GetLegalEntityIdentifier

func (m *MsgRegisterMarketIdentificationCode) GetLegalEntityIdentifier() string

func (*MsgRegisterMarketIdentificationCode) GetLegalEntityName

func (m *MsgRegisterMarketIdentificationCode) GetLegalEntityName() string

func (*MsgRegisterMarketIdentificationCode) GetMIC

func (*MsgRegisterMarketIdentificationCode) GetMarketCategory

func (m *MsgRegisterMarketIdentificationCode) GetMarketCategory() string

func (*MsgRegisterMarketIdentificationCode) GetMarketName

func (m *MsgRegisterMarketIdentificationCode) GetMarketName() string

func (*MsgRegisterMarketIdentificationCode) GetOPRT_SGMT

func (m *MsgRegisterMarketIdentificationCode) GetOPRT_SGMT() string

func (*MsgRegisterMarketIdentificationCode) GetOperating_MIC

func (m *MsgRegisterMarketIdentificationCode) GetOperating_MIC() string

func (*MsgRegisterMarketIdentificationCode) GetSignBytes

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

func (*MsgRegisterMarketIdentificationCode) GetSigners

func (*MsgRegisterMarketIdentificationCode) GetStatus

func (*MsgRegisterMarketIdentificationCode) GetWebsite

func (*MsgRegisterMarketIdentificationCode) Marshal

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

func (*MsgRegisterMarketIdentificationCode) MarshalTo

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

func (*MsgRegisterMarketIdentificationCode) MarshalToSizedBuffer

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

func (*MsgRegisterMarketIdentificationCode) ProtoMessage

func (*MsgRegisterMarketIdentificationCode) ProtoMessage()

func (*MsgRegisterMarketIdentificationCode) Reset

func (*MsgRegisterMarketIdentificationCode) Route

func (*MsgRegisterMarketIdentificationCode) Size

func (*MsgRegisterMarketIdentificationCode) String

func (*MsgRegisterMarketIdentificationCode) Type

func (*MsgRegisterMarketIdentificationCode) Unmarshal

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

func (*MsgRegisterMarketIdentificationCode) ValidateBasic

func (msg *MsgRegisterMarketIdentificationCode) ValidateBasic() error

func (*MsgRegisterMarketIdentificationCode) XXX_DiscardUnknown

func (m *MsgRegisterMarketIdentificationCode) XXX_DiscardUnknown()

func (*MsgRegisterMarketIdentificationCode) XXX_Marshal

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

func (*MsgRegisterMarketIdentificationCode) XXX_Merge

func (*MsgRegisterMarketIdentificationCode) XXX_Size

func (*MsgRegisterMarketIdentificationCode) XXX_Unmarshal

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

type MsgRegisterMarketIdentificationCodeResponse

type MsgRegisterMarketIdentificationCodeResponse struct {
}

func (*MsgRegisterMarketIdentificationCodeResponse) Descriptor

func (*MsgRegisterMarketIdentificationCodeResponse) Marshal

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

func (*MsgRegisterMarketIdentificationCodeResponse) MarshalTo

func (*MsgRegisterMarketIdentificationCodeResponse) MarshalToSizedBuffer

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

func (*MsgRegisterMarketIdentificationCodeResponse) ProtoMessage

func (*MsgRegisterMarketIdentificationCodeResponse) Reset

func (*MsgRegisterMarketIdentificationCodeResponse) Size

func (*MsgRegisterMarketIdentificationCodeResponse) String

func (*MsgRegisterMarketIdentificationCodeResponse) Unmarshal

func (*MsgRegisterMarketIdentificationCodeResponse) XXX_DiscardUnknown

func (m *MsgRegisterMarketIdentificationCodeResponse) XXX_DiscardUnknown()

func (*MsgRegisterMarketIdentificationCodeResponse) XXX_Marshal

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

func (*MsgRegisterMarketIdentificationCodeResponse) XXX_Merge

func (*MsgRegisterMarketIdentificationCodeResponse) XXX_Size

func (*MsgRegisterMarketIdentificationCodeResponse) XXX_Unmarshal

type MsgServer

MsgServer is the server API for Msg service.

type MsgUpdateMarketIdentificationCode

type MsgUpdateMarketIdentificationCode struct {
	Old_MIC               string `protobuf:"bytes,1,opt,name=old_MIC,json=oldMIC,proto3" json:"old_MIC,omitempty"`
	New_MIC               string `protobuf:"bytes,2,opt,name=new_MIC,json=newMIC,proto3" json:"new_MIC,omitempty"`
	Operating_MIC         string `protobuf:"bytes,3,opt,name=operating_MIC,json=operatingMIC,proto3" json:"operating_MIC,omitempty"`
	OPRT_SGMT             string `protobuf:"bytes,4,opt,name=OPRT_SGMT,json=OPRTSGMT,proto3" json:"OPRT_SGMT,omitempty"`
	MarketName            string `protobuf:"bytes,5,opt,name=market_name,json=marketName,proto3" json:"market_name,omitempty"`
	LegalEntityName       string `protobuf:"bytes,6,opt,name=legal_entity_name,json=legalEntityName,proto3" json:"legal_entity_name,omitempty"`
	LegalEntityIdentifier string `` /* 126-byte string literal not displayed */
	MarketCategory        string `protobuf:"bytes,8,opt,name=market_category,json=marketCategory,proto3" json:"market_category,omitempty"`
	Acronym               string `protobuf:"bytes,9,opt,name=acronym,proto3" json:"acronym,omitempty"`
	ISOCountryCode        string `protobuf:"bytes,10,opt,name=ISO_country_code,json=ISOCountryCode,proto3" json:"ISO_country_code,omitempty"`
	City                  string `protobuf:"bytes,11,opt,name=city,proto3" json:"city,omitempty"`
	Website               string `protobuf:"bytes,12,opt,name=website,proto3" json:"website,omitempty"`
	Status                string `protobuf:"bytes,13,opt,name=status,proto3" json:"status,omitempty"`
	CreationDate          string `protobuf:"bytes,14,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
	LastUpdateDate        string `protobuf:"bytes,15,opt,name=last_update_date,json=lastUpdateDate,proto3" json:"last_update_date,omitempty"`
	LastValidationDate    string `protobuf:"bytes,16,opt,name=last_validation_date,json=lastValidationDate,proto3" json:"last_validation_date,omitempty"`
	ExpiryDate            string `protobuf:"bytes,17,opt,name=expiry_date,json=expiryDate,proto3" json:"expiry_date,omitempty"`
	Comments              string `protobuf:"bytes,18,opt,name=comments,proto3" json:"comments,omitempty"`
	Creator               string `protobuf:"bytes,19,opt,name=creator,proto3" json:"creator,omitempty"`
}

func NewMsgUpdateMarketIdentificationCode

func NewMsgUpdateMarketIdentificationCode(creator string, oldMic string, newMic string, operatingMIC string, oprtSGMT string, marketName string, legalEntityName string, legalEntityIdentifier string, marketCategory string, acronym string, isoCountryCode string, city string, website string, status string, creationDate string, lastUpdateDate string, lastValidationDate string, expiryDate string, comments string) *MsgUpdateMarketIdentificationCode

func (*MsgUpdateMarketIdentificationCode) Descriptor

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

func (*MsgUpdateMarketIdentificationCode) GetAcronym

func (m *MsgUpdateMarketIdentificationCode) GetAcronym() string

func (*MsgUpdateMarketIdentificationCode) GetCity

func (*MsgUpdateMarketIdentificationCode) GetComments

func (m *MsgUpdateMarketIdentificationCode) GetComments() string

func (*MsgUpdateMarketIdentificationCode) GetCreationDate

func (m *MsgUpdateMarketIdentificationCode) GetCreationDate() string

func (*MsgUpdateMarketIdentificationCode) GetCreator

func (m *MsgUpdateMarketIdentificationCode) GetCreator() string

func (*MsgUpdateMarketIdentificationCode) GetExpiryDate

func (m *MsgUpdateMarketIdentificationCode) GetExpiryDate() string

func (*MsgUpdateMarketIdentificationCode) GetISOCountryCode

func (m *MsgUpdateMarketIdentificationCode) GetISOCountryCode() string

func (*MsgUpdateMarketIdentificationCode) GetLastUpdateDate

func (m *MsgUpdateMarketIdentificationCode) GetLastUpdateDate() string

func (*MsgUpdateMarketIdentificationCode) GetLastValidationDate

func (m *MsgUpdateMarketIdentificationCode) GetLastValidationDate() string

func (*MsgUpdateMarketIdentificationCode) GetLegalEntityIdentifier

func (m *MsgUpdateMarketIdentificationCode) GetLegalEntityIdentifier() string

func (*MsgUpdateMarketIdentificationCode) GetLegalEntityName

func (m *MsgUpdateMarketIdentificationCode) GetLegalEntityName() string

func (*MsgUpdateMarketIdentificationCode) GetMarketCategory

func (m *MsgUpdateMarketIdentificationCode) GetMarketCategory() string

func (*MsgUpdateMarketIdentificationCode) GetMarketName

func (m *MsgUpdateMarketIdentificationCode) GetMarketName() string

func (*MsgUpdateMarketIdentificationCode) GetNew_MIC

func (m *MsgUpdateMarketIdentificationCode) GetNew_MIC() string

func (*MsgUpdateMarketIdentificationCode) GetOPRT_SGMT

func (m *MsgUpdateMarketIdentificationCode) GetOPRT_SGMT() string

func (*MsgUpdateMarketIdentificationCode) GetOld_MIC

func (m *MsgUpdateMarketIdentificationCode) GetOld_MIC() string

func (*MsgUpdateMarketIdentificationCode) GetOperating_MIC

func (m *MsgUpdateMarketIdentificationCode) GetOperating_MIC() string

func (*MsgUpdateMarketIdentificationCode) GetSignBytes

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

func (*MsgUpdateMarketIdentificationCode) GetSigners

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

func (*MsgUpdateMarketIdentificationCode) GetStatus

func (*MsgUpdateMarketIdentificationCode) GetWebsite

func (m *MsgUpdateMarketIdentificationCode) GetWebsite() string

func (*MsgUpdateMarketIdentificationCode) Marshal

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

func (*MsgUpdateMarketIdentificationCode) MarshalTo

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

func (*MsgUpdateMarketIdentificationCode) MarshalToSizedBuffer

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

func (*MsgUpdateMarketIdentificationCode) ProtoMessage

func (*MsgUpdateMarketIdentificationCode) ProtoMessage()

func (*MsgUpdateMarketIdentificationCode) Reset

func (*MsgUpdateMarketIdentificationCode) Route

func (*MsgUpdateMarketIdentificationCode) Size

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

func (*MsgUpdateMarketIdentificationCode) String

func (*MsgUpdateMarketIdentificationCode) Type

func (*MsgUpdateMarketIdentificationCode) Unmarshal

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

func (*MsgUpdateMarketIdentificationCode) ValidateBasic

func (msg *MsgUpdateMarketIdentificationCode) ValidateBasic() error

func (*MsgUpdateMarketIdentificationCode) XXX_DiscardUnknown

func (m *MsgUpdateMarketIdentificationCode) XXX_DiscardUnknown()

func (*MsgUpdateMarketIdentificationCode) XXX_Marshal

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

func (*MsgUpdateMarketIdentificationCode) XXX_Merge

func (*MsgUpdateMarketIdentificationCode) XXX_Size

func (m *MsgUpdateMarketIdentificationCode) XXX_Size() int

func (*MsgUpdateMarketIdentificationCode) XXX_Unmarshal

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

type MsgUpdateMarketIdentificationCodeResponse

type MsgUpdateMarketIdentificationCodeResponse struct {
}

func (*MsgUpdateMarketIdentificationCodeResponse) Descriptor

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

func (*MsgUpdateMarketIdentificationCodeResponse) Marshal

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

func (*MsgUpdateMarketIdentificationCodeResponse) MarshalTo

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

func (*MsgUpdateMarketIdentificationCodeResponse) MarshalToSizedBuffer

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

func (*MsgUpdateMarketIdentificationCodeResponse) ProtoMessage

func (*MsgUpdateMarketIdentificationCodeResponse) Reset

func (*MsgUpdateMarketIdentificationCodeResponse) Size

func (*MsgUpdateMarketIdentificationCodeResponse) String

func (*MsgUpdateMarketIdentificationCodeResponse) Unmarshal

func (*MsgUpdateMarketIdentificationCodeResponse) XXX_DiscardUnknown

func (m *MsgUpdateMarketIdentificationCodeResponse) XXX_DiscardUnknown()

func (*MsgUpdateMarketIdentificationCodeResponse) XXX_Marshal

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

func (*MsgUpdateMarketIdentificationCodeResponse) XXX_Merge

func (*MsgUpdateMarketIdentificationCodeResponse) XXX_Size

func (*MsgUpdateMarketIdentificationCodeResponse) XXX_Unmarshal

type QueryAllMarketIdentificationCodeRequest

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

func (*QueryAllMarketIdentificationCodeRequest) Descriptor

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

func (*QueryAllMarketIdentificationCodeRequest) GetPagination

func (*QueryAllMarketIdentificationCodeRequest) Marshal

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

func (*QueryAllMarketIdentificationCodeRequest) MarshalTo

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

func (*QueryAllMarketIdentificationCodeRequest) MarshalToSizedBuffer

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

func (*QueryAllMarketIdentificationCodeRequest) ProtoMessage

func (*QueryAllMarketIdentificationCodeRequest) Reset

func (*QueryAllMarketIdentificationCodeRequest) Size

func (*QueryAllMarketIdentificationCodeRequest) String

func (*QueryAllMarketIdentificationCodeRequest) Unmarshal

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

func (*QueryAllMarketIdentificationCodeRequest) XXX_DiscardUnknown

func (m *QueryAllMarketIdentificationCodeRequest) XXX_DiscardUnknown()

func (*QueryAllMarketIdentificationCodeRequest) XXX_Marshal

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

func (*QueryAllMarketIdentificationCodeRequest) XXX_Merge

func (*QueryAllMarketIdentificationCodeRequest) XXX_Size

func (*QueryAllMarketIdentificationCodeRequest) XXX_Unmarshal

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

type QueryAllMarketIdentificationCodeResponse

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

func (*QueryAllMarketIdentificationCodeResponse) Descriptor

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

func (*QueryAllMarketIdentificationCodeResponse) GetMarketIdentificationCode

func (m *QueryAllMarketIdentificationCodeResponse) GetMarketIdentificationCode() []MarketIdentificationCode

func (*QueryAllMarketIdentificationCodeResponse) GetPagination

func (*QueryAllMarketIdentificationCodeResponse) Marshal

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

func (*QueryAllMarketIdentificationCodeResponse) MarshalTo

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

func (*QueryAllMarketIdentificationCodeResponse) MarshalToSizedBuffer

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

func (*QueryAllMarketIdentificationCodeResponse) ProtoMessage

func (*QueryAllMarketIdentificationCodeResponse) Reset

func (*QueryAllMarketIdentificationCodeResponse) Size

func (*QueryAllMarketIdentificationCodeResponse) String

func (*QueryAllMarketIdentificationCodeResponse) Unmarshal

func (*QueryAllMarketIdentificationCodeResponse) XXX_DiscardUnknown

func (m *QueryAllMarketIdentificationCodeResponse) XXX_DiscardUnknown()

func (*QueryAllMarketIdentificationCodeResponse) XXX_Marshal

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

func (*QueryAllMarketIdentificationCodeResponse) XXX_Merge

func (*QueryAllMarketIdentificationCodeResponse) XXX_Size

func (*QueryAllMarketIdentificationCodeResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Queries a list of MarketIdentificationCode items.
	MarketIdentificationCode(ctx context.Context, in *QueryGetMarketIdentificationCodeRequest, opts ...grpc.CallOption) (*QueryGetMarketIdentificationCodeResponse, error)
	MarketIdentificationCodeAll(ctx context.Context, in *QueryAllMarketIdentificationCodeRequest, opts ...grpc.CallOption) (*QueryAllMarketIdentificationCodeResponse, 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 QueryGetMarketIdentificationCodeRequest

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

func (*QueryGetMarketIdentificationCodeRequest) Descriptor

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

func (*QueryGetMarketIdentificationCodeRequest) GetMIC

func (*QueryGetMarketIdentificationCodeRequest) Marshal

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

func (*QueryGetMarketIdentificationCodeRequest) MarshalTo

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

func (*QueryGetMarketIdentificationCodeRequest) MarshalToSizedBuffer

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

func (*QueryGetMarketIdentificationCodeRequest) ProtoMessage

func (*QueryGetMarketIdentificationCodeRequest) Reset

func (*QueryGetMarketIdentificationCodeRequest) Size

func (*QueryGetMarketIdentificationCodeRequest) String

func (*QueryGetMarketIdentificationCodeRequest) Unmarshal

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

func (*QueryGetMarketIdentificationCodeRequest) XXX_DiscardUnknown

func (m *QueryGetMarketIdentificationCodeRequest) XXX_DiscardUnknown()

func (*QueryGetMarketIdentificationCodeRequest) XXX_Marshal

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

func (*QueryGetMarketIdentificationCodeRequest) XXX_Merge

func (*QueryGetMarketIdentificationCodeRequest) XXX_Size

func (*QueryGetMarketIdentificationCodeRequest) XXX_Unmarshal

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

type QueryGetMarketIdentificationCodeResponse

type QueryGetMarketIdentificationCodeResponse struct {
	MarketIdentificationCode MarketIdentificationCode `protobuf:"bytes,1,opt,name=MarketIdentificationCode,proto3" json:"MarketIdentificationCode"`
}

func (*QueryGetMarketIdentificationCodeResponse) Descriptor

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

func (*QueryGetMarketIdentificationCodeResponse) GetMarketIdentificationCode

func (m *QueryGetMarketIdentificationCodeResponse) GetMarketIdentificationCode() MarketIdentificationCode

func (*QueryGetMarketIdentificationCodeResponse) Marshal

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

func (*QueryGetMarketIdentificationCodeResponse) MarshalTo

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

func (*QueryGetMarketIdentificationCodeResponse) MarshalToSizedBuffer

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

func (*QueryGetMarketIdentificationCodeResponse) ProtoMessage

func (*QueryGetMarketIdentificationCodeResponse) Reset

func (*QueryGetMarketIdentificationCodeResponse) Size

func (*QueryGetMarketIdentificationCodeResponse) String

func (*QueryGetMarketIdentificationCodeResponse) Unmarshal

func (*QueryGetMarketIdentificationCodeResponse) XXX_DiscardUnknown

func (m *QueryGetMarketIdentificationCodeResponse) XXX_DiscardUnknown()

func (*QueryGetMarketIdentificationCodeResponse) XXX_Marshal

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

func (*QueryGetMarketIdentificationCodeResponse) XXX_Merge

func (*QueryGetMarketIdentificationCodeResponse) XXX_Size

func (*QueryGetMarketIdentificationCodeResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Queries a list of MarketIdentificationCode items.
	MarketIdentificationCode(context.Context, *QueryGetMarketIdentificationCodeRequest) (*QueryGetMarketIdentificationCodeResponse, error)
	MarketIdentificationCodeAll(context.Context, *QueryAllMarketIdentificationCodeRequest) (*QueryAllMarketIdentificationCodeResponse, error)
}

QueryServer is the server API for Query service.

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.

Jump to

Keyboard shortcuts

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