types

package
v4.2.0-rc.1 Latest Latest
Warning

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

Go to latest
Published: Oct 17, 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 (
	EventSetPrimaryName = "set_primary_name"
	EventSetName        = "set_name"
	EventRemoveName     = "remove_name"
	EventSetBid         = "add_bid"
	EventAcceptBid      = "accept_bid"
	EventAddRecord      = "add_record"
	EventBuyName        = "buy_name"
	EventRemoveBid      = "remove_bid"
	EventRemoveRecord   = "remove_record"
	EventRemoveSale     = "remove_sale"
	EventSetSale        = "add_sale"
	EventInit           = "init_rns"
	EventRegister       = "register"
	EventTransfer       = "transfer_name"
	EventUpdate         = "update"

	AttributeName     = "name"
	AttributeOwner    = "owner"
	AttributeValue    = "value"
	AttributeExpires  = "expires"
	AttributeBidder   = "bidder"
	AttributePrice    = "price"
	AttributeReceiver = "receiver"

	AttributeValueCategory = ModuleName

	AttributeKeySigner = "signer"

	EventTypeJackalMessage = "jackal_message"
)
View Source
const (
	// NamesKeyPrefix is the prefix to retrieve all Names
	NamesKeyPrefix       = "Names/value/"
	PrimaryNameKeyPrefix = "PrimaryName/value/"
)
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 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 TypeMsgMakePrimary = "make_primary"
View Source
const TypeMsgRegister = "register"
View Source
const TypeMsgRegisterName = "register_name"
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": 50000000, "jkl": 25000000}

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 PrimaryNameKey added in v4.1.0

func PrimaryNameKey(
	owner string,
) []byte

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

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"`
}

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     types.Coin `protobuf:"bytes,3,opt,name=bid,proto3" json:"bid"`
}

func NewMsgBid

func NewMsgBid(creator string, name string, bid sdk.Coin) *MsgBid

func (*MsgBid) Descriptor

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

func (*MsgBid) GetBid

func (m *MsgBid) GetBid() types.Coin

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

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   types.Coin `protobuf:"bytes,3,opt,name=price,proto3" json:"price"`
}

func NewMsgList

func NewMsgList(creator string, name string, price sdk.Coin) *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() types.Coin

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 MsgMakePrimary added in v4.1.0

type MsgMakePrimary 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 NewMsgMakePrimary added in v4.1.0

func NewMsgMakePrimary(name string) *MsgMakePrimary

func (*MsgMakePrimary) Descriptor added in v4.1.0

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

func (*MsgMakePrimary) GetCreator added in v4.1.0

func (m *MsgMakePrimary) GetCreator() string

func (*MsgMakePrimary) GetName added in v4.1.0

func (m *MsgMakePrimary) GetName() string

func (*MsgMakePrimary) GetSignBytes added in v4.1.0

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

func (*MsgMakePrimary) GetSigners added in v4.1.0

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

func (*MsgMakePrimary) Marshal added in v4.1.0

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

func (*MsgMakePrimary) MarshalTo added in v4.1.0

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

func (*MsgMakePrimary) MarshalToSizedBuffer added in v4.1.0

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

func (*MsgMakePrimary) ProtoMessage added in v4.1.0

func (*MsgMakePrimary) ProtoMessage()

func (*MsgMakePrimary) Reset added in v4.1.0

func (m *MsgMakePrimary) Reset()

func (*MsgMakePrimary) Route added in v4.1.0

func (msg *MsgMakePrimary) Route() string

func (*MsgMakePrimary) Size added in v4.1.0

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

func (*MsgMakePrimary) String added in v4.1.0

func (m *MsgMakePrimary) String() string

func (*MsgMakePrimary) Type added in v4.1.0

func (msg *MsgMakePrimary) Type() string

func (*MsgMakePrimary) Unmarshal added in v4.1.0

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

func (*MsgMakePrimary) ValidateBasic added in v4.1.0

func (msg *MsgMakePrimary) ValidateBasic() error

func (*MsgMakePrimary) XXX_DiscardUnknown added in v4.1.0

func (m *MsgMakePrimary) XXX_DiscardUnknown()

func (*MsgMakePrimary) XXX_Marshal added in v4.1.0

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

func (*MsgMakePrimary) XXX_Merge added in v4.1.0

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

func (*MsgMakePrimary) XXX_Size added in v4.1.0

