types

package
v3.2.1 Latest Latest
Warning

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

Go to latest
Published: Apr 8, 2024 License: MIT Imports: 33 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 = "rns"

	// 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_rns"
)
View Source
const (
	// BidsKeyPrefix is the prefix to retrieve all Bids
	BidsKeyPrefix = "Bids/value/"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default capability global index

View Source
const (
	// ForsaleKeyPrefix is the prefix to retrieve all Forsale
	ForsaleKeyPrefix = "Forsale/value/"
)
View Source
const (
	// InitKeyPrefix is the prefix to retrieve all Init
	InitKeyPrefix = "Init/value/"
)
View Source
const (
	// NamesKeyPrefix is the prefix to retrieve all Names
	NamesKeyPrefix = "Names/value/"
)
View Source
const TypeMsgAcceptBid = "accept_bid"
View Source
const TypeMsgAddRecord = "add_record"
View Source
const TypeMsgBid = "bid"
View Source
const TypeMsgBuy = "buy"
View Source
const TypeMsgCancelBid = "cancel_bid"
View Source
const TypeMsgDelRecord = "del_record"
View Source
const TypeMsgDelist = "delist"
View Source
const TypeMsgInit = "init"
View Source
const TypeMsgList = "list"
View Source
const TypeMsgRegister = "register"
View Source
const TypeMsgTransfer = "transfer"
View Source
const (
	// WhoisKeyPrefix is the prefix to retrieve all Whois
	WhoisKeyPrefix = "Whois/value/"
)

Variables

View Source
var (
	ErrInvalidLengthBids        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBids          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBids = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	Amino     = codec.NewLegacyAmino()
	ModuleCdc = codec.NewAminoCodec(Amino)
)
View Source
var (
	ErrNoTLD    = sdkerrors.Register(ModuleName, 1100, "could not extract the tld from the name provided")
	ErrReserved = sdkerrors.Register(ModuleName, 1101, "tld is reserved by the system")
)

x/rns module sentinel errors

View Source
var (
	ErrInvalidLengthForsale        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowForsale          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupForsale = 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 (
	ErrInvalidLengthInit        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowInit          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupInit = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNames        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNames          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNames = 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 (
	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 (
	ErrInvalidLengthWhois        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowWhois          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupWhois = fmt.Errorf("proto: unexpected end of group")
)
View Source
var IsReserved = map[string]bool{"ibc": false, "jkl": false}
View Source
var KeyDepositAccount = []byte("DepositAccount")
View Source
var SupportedTLDs = []string{"ibc", "jkl"}
View Source
var TLDCost = map[string]int64{"ibc": 11250000, "jkl": 7500000}

Functions

func BidsKey

func BidsKey(
	index string,
) []byte

BidsKey returns the store key to retrieve a Bids from the index fields

func ForsaleKey

func ForsaleKey(
	name string,
) []byte

ForsaleKey returns the store key to retrieve a Forsale from the index fields

func GetCost

func GetCost(tld string) int64

func GetNameAndTLD

func GetNameAndTLD(full string) (string, string, error)

func GetSubdomain

func GetSubdomain(name string) (string, string, bool)

func GetTLD

func GetTLD(name string) (string, error)

func InitKey

func InitKey(
	address string,
) []byte

InitKey returns the store key to retrieve a Init from the index fields

func IsValidName

func IsValidName(name string) bool

func KeyPrefix

func KeyPrefix(p string) []byte

func MakeName

func MakeName(index int, blockHeight int64) string

func NamesKey

func NamesKey(
	name string,
	tld string,
) []byte

NamesKey returns the store key to retrieve a Names from the index fields

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func WhoisKey

func WhoisKey(
	index string,
) []byte

WhoisKey returns the store key to retrieve a Whois from the index fields

Types

type AccountKeeper

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

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

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	SendCoinsFromModuleToModule(ctx sdk.Context, senderModule string, recipientModule string, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoins(ctx sdk.Context, fromAddr sdk.AccAddress, toAddr sdk.AccAddress, amt sdk.Coins) error
	MintCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error
	BurnCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error

	GetBalance(ctx sdk.Context, addrr sdk.AccAddress, denoms string) sdk.Coin
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
}

BankKeeper defines the expected interface needed to retrieve account balances.

type Bids

type Bids struct {
	Index  string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Name   string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Bidder string `protobuf:"bytes,3,opt,name=bidder,proto3" json:"bidder,omitempty"`
	Price  string `protobuf:"bytes,4,opt,name=price,proto3" json:"price,omitempty"`
}

func (*Bids) Descriptor

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

func (*Bids) GetBidder

func (m *Bids) GetBidder() string

func (*Bids) GetIndex

func (m *Bids) GetIndex() string

func (*Bids) GetName

func (m *Bids) GetName() string

func (*Bids) GetPrice

func (m *Bids) GetPrice() string

func (*Bids) Marshal

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

func (*Bids) MarshalTo

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

func (*Bids) MarshalToSizedBuffer

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

func (*Bids) ProtoMessage

func (*Bids) ProtoMessage()

func (*Bids) Reset

func (m *Bids) Reset()

func (*Bids) Size

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

func (*Bids) String

func (m *Bids) String() string

func (*Bids) Unmarshal

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

func (*Bids) XXX_DiscardUnknown

func (m *Bids) XXX_DiscardUnknown()

func (*Bids) XXX_Marshal

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

func (*Bids) XXX_Merge

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

func (*Bids) XXX_Size

func (m *Bids) XXX_Size() int

func (*Bids) XXX_Unmarshal

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

type Forsale

type Forsale struct {
	Name  string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Price string `protobuf:"bytes,2,opt,name=price,proto3" json:"price,omitempty"`
	Owner string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
}

func (*Forsale) Descriptor

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

func (*Forsale) GetName

func (m *Forsale) GetName() string

func (*Forsale) GetOwner

func (m *Forsale) GetOwner() string

func (*Forsale) GetPrice

func (m *Forsale) GetPrice() string

func (*Forsale) Marshal

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

func (*Forsale) MarshalTo

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

func (*Forsale) MarshalToSizedBuffer

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

func (*Forsale) ProtoMessage

func (*Forsale) ProtoMessage()

func (*Forsale) Reset

func (m *Forsale) Reset()

func (*Forsale) Size

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

func (*Forsale) String

func (m *Forsale) String() string

func (*Forsale) Unmarshal

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

func (*Forsale) XXX_DiscardUnknown

func (m *Forsale) XXX_DiscardUnknown()

func (*Forsale) XXX_Marshal

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

func (*Forsale) XXX_Merge

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

func (*Forsale) XXX_Size

func (m *Forsale) XXX_Size() int

func (*Forsale) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Params      Params    `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	WhoIsList   []Whois   `protobuf:"bytes,2,rep,name=who_is_list,json=whoIsList,proto3" json:"who_is_list"`
	NamesList   []Names   `protobuf:"bytes,3,rep,name=names_list,json=namesList,proto3" json:"names_list"`
	BidsList    []Bids    `protobuf:"bytes,4,rep,name=bids_list,json=bidsList,proto3" json:"bids_list"`
	ForSaleList []Forsale `protobuf:"bytes,5,rep,name=for_sale_list,json=forSaleList,proto3" json:"for_sale_list"`
	InitList    []Init    `protobuf:"bytes,6,rep,name=init_list,json=initList,proto3" json:"init_list"`
}

GenesisState defines the rns 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) GetBidsList

func (m *GenesisState) GetBidsList() []Bids

func (*GenesisState) GetForSaleList

func (m *GenesisState) GetForSaleList() []Forsale

func (*GenesisState) GetInitList

func (m *GenesisState) GetInitList() []Init

func (*GenesisState) GetNamesList

func (m *GenesisState) GetNamesList() []Names

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetWhoIsList

func (m *GenesisState) GetWhoIsList() []Whois

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 Init

type Init struct {
	Address  string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Complete bool   `protobuf:"varint,2,opt,name=complete,proto3" json:"complete,omitempty"`
}

func (*Init) Descriptor

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

func (*Init) GetAddress

func (m *Init) GetAddress() string

func (*Init) GetComplete

func (m *Init) GetComplete() bool

func (*Init) Marshal

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

func (*Init) MarshalTo

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

func (*Init) MarshalToSizedBuffer

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

func (*Init) ProtoMessage

func (*Init) ProtoMessage()

func (*Init) Reset

func (m *Init) Reset()

func (*Init) Size

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

func (*Init) String

func (m *Init) String() string

func (*Init) Unmarshal

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

func (*Init) XXX_DiscardUnknown

func (m *Init) XXX_DiscardUnknown()

func (*Init) XXX_Marshal

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

func (*Init) XXX_Merge

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

func (*Init) XXX_Size

func (m *Init) XXX_Size() int

func (*Init) XXX_Unmarshal

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

type MsgAcceptBid

type MsgAcceptBid struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	From    string `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`
}

func NewMsgAcceptBid

func NewMsgAcceptBid(creator string, name string, from string) *MsgAcceptBid

func (*MsgAcceptBid) Descriptor

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

func (*MsgAcceptBid) GetCreator

func (m *MsgAcceptBid) GetCreator() string

func (*MsgAcceptBid) GetFrom

func (m *MsgAcceptBid) GetFrom() string

func (*MsgAcceptBid) GetName

func (m *MsgAcceptBid) GetName() string

func (*MsgAcceptBid) GetSignBytes

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

func (*MsgAcceptBid) GetSigners

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

func (*MsgAcceptBid) Marshal

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

func (*MsgAcceptBid) MarshalTo

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

func (*MsgAcceptBid) MarshalToSizedBuffer

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

func (*MsgAcceptBid) ProtoMessage

func (*MsgAcceptBid) ProtoMessage()

func (*MsgAcceptBid) Reset

func (m *MsgAcceptBid) Reset()

func (*MsgAcceptBid) Route

func (msg *MsgAcceptBid) Route() string

func (*MsgAcceptBid) Size

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

func (*MsgAcceptBid) String

func (m *MsgAcceptBid) String() string

func (*MsgAcceptBid) Type

func (msg *MsgAcceptBid) Type() string

func (*MsgAcceptBid) Unmarshal

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

func (*MsgAcceptBid) ValidateBasic

func (msg *MsgAcceptBid) ValidateBasic() error

func (*MsgAcceptBid) XXX_DiscardUnknown

func (m *MsgAcceptBid) XXX_DiscardUnknown()

func (*MsgAcceptBid) XXX_Marshal

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

func (*MsgAcceptBid) XXX_Merge

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

func (*MsgAcceptBid) XXX_Size

func (m *MsgAcceptBid) XXX_Size() int

func (*MsgAcceptBid) XXX_Unmarshal

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

type MsgAcceptBidResponse

type MsgAcceptBidResponse struct {
}

func (*MsgAcceptBidResponse) Descriptor

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

func (*MsgAcceptBidResponse) Marshal

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

func (*MsgAcceptBidResponse) MarshalTo

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

func (*MsgAcceptBidResponse) MarshalToSizedBuffer

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

func (*MsgAcceptBidResponse) ProtoMessage

func (*MsgAcceptBidResponse) ProtoMessage()

func (*MsgAcceptBidResponse) Reset

func (m *MsgAcceptBidResponse) Reset()

func (*MsgAcceptBidResponse) Size

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

func (*MsgAcceptBidResponse) String

func (m *MsgAcceptBidResponse) String() string

func (*MsgAcceptBidResponse) Unmarshal

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

func (*MsgAcceptBidResponse) XXX_DiscardUnknown

func (m *MsgAcceptBidResponse) XXX_DiscardUnknown()

func (*MsgAcceptBidResponse) XXX_Marshal

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

func (*MsgAcceptBidResponse) XXX_Merge

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

func (*MsgAcceptBidResponse) XXX_Size

func (m *MsgAcceptBidResponse) XXX_Size() int

func (*MsgAcceptBidResponse) XXX_Unmarshal

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

type MsgAddRecord

type MsgAddRecord struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Value   string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Data    string `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Record  string `protobuf:"bytes,5,opt,name=record,proto3" json:"record,omitempty"`
}

func NewMsgAddRecord

func NewMsgAddRecord(creator string, name string, record string, value string, data string) *MsgAddRecord

func (*MsgAddRecord) Descriptor

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

func (*MsgAddRecord) GetCreator

func (m *MsgAddRecord) GetCreator() string

func (*MsgAddRecord) GetData

func (m *MsgAddRecord) GetData() string

func (*MsgAddRecord) GetName

func (m *MsgAddRecord) GetName() string

func (*MsgAddRecord) GetRecord

func (m *MsgAddRecord) GetRecord() string

func (*MsgAddRecord) GetSignBytes

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

func (*MsgAddRecord) GetSigners

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

func (*MsgAddRecord) GetValue

func (m *MsgAddRecord) GetValue() string

func (*MsgAddRecord) Marshal

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

func (*MsgAddRecord) MarshalTo

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

func (*MsgAddRecord) MarshalToSizedBuffer

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

func (*MsgAddRecord) ProtoMessage

func (*MsgAddRecord) ProtoMessage()

func (*MsgAddRecord) Reset

func (m *MsgAddRecord) Reset()

func (*MsgAddRecord) Route

func (msg *MsgAddRecord) Route() string

func (*MsgAddRecord) Size

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

func (*MsgAddRecord) String

func (m *MsgAddRecord) String() string

func (*MsgAddRecord) Type

func (msg *MsgAddRecord) Type() string

func (*MsgAddRecord) Unmarshal

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

func (*MsgAddRecord) ValidateBasic

func (msg *MsgAddRecord) ValidateBasic() error

func (*MsgAddRecord) XXX_DiscardUnknown

func (m *MsgAddRecord) XXX_DiscardUnknown()

func (*MsgAddRecord) XXX_Marshal

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

func (*MsgAddRecord) XXX_Merge

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

func (*MsgAddRecord) XXX_Size

func (m *MsgAddRecord) XXX_Size() int

func (*MsgAddRecord) XXX_Unmarshal

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

type MsgAddRecordResponse

type MsgAddRecordResponse struct {
}

func (*MsgAddRecordResponse) Descriptor

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

func (*MsgAddRecordResponse) Marshal

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

func (*MsgAddRecordResponse) MarshalTo

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

func (*MsgAddRecordResponse) MarshalToSizedBuffer

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

func (*MsgAddRecordResponse) ProtoMessage

func (*MsgAddRecordResponse) ProtoMessage()

func (*MsgAddRecordResponse) Reset

func (m *MsgAddRecordResponse) Reset()

func (*MsgAddRecordResponse) Size

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

func (*MsgAddRecordResponse) String

func (m *MsgAddRecordResponse) String() string

func (*MsgAddRecordResponse) Unmarshal

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

func (*MsgAddRecordResponse) XXX_DiscardUnknown

func (m *MsgAddRecordResponse) XXX_DiscardUnknown()

func (*MsgAddRecordResponse) XXX_Marshal

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

func (*MsgAddRecordResponse) XXX_Merge

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

func (*MsgAddRecordResponse) XXX_Size

func (m *MsgAddRecordResponse) XXX_Size() int

func (*MsgAddRecordResponse) XXX_Unmarshal

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

type MsgBid

type MsgBid struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Bid     string `protobuf:"bytes,3,opt,name=bid,proto3" json:"bid,omitempty"`
}

func NewMsgBid

func NewMsgBid(creator string, name string, bid string) *MsgBid

func (*MsgBid) Descriptor

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

func (*MsgBid) GetBid

func (m *MsgBid) GetBid() string

func (*MsgBid) GetCreator

func (m *MsgBid) GetCreator() string

func (*MsgBid) GetName

func (m *MsgBid) GetName() string

func (*MsgBid) GetSignBytes

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

func (*MsgBid) GetSigners

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

func (*MsgBid) Marshal

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

func (*MsgBid) MarshalTo

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

func (*MsgBid) MarshalToSizedBuffer

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

func (*MsgBid) ProtoMessage

func (*MsgBid) ProtoMessage()

func (*MsgBid) Reset

func (m *MsgBid) Reset()

func (*MsgBid) Route

func (msg *MsgBid) Route() string

func (*MsgBid) Size

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

func (*MsgBid) String

func (m *MsgBid) String() string

func (*MsgBid) Type

func (msg *MsgBid) Type() string

func (*MsgBid) Unmarshal

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

func (*MsgBid) ValidateBasic

func (msg *MsgBid) ValidateBasic() error

func (*MsgBid) XXX_DiscardUnknown

func (m *MsgBid) XXX_DiscardUnknown()

func (*MsgBid) XXX_Marshal

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

func (*MsgBid) XXX_Merge

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

func (*MsgBid) XXX_Size

func (m *MsgBid) XXX_Size() int

func (*MsgBid) XXX_Unmarshal

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

type MsgBidResponse

type MsgBidResponse struct {
}

func (*MsgBidResponse) Descriptor

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

func (*MsgBidResponse) Marshal

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

func (*MsgBidResponse) MarshalTo

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

func (*MsgBidResponse) MarshalToSizedBuffer

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

func (*MsgBidResponse) ProtoMessage

func (*MsgBidResponse) ProtoMessage()

func (*MsgBidResponse) Reset

func (m *MsgBidResponse) Reset()

func (*MsgBidResponse) Size

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

func (*MsgBidResponse) String

func (m *MsgBidResponse) String() string

func (*MsgBidResponse) Unmarshal

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

func (*MsgBidResponse) XXX_DiscardUnknown

func (m *MsgBidResponse) XXX_DiscardUnknown()

func (*MsgBidResponse) XXX_Marshal

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

func (*MsgBidResponse) XXX_Merge

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

func (*MsgBidResponse) XXX_Size

func (m *MsgBidResponse) XXX_Size() int

func (*MsgBidResponse) XXX_Unmarshal

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

type MsgBuy

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

func NewMsgBuy

func NewMsgBuy(creator string, name string) *MsgBuy

func (*MsgBuy) Descriptor

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

func (*MsgBuy) GetCreator

func (m *MsgBuy) GetCreator() string

func (*MsgBuy) GetName

func (m *MsgBuy) GetName() string

func (*MsgBuy) GetSignBytes

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

func (*MsgBuy) GetSigners

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

func (*MsgBuy) Marshal

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

func (*MsgBuy) MarshalTo

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

func (*MsgBuy) MarshalToSizedBuffer

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

func (*MsgBuy) ProtoMessage

func (*MsgBuy) ProtoMessage()

func (*MsgBuy) Reset

func (m *MsgBuy) Reset()

func (*MsgBuy) Route

func (msg *MsgBuy) Route() string

func (*MsgBuy) Size

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

func (*MsgBuy) String

func (m *MsgBuy) String() string

func (*MsgBuy) Type

func (msg *MsgBuy) Type() string

func (*MsgBuy) Unmarshal

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

func (*MsgBuy) ValidateBasic

func (msg *MsgBuy) ValidateBasic() error

func (*MsgBuy) XXX_DiscardUnknown

func (m *MsgBuy) XXX_DiscardUnknown()

func (*MsgBuy) XXX_Marshal

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

func (*MsgBuy) XXX_Merge

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

func (*MsgBuy) XXX_Size

func (m *MsgBuy) XXX_Size() int

func (*MsgBuy) XXX_Unmarshal

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

type MsgBuyResponse

type MsgBuyResponse struct {
}

func (*MsgBuyResponse) Descriptor

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

func (*MsgBuyResponse) Marshal

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

func (*MsgBuyResponse) MarshalTo

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

func (*MsgBuyResponse) MarshalToSizedBuffer

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

func (*MsgBuyResponse) ProtoMessage

func (*MsgBuyResponse) ProtoMessage()

func (*MsgBuyResponse) Reset

func (m *MsgBuyResponse) Reset()

func (*MsgBuyResponse) Size

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

func (*MsgBuyResponse) String

func (m *MsgBuyResponse) String() string

func (*MsgBuyResponse) Unmarshal

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

func (*MsgBuyResponse) XXX_DiscardUnknown

func (m *MsgBuyResponse) XXX_DiscardUnknown()

func (*MsgBuyResponse) XXX_Marshal

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

func (*MsgBuyResponse) XXX_Merge

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

func (*MsgBuyResponse) XXX_Size

func (m *MsgBuyResponse) XXX_Size() int

func (*MsgBuyResponse) XXX_Unmarshal

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

type MsgCancelBid

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

func NewMsgCancelBid

func NewMsgCancelBid(creator string, name string) *MsgCancelBid

func (*MsgCancelBid) Descriptor

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

func (*MsgCancelBid) GetCreator

func (m *MsgCancelBid) GetCreator() string

func (*MsgCancelBid) GetName

func (m *MsgCancelBid) GetName() string

func (*MsgCancelBid) GetSignBytes

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

func (*MsgCancelBid) GetSigners

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

func (*MsgCancelBid) Marshal

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

func (*MsgCancelBid) MarshalTo

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

func (*MsgCancelBid) MarshalToSizedBuffer

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

func (*MsgCancelBid) ProtoMessage

func (*MsgCancelBid) ProtoMessage()

func (*MsgCancelBid) Reset

func (m *MsgCancelBid) Reset()

func (*MsgCancelBid) Route

func (msg *MsgCancelBid) Route() string

func (*MsgCancelBid) Size

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

func (*MsgCancelBid) String

func (m *MsgCancelBid) String() string

func (*MsgCancelBid) Type

func (msg *MsgCancelBid) Type() string

func (*MsgCancelBid) Unmarshal

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

func (*MsgCancelBid) ValidateBasic

func (msg *MsgCancelBid) ValidateBasic() error

func (*MsgCancelBid) XXX_DiscardUnknown

func (m *MsgCancelBid) XXX_DiscardUnknown()

func (*MsgCancelBid) XXX_Marshal

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

func (*MsgCancelBid) XXX_Merge

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

func (*MsgCancelBid) XXX_Size

func (m *MsgCancelBid) XXX_Size() int

func (*MsgCancelBid) XXX_Unmarshal

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

type MsgCancelBidResponse

type MsgCancelBidResponse struct {
}

func (*MsgCancelBidResponse) Descriptor

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

func (*MsgCancelBidResponse) Marshal

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

func (*MsgCancelBidResponse) MarshalTo

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

func (*MsgCancelBidResponse) MarshalToSizedBuffer

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

func (*MsgCancelBidResponse) ProtoMessage

func (*MsgCancelBidResponse) ProtoMessage()

func (*MsgCancelBidResponse) Reset

func (m *MsgCancelBidResponse) Reset()

func (*MsgCancelBidResponse) Size

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

func (*MsgCancelBidResponse) String

func (m *MsgCancelBidResponse) String() string

func (*MsgCancelBidResponse) Unmarshal

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

func (*MsgCancelBidResponse) XXX_DiscardUnknown

func (m *MsgCancelBidResponse) XXX_DiscardUnknown()

func (*MsgCancelBidResponse) XXX_Marshal

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

func (*MsgCancelBidResponse) XXX_Merge

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

func (*MsgCancelBidResponse) XXX_Size

func (m *MsgCancelBidResponse) XXX_Size() int

func (*MsgCancelBidResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	Register(ctx context.Context, in *MsgRegister, opts ...grpc.CallOption) (*MsgRegisterResponse, error)
	Bid(ctx context.Context, in *MsgBid, opts ...grpc.CallOption) (*MsgBidResponse, error)
	AcceptBid(ctx context.Context, in *MsgAcceptBid, opts ...grpc.CallOption) (*MsgAcceptBidResponse, error)
	CancelBid(ctx context.Context, in *MsgCancelBid, opts ...grpc.CallOption) (*MsgCancelBidResponse, error)
	List(ctx context.Context, in *MsgList, opts ...grpc.CallOption) (*MsgListResponse, error)
	Buy(ctx context.Context, in *MsgBuy, opts ...grpc.CallOption) (*MsgBuyResponse, error)
	Delist(ctx context.Context, in *MsgDelist, opts ...grpc.CallOption) (*MsgDelistResponse, error)
	Transfer(ctx context.Context, in *MsgTransfer, opts ...grpc.CallOption) (*MsgTransferResponse, error)
	AddRecord(ctx context.Context, in *MsgAddRecord, opts ...grpc.CallOption) (*MsgAddRecordResponse, error)
	DelRecord(ctx context.Context, in *MsgDelRecord, opts ...grpc.CallOption) (*MsgDelRecordResponse, error)
	Init(ctx context.Context, in *MsgInit, opts ...grpc.CallOption) (*MsgInitResponse, error)
	Update(ctx context.Context, in *MsgUpdate, opts ...grpc.CallOption) (*MsgUpdateResponse, error)
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgDelRecord

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

func NewMsgDelRecord

func NewMsgDelRecord(creator string, name string) *MsgDelRecord

func (*MsgDelRecord) Descriptor

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

func (*MsgDelRecord) GetCreator

func (m *MsgDelRecord) GetCreator() string

func (*MsgDelRecord) GetName

func (m *MsgDelRecord) GetName() string

func (*MsgDelRecord) GetSignBytes

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

func (*MsgDelRecord) GetSigners

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

func (*MsgDelRecord) Marshal

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

func (*MsgDelRecord) MarshalTo

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

func (*MsgDelRecord) MarshalToSizedBuffer

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

func (*MsgDelRecord) ProtoMessage

func (*MsgDelRecord) ProtoMessage()

func (*MsgDelRecord) Reset

func (m *MsgDelRecord) Reset()

func (*MsgDelRecord) Route

func (msg *MsgDelRecord) Route() string

func (*MsgDelRecord) Size

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

func (*MsgDelRecord) String

func (m *MsgDelRecord) String() string

func (*MsgDelRecord) Type

func (msg *MsgDelRecord) Type() string

func (*MsgDelRecord) Unmarshal

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

func (*MsgDelRecord) ValidateBasic

func (msg *MsgDelRecord) ValidateBasic() error

func (*MsgDelRecord) XXX_DiscardUnknown

func (m *MsgDelRecord) XXX_DiscardUnknown()

func (*MsgDelRecord) XXX_Marshal

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

func (*MsgDelRecord) XXX_Merge

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

func (*MsgDelRecord) XXX_Size

func (m *MsgDelRecord) XXX_Size() int

func (*MsgDelRecord) XXX_Unmarshal

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

type MsgDelRecordResponse

type MsgDelRecordResponse struct {
}

func (*MsgDelRecordResponse) Descriptor

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

func (*MsgDelRecordResponse) Marshal

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

func (*MsgDelRecordResponse) MarshalTo

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

func (*MsgDelRecordResponse) MarshalToSizedBuffer

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

func (*MsgDelRecordResponse) ProtoMessage

func (*MsgDelRecordResponse) ProtoMessage()

func (*MsgDelRecordResponse) Reset

func (m *MsgDelRecordResponse) Reset()

func (*MsgDelRecordResponse) Size

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

func (*MsgDelRecordResponse) String

func (m *MsgDelRecordResponse) String() string

func (*MsgDelRecordResponse) Unmarshal

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

func (*MsgDelRecordResponse) XXX_DiscardUnknown

func (m *MsgDelRecordResponse) XXX_DiscardUnknown()

func (*MsgDelRecordResponse) XXX_Marshal

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

func (*MsgDelRecordResponse) XXX_Merge

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

func (*MsgDelRecordResponse) XXX_Size

func (m *MsgDelRecordResponse) XXX_Size() int

func (*MsgDelRecordResponse) XXX_Unmarshal

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

type MsgDelist

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

func NewMsgDelist

func NewMsgDelist(creator string, name string) *MsgDelist

func (*MsgDelist) Descriptor

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

func (*MsgDelist) GetCreator

func (m *MsgDelist) GetCreator() string

func (*MsgDelist) GetName

func (m *MsgDelist) GetName() string

func (*MsgDelist) GetSignBytes

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

func (*MsgDelist) GetSigners

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

func (*MsgDelist) Marshal

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

func (*MsgDelist) MarshalTo

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

func (*MsgDelist) MarshalToSizedBuffer

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

func (*MsgDelist) ProtoMessage

func (*MsgDelist) ProtoMessage()

func (*MsgDelist) Reset

func (m *MsgDelist) Reset()

func (*MsgDelist) Route

func (msg *MsgDelist) Route() string

func (*MsgDelist) Size

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

func (*MsgDelist) String

func (m *MsgDelist) String() string

func (*MsgDelist) Type

func (msg *MsgDelist) Type() string

func (*MsgDelist) Unmarshal

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

func (*MsgDelist) ValidateBasic

func (msg *MsgDelist) ValidateBasic() error

func (*MsgDelist) XXX_DiscardUnknown

func (m *MsgDelist) XXX_DiscardUnknown()

func (*MsgDelist) XXX_Marshal

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

func (*MsgDelist) XXX_Merge

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

func (*MsgDelist) XXX_Size

func (m *MsgDelist) XXX_Size() int

func (*MsgDelist) XXX_Unmarshal

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

type MsgDelistResponse

type MsgDelistResponse struct {
}

func (*MsgDelistResponse) Descriptor

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

func (*MsgDelistResponse) Marshal

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

func (*MsgDelistResponse) MarshalTo

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

func (*MsgDelistResponse) MarshalToSizedBuffer

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

func (*MsgDelistResponse) ProtoMessage

func (*MsgDelistResponse) ProtoMessage()

func (*MsgDelistResponse) Reset

func (m *MsgDelistResponse) Reset()

func (*MsgDelistResponse) Size

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

func (*MsgDelistResponse) String

func (m *MsgDelistResponse) String() string

func (*MsgDelistResponse) Unmarshal

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

func (*MsgDelistResponse) XXX_DiscardUnknown

func (m *MsgDelistResponse) XXX_DiscardUnknown()

func (*MsgDelistResponse) XXX_Marshal

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

func (*MsgDelistResponse) XXX_Merge

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

func (*MsgDelistResponse) XXX_Size

func (m *MsgDelistResponse) XXX_Size() int

func (*MsgDelistResponse) XXX_Unmarshal

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

type MsgInit

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

func NewMsgInit

func NewMsgInit(creator string) *MsgInit

func (*MsgInit) Descriptor

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

func (*MsgInit) GetCreator

func (m *MsgInit) GetCreator() string

func (*MsgInit) GetSignBytes

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

func (*MsgInit) GetSigners

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

func (*MsgInit) Marshal

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

func (*MsgInit) MarshalTo

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

func (*MsgInit) MarshalToSizedBuffer

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

func (*MsgInit) ProtoMessage

func (*MsgInit) ProtoMessage()

func (*MsgInit) Reset

func (m *MsgInit) Reset()

func (*MsgInit) Route

func (msg *MsgInit) Route() string

func (*MsgInit) Size

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

func (*MsgInit) String

func (m *MsgInit) String() string

func (*MsgInit) Type

func (msg *MsgInit) Type() string

func (*MsgInit) Unmarshal

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

func (*MsgInit) ValidateBasic

func (msg *MsgInit) ValidateBasic() error

func (*MsgInit) XXX_DiscardUnknown

func (m *MsgInit) XXX_DiscardUnknown()

func (*MsgInit) XXX_Marshal

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

func (*MsgInit) XXX_Merge

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

func (*MsgInit) XXX_Size

func (m *MsgInit) XXX_Size() int

func (*MsgInit) XXX_Unmarshal

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

type MsgInitResponse

type MsgInitResponse struct {
}

func (*MsgInitResponse) Descriptor

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

func (*MsgInitResponse) Marshal

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

func (*MsgInitResponse) MarshalTo

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

func (*MsgInitResponse) MarshalToSizedBuffer

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

func (*MsgInitResponse) ProtoMessage

func (*MsgInitResponse) ProtoMessage()

func (*MsgInitResponse) Reset

func (m *MsgInitResponse) Reset()

func (*MsgInitResponse) Size

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

func (*MsgInitResponse) String

func (m *MsgInitResponse) String() string

func (*MsgInitResponse) Unmarshal

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

func (*MsgInitResponse) XXX_DiscardUnknown

func (m *MsgInitResponse) XXX_DiscardUnknown()

func (*MsgInitResponse) XXX_Marshal

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

func (*MsgInitResponse) XXX_Merge

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

func (*MsgInitResponse) XXX_Size

func (m *MsgInitResponse) XXX_Size() int

func (*MsgInitResponse) XXX_Unmarshal

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

type MsgList

type MsgList struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Price   string `protobuf:"bytes,3,opt,name=price,proto3" json:"price,omitempty"`
}

func NewMsgList

func NewMsgList(creator string, name string, price string) *MsgList

func (*MsgList) Descriptor

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

func (*MsgList) GetCreator

func (m *MsgList) GetCreator() string

func (*MsgList) GetName

func (m *MsgList) GetName() string

func (*MsgList) GetPrice

func (m *MsgList) GetPrice() string

func (*MsgList) GetSignBytes

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

func (*MsgList) GetSigners

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

func (*MsgList) Marshal

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

func (*MsgList) MarshalTo

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

func (*MsgList) MarshalToSizedBuffer

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

func (*MsgList) ProtoMessage

func (*MsgList) ProtoMessage()

func (*MsgList) Reset

func (m *MsgList) Reset()

func (*MsgList) Route

func (msg *MsgList) Route() string

func (*MsgList) Size

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

func (*MsgList) String

func (m *MsgList) String() string

func (*MsgList) Type

func (msg *MsgList) Type() string

func (*MsgList) Unmarshal

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

func (*MsgList) ValidateBasic

func (msg *MsgList) ValidateBasic() error

func (*MsgList) XXX_DiscardUnknown

func (m *MsgList) XXX_DiscardUnknown()

func (*MsgList) XXX_Marshal

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

func (*MsgList) XXX_Merge

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

func (*MsgList) XXX_Size

func (m *MsgList) XXX_Size() int

func (*MsgList) XXX_Unmarshal

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

type MsgListResponse

type MsgListResponse struct {
}

func (*MsgListResponse) Descriptor

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

func (*MsgListResponse) Marshal

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

func (*MsgListResponse) MarshalTo

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

func (*MsgListResponse) MarshalToSizedBuffer

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

func (*MsgListResponse) ProtoMessage

func (*MsgListResponse) ProtoMessage()

func (*MsgListResponse) Reset

func (m *MsgListResponse) Reset()

func (*MsgListResponse) Size

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

func (*MsgListResponse) String

func (m *MsgListResponse) String() string

func (*MsgListResponse) Unmarshal

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

func (*MsgListResponse) XXX_DiscardUnknown

func (m *MsgListResponse) XXX_DiscardUnknown()

func (*MsgListResponse) XXX_Marshal

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

func (*MsgListResponse) XXX_Merge

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

func (*MsgListResponse) XXX_Size

func (m *MsgListResponse) XXX_Size() int

func (*MsgListResponse) XXX_Unmarshal

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

type MsgRegister

type MsgRegister struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Years   string `protobuf:"bytes,3,opt,name=years,proto3" json:"years,omitempty"`
	Data    string `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
}

func NewMsgRegister

func NewMsgRegister(creator string, name string, years string, data string) *MsgRegister

func (*MsgRegister) Descriptor

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

func (*MsgRegister) GetCreator

func (m *MsgRegister) GetCreator() string

func (*MsgRegister) GetData

func (m *MsgRegister) GetData() string

func (*MsgRegister) GetName

func (m *MsgRegister) GetName() string

func (*MsgRegister) GetSignBytes

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

func (*MsgRegister) GetSigners

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

func (*MsgRegister) GetYears

func (m *MsgRegister) GetYears() string

func (*MsgRegister) Marshal

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

func (*MsgRegister) MarshalTo

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

func (*MsgRegister) MarshalToSizedBuffer

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

func (*MsgRegister) ProtoMessage

func (*MsgRegister) ProtoMessage()

func (*MsgRegister) Reset

func (m *MsgRegister) Reset()

func (*MsgRegister) Route

func (msg *MsgRegister) Route() string

func (*MsgRegister) Size

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

func (*MsgRegister) String

func (m *MsgRegister) String() string

func (*MsgRegister) Type

func (msg *MsgRegister) Type() string

func (*MsgRegister) Unmarshal

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

func (*MsgRegister) ValidateBasic

func (msg *MsgRegister) ValidateBasic() error

func (*MsgRegister) XXX_DiscardUnknown

func (m *MsgRegister) XXX_DiscardUnknown()

func (*MsgRegister) XXX_Marshal

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

func (*MsgRegister) XXX_Merge

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

func (*MsgRegister) XXX_Size

func (m *MsgRegister) XXX_Size() int

func (*MsgRegister) XXX_Unmarshal

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

type MsgRegisterResponse

type MsgRegisterResponse struct {
}

func (*MsgRegisterResponse) Descriptor

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

func (*MsgRegisterResponse) Marshal

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

func (*MsgRegisterResponse) MarshalTo

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

func (*MsgRegisterResponse) MarshalToSizedBuffer

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

func (*MsgRegisterResponse) ProtoMessage

func (*MsgRegisterResponse) ProtoMessage()

func (*MsgRegisterResponse) Reset

func (m *MsgRegisterResponse) Reset()

func (*MsgRegisterResponse) Size

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

func (*MsgRegisterResponse) String

func (m *MsgRegisterResponse) String() string

func (*MsgRegisterResponse) Unmarshal

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

func (*MsgRegisterResponse) XXX_DiscardUnknown

func (m *MsgRegisterResponse) XXX_DiscardUnknown()

func (*MsgRegisterResponse) XXX_Marshal

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

func (*MsgRegisterResponse) XXX_Merge

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

func (*MsgRegisterResponse) XXX_Size

func (m *MsgRegisterResponse) XXX_Size() int

func (*MsgRegisterResponse) XXX_Unmarshal

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

type MsgTransfer

type MsgTransfer struct {
	Creator  string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Receiver string `protobuf:"bytes,3,opt,name=receiver,proto3" json:"receiver,omitempty"`
}

func NewMsgTransfer

func NewMsgTransfer(creator string, name string, receiver string) *MsgTransfer

func (*MsgTransfer) Descriptor

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

func (*MsgTransfer) GetCreator

func (m *MsgTransfer) GetCreator() string

func (*MsgTransfer) GetName

func (m *MsgTransfer) GetName() string

func (*MsgTransfer) GetReceiver

func (m *MsgTransfer) GetReceiver() string

func (*MsgTransfer) GetSignBytes

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

func (*MsgTransfer) GetSigners

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

func (*MsgTransfer) Marshal

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

func (*MsgTransfer) MarshalTo

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

func (*MsgTransfer) MarshalToSizedBuffer

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

func (*MsgTransfer) ProtoMessage

func (*MsgTransfer) ProtoMessage()

func (*MsgTransfer) Reset

func (m *MsgTransfer) Reset()

func (*MsgTransfer) Route

func (msg *MsgTransfer) Route() string

func (*MsgTransfer) Size

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

func (*MsgTransfer) String

func (m *MsgTransfer) String() string

func (*MsgTransfer) Type

func (msg *MsgTransfer) Type() string

func (*MsgTransfer) Unmarshal

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

func (*MsgTransfer) ValidateBasic

func (msg *MsgTransfer) ValidateBasic() error

func (*MsgTransfer) XXX_DiscardUnknown

func (m *MsgTransfer) XXX_DiscardUnknown()

func (*MsgTransfer) XXX_Marshal

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

func (*MsgTransfer) XXX_Merge

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

func (*MsgTransfer) XXX_Size

func (m *MsgTransfer) XXX_Size() int

func (*MsgTransfer) XXX_Unmarshal

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

type MsgTransferResponse

type MsgTransferResponse struct {
}

func (*MsgTransferResponse) Descriptor

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

func (*MsgTransferResponse) Marshal

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

func (*MsgTransferResponse) MarshalTo

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

func (*MsgTransferResponse) MarshalToSizedBuffer

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

func (*MsgTransferResponse) ProtoMessage

func (*MsgTransferResponse) ProtoMessage()

func (*MsgTransferResponse) Reset

func (m *MsgTransferResponse) Reset()

func (*MsgTransferResponse) Size

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

func (*MsgTransferResponse) String

func (m *MsgTransferResponse) String() string

func (*MsgTransferResponse) Unmarshal

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

func (*MsgTransferResponse) XXX_DiscardUnknown

func (m *MsgTransferResponse) XXX_DiscardUnknown()

func (*MsgTransferResponse) XXX_Marshal

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

func (*MsgTransferResponse) XXX_Merge

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

func (*MsgTransferResponse) XXX_Size

func (m *MsgTransferResponse) XXX_Size() int

func (*MsgTransferResponse) XXX_Unmarshal

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

type MsgUpdate

type MsgUpdate struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Name    string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Data    string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
}

func NewMsgUpdate

func NewMsgUpdate(creator string, name string, data string) *MsgUpdate

func (*MsgUpdate) Descriptor

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

func (*MsgUpdate) GetCreator

func (m *MsgUpdate) GetCreator() string

func (*MsgUpdate) GetData

func (m *MsgUpdate) GetData() string

func (*MsgUpdate) GetName

func (m *MsgUpdate) GetName() string

func (*MsgUpdate) GetSignBytes

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

func (*MsgUpdate) GetSigners

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

func (*MsgUpdate) Marshal

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

func (*MsgUpdate) MarshalTo

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

func (*MsgUpdate) MarshalToSizedBuffer

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

func (*MsgUpdate) ProtoMessage

func (*MsgUpdate) ProtoMessage()

func (*MsgUpdate) Reset

func (m *MsgUpdate) Reset()

func (*MsgUpdate) Route

func (msg *MsgUpdate) Route() string

func (*MsgUpdate) Size

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

func (*MsgUpdate) String

func (m *MsgUpdate) String() string

func (*MsgUpdate) Type

func (msg *MsgUpdate) Type() string

func (*MsgUpdate) Unmarshal

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

func (*MsgUpdate) ValidateBasic

func (msg *MsgUpdate) ValidateBasic() error

func (*MsgUpdate) XXX_DiscardUnknown

func (m *MsgUpdate) XXX_DiscardUnknown()

func (*MsgUpdate) XXX_Marshal

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

func (*MsgUpdate) XXX_Merge

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

func (*MsgUpdate) XXX_Size

func (m *MsgUpdate) XXX_Size() int

func (*MsgUpdate) XXX_Unmarshal

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

type MsgUpdateResponse

type MsgUpdateResponse struct {
}

func (*MsgUpdateResponse) Descriptor

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

func (*MsgUpdateResponse) Marshal

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

func (*MsgUpdateResponse) MarshalTo

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

func (*MsgUpdateResponse) MarshalToSizedBuffer

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

func (*MsgUpdateResponse) ProtoMessage

func (*MsgUpdateResponse) ProtoMessage()

func (*MsgUpdateResponse) Reset

func (m *MsgUpdateResponse) Reset()

func (*MsgUpdateResponse) Size

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

func (*MsgUpdateResponse) String

func (m *MsgUpdateResponse) String() string

func (*MsgUpdateResponse) Unmarshal

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

func (*MsgUpdateResponse) XXX_DiscardUnknown

func (m *MsgUpdateResponse) XXX_DiscardUnknown()

func (*MsgUpdateResponse) XXX_Marshal

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

func (*MsgUpdateResponse) XXX_Merge

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

func (*MsgUpdateResponse) XXX_Size

func (m *MsgUpdateResponse) XXX_Size() int

func (*MsgUpdateResponse) XXX_Unmarshal

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

type Names

type Names struct {
	Name       string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Expires    int64    `protobuf:"varint,2,opt,name=expires,proto3" json:"expires,omitempty"`
	Value      string   `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Data       string   `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Subdomains []*Names `protobuf:"bytes,5,rep,name=subdomains,proto3" json:"subdomains,omitempty"`
	Tld        string   `protobuf:"bytes,6,opt,name=tld,proto3" json:"tld,omitempty"`
	Locked     int64    `protobuf:"varint,7,opt,name=locked,proto3" json:"locked,omitempty"`
}

func (*Names) Descriptor

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

func (*Names) GetData

func (m *Names) GetData() string

func (*Names) GetExpires

func (m *Names) GetExpires() int64

func (*Names) GetLocked

func (m *Names) GetLocked() int64

func (*Names) GetName

func (m *Names) GetName() string

func (*Names) GetSubdomains

func (m *Names) GetSubdomains() []*Names

func (*Names) GetTld

func (m *Names) GetTld() string

func (*Names) GetValue

func (m *Names) GetValue() string

func (*Names) Marshal

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

func (*Names) MarshalTo

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

func (*Names) MarshalToSizedBuffer

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

func (*Names) ProtoMessage

func (*Names) ProtoMessage()

func (*Names) Reset

func (m *Names) Reset()

func (*Names) Size

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

func (*Names) String

func (m *Names) String() string

func (*Names) Unmarshal

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

func (*Names) XXX_DiscardUnknown

func (m *Names) XXX_DiscardUnknown()

func (*Names) XXX_Marshal

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

func (*Names) XXX_Merge

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

func (*Names) XXX_Size

func (m *Names) XXX_Size() int

func (*Names) XXX_Unmarshal

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

type Params

type Params struct {
	DepositAccount string `protobuf:"bytes,1,opt,name=deposit_account,json=depositAccount,proto3" json:"deposit_account,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetDepositAccount

func (m *Params) GetDepositAccount() string

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryAllBidsRequest

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

func (*QueryAllBidsRequest) Descriptor

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

func (*QueryAllBidsRequest) GetPagination

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

func (*QueryAllBidsRequest) Marshal

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

func (*QueryAllBidsRequest) MarshalTo

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

func (*QueryAllBidsRequest) MarshalToSizedBuffer

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

func (*QueryAllBidsRequest) ProtoMessage

func (*QueryAllBidsRequest) ProtoMessage()

func (*QueryAllBidsRequest) Reset

func (m *QueryAllBidsRequest) Reset()

func (*QueryAllBidsRequest) Size

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

func (*QueryAllBidsRequest) String

func (m *QueryAllBidsRequest) String() string

func (*QueryAllBidsRequest) Unmarshal

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

func (*QueryAllBidsRequest) XXX_DiscardUnknown

func (m *QueryAllBidsRequest) XXX_DiscardUnknown()

func (*QueryAllBidsRequest) XXX_Marshal

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

func (*QueryAllBidsRequest) XXX_Merge

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

func (*QueryAllBidsRequest) XXX_Size

func (m *QueryAllBidsRequest) XXX_Size() int

func (*QueryAllBidsRequest) XXX_Unmarshal

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

type QueryAllBidsResponse

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

func (*QueryAllBidsResponse) Descriptor

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

func (*QueryAllBidsResponse) GetBids

func (m *QueryAllBidsResponse) GetBids() []Bids

func (*QueryAllBidsResponse) GetPagination

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

func (*QueryAllBidsResponse) Marshal

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

func (*QueryAllBidsResponse) MarshalTo

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

func (*QueryAllBidsResponse) MarshalToSizedBuffer

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

func (*QueryAllBidsResponse) ProtoMessage

func (*QueryAllBidsResponse) ProtoMessage()

func (*QueryAllBidsResponse) Reset

func (m *QueryAllBidsResponse) Reset()

func (*QueryAllBidsResponse) Size

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

func (*QueryAllBidsResponse) String

func (m *QueryAllBidsResponse) String() string

func (*QueryAllBidsResponse) Unmarshal

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

func (*QueryAllBidsResponse) XXX_DiscardUnknown

func (m *QueryAllBidsResponse) XXX_DiscardUnknown()

func (*QueryAllBidsResponse) XXX_Marshal

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

func (*QueryAllBidsResponse) XXX_Merge

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

func (*QueryAllBidsResponse) XXX_Size

func (m *QueryAllBidsResponse) XXX_Size() int

func (*QueryAllBidsResponse) XXX_Unmarshal

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

type QueryAllForsalesRequest

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

func (*QueryAllForsalesRequest) Descriptor

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

func (*QueryAllForsalesRequest) GetPagination

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

func (*QueryAllForsalesRequest) Marshal

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

func (*QueryAllForsalesRequest) MarshalTo

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

func (*QueryAllForsalesRequest) MarshalToSizedBuffer

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

func (*QueryAllForsalesRequest) ProtoMessage

func (*QueryAllForsalesRequest) ProtoMessage()

func (*QueryAllForsalesRequest) Reset

func (m *QueryAllForsalesRequest) Reset()

func (*QueryAllForsalesRequest) Size

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

func (*QueryAllForsalesRequest) String

func (m *QueryAllForsalesRequest) String() string

func (*QueryAllForsalesRequest) Unmarshal

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

func (*QueryAllForsalesRequest) XXX_DiscardUnknown

func (m *QueryAllForsalesRequest) XXX_DiscardUnknown()

func (*QueryAllForsalesRequest) XXX_Marshal

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

func (*QueryAllForsalesRequest) XXX_Merge

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

func (*QueryAllForsalesRequest) XXX_Size

func (m *QueryAllForsalesRequest) XXX_Size() int

func (*QueryAllForsalesRequest) XXX_Unmarshal

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

type QueryAllForsalesResponse

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

func (*QueryAllForsalesResponse) Descriptor

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

func (*QueryAllForsalesResponse) GetForsale

func (m *QueryAllForsalesResponse) GetForsale() []Forsale

func (*QueryAllForsalesResponse) GetPagination

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

func (*QueryAllForsalesResponse) Marshal

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

func (*QueryAllForsalesResponse) MarshalTo

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

func (*QueryAllForsalesResponse) MarshalToSizedBuffer

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

func (*QueryAllForsalesResponse) ProtoMessage

func (*QueryAllForsalesResponse) ProtoMessage()

func (*QueryAllForsalesResponse) Reset

func (m *QueryAllForsalesResponse) Reset()

func (*QueryAllForsalesResponse) Size

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

func (*QueryAllForsalesResponse) String

func (m *QueryAllForsalesResponse) String() string

func (*QueryAllForsalesResponse) Unmarshal

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

func (*QueryAllForsalesResponse) XXX_DiscardUnknown

func (m *QueryAllForsalesResponse) XXX_DiscardUnknown()

func (*QueryAllForsalesResponse) XXX_Marshal

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

func (*QueryAllForsalesResponse) XXX_Merge

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

func (*QueryAllForsalesResponse) XXX_Size

func (m *QueryAllForsalesResponse) XXX_Size() int

func (*QueryAllForsalesResponse) XXX_Unmarshal

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

type QueryAllInitsRequest

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

func (*QueryAllInitsRequest) Descriptor

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

func (*QueryAllInitsRequest) GetPagination

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

func (*QueryAllInitsRequest) Marshal

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

func (*QueryAllInitsRequest) MarshalTo

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

func (*QueryAllInitsRequest) MarshalToSizedBuffer

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

func (*QueryAllInitsRequest) ProtoMessage

func (*QueryAllInitsRequest) ProtoMessage()

func (*QueryAllInitsRequest) Reset

func (m *QueryAllInitsRequest) Reset()

func (*QueryAllInitsRequest) Size

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

func (*QueryAllInitsRequest) String

func (m *QueryAllInitsRequest) String() string

func (*QueryAllInitsRequest) Unmarshal

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

func (*QueryAllInitsRequest) XXX_DiscardUnknown

func (m *QueryAllInitsRequest) XXX_DiscardUnknown()

func (*QueryAllInitsRequest) XXX_Marshal

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

func (*QueryAllInitsRequest) XXX_Merge

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

func (*QueryAllInitsRequest) XXX_Size

func (m *QueryAllInitsRequest) XXX_Size() int

func (*QueryAllInitsRequest) XXX_Unmarshal

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

type QueryAllInitsResponse

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

func (*QueryAllInitsResponse) Descriptor

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

func (*QueryAllInitsResponse) GetInit

func (m *QueryAllInitsResponse) GetInit() []Init

func (*QueryAllInitsResponse) GetPagination

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

func (*QueryAllInitsResponse) Marshal

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

func (*QueryAllInitsResponse) MarshalTo

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

func (*QueryAllInitsResponse) MarshalToSizedBuffer

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

func (*QueryAllInitsResponse) ProtoMessage

func (*QueryAllInitsResponse) ProtoMessage()

func (*QueryAllInitsResponse) Reset

func (m *QueryAllInitsResponse) Reset()

func (*QueryAllInitsResponse) Size

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

func (*QueryAllInitsResponse) String

func (m *QueryAllInitsResponse) String() string

func (*QueryAllInitsResponse) Unmarshal

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

func (*QueryAllInitsResponse) XXX_DiscardUnknown

func (m *QueryAllInitsResponse) XXX_DiscardUnknown()

func (*QueryAllInitsResponse) XXX_Marshal

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

func (*QueryAllInitsResponse) XXX_Merge

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

func (*QueryAllInitsResponse) XXX_Size

func (m *QueryAllInitsResponse) XXX_Size() int

func (*QueryAllInitsResponse) XXX_Unmarshal

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

type QueryAllNamesRequest

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

func (*QueryAllNamesRequest) Descriptor

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

func (*QueryAllNamesRequest) GetPagination

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

func (*QueryAllNamesRequest) Marshal

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

func (*QueryAllNamesRequest) MarshalTo

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

func (*QueryAllNamesRequest) MarshalToSizedBuffer

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

func (*QueryAllNamesRequest) ProtoMessage

func (*QueryAllNamesRequest) ProtoMessage()

func (*QueryAllNamesRequest) Reset

func (m *QueryAllNamesRequest) Reset()

func (*QueryAllNamesRequest) Size

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

func (*QueryAllNamesRequest) String

func (m *QueryAllNamesRequest) String() string

func (*QueryAllNamesRequest) Unmarshal

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

func (*QueryAllNamesRequest) XXX_DiscardUnknown

func (m *QueryAllNamesRequest) XXX_DiscardUnknown()

func (*QueryAllNamesRequest) XXX_Marshal

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

func (*QueryAllNamesRequest) XXX_Merge

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

func (*QueryAllNamesRequest) XXX_Size

func (m *QueryAllNamesRequest) XXX_Size() int

func (*QueryAllNamesRequest) XXX_Unmarshal

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

type QueryAllNamesResponse

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

func (*QueryAllNamesResponse) Descriptor

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

func (*QueryAllNamesResponse) GetNames

func (m *QueryAllNamesResponse) GetNames() []Names

func (*QueryAllNamesResponse) GetPagination

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

func (*QueryAllNamesResponse) Marshal

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

func (*QueryAllNamesResponse) MarshalTo

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

func (*QueryAllNamesResponse) MarshalToSizedBuffer

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

func (*QueryAllNamesResponse) ProtoMessage

func (*QueryAllNamesResponse) ProtoMessage()

func (*QueryAllNamesResponse) Reset

func (m *QueryAllNamesResponse) Reset()

func (*QueryAllNamesResponse) Size

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

func (*QueryAllNamesResponse) String

func (m *QueryAllNamesResponse) String() string

func (*QueryAllNamesResponse) Unmarshal

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

func (*QueryAllNamesResponse) XXX_DiscardUnknown

func (m *QueryAllNamesResponse) XXX_DiscardUnknown()

func (*QueryAllNamesResponse) XXX_Marshal

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

func (*QueryAllNamesResponse) XXX_Merge

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

func (*QueryAllNamesResponse) XXX_Size

func (m *QueryAllNamesResponse) XXX_Size() int

func (*QueryAllNamesResponse) XXX_Unmarshal

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

type QueryAllWhoisRequest

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

func (*QueryAllWhoisRequest) Descriptor

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

func (*QueryAllWhoisRequest) GetPagination

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

func (*QueryAllWhoisRequest) Marshal

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

func (*QueryAllWhoisRequest) MarshalTo

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

func (*QueryAllWhoisRequest) MarshalToSizedBuffer

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

func (*QueryAllWhoisRequest) ProtoMessage

func (*QueryAllWhoisRequest) ProtoMessage()

func (*QueryAllWhoisRequest) Reset

func (m *QueryAllWhoisRequest) Reset()

func (*QueryAllWhoisRequest) Size

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

func (*QueryAllWhoisRequest) String

func (m *QueryAllWhoisRequest) String() string

func (*QueryAllWhoisRequest) Unmarshal

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

func (*QueryAllWhoisRequest) XXX_DiscardUnknown

func (m *QueryAllWhoisRequest) XXX_DiscardUnknown()

func (*QueryAllWhoisRequest) XXX_Marshal

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

func (*QueryAllWhoisRequest) XXX_Merge

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

func (*QueryAllWhoisRequest) XXX_Size

func (m *QueryAllWhoisRequest) XXX_Size() int

func (*QueryAllWhoisRequest) XXX_Unmarshal

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

type QueryAllWhoisResponse

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

func (*QueryAllWhoisResponse) Descriptor

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

func (*QueryAllWhoisResponse) GetPagination

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

func (*QueryAllWhoisResponse) GetWhois

func (m *QueryAllWhoisResponse) GetWhois() []Whois

func (*QueryAllWhoisResponse) Marshal

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

func (*QueryAllWhoisResponse) MarshalTo

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

func (*QueryAllWhoisResponse) MarshalToSizedBuffer

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

func (*QueryAllWhoisResponse) ProtoMessage

func (*QueryAllWhoisResponse) ProtoMessage()

func (*QueryAllWhoisResponse) Reset

func (m *QueryAllWhoisResponse) Reset()

func (*QueryAllWhoisResponse) Size

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

func (*QueryAllWhoisResponse) String

func (m *QueryAllWhoisResponse) String() string

func (*QueryAllWhoisResponse) Unmarshal

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

func (*QueryAllWhoisResponse) XXX_DiscardUnknown

func (m *QueryAllWhoisResponse) XXX_DiscardUnknown()

func (*QueryAllWhoisResponse) XXX_Marshal

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

func (*QueryAllWhoisResponse) XXX_Merge

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

func (*QueryAllWhoisResponse) XXX_Size

func (m *QueryAllWhoisResponse) XXX_Size() int

func (*QueryAllWhoisResponse) XXX_Unmarshal

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

type QueryBidRequest

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

func (*QueryBidRequest) Descriptor

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

func (*QueryBidRequest) GetIndex

func (m *QueryBidRequest) GetIndex() string

func (*QueryBidRequest) Marshal

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

func (*QueryBidRequest) MarshalTo

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

func (*QueryBidRequest) MarshalToSizedBuffer

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

func (*QueryBidRequest) ProtoMessage

func (*QueryBidRequest) ProtoMessage()

func (*QueryBidRequest) Reset

func (m *QueryBidRequest) Reset()

func (*QueryBidRequest) Size

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

func (*QueryBidRequest) String

func (m *QueryBidRequest) String() string

func (*QueryBidRequest) Unmarshal

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

func (*QueryBidRequest) XXX_DiscardUnknown

func (m *QueryBidRequest) XXX_DiscardUnknown()

func (*QueryBidRequest) XXX_Marshal

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

func (*QueryBidRequest) XXX_Merge

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

func (*QueryBidRequest) XXX_Size

func (m *QueryBidRequest) XXX_Size() int

func (*QueryBidRequest) XXX_Unmarshal

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

type QueryBidResponse

type QueryBidResponse struct {
	Bids Bids `protobuf:"bytes,1,opt,name=bids,proto3" json:"bids"`
}

func (*QueryBidResponse) Descriptor

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

func (*QueryBidResponse) GetBids

func (m *QueryBidResponse) GetBids() Bids

func (*QueryBidResponse) Marshal

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

func (*QueryBidResponse) MarshalTo

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

func (*QueryBidResponse) MarshalToSizedBuffer

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

func (*QueryBidResponse) ProtoMessage

func (*QueryBidResponse) ProtoMessage()

func (*QueryBidResponse) Reset

func (m *QueryBidResponse) Reset()

func (*QueryBidResponse) Size

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

func (*QueryBidResponse) String

func (m *QueryBidResponse) String() string

func (*QueryBidResponse) Unmarshal

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

func (*QueryBidResponse) XXX_DiscardUnknown

func (m *QueryBidResponse) XXX_DiscardUnknown()

func (*QueryBidResponse) XXX_Marshal

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

func (*QueryBidResponse) XXX_Merge

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

func (*QueryBidResponse) XXX_Size

func (m *QueryBidResponse) XXX_Size() int

func (*QueryBidResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a Name by index.
	Names(ctx context.Context, in *QueryNameRequest, opts ...grpc.CallOption) (*QueryNameResponse, error)
	// Queries a list of Names.
	NamesAll(ctx context.Context, in *QueryAllNamesRequest, opts ...grpc.CallOption) (*QueryAllNamesResponse, error)
	// Queries a Bid by index.
	Bids(ctx context.Context, in *QueryBidRequest, opts ...grpc.CallOption) (*QueryBidResponse, error)
	// Queries a list of Bids.
	BidsAll(ctx context.Context, in *QueryAllBidsRequest, opts ...grpc.CallOption) (*QueryAllBidsResponse, error)
	// Queries a Listing by index.
	Forsale(ctx context.Context, in *QueryForsaleRequest, opts ...grpc.CallOption) (*QueryForsaleResponse, error)
	// Queries all Listings.
	ForsaleAll(ctx context.Context, in *QueryAllForsalesRequest, opts ...grpc.CallOption) (*QueryAllForsalesResponse, error)
	// Queries a Init by index.
	Init(ctx context.Context, in *QueryInitRequest, opts ...grpc.CallOption) (*QueryInitResponse, error)
	// Queries a list of Init items.
	InitAll(ctx context.Context, in *QueryAllInitsRequest, opts ...grpc.CallOption) (*QueryAllInitsResponse, error)
	// Queries a list of ListOwnedNames items.
	ListOwnedNames(ctx context.Context, in *QueryListOwnedNamesRequest, opts ...grpc.CallOption) (*QueryListOwnedNamesResponse, 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 QueryForsaleRequest

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

func (*QueryForsaleRequest) Descriptor

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

func (*QueryForsaleRequest) GetName

func (m *QueryForsaleRequest) GetName() string

func (*QueryForsaleRequest) Marshal

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

func (*QueryForsaleRequest) MarshalTo

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

func (*QueryForsaleRequest) MarshalToSizedBuffer

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

func (*QueryForsaleRequest) ProtoMessage

func (*QueryForsaleRequest) ProtoMessage()

func (*QueryForsaleRequest) Reset

func (m *QueryForsaleRequest) Reset()

func (*QueryForsaleRequest) Size

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

func (*QueryForsaleRequest) String

func (m *QueryForsaleRequest) String() string

func (*QueryForsaleRequest) Unmarshal

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

func (*QueryForsaleRequest) XXX_DiscardUnknown

func (m *QueryForsaleRequest) XXX_DiscardUnknown()

func (*QueryForsaleRequest) XXX_Marshal

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

func (*QueryForsaleRequest) XXX_Merge

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

func (*QueryForsaleRequest) XXX_Size

func (m *QueryForsaleRequest) XXX_Size() int

func (*QueryForsaleRequest) XXX_Unmarshal

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

type QueryForsaleResponse

type QueryForsaleResponse struct {
	Forsale Forsale `protobuf:"bytes,1,opt,name=forsale,proto3" json:"forsale"`
}

func (*QueryForsaleResponse) Descriptor

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

func (*QueryForsaleResponse) GetForsale

func (m *QueryForsaleResponse) GetForsale() Forsale

func (*QueryForsaleResponse) Marshal

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

func (*QueryForsaleResponse) MarshalTo

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

func (*QueryForsaleResponse) MarshalToSizedBuffer

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

func (*QueryForsaleResponse) ProtoMessage

func (*QueryForsaleResponse) ProtoMessage()

func (*QueryForsaleResponse) Reset

func (m *QueryForsaleResponse) Reset()

func (*QueryForsaleResponse) Size

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

func (*QueryForsaleResponse) String

func (m *QueryForsaleResponse) String() string

func (*QueryForsaleResponse) Unmarshal

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

func (*QueryForsaleResponse) XXX_DiscardUnknown

func (m *QueryForsaleResponse) XXX_DiscardUnknown()

func (*QueryForsaleResponse) XXX_Marshal

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

func (*QueryForsaleResponse) XXX_Merge

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

func (*QueryForsaleResponse) XXX_Size

func (m *QueryForsaleResponse) XXX_Size() int

func (*QueryForsaleResponse) XXX_Unmarshal

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

type QueryInitRequest

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

func (*QueryInitRequest) Descriptor

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

func (*QueryInitRequest) GetAddress

func (m *QueryInitRequest) GetAddress() string

func (*QueryInitRequest) Marshal

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

func (*QueryInitRequest) MarshalTo

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

func (*QueryInitRequest) MarshalToSizedBuffer

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

func (*QueryInitRequest) ProtoMessage

func (*QueryInitRequest) ProtoMessage()

func (*QueryInitRequest) Reset

func (m *QueryInitRequest) Reset()

func (*QueryInitRequest) Size

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

func (*QueryInitRequest) String

func (m *QueryInitRequest) String() string

func (*QueryInitRequest) Unmarshal

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

func (*QueryInitRequest) XXX_DiscardUnknown

func (m *QueryInitRequest) XXX_DiscardUnknown()

func (*QueryInitRequest) XXX_Marshal

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

func (*QueryInitRequest) XXX_Merge

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

func (*QueryInitRequest) XXX_Size

func (m *QueryInitRequest) XXX_Size() int

func (*QueryInitRequest) XXX_Unmarshal

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

type QueryInitResponse

type QueryInitResponse struct {
	Init bool `protobuf:"varint,1,opt,name=init,proto3" json:"init,omitempty"`
}

func (*QueryInitResponse) Descriptor

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

func (*QueryInitResponse) GetInit

func (m *QueryInitResponse) GetInit() bool

func (*QueryInitResponse) Marshal

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

func (*QueryInitResponse) MarshalTo

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

func (*QueryInitResponse) MarshalToSizedBuffer

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

func (*QueryInitResponse) ProtoMessage

func (*QueryInitResponse) ProtoMessage()

func (*QueryInitResponse) Reset

func (m *QueryInitResponse) Reset()

func (*QueryInitResponse) Size

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

func (*QueryInitResponse) String

func (m *QueryInitResponse) String() string

func (*QueryInitResponse) Unmarshal

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

func (*QueryInitResponse) XXX_DiscardUnknown

func (m *QueryInitResponse) XXX_DiscardUnknown()

func (*QueryInitResponse) XXX_Marshal

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

func (*QueryInitResponse) XXX_Merge

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

func (*QueryInitResponse) XXX_Size

func (m *QueryInitResponse) XXX_Size() int

func (*QueryInitResponse) XXX_Unmarshal

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

type QueryListOwnedNamesRequest

type QueryListOwnedNamesRequest struct {
	Address    string             `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryListOwnedNamesRequest) Descriptor

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

func (*QueryListOwnedNamesRequest) GetAddress

func (m *QueryListOwnedNamesRequest) GetAddress() string

func (*QueryListOwnedNamesRequest) GetPagination

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

func (*QueryListOwnedNamesRequest) Marshal

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

func (*QueryListOwnedNamesRequest) MarshalTo

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

func (*QueryListOwnedNamesRequest) MarshalToSizedBuffer

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

func (*QueryListOwnedNamesRequest) ProtoMessage

func (*QueryListOwnedNamesRequest) ProtoMessage()

func (*QueryListOwnedNamesRequest) Reset

func (m *QueryListOwnedNamesRequest) Reset()

func (*QueryListOwnedNamesRequest) Size

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

func (*QueryListOwnedNamesRequest) String

func (m *QueryListOwnedNamesRequest) String() string

func (*QueryListOwnedNamesRequest) Unmarshal

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

func (*QueryListOwnedNamesRequest) XXX_DiscardUnknown

func (m *QueryListOwnedNamesRequest) XXX_DiscardUnknown()

func (*QueryListOwnedNamesRequest) XXX_Marshal

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

func (*QueryListOwnedNamesRequest) XXX_Merge

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

func (*QueryListOwnedNamesRequest) XXX_Size

func (m *QueryListOwnedNamesRequest) XXX_Size() int

func (*QueryListOwnedNamesRequest) XXX_Unmarshal

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

type QueryListOwnedNamesResponse

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

func (*QueryListOwnedNamesResponse) Descriptor

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

func (*QueryListOwnedNamesResponse) GetNames

func (m *QueryListOwnedNamesResponse) GetNames() []Names

func (*QueryListOwnedNamesResponse) GetPagination

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

func (*QueryListOwnedNamesResponse) Marshal

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

func (*QueryListOwnedNamesResponse) MarshalTo

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

func (*QueryListOwnedNamesResponse) MarshalToSizedBuffer

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

func (*QueryListOwnedNamesResponse) ProtoMessage

func (*QueryListOwnedNamesResponse) ProtoMessage()

func (*QueryListOwnedNamesResponse) Reset

func (m *QueryListOwnedNamesResponse) Reset()

func (*QueryListOwnedNamesResponse) Size

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

func (*QueryListOwnedNamesResponse) String

func (m *QueryListOwnedNamesResponse) String() string

func (*QueryListOwnedNamesResponse) Unmarshal

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

func (*QueryListOwnedNamesResponse) XXX_DiscardUnknown

func (m *QueryListOwnedNamesResponse) XXX_DiscardUnknown()

func (*QueryListOwnedNamesResponse) XXX_Marshal

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

func (*QueryListOwnedNamesResponse) XXX_Merge

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

func (*QueryListOwnedNamesResponse) XXX_Size

func (m *QueryListOwnedNamesResponse) XXX_Size() int

func (*QueryListOwnedNamesResponse) XXX_Unmarshal

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

type QueryNameRequest

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

func (*QueryNameRequest) Descriptor

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

func (*QueryNameRequest) GetIndex

func (m *QueryNameRequest) GetIndex() string

func (*QueryNameRequest) Marshal

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

func (*QueryNameRequest) MarshalTo

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

func (*QueryNameRequest) MarshalToSizedBuffer

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

func (*QueryNameRequest) ProtoMessage

func (*QueryNameRequest) ProtoMessage()

func (*QueryNameRequest) Reset

func (m *QueryNameRequest) Reset()

func (*QueryNameRequest) Size

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

func (*QueryNameRequest) String

func (m *QueryNameRequest) String() string

func (*QueryNameRequest) Unmarshal

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

func (*QueryNameRequest) XXX_DiscardUnknown

func (m *QueryNameRequest) XXX_DiscardUnknown()

func (*QueryNameRequest) XXX_Marshal

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

func (*QueryNameRequest) XXX_Merge

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

func (*QueryNameRequest) XXX_Size

func (m *QueryNameRequest) XXX_Size() int

func (*QueryNameRequest) XXX_Unmarshal

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

type QueryNameResponse

type QueryNameResponse struct {
	Names Names `protobuf:"bytes,1,opt,name=names,proto3" json:"names"`
}

func (*QueryNameResponse) Descriptor

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

func (*QueryNameResponse) GetNames

func (m *QueryNameResponse) GetNames() Names

func (*QueryNameResponse) Marshal

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

func (*QueryNameResponse) MarshalTo

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

func (*QueryNameResponse) MarshalToSizedBuffer

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

func (*QueryNameResponse) ProtoMessage

func (*QueryNameResponse) ProtoMessage()

func (*QueryNameResponse) Reset

func (m *QueryNameResponse) Reset()

func (*QueryNameResponse) Size

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

func (*QueryNameResponse) String

func (m *QueryNameResponse) String() string

func (*QueryNameResponse) Unmarshal

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

func (*QueryNameResponse) XXX_DiscardUnknown

func (m *QueryNameResponse) XXX_DiscardUnknown()

func (*QueryNameResponse) XXX_Marshal

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

func (*QueryNameResponse) XXX_Merge

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

func (*QueryNameResponse) XXX_Size

func (m *QueryNameResponse) XXX_Size() int

func (*QueryNameResponse) XXX_Unmarshal

func (m *QueryNameResponse) 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)
	// Queries a Name by index.
	Names(context.Context, *QueryNameRequest) (*QueryNameResponse, error)
	// Queries a list of Names.
	NamesAll(context.Context, *QueryAllNamesRequest) (*QueryAllNamesResponse, error)
	// Queries a Bid by index.
	Bids(context.Context, *QueryBidRequest) (*QueryBidResponse, error)
	// Queries a list of Bids.
	BidsAll(context.Context, *QueryAllBidsRequest) (*QueryAllBidsResponse, error)
	// Queries a Listing by index.
	Forsale(context.Context, *QueryForsaleRequest) (*QueryForsaleResponse, error)
	// Queries all Listings.
	ForsaleAll(context.Context, *QueryAllForsalesRequest) (*QueryAllForsalesResponse, error)
	// Queries a Init by index.
	Init(context.Context, *QueryInitRequest) (*QueryInitResponse, error)
	// Queries a list of Init items.
	InitAll(context.Context, *QueryAllInitsRequest) (*QueryAllInitsResponse, error)
	// Queries a list of ListOwnedNames items.
	ListOwnedNames(context.Context, *QueryListOwnedNamesRequest) (*QueryListOwnedNamesResponse, error)
}

QueryServer is the server API for Query service.

type QueryWhoisRequest

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

func (*QueryWhoisRequest) Descriptor

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

func (*QueryWhoisRequest) GetIndex

func (m *QueryWhoisRequest) GetIndex() string

func (*QueryWhoisRequest) Marshal

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

func (*QueryWhoisRequest) MarshalTo

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

func (*QueryWhoisRequest) MarshalToSizedBuffer

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

func (*QueryWhoisRequest) ProtoMessage

func (*QueryWhoisRequest) ProtoMessage()

func (*QueryWhoisRequest) Reset

func (m *QueryWhoisRequest) Reset()

func (*QueryWhoisRequest) Size

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

func (*QueryWhoisRequest) String

func (m *QueryWhoisRequest) String() string

func (*QueryWhoisRequest) Unmarshal

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

func (*QueryWhoisRequest) XXX_DiscardUnknown

func (m *QueryWhoisRequest) XXX_DiscardUnknown()

func (*QueryWhoisRequest) XXX_Marshal

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

func (*QueryWhoisRequest) XXX_Merge

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

func (*QueryWhoisRequest) XXX_Size

func (m *QueryWhoisRequest) XXX_Size() int

func (*QueryWhoisRequest) XXX_Unmarshal

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

type QueryWhoisResponse

type QueryWhoisResponse struct {
	Whois Whois `protobuf:"bytes,1,opt,name=whois,proto3" json:"whois"`
}

func (*QueryWhoisResponse) Descriptor

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

func (*QueryWhoisResponse) GetWhois

func (m *QueryWhoisResponse) GetWhois() Whois

func (*QueryWhoisResponse) Marshal

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

func (*QueryWhoisResponse) MarshalTo

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

func (*QueryWhoisResponse) MarshalToSizedBuffer

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

func (*QueryWhoisResponse) ProtoMessage

func (*QueryWhoisResponse) ProtoMessage()

func (*QueryWhoisResponse) Reset

func (m *QueryWhoisResponse) Reset()

func (*QueryWhoisResponse) Size

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

func (*QueryWhoisResponse) String

func (m *QueryWhoisResponse) String() string

func (*QueryWhoisResponse) Unmarshal

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

func (*QueryWhoisResponse) XXX_DiscardUnknown

func (m *QueryWhoisResponse) XXX_DiscardUnknown()

func (*QueryWhoisResponse) XXX_Marshal

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

func (*QueryWhoisResponse) XXX_Merge

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

func (*QueryWhoisResponse) XXX_Size

func (m *QueryWhoisResponse) XXX_Size() int

func (*QueryWhoisResponse) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AcceptBid

func (*UnimplementedMsgServer) AddRecord

func (*UnimplementedMsgServer) Bid

func (*UnimplementedMsgServer) Buy

func (*UnimplementedMsgServer) CancelBid

func (*UnimplementedMsgServer) DelRecord

func (*UnimplementedMsgServer) Delist

func (*UnimplementedMsgServer) Init

func (*UnimplementedMsgServer) List

func (*UnimplementedMsgServer) Register

func (*UnimplementedMsgServer) Transfer

func (*UnimplementedMsgServer) Update

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Bids

func (*UnimplementedQueryServer) BidsAll

func (*UnimplementedQueryServer) Forsale

func (*UnimplementedQueryServer) ForsaleAll

func (*UnimplementedQueryServer) Init

func (*UnimplementedQueryServer) InitAll

func (*UnimplementedQueryServer) ListOwnedNames

func (*UnimplementedQueryServer) Names

func (*UnimplementedQueryServer) NamesAll

func (*UnimplementedQueryServer) Params

type Whois

type Whois struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	Name  string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Data  string `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
}

func (*Whois) Descriptor

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

func (*Whois) GetData

func (m *Whois) GetData() string

func (*Whois) GetIndex

func (m *Whois) GetIndex() string

func (*Whois) GetName

func (m *Whois) GetName() string

func (*Whois) GetValue

func (m *Whois) GetValue() string

func (*Whois) Marshal

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

func (*Whois) MarshalTo

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

func (*Whois) MarshalToSizedBuffer

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

func (*Whois) ProtoMessage

func (*Whois) ProtoMessage()

func (*Whois) Reset

func (m *Whois) Reset()

func (*Whois) Size

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

func (*Whois) String

func (m *Whois) String() string

func (*Whois) Unmarshal

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

func (*Whois) XXX_DiscardUnknown

func (m *Whois) XXX_DiscardUnknown()

func (*Whois) XXX_Marshal

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

func (*Whois) XXX_Merge

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

func (*Whois) XXX_Size

func (m *Whois) XXX_Size() int

func (*Whois) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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