func (m *MsgMakePrimary) XXX_Size() int

func (*MsgMakePrimary) XXX_Unmarshal added in v4.1.0

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

type MsgMakePrimaryResponse added in v4.1.0

type MsgMakePrimaryResponse struct {
}

func (*MsgMakePrimaryResponse) Descriptor added in v4.1.0

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

func (*MsgMakePrimaryResponse) Marshal added in v4.1.0

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

func (*MsgMakePrimaryResponse) MarshalTo added in v4.1.0

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

func (*MsgMakePrimaryResponse) MarshalToSizedBuffer added in v4.1.0

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

func (*MsgMakePrimaryResponse) ProtoMessage added in v4.1.0

func (*MsgMakePrimaryResponse) ProtoMessage()

func (*MsgMakePrimaryResponse) Reset added in v4.1.0

func (m *MsgMakePrimaryResponse) Reset()

func (*MsgMakePrimaryResponse) Size added in v4.1.0

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

func (*MsgMakePrimaryResponse) String added in v4.1.0

func (m *MsgMakePrimaryResponse) String() string

func (*MsgMakePrimaryResponse) Unmarshal added in v4.1.0

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

func (*MsgMakePrimaryResponse) XXX_DiscardUnknown added in v4.1.0

func (m *MsgMakePrimaryResponse) XXX_DiscardUnknown()

func (*MsgMakePrimaryResponse) XXX_Marshal added in v4.1.0

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

func (*MsgMakePrimaryResponse) XXX_Merge added in v4.1.0

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

func (*MsgMakePrimaryResponse) XXX_Size added in v4.1.0

func (m *MsgMakePrimaryResponse) XXX_Size() int

func (*MsgMakePrimaryResponse) XXX_Unmarshal added in v4.1.0

func (m *MsgMakePrimaryResponse) 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   int64  `protobuf:"varint,3,opt,name=years,proto3" json:"years,omitempty"`
	Data    string `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
}

Deprecated! Use MsgRegisterName instead

func NewMsgRegister

func NewMsgRegister(creator string, name string, years int64, 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() int64

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 MsgRegisterName added in v4.1.0

type MsgRegisterName 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      int64  `protobuf:"varint,3,opt,name=years,proto3" json:"years,omitempty"`
	Data       string `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	SetPrimary bool   `protobuf:"varint,5,opt,name=setPrimary,proto3" json:"setPrimary,omitempty"`
}

func NewMsgRegisterName added in v4.1.0

func NewMsgRegisterName(creator string, name string, years int64, data string, primary bool) *MsgRegisterName

func (*MsgRegisterName) Descriptor added in v4.1.0

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

func (*MsgRegisterName) GetCreator added in v4.1.0

func (m *MsgRegisterName) GetCreator() string

func (*MsgRegisterName) GetData added in v4.1.0

func (m *MsgRegisterName) GetData() string

func (*MsgRegisterName) GetName added in v4.1.0

func (m *MsgRegisterName) GetName() string

func (*MsgRegisterName) GetSetPrimary added in v4.1.0

func (m *MsgRegisterName) GetSetPrimary() bool

func (*MsgRegisterName) GetSignBytes added in v4.1.0

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

func (*MsgRegisterName) GetSigners added in v4.1.0

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

func (*MsgRegisterName) GetYears added in v4.1.0

func (m *MsgRegisterName) GetYears() int64

func (*MsgRegisterName) Marshal added in v4.1.0

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

func (*MsgRegisterName) MarshalTo added in v4.1.0

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

func (*MsgRegisterName) MarshalToSizedBuffer added in v4.1.0

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

func (*MsgRegisterName) ProtoMessage added in v4.1.0

func (*MsgRegisterName) ProtoMessage()

func (*MsgRegisterName) Reset added in v4.1.0

func (m *MsgRegisterName) Reset()

func (*MsgRegisterName) Route added in v4.1.0

func (msg *MsgRegisterName) Route() string

func (*MsgRegisterName) Size added in v4.1.0

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

func (*MsgRegisterName) String added in v4.1.0

func (m *MsgRegisterName) String() string

func (*MsgRegisterName) Type added in v4.1.0

func (msg *MsgRegisterName) Type() string

func (*MsgRegisterName) Unmarshal added in v4.1.0

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

func (*MsgRegisterName) ValidateBasic added in v4.1.0

func (msg *MsgRegisterName) ValidateBasic() error

func (*MsgRegisterName) XXX_DiscardUnknown added in v4.1.0

func (m *MsgRegisterName) XXX_DiscardUnknown()

func (*MsgRegisterName) XXX_Marshal added in v4.1.0

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

func (*MsgRegisterName) XXX_Merge added in v4.1.0

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

func (*MsgRegisterName) XXX_Size added in v4.1.0

func (m *MsgRegisterName) XXX_Size() int

func (*MsgRegisterName) XXX_Unmarshal added in v4.1.0

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

type MsgRegisterNameResponse added in v4.1.0

type MsgRegisterNameResponse struct {
}

func (*MsgRegisterNameResponse) Descriptor added in v4.1.0

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

func (*MsgRegisterNameResponse) Marshal added in v4.1.0

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

func (*MsgRegisterNameResponse) MarshalTo added in v4.1.0

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

func (*MsgRegisterNameResponse) MarshalToSizedBuffer added in v4.1.0

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

func (*MsgRegisterNameResponse) ProtoMessage added in v4.1.0

func (*MsgRegisterNameResponse) ProtoMessage()

func (*MsgRegisterNameResponse) Reset added in v4.1.0

func (m *MsgRegisterNameResponse) Reset()

func (*MsgRegisterNameResponse) Size added in v4.1.0

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

func (*MsgRegisterNameResponse) String added in v4.1.0

func (m *MsgRegisterNameResponse) String() string

func (*MsgRegisterNameResponse) Unmarshal added in v4.1.0

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

func (*MsgRegisterNameResponse) XXX_DiscardUnknown added in v4.1.0

func (m *MsgRegisterNameResponse) XXX_DiscardUnknown()

func (*MsgRegisterNameResponse) XXX_Marshal added in v4.1.0

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

func (*MsgRegisterNameResponse) XXX_Merge added in v4.1.0

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

func (*MsgRegisterNameResponse) XXX_Size added in v4.1.0

func (m *MsgRegisterNameResponse) XXX_Size() int

func (*MsgRegisterNameResponse) XXX_Unmarshal added in v4.1.0

func (m *MsgRegisterNameResponse) 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) GetDisplay added in v4.1.0

func (n *Names) GetDisplay() 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"`
}

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 QueryAllBids

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

func (*QueryAllBids) Descriptor

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

func (*QueryAllBids) GetPagination

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

func (*QueryAllBids) Marshal

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

func (*QueryAllBids) MarshalTo

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

func (*QueryAllBids) MarshalToSizedBuffer

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

func (*QueryAllBids) ProtoMessage

func (*QueryAllBids) ProtoMessage()

func (*QueryAllBids) Reset

func (m *QueryAllBids) Reset()

func (*QueryAllBids) Size

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

func (*QueryAllBids) String

func (m *QueryAllBids) String() string

func (*QueryAllBids) Unmarshal

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

func (*QueryAllBids) XXX_DiscardUnknown

func (m *QueryAllBids) XXX_DiscardUnknown()

func (*QueryAllBids) XXX_Marshal

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

func (*QueryAllBids) XXX_Merge

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

func (*QueryAllBids) XXX_Size

func (m *QueryAllBids) XXX_Size() int

func (*QueryAllBids) XXX_Unmarshal

func (m *QueryAllBids) 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 QueryAllForSale

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

func (*QueryAllForSale) Descriptor

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

func (*QueryAllForSale) GetPagination

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

func (*QueryAllForSale) Marshal

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

func (*QueryAllForSale) MarshalTo

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

func (*QueryAllForSale) MarshalToSizedBuffer

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

func (*QueryAllForSale) ProtoMessage

func (*QueryAllForSale) ProtoMessage()

func (*QueryAllForSale) Reset

func (m *QueryAllForSale) Reset()

func (*QueryAllForSale) Size

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

func (*QueryAllForSale) String

func (m *QueryAllForSale) String() string

func (*QueryAllForSale) Unmarshal

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

func (*QueryAllForSale) XXX_DiscardUnknown

func (m *QueryAllForSale) XXX_DiscardUnknown()

func (*QueryAllForSale) XXX_Marshal

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

func (*QueryAllForSale) XXX_Merge

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

func (*QueryAllForSale) XXX_Size

func (m *QueryAllForSale) XXX_Size() int

func (*QueryAllForSale) XXX_Unmarshal

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

type QueryAllForSaleResponse

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

func (*QueryAllForSaleResponse) Descriptor

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

func (*QueryAllForSaleResponse) GetForSale

func (m *QueryAllForSaleResponse) GetForSale() []Forsale

func (*QueryAllForSaleResponse) GetPagination

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

func (*QueryAllForSaleResponse) Marshal

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

func (*QueryAllForSaleResponse) MarshalTo

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

func (*QueryAllForSaleResponse) MarshalToSizedBuffer

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

func (*QueryAllForSaleResponse) ProtoMessage

func (*QueryAllForSaleResponse) ProtoMessage()

func (*QueryAllForSaleResponse) Reset

func (m *QueryAllForSaleResponse) Reset()

func (*QueryAllForSaleResponse) Size

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

func (*QueryAllForSaleResponse) String

func (m *QueryAllForSaleResponse) String() string

func (*QueryAllForSaleResponse) Unmarshal

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

func (*QueryAllForSaleResponse) XXX_DiscardUnknown

func (m *QueryAllForSaleResponse) XXX_DiscardUnknown()

func (*QueryAllForSaleResponse) XXX_Marshal

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

func (*QueryAllForSaleResponse) XXX_Merge

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

func (*QueryAllForSaleResponse) XXX_Size

func (m *QueryAllForSaleResponse) XXX_Size() int

func (*QueryAllForSaleResponse) XXX_Unmarshal

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

type QueryAllInits

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

func (*QueryAllInits) Descriptor

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

func (*QueryAllInits) GetPagination

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

func (*QueryAllInits) Marshal

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

func (*QueryAllInits) MarshalTo

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

func (*QueryAllInits) MarshalToSizedBuffer

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

func (*QueryAllInits) ProtoMessage

func (*QueryAllInits) ProtoMessage()

func (*QueryAllInits) Reset

func (m *QueryAllInits) Reset()

func (*QueryAllInits) Size

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

func (*QueryAllInits) String

func (m *QueryAllInits) String() string

func (*QueryAllInits) Unmarshal

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

func (*QueryAllInits) XXX_DiscardUnknown

func (m *QueryAllInits) XXX_DiscardUnknown()

func (*QueryAllInits) XXX_Marshal

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

func (*QueryAllInits) XXX_Merge

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

func (*QueryAllInits) XXX_Size

func (m *QueryAllInits) XXX_Size() int

func (*QueryAllInits) XXX_Unmarshal

func (m *QueryAllInits) 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 QueryAllNames

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

func (*QueryAllNames) Descriptor

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

func (*QueryAllNames) GetPagination

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

func (*QueryAllNames) Marshal

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

func (*QueryAllNames) MarshalTo

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

func (*QueryAllNames) MarshalToSizedBuffer

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

func (*QueryAllNames) ProtoMessage

func (*QueryAllNames) ProtoMessage()

func (*QueryAllNames) Reset

func (m *QueryAllNames) Reset()

func (*QueryAllNames) Size

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

func (*QueryAllNames) String

func (m *QueryAllNames) String() string

func (*QueryAllNames) Unmarshal

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

func (*QueryAllNames) XXX_DiscardUnknown

func (m *QueryAllNames) XXX_DiscardUnknown()

func (*QueryAllNames) XXX_Marshal

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

func (*QueryAllNames) XXX_Merge

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

func (*QueryAllNames) XXX_Size

func (m *QueryAllNames) XXX_Size() int

func (*QueryAllNames) XXX_Unmarshal

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

type QueryAllNamesResponse

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

func (*QueryAllNamesResponse) Descriptor

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

func (*QueryAllNamesResponse) GetName

func (m *QueryAllNamesResponse) GetName() []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 QueryBid

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

func (*QueryBid) Descriptor

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

func (*QueryBid) GetName

func (m *QueryBid) GetName() string

func (*QueryBid) Marshal

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

func (*QueryBid) MarshalTo

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

func (*QueryBid) MarshalToSizedBuffer

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

func (*QueryBid) ProtoMessage

func (*QueryBid) ProtoMessage()

func (*QueryBid) Reset

func (m *QueryBid) Reset()

func (*QueryBid) Size

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

func (*QueryBid) String

func (m *QueryBid) String() string

func (*QueryBid) Unmarshal

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

func (*QueryBid) XXX_DiscardUnknown

func (m *QueryBid) XXX_DiscardUnknown()

func (*QueryBid) XXX_Marshal

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

func (*QueryBid) XXX_Merge

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

func (*QueryBid) XXX_Size

func (m *QueryBid) XXX_Size() int

func (*QueryBid) XXX_Unmarshal

func (m *QueryBid) 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 {
	Params(ctx context.Context, in *QueryParams, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a Name by name.
	Name(ctx context.Context, in *QueryName, opts ...grpc.CallOption) (*QueryNameResponse, error)
	// Queries a list of Name items by address.
	ListOwnedNames(ctx context.Context, in *QueryListOwnedNames, opts ...grpc.CallOption) (*QueryListOwnedNamesResponse, error)
	// Queries a list of Name items.
	AllNames(ctx context.Context, in *QueryAllNames, opts ...grpc.CallOption) (*QueryAllNamesResponse, error)
	// Queries a Bid by name.
	Bid(ctx context.Context, in *QueryBid, opts ...grpc.CallOption) (*QueryBidResponse, error)
	// Queries a list of Bid items.
	AllBids(ctx context.Context, in *QueryAllBids, opts ...grpc.CallOption) (*QueryAllBidsResponse, error)
	// Queries a ForSale by name.
	ForSale(ctx context.Context, in *QueryForSale, opts ...grpc.CallOption) (*QueryForSaleResponse, error)
	// Queries a list of ForSale items.
	AllForSale(ctx context.Context, in *QueryAllForSale, opts ...grpc.CallOption) (*QueryAllForSaleResponse, error)
	// Queries an Init by address.
	Init(ctx context.Context, in *QueryInit, opts ...grpc.CallOption) (*QueryInitResponse, error)
	// Queries a list of Init items.
	AllInits(ctx context.Context, in *QueryAllInits, opts ...grpc.CallOption) (*QueryAllInitsResponse, error)
	// Queries a list of Init items.
	PrimaryName(ctx context.Context, in *QueryPrimaryName, opts ...grpc.CallOption) (*QueryPrimaryNameResponse, 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 QueryForSale

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

func (*QueryForSale) Descriptor

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

func (*QueryForSale) GetName

func (m *QueryForSale) GetName() string

func (*QueryForSale) Marshal

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

func (*QueryForSale) MarshalTo

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

func (*QueryForSale) MarshalToSizedBuffer

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

func (*QueryForSale) ProtoMessage

func (*QueryForSale) ProtoMessage()

func (*QueryForSale) Reset

func (m *QueryForSale) Reset()

func (*QueryForSale) Size

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

func (*QueryForSale) String

func (m *QueryForSale) String() string

func (*QueryForSale) Unmarshal

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

func (*QueryForSale) XXX_DiscardUnknown

func (m *QueryForSale) XXX_DiscardUnknown()

func (*QueryForSale) XXX_Marshal

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

func (*QueryForSale) XXX_Merge

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

func (*QueryForSale) XXX_Size

func (m *QueryForSale) XXX_Size() int

func (*QueryForSale) XXX_Unmarshal

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

type QueryForSaleResponse

type QueryForSaleResponse struct {
	ForSale Forsale `protobuf:"bytes,1,opt,name=for_sale,json=forSale,proto3" json:"for_sale"`
}

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 QueryInit

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

func (*QueryInit) Descriptor

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

func (*QueryInit) GetAddress

func (m *QueryInit) GetAddress() string

func (*QueryInit) Marshal

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

func (*QueryInit) MarshalTo

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

func (*QueryInit) MarshalToSizedBuffer

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

func (*QueryInit) ProtoMessage

func (*QueryInit) ProtoMessage()

func (*QueryInit) Reset

func (m *QueryInit) Reset()

func (*QueryInit) Size

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

func (*QueryInit) String

func (m *QueryInit) String() string

func (*QueryInit) Unmarshal

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

func (*QueryInit) XXX_DiscardUnknown

func (m *QueryInit) XXX_DiscardUnknown()

func (*QueryInit) XXX_Marshal

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

func (*QueryInit) XXX_Merge

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

func (*QueryInit) XXX_Size

func (m *QueryInit) XXX_Size() int

func (*QueryInit) XXX_Unmarshal

func (m *QueryInit) 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 QueryListOwnedNames

type QueryListOwnedNames 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 (*QueryListOwnedNames) Descriptor

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

func (*QueryListOwnedNames) GetAddress

func (m *QueryListOwnedNames) GetAddress() string

func (*QueryListOwnedNames) GetPagination

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

func (*QueryListOwnedNames) Marshal

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

func (*QueryListOwnedNames) MarshalTo

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

func (*QueryListOwnedNames) MarshalToSizedBuffer

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

func (*QueryListOwnedNames) ProtoMessage

func (*QueryListOwnedNames) ProtoMessage()

func (*QueryListOwnedNames) Reset

func (m *QueryListOwnedNames) Reset()

func (*QueryListOwnedNames) Size

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

func (*QueryListOwnedNames) String

func (m *QueryListOwnedNames) String() string

func (*QueryListOwnedNames) Unmarshal

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

func (*QueryListOwnedNames) XXX_DiscardUnknown

func (m *QueryListOwnedNames) XXX_DiscardUnknown()

func (*QueryListOwnedNames) XXX_Marshal

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

func (*QueryListOwnedNames) XXX_Merge

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

func (*QueryListOwnedNames) XXX_Size

func (m *QueryListOwnedNames) XXX_Size() int

func (*QueryListOwnedNames) XXX_Unmarshal

func (m *QueryListOwnedNames) 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 QueryName

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

func (*QueryName) Descriptor

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

func (*QueryName) GetName

func (m *QueryName) GetName() string

func (*QueryName) Marshal

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

func (*QueryName) MarshalTo

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

func (*QueryName) MarshalToSizedBuffer

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

func (*QueryName) ProtoMessage

func (*QueryName) ProtoMessage()

func (*QueryName) Reset

func (m *QueryName) Reset()

func (*QueryName) Size

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

func (*QueryName) String

func (m *QueryName) String() string

func (*QueryName) Unmarshal

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

func (*QueryName) XXX_DiscardUnknown

func (m *QueryName) XXX_DiscardUnknown()

func (*QueryName) XXX_Marshal

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

func (*QueryName) XXX_Merge

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

func (*QueryName) XXX_Size

func (m *QueryName) XXX_Size() int

func (*QueryName) XXX_Unmarshal

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

type QueryNameResponse

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

func (*QueryNameResponse) Descriptor

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

func (*QueryNameResponse) GetName

func (m *QueryNameResponse) GetName() 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 QueryParams

type QueryParams struct {
}

func (*QueryParams) Descriptor

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

func (*QueryParams) Marshal

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

func (*QueryParams) MarshalTo

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

func (*QueryParams) MarshalToSizedBuffer

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

func (*QueryParams) ProtoMessage

func (*QueryParams) ProtoMessage()

func (*QueryParams) Reset

func (m *QueryParams) Reset()

func (*QueryParams) Size

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

func (*QueryParams) String

func (m *QueryParams) String() string

func (*QueryParams) Unmarshal

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

func (*QueryParams) XXX_DiscardUnknown

func (m *QueryParams) XXX_DiscardUnknown()

func (*QueryParams) XXX_Marshal

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

func (*QueryParams) XXX_Merge

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

func (*QueryParams) XXX_Size

func (m *QueryParams) XXX_Size() int

func (*QueryParams) XXX_Unmarshal

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

type QueryParamsResponse

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

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 QueryPrimaryName added in v4.1.0

type QueryPrimaryName struct {
	Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
}

func (*QueryPrimaryName) Descriptor added in v4.1.0

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

func (*QueryPrimaryName) GetOwner added in v4.1.0

func (m *QueryPrimaryName) GetOwner() string

func (*QueryPrimaryName) Marshal added in v4.1.0

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

func (*QueryPrimaryName) MarshalTo added in v4.1.0

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

func (*QueryPrimaryName) MarshalToSizedBuffer added in v4.1.0

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

func (*QueryPrimaryName) ProtoMessage added in v4.1.0

func (*QueryPrimaryName) ProtoMessage()

func (*QueryPrimaryName) Reset added in v4.1.0

func (m *QueryPrimaryName) Reset()

func (*QueryPrimaryName) Size added in v4.1.0

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

func (*QueryPrimaryName) String added in v4.1.0

func (m *QueryPrimaryName) String() string

func (*QueryPrimaryName) Unmarshal added in v4.1.0

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

func (*QueryPrimaryName) XXX_DiscardUnknown added in v4.1.0

func (m *QueryPrimaryName) XXX_DiscardUnknown()

func (*QueryPrimaryName) XXX_Marshal added in v4.1.0

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

func (*QueryPrimaryName) XXX_Merge added in v4.1.0

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

func (*QueryPrimaryName) XXX_Size added in v4.1.0

func (m *QueryPrimaryName) XXX_Size() int

func (*QueryPrimaryName) XXX_Unmarshal added in v4.1.0

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

type QueryPrimaryNameResponse added in v4.1.0

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

func (*QueryPrimaryNameResponse) Descriptor added in v4.1.0

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

func (*QueryPrimaryNameResponse) GetName added in v4.1.0

func (m *QueryPrimaryNameResponse) GetName() Names

func (*QueryPrimaryNameResponse) Marshal added in v4.1.0

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

func (*QueryPrimaryNameResponse) MarshalTo added in v4.1.0

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

func (*QueryPrimaryNameResponse) MarshalToSizedBuffer added in v4.1.0

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

func (*QueryPrimaryNameResponse) ProtoMessage added in v4.1.0

func (*QueryPrimaryNameResponse) ProtoMessage()

func (*QueryPrimaryNameResponse) Reset added in v4.1.0

func (m *QueryPrimaryNameResponse) Reset()

func (*QueryPrimaryNameResponse) Size added in v4.1.0

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

func (*QueryPrimaryNameResponse) String added in v4.1.0

func (m *QueryPrimaryNameResponse) String() string

func (*QueryPrimaryNameResponse) Unmarshal added in v4.1.0

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

func (*QueryPrimaryNameResponse) XXX_DiscardUnknown added in v4.1.0

func (m *QueryPrimaryNameResponse) XXX_DiscardUnknown()

func (*QueryPrimaryNameResponse) XXX_Marshal added in v4.1.0

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

func (*QueryPrimaryNameResponse) XXX_Merge added in v4.1.0

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

func (*QueryPrimaryNameResponse) XXX_Size added in v4.1.0

func (m *QueryPrimaryNameResponse) XXX_Size() int

func (*QueryPrimaryNameResponse) XXX_Unmarshal added in v4.1.0

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

type QueryServer

type QueryServer interface {
	Params(context.Context, *QueryParams) (*QueryParamsResponse, error)
	// Queries a Name by name.
	Name(context.Context, *QueryName) (*QueryNameResponse, error)
	// Queries a list of Name items by address.
	ListOwnedNames(context.Context, *QueryListOwnedNames) (*QueryListOwnedNamesResponse, error)
	// Queries a list of Name items.
	AllNames(context.Context, *QueryAllNames) (*QueryAllNamesResponse, error)
	// Queries a Bid by name.
	Bid(context.Context, *QueryBid) (*QueryBidResponse, error)
	// Queries a list of Bid items.
	AllBids(context.Context, *QueryAllBids) (*QueryAllBidsResponse, error)
	// Queries a ForSale by name.
	ForSale(context.Context, *QueryForSale) (*QueryForSaleResponse, error)
	// Queries a list of ForSale items.
	AllForSale(context.Context, *QueryAllForSale) (*QueryAllForSaleResponse, error)
	// Queries an Init by address.
	Init(context.Context, *QueryInit) (*QueryInitResponse, error)
	// Queries a list of Init items.
	AllInits(context.Context, *QueryAllInits) (*QueryAllInitsResponse, error)
	// Queries a list of Init items.
	PrimaryName(context.Context, *QueryPrimaryName) (*QueryPrimaryNameResponse, error)
}

QueryServer is the server API for Query service.

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) MakePrimary added in v4.1.0

func (*UnimplementedMsgServer) Register

func (*UnimplementedMsgServer) RegisterName added in v4.1.0

func (*UnimplementedMsgServer) Transfer

func (*UnimplementedMsgServer) Update

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) AllBids

func (*UnimplementedQueryServer) AllForSale

func (*UnimplementedQueryServer) AllInits

func (*UnimplementedQueryServer) AllNames

func (*UnimplementedQueryServer) Bid

func (*UnimplementedQueryServer) ForSale

func (*UnimplementedQueryServer) Init

func (*UnimplementedQueryServer) ListOwnedNames

func (*UnimplementedQueryServer) Name

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) PrimaryName added in v4.1.0

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