types

package
v0.0.0-...-5f9bd9d Latest Latest
Warning

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

Go to latest
Published: Jan 23, 2025 License: Apache-2.0 Imports: 29 Imported by: 20

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// ModuleName defines the module name
	ModuleName = "fiat-tokenfactory"

	// StoreKey defines the primary module store key
	StoreKey = "fiattokenfactory"

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

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_" + StoreKey

	PausedKey                 = "Paused/value/"
	MasterMinterKey           = "MasterMinter/value/"
	PauserKey                 = "Pauser/value/"
	BlacklisterKey            = "Blacklister/value/"
	OwnerKey                  = "Owner/value/"
	PendingOwnerKey           = "PendingOwner/value/"
	BlacklistedKeyPrefix      = "Blacklisted/value/"
	MintersKeyPrefix          = "Minters/value/"
	MinterControllerKeyPrefix = "MinterController/value/"

	GranteeKey = "SendRestrictionGrantees"
)
View Source
const (
	MintingDenomKey = "MintingDenom/value/"
)

Variables

View Source
var (
	ErrInvalidLengthBlacklisted        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBlacklisted          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBlacklisted = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthBlacklister        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBlacklister          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBlacklister = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrUnauthorized       = errors.Register(ModuleName, 2, "unauthorized")
	ErrUserNotFound       = errors.Register(ModuleName, 3, "user not found")
	ErrMint               = errors.Register(ModuleName, 4, "tokens can not be minted")
	ErrSendCoinsToAccount = errors.Register(ModuleName, 5, "can't send tokens to account")
	ErrBurn               = errors.Register(ModuleName, 6, "tokens can not be burned")
	ErrPaused             = errors.Register(ModuleName, 7, "the chain is paused")
	ErrMintingDenomSet    = errors.Register(ModuleName, 9, "the minting denom has already been set")
	ErrUserBlacklisted    = errors.Register(ModuleName, 10, "user is already blacklisted")
	ErrAlreadyPrivileged  = errors.Register(ModuleName, 11, "address is already assigned to privileged role")
	ErrDenomNotRegistered = errors.Register(ModuleName, 12, "denom not registered in bank module")

	ErrInvalidAddress = errors.Register(ModuleName, 100, "invalid address")
	ErrInvalidCoins   = errors.Register(ModuleName, 101, "invalid coins")
	ErrInvalidType    = errors.Register(ModuleName, 102, "invalid type")
)

x/fiattokenfactory module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthMasterMinter        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMasterMinter          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMasterMinter = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthMinterController        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMinterController          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMinterController = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthMinters        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMinters          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMinters = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthMintingDenom        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMintingDenom          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupMintingDenom = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthOwner        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowOwner          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupOwner = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPaused        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPaused          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPaused = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPauser        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPauser          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPauser = 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")
)

Functions

func BlacklistedKey

func BlacklistedKey(addressBz []byte) []byte

BlacklistedKey returns the store key to retrieve a Blacklisted from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func MinterControllerKey

func MinterControllerKey(controllerAddress string) []byte

MinterControllerKey returns the store key to retrieve a MinterController from the index fields

func MintersKey

func MintersKey(address string) []byte

MintersKey returns the store key to retrieve a Minters from the index fields

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

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

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

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx context.Context, addr sdk.AccAddress) sdk.Coins
	MintCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
	BurnCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
	SendCoinsFromModuleToAccount(ctx context.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx context.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	GetDenomMetaData(ctx context.Context, denom string) (banktypes.Metadata, bool)
}

BankKeeper defines the expected interface needed to retrieve account balances.

type Blacklisted

type Blacklisted struct {
	AddressBz []byte `protobuf:"bytes,1,opt,name=addressBz,proto3" json:"addressBz,omitempty"`
}

func (*Blacklisted) Descriptor

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

func (*Blacklisted) GetAddressBz

func (m *Blacklisted) GetAddressBz() []byte

func (*Blacklisted) Marshal

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

func (*Blacklisted) MarshalTo

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

func (*Blacklisted) MarshalToSizedBuffer

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

func (*Blacklisted) ProtoMessage

func (*Blacklisted) ProtoMessage()

func (*Blacklisted) Reset

func (m *Blacklisted) Reset()

func (*Blacklisted) Size

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

func (*Blacklisted) String

func (m *Blacklisted) String() string

func (*Blacklisted) Unmarshal

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

func (*Blacklisted) XXX_DiscardUnknown

func (m *Blacklisted) XXX_DiscardUnknown()

func (*Blacklisted) XXX_Marshal

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

func (*Blacklisted) XXX_Merge

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

func (*Blacklisted) XXX_Size

func (m *Blacklisted) XXX_Size() int

func (*Blacklisted) XXX_Unmarshal

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

type Blacklister

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

func (*Blacklister) Descriptor

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

func (*Blacklister) GetAddress

func (m *Blacklister) GetAddress() string

func (*Blacklister) Marshal

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

func (*Blacklister) MarshalTo

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

func (*Blacklister) MarshalToSizedBuffer

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

func (*Blacklister) ProtoMessage

func (*Blacklister) ProtoMessage()

func (*Blacklister) Reset

func (m *Blacklister) Reset()

func (*Blacklister) Size

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

func (*Blacklister) String

func (m *Blacklister) String() string

func (*Blacklister) Unmarshal

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

func (*Blacklister) XXX_DiscardUnknown

func (m *Blacklister) XXX_DiscardUnknown()

func (*Blacklister) XXX_Marshal

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

func (*Blacklister) XXX_Merge

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

func (*Blacklister) XXX_Size

func (m *Blacklister) XXX_Size() int

func (*Blacklister) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	BlacklistedList      []Blacklisted      `protobuf:"bytes,2,rep,name=blacklistedList,proto3" json:"blacklistedList"`
	Paused               *Paused            `protobuf:"bytes,3,opt,name=paused,proto3" json:"paused,omitempty"`
	MasterMinter         *MasterMinter      `protobuf:"bytes,4,opt,name=masterMinter,proto3" json:"masterMinter,omitempty"`
	MintersList          []Minters          `protobuf:"bytes,5,rep,name=mintersList,proto3" json:"mintersList"`
	Pauser               *Pauser            `protobuf:"bytes,6,opt,name=pauser,proto3" json:"pauser,omitempty"`
	Blacklister          *Blacklister       `protobuf:"bytes,7,opt,name=blacklister,proto3" json:"blacklister,omitempty"`
	Owner                *Owner             `protobuf:"bytes,8,opt,name=owner,proto3" json:"owner,omitempty"`
	MinterControllerList []MinterController `protobuf:"bytes,9,rep,name=minterControllerList,proto3" json:"minterControllerList"`
	MintingDenom         *MintingDenom      `protobuf:"bytes,10,opt,name=mintingDenom,proto3" json:"mintingDenom,omitempty"`
}

GenesisState defines the fiattokenfactory module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetBlacklistedList

func (m *GenesisState) GetBlacklistedList() []Blacklisted

func (*GenesisState) GetBlacklister

func (m *GenesisState) GetBlacklister() *Blacklister

func (*GenesisState) GetMasterMinter

func (m *GenesisState) GetMasterMinter() *MasterMinter

func (*GenesisState) GetMinterControllerList

func (m *GenesisState) GetMinterControllerList() []MinterController

func (*GenesisState) GetMintersList

func (m *GenesisState) GetMintersList() []Minters

func (*GenesisState) GetMintingDenom

func (m *GenesisState) GetMintingDenom() *MintingDenom

func (*GenesisState) GetOwner

func (m *GenesisState) GetOwner() *Owner

func (*GenesisState) GetPaused

func (m *GenesisState) GetPaused() *Paused

func (*GenesisState) GetPauser

func (m *GenesisState) GetPauser() *Pauser

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 MasterMinter

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

func (*MasterMinter) Descriptor

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

func (*MasterMinter) GetAddress

func (m *MasterMinter) GetAddress() string

func (*MasterMinter) Marshal

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

func (*MasterMinter) MarshalTo

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

func (*MasterMinter) MarshalToSizedBuffer

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

func (*MasterMinter) ProtoMessage

func (*MasterMinter) ProtoMessage()

func (*MasterMinter) Reset

func (m *MasterMinter) Reset()

func (*MasterMinter) Size

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

func (*MasterMinter) String

func (m *MasterMinter) String() string

func (*MasterMinter) Unmarshal

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

func (*MasterMinter) XXX_DiscardUnknown

func (m *MasterMinter) XXX_DiscardUnknown()

func (*MasterMinter) XXX_Marshal

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

func (*MasterMinter) XXX_Merge

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

func (*MasterMinter) XXX_Size

func (m *MasterMinter) XXX_Size() int

func (*MasterMinter) XXX_Unmarshal

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

type MinterController

type MinterController struct {
	Minter     string `protobuf:"bytes,1,opt,name=minter,proto3" json:"minter,omitempty"`
	Controller string `protobuf:"bytes,2,opt,name=controller,proto3" json:"controller,omitempty"`
}

func (*MinterController) Descriptor

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

func (*MinterController) GetController

func (m *MinterController) GetController() string

func (*MinterController) GetMinter

func (m *MinterController) GetMinter() string

func (*MinterController) Marshal

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

func (*MinterController) MarshalTo

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

func (*MinterController) MarshalToSizedBuffer

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

func (*MinterController) ProtoMessage

func (*MinterController) ProtoMessage()

func (*MinterController) Reset

func (m *MinterController) Reset()

func (*MinterController) Size

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

func (*MinterController) String

func (m *MinterController) String() string

func (*MinterController) Unmarshal

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

func (*MinterController) XXX_DiscardUnknown

func (m *MinterController) XXX_DiscardUnknown()

func (*MinterController) XXX_Marshal

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

func (*MinterController) XXX_Merge

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

func (*MinterController) XXX_Size

func (m *MinterController) XXX_Size() int

func (*MinterController) XXX_Unmarshal

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

type Minters

type Minters struct {
	Address   string     `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Allowance types.Coin `protobuf:"bytes,2,opt,name=allowance,proto3" json:"allowance"`
}

func (*Minters) Descriptor

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

func (*Minters) GetAddress

func (m *Minters) GetAddress() string

func (*Minters) GetAllowance

func (m *Minters) GetAllowance() types.Coin

func (*Minters) Marshal

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

func (*Minters) MarshalTo

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

func (*Minters) MarshalToSizedBuffer

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

func (*Minters) ProtoMessage

func (*Minters) ProtoMessage()

func (*Minters) Reset

func (m *Minters) Reset()

func (*Minters) Size

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

func (*Minters) String

func (m *Minters) String() string

func (*Minters) Unmarshal

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

func (*Minters) XXX_DiscardUnknown

func (m *Minters) XXX_DiscardUnknown()

func (*Minters) XXX_Marshal

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

func (*Minters) XXX_Merge

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

func (*Minters) XXX_Size

func (m *Minters) XXX_Size() int

func (*Minters) XXX_Unmarshal

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

type MintingDenom

type MintingDenom struct {
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*MintingDenom) Descriptor

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

func (*MintingDenom) GetDenom

func (m *MintingDenom) GetDenom() string

func (*MintingDenom) Marshal

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

func (*MintingDenom) MarshalTo

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

func (*MintingDenom) MarshalToSizedBuffer

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

func (*MintingDenom) ProtoMessage

func (*MintingDenom) ProtoMessage()

func (*MintingDenom) Reset

func (m *MintingDenom) Reset()

func (*MintingDenom) Size

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

func (*MintingDenom) String

func (m *MintingDenom) String() string

func (*MintingDenom) Unmarshal

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

func (*MintingDenom) XXX_DiscardUnknown

func (m *MintingDenom) XXX_DiscardUnknown()

func (*MintingDenom) XXX_Marshal

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

func (*MintingDenom) XXX_Merge

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

func (*MintingDenom) XXX_Size

func (m *MintingDenom) XXX_Size() int

func (*MintingDenom) XXX_Unmarshal

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

type MsgAcceptOwner

type MsgAcceptOwner struct {
	From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
}

func (*MsgAcceptOwner) Descriptor

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

func (*MsgAcceptOwner) Marshal

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

func (*MsgAcceptOwner) MarshalTo

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

func (*MsgAcceptOwner) MarshalToSizedBuffer

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

func (*MsgAcceptOwner) ProtoMessage

func (*MsgAcceptOwner) ProtoMessage()

func (*MsgAcceptOwner) Reset

func (m *MsgAcceptOwner) Reset()

func (*MsgAcceptOwner) Size

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

func (*MsgAcceptOwner) String

func (m *MsgAcceptOwner) String() string

func (*MsgAcceptOwner) Unmarshal

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

func (*MsgAcceptOwner) ValidateBasic

func (msg *MsgAcceptOwner) ValidateBasic() error

func (*MsgAcceptOwner) XXX_DiscardUnknown

func (m *MsgAcceptOwner) XXX_DiscardUnknown()

func (*MsgAcceptOwner) XXX_Marshal

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

func (*MsgAcceptOwner) XXX_Merge

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

func (*MsgAcceptOwner) XXX_Size

func (m *MsgAcceptOwner) XXX_Size() int

func (*MsgAcceptOwner) XXX_Unmarshal

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

type MsgAcceptOwnerResponse

type MsgAcceptOwnerResponse struct {
}

func (*MsgAcceptOwnerResponse) Descriptor

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

func (*MsgAcceptOwnerResponse) Marshal

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

func (*MsgAcceptOwnerResponse) MarshalTo

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

func (*MsgAcceptOwnerResponse) MarshalToSizedBuffer

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

func (*MsgAcceptOwnerResponse) ProtoMessage

func (*MsgAcceptOwnerResponse) ProtoMessage()

func (*MsgAcceptOwnerResponse) Reset

func (m *MsgAcceptOwnerResponse) Reset()

func (*MsgAcceptOwnerResponse) Size

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

func (*MsgAcceptOwnerResponse) String

func (m *MsgAcceptOwnerResponse) String() string

func (*MsgAcceptOwnerResponse) Unmarshal

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

func (*MsgAcceptOwnerResponse) XXX_DiscardUnknown

func (m *MsgAcceptOwnerResponse) XXX_DiscardUnknown()

func (*MsgAcceptOwnerResponse) XXX_Marshal

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

func (*MsgAcceptOwnerResponse) XXX_Merge

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

func (*MsgAcceptOwnerResponse) XXX_Size

func (m *MsgAcceptOwnerResponse) XXX_Size() int

func (*MsgAcceptOwnerResponse) XXX_Unmarshal

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

type MsgBlacklist

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

func (*MsgBlacklist) Descriptor

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

func (*MsgBlacklist) Marshal

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

func (*MsgBlacklist) MarshalTo

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

func (*MsgBlacklist) MarshalToSizedBuffer

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

func (*MsgBlacklist) ProtoMessage

func (*MsgBlacklist) ProtoMessage()

func (*MsgBlacklist) Reset

func (m *MsgBlacklist) Reset()

func (*MsgBlacklist) Size

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

func (*MsgBlacklist) String

func (m *MsgBlacklist) String() string

func (*MsgBlacklist) Unmarshal

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

func (*MsgBlacklist) ValidateBasic

func (msg *MsgBlacklist) ValidateBasic() error

func (*MsgBlacklist) XXX_DiscardUnknown

func (m *MsgBlacklist) XXX_DiscardUnknown()

func (*MsgBlacklist) XXX_Marshal

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

func (*MsgBlacklist) XXX_Merge

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

func (*MsgBlacklist) XXX_Size

func (m *MsgBlacklist) XXX_Size() int

func (*MsgBlacklist) XXX_Unmarshal

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

type MsgBlacklistResponse

type MsgBlacklistResponse struct {
}

func (*MsgBlacklistResponse) Descriptor

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

func (*MsgBlacklistResponse) Marshal

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

func (*MsgBlacklistResponse) MarshalTo

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

func (*MsgBlacklistResponse) MarshalToSizedBuffer

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

func (*MsgBlacklistResponse) ProtoMessage

func (*MsgBlacklistResponse) ProtoMessage()

func (*MsgBlacklistResponse) Reset

func (m *MsgBlacklistResponse) Reset()

func (*MsgBlacklistResponse) Size

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

func (*MsgBlacklistResponse) String

func (m *MsgBlacklistResponse) String() string

func (*MsgBlacklistResponse) Unmarshal

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

func (*MsgBlacklistResponse) XXX_DiscardUnknown

func (m *MsgBlacklistResponse) XXX_DiscardUnknown()

func (*MsgBlacklistResponse) XXX_Marshal

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

func (*MsgBlacklistResponse) XXX_Merge

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

func (*MsgBlacklistResponse) XXX_Size

func (m *MsgBlacklistResponse) XXX_Size() int

func (*MsgBlacklistResponse) XXX_Unmarshal

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

type MsgBurn

type MsgBurn struct {
	From   string     `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	Amount types.Coin `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount"`
}

func (*MsgBurn) Descriptor

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

func (*MsgBurn) Marshal

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

func (*MsgBurn) MarshalTo

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

func (*MsgBurn) MarshalToSizedBuffer

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

func (*MsgBurn) ProtoMessage

func (*MsgBurn) ProtoMessage()

func (*MsgBurn) Reset

func (m *MsgBurn) Reset()

func (*MsgBurn) Size

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

func (*MsgBurn) String

func (m *MsgBurn) String() string

func (*MsgBurn) Unmarshal

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

func (*MsgBurn) ValidateBasic

func (msg *MsgBurn) ValidateBasic() error

func (*MsgBurn) XXX_DiscardUnknown

func (m *MsgBurn) XXX_DiscardUnknown()

func (*MsgBurn) XXX_Marshal

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

func (*MsgBurn) XXX_Merge

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

func (*MsgBurn) XXX_Size

func (m *MsgBurn) XXX_Size() int

func (*MsgBurn) XXX_Unmarshal

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

type MsgBurnResponse

type MsgBurnResponse struct {
}

func (*MsgBurnResponse) Descriptor

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

func (*MsgBurnResponse) Marshal

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

func (*MsgBurnResponse) MarshalTo

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

func (*MsgBurnResponse) MarshalToSizedBuffer

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

func (*MsgBurnResponse) ProtoMessage

func (*MsgBurnResponse) ProtoMessage()

func (*MsgBurnResponse) Reset

func (m *MsgBurnResponse) Reset()

func (*MsgBurnResponse) Size

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

func (*MsgBurnResponse) String

func (m *MsgBurnResponse) String() string

func (*MsgBurnResponse) Unmarshal

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

func (*MsgBurnResponse) XXX_DiscardUnknown

func (m *MsgBurnResponse) XXX_DiscardUnknown()

func (*MsgBurnResponse) XXX_Marshal

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

func (*MsgBurnResponse) XXX_Merge

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

func (*MsgBurnResponse) XXX_Size

func (m *MsgBurnResponse) XXX_Size() int

func (*MsgBurnResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	UpdateMasterMinter(ctx context.Context, in *MsgUpdateMasterMinter, opts ...grpc.CallOption) (*MsgUpdateMasterMinterResponse, error)
	UpdatePauser(ctx context.Context, in *MsgUpdatePauser, opts ...grpc.CallOption) (*MsgUpdatePauserResponse, error)
	UpdateBlacklister(ctx context.Context, in *MsgUpdateBlacklister, opts ...grpc.CallOption) (*MsgUpdateBlacklisterResponse, error)
	UpdateOwner(ctx context.Context, in *MsgUpdateOwner, opts ...grpc.CallOption) (*MsgUpdateOwnerResponse, error)
	AcceptOwner(ctx context.Context, in *MsgAcceptOwner, opts ...grpc.CallOption) (*MsgAcceptOwnerResponse, error)
	ConfigureMinter(ctx context.Context, in *MsgConfigureMinter, opts ...grpc.CallOption) (*MsgConfigureMinterResponse, error)
	RemoveMinter(ctx context.Context, in *MsgRemoveMinter, opts ...grpc.CallOption) (*MsgRemoveMinterResponse, error)
	Mint(ctx context.Context, in *MsgMint, opts ...grpc.CallOption) (*MsgMintResponse, error)
	Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOption) (*MsgBurnResponse, error)
	Blacklist(ctx context.Context, in *MsgBlacklist, opts ...grpc.CallOption) (*MsgBlacklistResponse, error)
	Unblacklist(ctx context.Context, in *MsgUnblacklist, opts ...grpc.CallOption) (*MsgUnblacklistResponse, error)
	Pause(ctx context.Context, in *MsgPause, opts ...grpc.CallOption) (*MsgPauseResponse, error)
	Unpause(ctx context.Context, in *MsgUnpause, opts ...grpc.CallOption) (*MsgUnpauseResponse, error)
	ConfigureMinterController(ctx context.Context, in *MsgConfigureMinterController, opts ...grpc.CallOption) (*MsgConfigureMinterControllerResponse, error)
	RemoveMinterController(ctx context.Context, in *MsgRemoveMinterController, opts ...grpc.CallOption) (*MsgRemoveMinterControllerResponse, error)
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgConfigureMinter

type MsgConfigureMinter struct {
	From      string     `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	Address   string     `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Allowance types.Coin `protobuf:"bytes,3,opt,name=allowance,proto3" json:"allowance"`
}

func (*MsgConfigureMinter) Descriptor

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

func (*MsgConfigureMinter) Marshal

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

func (*MsgConfigureMinter) MarshalTo

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

func (*MsgConfigureMinter) MarshalToSizedBuffer

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

func (*MsgConfigureMinter) ProtoMessage

func (*MsgConfigureMinter) ProtoMessage()

func (*MsgConfigureMinter) Reset

func (m *MsgConfigureMinter) Reset()

func (*MsgConfigureMinter) Size

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

func (*MsgConfigureMinter) String

func (m *MsgConfigureMinter) String() string

func (*MsgConfigureMinter) Unmarshal

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

func (*MsgConfigureMinter) ValidateBasic

func (msg *MsgConfigureMinter) ValidateBasic() error

func (*MsgConfigureMinter) XXX_DiscardUnknown

func (m *MsgConfigureMinter) XXX_DiscardUnknown()

func (*MsgConfigureMinter) XXX_Marshal

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

func (*MsgConfigureMinter) XXX_Merge

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

func (*MsgConfigureMinter) XXX_Size

func (m *MsgConfigureMinter) XXX_Size() int

func (*MsgConfigureMinter) XXX_Unmarshal

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

type MsgConfigureMinterController

type MsgConfigureMinterController struct {
	From       string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	Controller string `protobuf:"bytes,2,opt,name=controller,proto3" json:"controller,omitempty"`
	Minter     string `protobuf:"bytes,3,opt,name=minter,proto3" json:"minter,omitempty"`
}

func (*MsgConfigureMinterController) Descriptor

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

func (*MsgConfigureMinterController) Marshal

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

func (*MsgConfigureMinterController) MarshalTo

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

func (*MsgConfigureMinterController) MarshalToSizedBuffer

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

func (*MsgConfigureMinterController) ProtoMessage

func (*MsgConfigureMinterController) ProtoMessage()

func (*MsgConfigureMinterController) Reset

func (m *MsgConfigureMinterController) Reset()

func (*MsgConfigureMinterController) Size

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

func (*MsgConfigureMinterController) String

func (*MsgConfigureMinterController) Unmarshal

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

func (*MsgConfigureMinterController) ValidateBasic

func (msg *MsgConfigureMinterController) ValidateBasic() error

func (*MsgConfigureMinterController) XXX_DiscardUnknown

func (m *MsgConfigureMinterController) XXX_DiscardUnknown()

func (*MsgConfigureMinterController) XXX_Marshal

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

func (*MsgConfigureMinterController) XXX_Merge

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

func (*MsgConfigureMinterController) XXX_Size

func (m *MsgConfigureMinterController) XXX_Size() int

func (*MsgConfigureMinterController) XXX_Unmarshal

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

type MsgConfigureMinterControllerResponse

type MsgConfigureMinterControllerResponse struct {
}

func (*MsgConfigureMinterControllerResponse) Descriptor

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

func (*MsgConfigureMinterControllerResponse) Marshal

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

func (*MsgConfigureMinterControllerResponse) MarshalTo

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

func (*MsgConfigureMinterControllerResponse) MarshalToSizedBuffer

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

func (*MsgConfigureMinterControllerResponse) ProtoMessage

func (*MsgConfigureMinterControllerResponse) ProtoMessage()

func (*MsgConfigureMinterControllerResponse) Reset

func (*MsgConfigureMinterControllerResponse) Size

func (*MsgConfigureMinterControllerResponse) String

func (*MsgConfigureMinterControllerResponse) Unmarshal

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

func (*MsgConfigureMinterControllerResponse) XXX_DiscardUnknown

func (m *MsgConfigureMinterControllerResponse) XXX_DiscardUnknown()

func (*MsgConfigureMinterControllerResponse) XXX_Marshal

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

func (*MsgConfigureMinterControllerResponse) XXX_Merge

func (*MsgConfigureMinterControllerResponse) XXX_Size

func (*MsgConfigureMinterControllerResponse) XXX_Unmarshal

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

type MsgConfigureMinterResponse

type MsgConfigureMinterResponse struct {
}

func (*MsgConfigureMinterResponse) Descriptor

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

func (*MsgConfigureMinterResponse) Marshal

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

func (*MsgConfigureMinterResponse) MarshalTo

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

func (*MsgConfigureMinterResponse) MarshalToSizedBuffer

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

func (*MsgConfigureMinterResponse) ProtoMessage

func (*MsgConfigureMinterResponse) ProtoMessage()

func (*MsgConfigureMinterResponse) Reset

func (m *MsgConfigureMinterResponse) Reset()

func (*MsgConfigureMinterResponse) Size

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

func (*MsgConfigureMinterResponse) String

func (m *MsgConfigureMinterResponse) String() string

func (*MsgConfigureMinterResponse) Unmarshal

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

func (*MsgConfigureMinterResponse) XXX_DiscardUnknown

func (m *MsgConfigureMinterResponse) XXX_DiscardUnknown()

func (*MsgConfigureMinterResponse) XXX_Marshal

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

func (*MsgConfigureMinterResponse) XXX_Merge

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

func (*MsgConfigureMinterResponse) XXX_Size

func (m *MsgConfigureMinterResponse) XXX_Size() int

func (*MsgConfigureMinterResponse) XXX_Unmarshal

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

type MsgMint

type MsgMint struct {
	From    string     `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	Address string     `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Amount  types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
}

func (*MsgMint) Descriptor

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

func (*MsgMint) Marshal

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

func (*MsgMint) MarshalTo

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

func (*MsgMint) MarshalToSizedBuffer

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

func (*MsgMint) ProtoMessage

func (*MsgMint) ProtoMessage()

func (*MsgMint) Reset

func (m *MsgMint) Reset()

func (*MsgMint) Size

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

func (*MsgMint) String

func (m *MsgMint) String() string

func (*MsgMint) Unmarshal

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

func (*MsgMint) ValidateBasic

func (msg *MsgMint) ValidateBasic() error

func (*MsgMint) XXX_DiscardUnknown

func (m *MsgMint) XXX_DiscardUnknown()

func (*MsgMint) XXX_Marshal

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

func (*MsgMint) XXX_Merge

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

func (*MsgMint) XXX_Size

func (m *MsgMint) XXX_Size() int

func (*MsgMint) XXX_Unmarshal

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

type MsgMintResponse

type MsgMintResponse struct {
}

func (*MsgMintResponse) Descriptor

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

func (*MsgMintResponse) Marshal

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

func (*MsgMintResponse) MarshalTo

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

func (*MsgMintResponse) MarshalToSizedBuffer

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

func (*MsgMintResponse) ProtoMessage

func (*MsgMintResponse) ProtoMessage()

func (*MsgMintResponse) Reset

func (m *MsgMintResponse) Reset()

func (*MsgMintResponse) Size

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

func (*MsgMintResponse) String

func (m *MsgMintResponse) String() string

func (*MsgMintResponse) Unmarshal

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

func (*MsgMintResponse) XXX_DiscardUnknown

func (m *MsgMintResponse) XXX_DiscardUnknown()

func (*MsgMintResponse) XXX_Marshal

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

func (*MsgMintResponse) XXX_Merge

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

func (*MsgMintResponse) XXX_Size

func (m *MsgMintResponse) XXX_Size() int

func (*MsgMintResponse) XXX_Unmarshal

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

type MsgPause

type MsgPause struct {
	From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
}

func (*MsgPause) Descriptor

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

func (*MsgPause) Marshal

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

func (*MsgPause) MarshalTo

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

func (*MsgPause) MarshalToSizedBuffer

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

func (*MsgPause) ProtoMessage

func (*MsgPause) ProtoMessage()

func (*MsgPause) Reset

func (m *MsgPause) Reset()

func (*MsgPause) Size

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

func (*MsgPause) String

func (m *MsgPause) String() string

func (*MsgPause) Unmarshal

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

func (*MsgPause) ValidateBasic

func (msg *MsgPause) ValidateBasic() error

func (*MsgPause) XXX_DiscardUnknown

func (m *MsgPause) XXX_DiscardUnknown()

func (*MsgPause) XXX_Marshal

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

func (*MsgPause) XXX_Merge

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

func (*MsgPause) XXX_Size

func (m *MsgPause) XXX_Size() int

func (*MsgPause) XXX_Unmarshal

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

type MsgPauseResponse

type MsgPauseResponse struct {
}

func (*MsgPauseResponse) Descriptor

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

func (*MsgPauseResponse) Marshal

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

func (*MsgPauseResponse) MarshalTo

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

func (*MsgPauseResponse) MarshalToSizedBuffer

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

func (*MsgPauseResponse) ProtoMessage

func (*MsgPauseResponse) ProtoMessage()

func (*MsgPauseResponse) Reset

func (m *MsgPauseResponse) Reset()

func (*MsgPauseResponse) Size

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

func (*MsgPauseResponse) String

func (m *MsgPauseResponse) String() string

func (*MsgPauseResponse) Unmarshal

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

func (*MsgPauseResponse) XXX_DiscardUnknown

func (m *MsgPauseResponse) XXX_DiscardUnknown()

func (*MsgPauseResponse) XXX_Marshal

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

func (*MsgPauseResponse) XXX_Merge

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

func (*MsgPauseResponse) XXX_Size

func (m *MsgPauseResponse) XXX_Size() int

func (*MsgPauseResponse) XXX_Unmarshal

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

type MsgRemoveMinter

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

func (*MsgRemoveMinter) Descriptor

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

func (*MsgRemoveMinter) Marshal

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

func (*MsgRemoveMinter) MarshalTo

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

func (*MsgRemoveMinter) MarshalToSizedBuffer

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

func (*MsgRemoveMinter) ProtoMessage

func (*MsgRemoveMinter) ProtoMessage()

func (*MsgRemoveMinter) Reset

func (m *MsgRemoveMinter) Reset()

func (*MsgRemoveMinter) Size

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

func (*MsgRemoveMinter) String

func (m *MsgRemoveMinter) String() string

func (*MsgRemoveMinter) Unmarshal

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

func (*MsgRemoveMinter) ValidateBasic

func (msg *MsgRemoveMinter) ValidateBasic() error

func (*MsgRemoveMinter) XXX_DiscardUnknown

func (m *MsgRemoveMinter) XXX_DiscardUnknown()

func (*MsgRemoveMinter) XXX_Marshal

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

func (*MsgRemoveMinter) XXX_Merge

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

func (*MsgRemoveMinter) XXX_Size

func (m *MsgRemoveMinter) XXX_Size() int

func (*MsgRemoveMinter) XXX_Unmarshal

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

type MsgRemoveMinterController

type MsgRemoveMinterController struct {
	From       string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	Controller string `protobuf:"bytes,2,opt,name=controller,proto3" json:"controller,omitempty"`
}

func (*MsgRemoveMinterController) Descriptor

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

func (*MsgRemoveMinterController) Marshal

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

func (*MsgRemoveMinterController) MarshalTo

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

func (*MsgRemoveMinterController) MarshalToSizedBuffer

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

func (*MsgRemoveMinterController) ProtoMessage

func (*MsgRemoveMinterController) ProtoMessage()

func (*MsgRemoveMinterController) Reset

func (m *MsgRemoveMinterController) Reset()

func (*MsgRemoveMinterController) Size

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

func (*MsgRemoveMinterController) String

func (m *MsgRemoveMinterController) String() string

func (*MsgRemoveMinterController) Unmarshal

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

func (*MsgRemoveMinterController) ValidateBasic

func (msg *MsgRemoveMinterController) ValidateBasic() error

func (*MsgRemoveMinterController) XXX_DiscardUnknown

func (m *MsgRemoveMinterController) XXX_DiscardUnknown()

func (*MsgRemoveMinterController) XXX_Marshal

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

func (*MsgRemoveMinterController) XXX_Merge

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

func (*MsgRemoveMinterController) XXX_Size

func (m *MsgRemoveMinterController) XXX_Size() int

func (*MsgRemoveMinterController) XXX_Unmarshal

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

type MsgRemoveMinterControllerResponse

type MsgRemoveMinterControllerResponse struct {
}

func (*MsgRemoveMinterControllerResponse) Descriptor

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

func (*MsgRemoveMinterControllerResponse) Marshal

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

func (*MsgRemoveMinterControllerResponse) MarshalTo

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

func (*MsgRemoveMinterControllerResponse) MarshalToSizedBuffer

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

func (*MsgRemoveMinterControllerResponse) ProtoMessage

func (*MsgRemoveMinterControllerResponse) ProtoMessage()

func (*MsgRemoveMinterControllerResponse) Reset

func (*MsgRemoveMinterControllerResponse) Size

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

func (*MsgRemoveMinterControllerResponse) String

func (*MsgRemoveMinterControllerResponse) Unmarshal

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

func (*MsgRemoveMinterControllerResponse) XXX_DiscardUnknown

func (m *MsgRemoveMinterControllerResponse) XXX_DiscardUnknown()

func (*MsgRemoveMinterControllerResponse) XXX_Marshal

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

func (*MsgRemoveMinterControllerResponse) XXX_Merge

func (*MsgRemoveMinterControllerResponse) XXX_Size

func (m *MsgRemoveMinterControllerResponse) XXX_Size() int

func (*MsgRemoveMinterControllerResponse) XXX_Unmarshal

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

type MsgRemoveMinterResponse

type MsgRemoveMinterResponse struct {
}

func (*MsgRemoveMinterResponse) Descriptor

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

func (*MsgRemoveMinterResponse) Marshal

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

func (*MsgRemoveMinterResponse) MarshalTo

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

func (*MsgRemoveMinterResponse) MarshalToSizedBuffer

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

func (*MsgRemoveMinterResponse) ProtoMessage

func (*MsgRemoveMinterResponse) ProtoMessage()

func (*MsgRemoveMinterResponse) Reset

func (m *MsgRemoveMinterResponse) Reset()

func (*MsgRemoveMinterResponse) Size

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

func (*MsgRemoveMinterResponse) String

func (m *MsgRemoveMinterResponse) String() string

func (*MsgRemoveMinterResponse) Unmarshal

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

func (*MsgRemoveMinterResponse) XXX_DiscardUnknown

func (m *MsgRemoveMinterResponse) XXX_DiscardUnknown()

func (*MsgRemoveMinterResponse) XXX_Marshal

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

func (*MsgRemoveMinterResponse) XXX_Merge

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

func (*MsgRemoveMinterResponse) XXX_Size

func (m *MsgRemoveMinterResponse) XXX_Size() int

func (*MsgRemoveMinterResponse) XXX_Unmarshal

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

type MsgUnblacklist

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

func (*MsgUnblacklist) Descriptor

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

func (*MsgUnblacklist) Marshal

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

func (*MsgUnblacklist) MarshalTo

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

func (*MsgUnblacklist) MarshalToSizedBuffer

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

func (*MsgUnblacklist) ProtoMessage

func (*MsgUnblacklist) ProtoMessage()

func (*MsgUnblacklist) Reset

func (m *MsgUnblacklist) Reset()

func (*MsgUnblacklist) Size

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

func (*MsgUnblacklist) String

func (m *MsgUnblacklist) String() string

func (*MsgUnblacklist) Unmarshal

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

func (*MsgUnblacklist) ValidateBasic

func (msg *MsgUnblacklist) ValidateBasic() error

func (*MsgUnblacklist) XXX_DiscardUnknown

func (m *MsgUnblacklist) XXX_DiscardUnknown()

func (*MsgUnblacklist) XXX_Marshal

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

func (*MsgUnblacklist) XXX_Merge

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

func (*MsgUnblacklist) XXX_Size

func (m *MsgUnblacklist) XXX_Size() int

func (*MsgUnblacklist) XXX_Unmarshal

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

type MsgUnblacklistResponse

type MsgUnblacklistResponse struct {
}

func (*MsgUnblacklistResponse) Descriptor

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

func (*MsgUnblacklistResponse) Marshal

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

func (*MsgUnblacklistResponse) MarshalTo

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

func (*MsgUnblacklistResponse) MarshalToSizedBuffer

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

func (*MsgUnblacklistResponse) ProtoMessage

func (*MsgUnblacklistResponse) ProtoMessage()

func (*MsgUnblacklistResponse) Reset

func (m *MsgUnblacklistResponse) Reset()

func (*MsgUnblacklistResponse) Size

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

func (*MsgUnblacklistResponse) String

func (m *MsgUnblacklistResponse) String() string

func (*MsgUnblacklistResponse) Unmarshal

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

func (*MsgUnblacklistResponse) XXX_DiscardUnknown

func (m *MsgUnblacklistResponse) XXX_DiscardUnknown()

func (*MsgUnblacklistResponse) XXX_Marshal

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

func (*MsgUnblacklistResponse) XXX_Merge

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

func (*MsgUnblacklistResponse) XXX_Size

func (m *MsgUnblacklistResponse) XXX_Size() int

func (*MsgUnblacklistResponse) XXX_Unmarshal

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

type MsgUnpause

type MsgUnpause struct {
	From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
}

func (*MsgUnpause) Descriptor

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

func (*MsgUnpause) Marshal

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

func (*MsgUnpause) MarshalTo

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

func (*MsgUnpause) MarshalToSizedBuffer

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

func (*MsgUnpause) ProtoMessage

func (*MsgUnpause) ProtoMessage()

func (*MsgUnpause) Reset

func (m *MsgUnpause) Reset()

func (*MsgUnpause) Size

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

func (*MsgUnpause) String

func (m *MsgUnpause) String() string

func (*MsgUnpause) Unmarshal

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

func (*MsgUnpause) ValidateBasic

func (msg *MsgUnpause) ValidateBasic() error

func (*MsgUnpause) XXX_DiscardUnknown

func (m *MsgUnpause) XXX_DiscardUnknown()

func (*MsgUnpause) XXX_Marshal

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

func (*MsgUnpause) XXX_Merge

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

func (*MsgUnpause) XXX_Size

func (m *MsgUnpause) XXX_Size() int

func (*MsgUnpause) XXX_Unmarshal

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

type MsgUnpauseResponse

type MsgUnpauseResponse struct {
}

func (*MsgUnpauseResponse) Descriptor

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

func (*MsgUnpauseResponse) Marshal

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

func (*MsgUnpauseResponse) MarshalTo

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

func (*MsgUnpauseResponse) MarshalToSizedBuffer

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

func (*MsgUnpauseResponse) ProtoMessage

func (*MsgUnpauseResponse) ProtoMessage()

func (*MsgUnpauseResponse) Reset

func (m *MsgUnpauseResponse) Reset()

func (*MsgUnpauseResponse) Size

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

func (*MsgUnpauseResponse) String

func (m *MsgUnpauseResponse) String() string

func (*MsgUnpauseResponse) Unmarshal

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

func (*MsgUnpauseResponse) XXX_DiscardUnknown

func (m *MsgUnpauseResponse) XXX_DiscardUnknown()

func (*MsgUnpauseResponse) XXX_Marshal

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

func (*MsgUnpauseResponse) XXX_Merge

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

func (*MsgUnpauseResponse) XXX_Size

func (m *MsgUnpauseResponse) XXX_Size() int

func (*MsgUnpauseResponse) XXX_Unmarshal

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

type MsgUpdateBlacklister

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

func (*MsgUpdateBlacklister) Descriptor

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

func (*MsgUpdateBlacklister) Marshal

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

func (*MsgUpdateBlacklister) MarshalTo

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

func (*MsgUpdateBlacklister) MarshalToSizedBuffer

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

func (*MsgUpdateBlacklister) ProtoMessage

func (*MsgUpdateBlacklister) ProtoMessage()

func (*MsgUpdateBlacklister) Reset

func (m *MsgUpdateBlacklister) Reset()

func (*MsgUpdateBlacklister) Size

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

func (*MsgUpdateBlacklister) String

func (m *MsgUpdateBlacklister) String() string

func (*MsgUpdateBlacklister) Unmarshal

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

func (*MsgUpdateBlacklister) ValidateBasic

func (msg *MsgUpdateBlacklister) ValidateBasic() error

func (*MsgUpdateBlacklister) XXX_DiscardUnknown

func (m *MsgUpdateBlacklister) XXX_DiscardUnknown()

func (*MsgUpdateBlacklister) XXX_Marshal

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

func (*MsgUpdateBlacklister) XXX_Merge

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

func (*MsgUpdateBlacklister) XXX_Size

func (m *MsgUpdateBlacklister) XXX_Size() int

func (*MsgUpdateBlacklister) XXX_Unmarshal

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

type MsgUpdateBlacklisterResponse

type MsgUpdateBlacklisterResponse struct {
}

func (*MsgUpdateBlacklisterResponse) Descriptor

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

func (*MsgUpdateBlacklisterResponse) Marshal

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

func (*MsgUpdateBlacklisterResponse) MarshalTo

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

func (*MsgUpdateBlacklisterResponse) MarshalToSizedBuffer

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

func (*MsgUpdateBlacklisterResponse) ProtoMessage

func (*MsgUpdateBlacklisterResponse) ProtoMessage()

func (*MsgUpdateBlacklisterResponse) Reset

func (m *MsgUpdateBlacklisterResponse) Reset()

func (*MsgUpdateBlacklisterResponse) Size

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

func (*MsgUpdateBlacklisterResponse) String

func (*MsgUpdateBlacklisterResponse) Unmarshal

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

func (*MsgUpdateBlacklisterResponse) XXX_DiscardUnknown

func (m *MsgUpdateBlacklisterResponse) XXX_DiscardUnknown()

func (*MsgUpdateBlacklisterResponse) XXX_Marshal

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

func (*MsgUpdateBlacklisterResponse) XXX_Merge

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

func (*MsgUpdateBlacklisterResponse) XXX_Size

func (m *MsgUpdateBlacklisterResponse) XXX_Size() int

func (*MsgUpdateBlacklisterResponse) XXX_Unmarshal

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

type MsgUpdateMasterMinter

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

func (*MsgUpdateMasterMinter) Descriptor

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

func (*MsgUpdateMasterMinter) Marshal

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

func (*MsgUpdateMasterMinter) MarshalTo

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

func (*MsgUpdateMasterMinter) MarshalToSizedBuffer

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

func (*MsgUpdateMasterMinter) ProtoMessage

func (*MsgUpdateMasterMinter) ProtoMessage()

func (*MsgUpdateMasterMinter) Reset

func (m *MsgUpdateMasterMinter) Reset()

func (*MsgUpdateMasterMinter) Size

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

func (*MsgUpdateMasterMinter) String

func (m *MsgUpdateMasterMinter) String() string

func (*MsgUpdateMasterMinter) Unmarshal

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

func (*MsgUpdateMasterMinter) ValidateBasic

func (msg *MsgUpdateMasterMinter) ValidateBasic() error

func (*MsgUpdateMasterMinter) XXX_DiscardUnknown

func (m *MsgUpdateMasterMinter) XXX_DiscardUnknown()

func (*MsgUpdateMasterMinter) XXX_Marshal

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

func (*MsgUpdateMasterMinter) XXX_Merge

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

func (*MsgUpdateMasterMinter) XXX_Size

func (m *MsgUpdateMasterMinter) XXX_Size() int

func (*MsgUpdateMasterMinter) XXX_Unmarshal

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

type MsgUpdateMasterMinterResponse

type MsgUpdateMasterMinterResponse struct {
}

func (*MsgUpdateMasterMinterResponse) Descriptor

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

func (*MsgUpdateMasterMinterResponse) Marshal

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

func (*MsgUpdateMasterMinterResponse) MarshalTo

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

func (*MsgUpdateMasterMinterResponse) MarshalToSizedBuffer

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

func (*MsgUpdateMasterMinterResponse) ProtoMessage

func (*MsgUpdateMasterMinterResponse) ProtoMessage()

func (*MsgUpdateMasterMinterResponse) Reset

func (m *MsgUpdateMasterMinterResponse) Reset()

func (*MsgUpdateMasterMinterResponse) Size

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

func (*MsgUpdateMasterMinterResponse) String

func (*MsgUpdateMasterMinterResponse) Unmarshal

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

func (*MsgUpdateMasterMinterResponse) XXX_DiscardUnknown

func (m *MsgUpdateMasterMinterResponse) XXX_DiscardUnknown()

func (*MsgUpdateMasterMinterResponse) XXX_Marshal

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

func (*MsgUpdateMasterMinterResponse) XXX_Merge

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

func (*MsgUpdateMasterMinterResponse) XXX_Size

func (m *MsgUpdateMasterMinterResponse) XXX_Size() int

func (*MsgUpdateMasterMinterResponse) XXX_Unmarshal

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

type MsgUpdateOwner

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

func (*MsgUpdateOwner) Descriptor

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

func (*MsgUpdateOwner) Marshal

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

func (*MsgUpdateOwner) MarshalTo

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

func (*MsgUpdateOwner) MarshalToSizedBuffer

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

func (*MsgUpdateOwner) ProtoMessage

func (*MsgUpdateOwner) ProtoMessage()

func (*MsgUpdateOwner) Reset

func (m *MsgUpdateOwner) Reset()

func (*MsgUpdateOwner) Size

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

func (*MsgUpdateOwner) String

func (m *MsgUpdateOwner) String() string

func (*MsgUpdateOwner) Unmarshal

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

func (*MsgUpdateOwner) ValidateBasic

func (msg *MsgUpdateOwner) ValidateBasic() error

func (*MsgUpdateOwner) XXX_DiscardUnknown

func (m *MsgUpdateOwner) XXX_DiscardUnknown()

func (*MsgUpdateOwner) XXX_Marshal

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

func (*MsgUpdateOwner) XXX_Merge

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

func (*MsgUpdateOwner) XXX_Size

func (m *MsgUpdateOwner) XXX_Size() int

func (*MsgUpdateOwner) XXX_Unmarshal

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

type MsgUpdateOwnerResponse

type MsgUpdateOwnerResponse struct {
}

func (*MsgUpdateOwnerResponse) Descriptor

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

func (*MsgUpdateOwnerResponse) Marshal

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

func (*MsgUpdateOwnerResponse) MarshalTo

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

func (*MsgUpdateOwnerResponse) MarshalToSizedBuffer

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

func (*MsgUpdateOwnerResponse) ProtoMessage

func (*MsgUpdateOwnerResponse) ProtoMessage()

func (*MsgUpdateOwnerResponse) Reset

func (m *MsgUpdateOwnerResponse) Reset()

func (*MsgUpdateOwnerResponse) Size

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

func (*MsgUpdateOwnerResponse) String

func (m *MsgUpdateOwnerResponse) String() string

func (*MsgUpdateOwnerResponse) Unmarshal

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

func (*MsgUpdateOwnerResponse) XXX_DiscardUnknown

func (m *MsgUpdateOwnerResponse) XXX_DiscardUnknown()

func (*MsgUpdateOwnerResponse) XXX_Marshal

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

func (*MsgUpdateOwnerResponse) XXX_Merge

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

func (*MsgUpdateOwnerResponse) XXX_Size

func (m *MsgUpdateOwnerResponse) XXX_Size() int

func (*MsgUpdateOwnerResponse) XXX_Unmarshal

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

type MsgUpdatePauser

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

func (*MsgUpdatePauser) Descriptor

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

func (*MsgUpdatePauser) Marshal

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

func (*MsgUpdatePauser) MarshalTo

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

func (*MsgUpdatePauser) MarshalToSizedBuffer

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

func (*MsgUpdatePauser) ProtoMessage

func (*MsgUpdatePauser) ProtoMessage()

func (*MsgUpdatePauser) Reset

func (m *MsgUpdatePauser) Reset()

func (*MsgUpdatePauser) Size

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

func (*MsgUpdatePauser) String

func (m *MsgUpdatePauser) String() string

func (*MsgUpdatePauser) Unmarshal

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

func (*MsgUpdatePauser) ValidateBasic

func (msg *MsgUpdatePauser) ValidateBasic() error

func (*MsgUpdatePauser) XXX_DiscardUnknown

func (m *MsgUpdatePauser) XXX_DiscardUnknown()

func (*MsgUpdatePauser) XXX_Marshal

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

func (*MsgUpdatePauser) XXX_Merge

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

func (*MsgUpdatePauser) XXX_Size

func (m *MsgUpdatePauser) XXX_Size() int

func (*MsgUpdatePauser) XXX_Unmarshal

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

type MsgUpdatePauserResponse

type MsgUpdatePauserResponse struct {
}

func (*MsgUpdatePauserResponse) Descriptor

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

func (*MsgUpdatePauserResponse) Marshal

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

func (*MsgUpdatePauserResponse) MarshalTo

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

func (*MsgUpdatePauserResponse) MarshalToSizedBuffer

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

func (*MsgUpdatePauserResponse) ProtoMessage

func (*MsgUpdatePauserResponse) ProtoMessage()

func (*MsgUpdatePauserResponse) Reset

func (m *MsgUpdatePauserResponse) Reset()

func (*MsgUpdatePauserResponse) Size

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

func (*MsgUpdatePauserResponse) String

func (m *MsgUpdatePauserResponse) String() string

func (*MsgUpdatePauserResponse) Unmarshal

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

func (*MsgUpdatePauserResponse) XXX_DiscardUnknown

func (m *MsgUpdatePauserResponse) XXX_DiscardUnknown()

func (*MsgUpdatePauserResponse) XXX_Marshal

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

func (*MsgUpdatePauserResponse) XXX_Merge

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

func (*MsgUpdatePauserResponse) XXX_Size

func (m *MsgUpdatePauserResponse) XXX_Size() int

func (*MsgUpdatePauserResponse) XXX_Unmarshal

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

type Owner

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

func (*Owner) Descriptor

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

func (*Owner) GetAddress

func (m *Owner) GetAddress() string

func (*Owner) Marshal

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

func (*Owner) MarshalTo

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

func (*Owner) MarshalToSizedBuffer

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

func (*Owner) ProtoMessage

func (*Owner) ProtoMessage()

func (*Owner) Reset

func (m *Owner) Reset()

func (*Owner) Size

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

func (*Owner) String

func (m *Owner) String() string

func (*Owner) Unmarshal

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

func (*Owner) XXX_DiscardUnknown

func (m *Owner) XXX_DiscardUnknown()

func (*Owner) XXX_Marshal

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

func (*Owner) XXX_Merge

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

func (*Owner) XXX_Size

func (m *Owner) XXX_Size() int

func (*Owner) XXX_Unmarshal

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

type Paused

type Paused struct {
	Paused bool `protobuf:"varint,1,opt,name=paused,proto3" json:"paused,omitempty"`
}

func (*Paused) Descriptor

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

func (*Paused) GetPaused

func (m *Paused) GetPaused() bool

func (*Paused) Marshal

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

func (*Paused) MarshalTo

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

func (*Paused) MarshalToSizedBuffer

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

func (*Paused) ProtoMessage

func (*Paused) ProtoMessage()

func (*Paused) Reset

func (m *Paused) Reset()

func (*Paused) Size

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

func (*Paused) String

func (m *Paused) String() string

func (*Paused) Unmarshal

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

func (*Paused) XXX_DiscardUnknown

func (m *Paused) XXX_DiscardUnknown()

func (*Paused) XXX_Marshal

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

func (*Paused) XXX_Merge

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

func (*Paused) XXX_Size

func (m *Paused) XXX_Size() int

func (*Paused) XXX_Unmarshal

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

type Pauser

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

func (*Pauser) Descriptor

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

func (*Pauser) GetAddress

func (m *Pauser) GetAddress() string

func (*Pauser) Marshal

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

func (*Pauser) MarshalTo

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

func (*Pauser) MarshalToSizedBuffer

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

func (*Pauser) ProtoMessage

func (*Pauser) ProtoMessage()

func (*Pauser) Reset

func (m *Pauser) Reset()

func (*Pauser) Size

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

func (*Pauser) String

func (m *Pauser) String() string

func (*Pauser) Unmarshal

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

func (*Pauser) XXX_DiscardUnknown

func (m *Pauser) XXX_DiscardUnknown()

func (*Pauser) XXX_Marshal

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

func (*Pauser) XXX_Merge

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

func (*Pauser) XXX_Size

func (m *Pauser) XXX_Size() int

func (*Pauser) XXX_Unmarshal

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

type QueryAllBlacklistedRequest

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

func (*QueryAllBlacklistedRequest) Descriptor

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

func (*QueryAllBlacklistedRequest) GetPagination

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

func (*QueryAllBlacklistedRequest) Marshal

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

func (*QueryAllBlacklistedRequest) MarshalTo

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

func (*QueryAllBlacklistedRequest) MarshalToSizedBuffer

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

func (*QueryAllBlacklistedRequest) ProtoMessage

func (*QueryAllBlacklistedRequest) ProtoMessage()

func (*QueryAllBlacklistedRequest) Reset

func (m *QueryAllBlacklistedRequest) Reset()

func (*QueryAllBlacklistedRequest) Size

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

func (*QueryAllBlacklistedRequest) String

func (m *QueryAllBlacklistedRequest) String() string

func (*QueryAllBlacklistedRequest) Unmarshal

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

func (*QueryAllBlacklistedRequest) XXX_DiscardUnknown

func (m *QueryAllBlacklistedRequest) XXX_DiscardUnknown()

func (*QueryAllBlacklistedRequest) XXX_Marshal

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

func (*QueryAllBlacklistedRequest) XXX_Merge

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

func (*QueryAllBlacklistedRequest) XXX_Size

func (m *QueryAllBlacklistedRequest) XXX_Size() int

func (*QueryAllBlacklistedRequest) XXX_Unmarshal

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

type QueryAllBlacklistedResponse

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

func (*QueryAllBlacklistedResponse) Descriptor

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

func (*QueryAllBlacklistedResponse) GetBlacklisted

func (m *QueryAllBlacklistedResponse) GetBlacklisted() []Blacklisted

func (*QueryAllBlacklistedResponse) GetPagination

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

func (*QueryAllBlacklistedResponse) Marshal

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

func (*QueryAllBlacklistedResponse) MarshalTo

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

func (*QueryAllBlacklistedResponse) MarshalToSizedBuffer

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

func (*QueryAllBlacklistedResponse) ProtoMessage

func (*QueryAllBlacklistedResponse) ProtoMessage()

func (*QueryAllBlacklistedResponse) Reset

func (m *QueryAllBlacklistedResponse) Reset()

func (*QueryAllBlacklistedResponse) Size

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

func (*QueryAllBlacklistedResponse) String

func (m *QueryAllBlacklistedResponse) String() string

func (*QueryAllBlacklistedResponse) Unmarshal

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

func (*QueryAllBlacklistedResponse) XXX_DiscardUnknown

func (m *QueryAllBlacklistedResponse) XXX_DiscardUnknown()

func (*QueryAllBlacklistedResponse) XXX_Marshal

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

func (*QueryAllBlacklistedResponse) XXX_Merge

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

func (*QueryAllBlacklistedResponse) XXX_Size

func (m *QueryAllBlacklistedResponse) XXX_Size() int

func (*QueryAllBlacklistedResponse) XXX_Unmarshal

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

type QueryAllMinterControllerRequest

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

func (*QueryAllMinterControllerRequest) Descriptor

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

func (*QueryAllMinterControllerRequest) GetPagination

func (*QueryAllMinterControllerRequest) Marshal

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

func (*QueryAllMinterControllerRequest) MarshalTo

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

func (*QueryAllMinterControllerRequest) MarshalToSizedBuffer

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

func (*QueryAllMinterControllerRequest) ProtoMessage

func (*QueryAllMinterControllerRequest) ProtoMessage()

func (*QueryAllMinterControllerRequest) Reset

func (*QueryAllMinterControllerRequest) Size

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

func (*QueryAllMinterControllerRequest) String

func (*QueryAllMinterControllerRequest) Unmarshal

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

func (*QueryAllMinterControllerRequest) XXX_DiscardUnknown

func (m *QueryAllMinterControllerRequest) XXX_DiscardUnknown()

func (*QueryAllMinterControllerRequest) XXX_Marshal

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

func (*QueryAllMinterControllerRequest) XXX_Merge

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

func (*QueryAllMinterControllerRequest) XXX_Size

func (m *QueryAllMinterControllerRequest) XXX_Size() int

func (*QueryAllMinterControllerRequest) XXX_Unmarshal

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

type QueryAllMinterControllerResponse

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

func (*QueryAllMinterControllerResponse) Descriptor

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

func (*QueryAllMinterControllerResponse) GetMinterController

func (m *QueryAllMinterControllerResponse) GetMinterController() []MinterController

func (*QueryAllMinterControllerResponse) GetPagination

func (*QueryAllMinterControllerResponse) Marshal

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

func (*QueryAllMinterControllerResponse) MarshalTo

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

func (*QueryAllMinterControllerResponse) MarshalToSizedBuffer

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

func (*QueryAllMinterControllerResponse) ProtoMessage

func (*QueryAllMinterControllerResponse) ProtoMessage()

func (*QueryAllMinterControllerResponse) Reset

func (*QueryAllMinterControllerResponse) Size

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

func (*QueryAllMinterControllerResponse) String

func (*QueryAllMinterControllerResponse) Unmarshal

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

func (*QueryAllMinterControllerResponse) XXX_DiscardUnknown

func (m *QueryAllMinterControllerResponse) XXX_DiscardUnknown()

func (*QueryAllMinterControllerResponse) XXX_Marshal

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

func (*QueryAllMinterControllerResponse) XXX_Merge

func (*QueryAllMinterControllerResponse) XXX_Size

func (m *QueryAllMinterControllerResponse) XXX_Size() int

func (*QueryAllMinterControllerResponse) XXX_Unmarshal

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

type QueryAllMintersRequest

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

func (*QueryAllMintersRequest) Descriptor

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

func (*QueryAllMintersRequest) GetPagination

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

func (*QueryAllMintersRequest) Marshal

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

func (*QueryAllMintersRequest) MarshalTo

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

func (*QueryAllMintersRequest) MarshalToSizedBuffer

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

func (*QueryAllMintersRequest) ProtoMessage

func (*QueryAllMintersRequest) ProtoMessage()

func (*QueryAllMintersRequest) Reset

func (m *QueryAllMintersRequest) Reset()

func (*QueryAllMintersRequest) Size

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

func (*QueryAllMintersRequest) String

func (m *QueryAllMintersRequest) String() string

func (*QueryAllMintersRequest) Unmarshal

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

func (*QueryAllMintersRequest) XXX_DiscardUnknown

func (m *QueryAllMintersRequest) XXX_DiscardUnknown()

func (*QueryAllMintersRequest) XXX_Marshal

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

func (*QueryAllMintersRequest) XXX_Merge

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

func (*QueryAllMintersRequest) XXX_Size

func (m *QueryAllMintersRequest) XXX_Size() int

func (*QueryAllMintersRequest) XXX_Unmarshal

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

type QueryAllMintersResponse

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

func (*QueryAllMintersResponse) Descriptor

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

func (*QueryAllMintersResponse) GetMinters

func (m *QueryAllMintersResponse) GetMinters() []Minters

func (*QueryAllMintersResponse) GetPagination

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

func (*QueryAllMintersResponse) Marshal

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

func (*QueryAllMintersResponse) MarshalTo

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

func (*QueryAllMintersResponse) MarshalToSizedBuffer

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

func (*QueryAllMintersResponse) ProtoMessage

func (*QueryAllMintersResponse) ProtoMessage()

func (*QueryAllMintersResponse) Reset

func (m *QueryAllMintersResponse) Reset()

func (*QueryAllMintersResponse) Size

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

func (*QueryAllMintersResponse) String

func (m *QueryAllMintersResponse) String() string

func (*QueryAllMintersResponse) Unmarshal

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

func (*QueryAllMintersResponse) XXX_DiscardUnknown

func (m *QueryAllMintersResponse) XXX_DiscardUnknown()

func (*QueryAllMintersResponse) XXX_Marshal

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

func (*QueryAllMintersResponse) XXX_Merge

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

func (*QueryAllMintersResponse) XXX_Size

func (m *QueryAllMintersResponse) XXX_Size() int

func (*QueryAllMintersResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Queries a Blacklisted by index.
	Blacklisted(ctx context.Context, in *QueryGetBlacklistedRequest, opts ...grpc.CallOption) (*QueryGetBlacklistedResponse, error)
	// Queries a list of Blacklisted items.
	BlacklistedAll(ctx context.Context, in *QueryAllBlacklistedRequest, opts ...grpc.CallOption) (*QueryAllBlacklistedResponse, error)
	// Queries a Paused by index.
	Paused(ctx context.Context, in *QueryGetPausedRequest, opts ...grpc.CallOption) (*QueryGetPausedResponse, error)
	// Queries a MasterMinter by index.
	MasterMinter(ctx context.Context, in *QueryGetMasterMinterRequest, opts ...grpc.CallOption) (*QueryGetMasterMinterResponse, error)
	// Queries a Minters by index.
	Minters(ctx context.Context, in *QueryGetMintersRequest, opts ...grpc.CallOption) (*QueryGetMintersResponse, error)
	// Queries a list of Minters items.
	MintersAll(ctx context.Context, in *QueryAllMintersRequest, opts ...grpc.CallOption) (*QueryAllMintersResponse, error)
	// Queries a Pauser by index.
	Pauser(ctx context.Context, in *QueryGetPauserRequest, opts ...grpc.CallOption) (*QueryGetPauserResponse, error)
	// Queries a Blacklister by index.
	Blacklister(ctx context.Context, in *QueryGetBlacklisterRequest, opts ...grpc.CallOption) (*QueryGetBlacklisterResponse, error)
	// Queries a Owner by index.
	Owner(ctx context.Context, in *QueryGetOwnerRequest, opts ...grpc.CallOption) (*QueryGetOwnerResponse, error)
	// Queries a MinterController by index.
	MinterController(ctx context.Context, in *QueryGetMinterControllerRequest, opts ...grpc.CallOption) (*QueryGetMinterControllerResponse, error)
	// Queries a list of MinterController items.
	MinterControllerAll(ctx context.Context, in *QueryAllMinterControllerRequest, opts ...grpc.CallOption) (*QueryAllMinterControllerResponse, error)
	// Queries a MintingDenom by index.
	MintingDenom(ctx context.Context, in *QueryGetMintingDenomRequest, opts ...grpc.CallOption) (*QueryGetMintingDenomResponse, 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 QueryGetBlacklistedRequest

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

func (*QueryGetBlacklistedRequest) Descriptor

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

func (*QueryGetBlacklistedRequest) GetAddress

func (m *QueryGetBlacklistedRequest) GetAddress() string

func (*QueryGetBlacklistedRequest) Marshal

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

func (*QueryGetBlacklistedRequest) MarshalTo

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

func (*QueryGetBlacklistedRequest) MarshalToSizedBuffer

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

func (*QueryGetBlacklistedRequest) ProtoMessage

func (*QueryGetBlacklistedRequest) ProtoMessage()

func (*QueryGetBlacklistedRequest) Reset

func (m *QueryGetBlacklistedRequest) Reset()

func (*QueryGetBlacklistedRequest) Size

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

func (*QueryGetBlacklistedRequest) String

func (m *QueryGetBlacklistedRequest) String() string

func (*QueryGetBlacklistedRequest) Unmarshal

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

func (*QueryGetBlacklistedRequest) XXX_DiscardUnknown

func (m *QueryGetBlacklistedRequest) XXX_DiscardUnknown()

func (*QueryGetBlacklistedRequest) XXX_Marshal

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

func (*QueryGetBlacklistedRequest) XXX_Merge

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

func (*QueryGetBlacklistedRequest) XXX_Size

func (m *QueryGetBlacklistedRequest) XXX_Size() int

func (*QueryGetBlacklistedRequest) XXX_Unmarshal

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

type QueryGetBlacklistedResponse

type QueryGetBlacklistedResponse struct {
	Blacklisted Blacklisted `protobuf:"bytes,1,opt,name=blacklisted,proto3" json:"blacklisted"`
}

func (*QueryGetBlacklistedResponse) Descriptor

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

func (*QueryGetBlacklistedResponse) GetBlacklisted

func (m *QueryGetBlacklistedResponse) GetBlacklisted() Blacklisted

func (*QueryGetBlacklistedResponse) Marshal

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

func (*QueryGetBlacklistedResponse) MarshalTo

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

func (*QueryGetBlacklistedResponse) MarshalToSizedBuffer

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

func (*QueryGetBlacklistedResponse) ProtoMessage

func (*QueryGetBlacklistedResponse) ProtoMessage()

func (*QueryGetBlacklistedResponse) Reset

func (m *QueryGetBlacklistedResponse) Reset()

func (*QueryGetBlacklistedResponse) Size

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

func (*QueryGetBlacklistedResponse) String

func (m *QueryGetBlacklistedResponse) String() string

func (*QueryGetBlacklistedResponse) Unmarshal

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

func (*QueryGetBlacklistedResponse) XXX_DiscardUnknown

func (m *QueryGetBlacklistedResponse) XXX_DiscardUnknown()

func (*QueryGetBlacklistedResponse) XXX_Marshal

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

func (*QueryGetBlacklistedResponse) XXX_Merge

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

func (*QueryGetBlacklistedResponse) XXX_Size

func (m *QueryGetBlacklistedResponse) XXX_Size() int

func (*QueryGetBlacklistedResponse) XXX_Unmarshal

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

type QueryGetBlacklisterRequest

type QueryGetBlacklisterRequest struct {
}

func (*QueryGetBlacklisterRequest) Descriptor

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

func (*QueryGetBlacklisterRequest) Marshal

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

func (*QueryGetBlacklisterRequest) MarshalTo

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

func (*QueryGetBlacklisterRequest) MarshalToSizedBuffer

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

func (*QueryGetBlacklisterRequest) ProtoMessage

func (*QueryGetBlacklisterRequest) ProtoMessage()

func (*QueryGetBlacklisterRequest) Reset

func (m *QueryGetBlacklisterRequest) Reset()

func (*QueryGetBlacklisterRequest) Size

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

func (*QueryGetBlacklisterRequest) String

func (m *QueryGetBlacklisterRequest) String() string

func (*QueryGetBlacklisterRequest) Unmarshal

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

func (*QueryGetBlacklisterRequest) XXX_DiscardUnknown

func (m *QueryGetBlacklisterRequest) XXX_DiscardUnknown()

func (*QueryGetBlacklisterRequest) XXX_Marshal

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

func (*QueryGetBlacklisterRequest) XXX_Merge

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

func (*QueryGetBlacklisterRequest) XXX_Size

func (m *QueryGetBlacklisterRequest) XXX_Size() int

func (*QueryGetBlacklisterRequest) XXX_Unmarshal

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

type QueryGetBlacklisterResponse

type QueryGetBlacklisterResponse struct {
	Blacklister Blacklister `protobuf:"bytes,1,opt,name=blacklister,proto3" json:"blacklister"`
}

func (*QueryGetBlacklisterResponse) Descriptor

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

func (*QueryGetBlacklisterResponse) GetBlacklister

func (m *QueryGetBlacklisterResponse) GetBlacklister() Blacklister

func (*QueryGetBlacklisterResponse) Marshal

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

func (*QueryGetBlacklisterResponse) MarshalTo

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

func (*QueryGetBlacklisterResponse) MarshalToSizedBuffer

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

func (*QueryGetBlacklisterResponse) ProtoMessage

func (*QueryGetBlacklisterResponse) ProtoMessage()

func (*QueryGetBlacklisterResponse) Reset

func (m *QueryGetBlacklisterResponse) Reset()

func (*QueryGetBlacklisterResponse) Size

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

func (*QueryGetBlacklisterResponse) String

func (m *QueryGetBlacklisterResponse) String() string

func (*QueryGetBlacklisterResponse) Unmarshal

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

func (*QueryGetBlacklisterResponse) XXX_DiscardUnknown

func (m *QueryGetBlacklisterResponse) XXX_DiscardUnknown()

func (*QueryGetBlacklisterResponse) XXX_Marshal

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

func (*QueryGetBlacklisterResponse) XXX_Merge

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

func (*QueryGetBlacklisterResponse) XXX_Size

func (m *QueryGetBlacklisterResponse) XXX_Size() int

func (*QueryGetBlacklisterResponse) XXX_Unmarshal

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

type QueryGetMasterMinterRequest

type QueryGetMasterMinterRequest struct {
}

func (*QueryGetMasterMinterRequest) Descriptor

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

func (*QueryGetMasterMinterRequest) Marshal

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

func (*QueryGetMasterMinterRequest) MarshalTo

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

func (*QueryGetMasterMinterRequest) MarshalToSizedBuffer

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

func (*QueryGetMasterMinterRequest) ProtoMessage

func (*QueryGetMasterMinterRequest) ProtoMessage()

func (*QueryGetMasterMinterRequest) Reset

func (m *QueryGetMasterMinterRequest) Reset()

func (*QueryGetMasterMinterRequest) Size

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

func (*QueryGetMasterMinterRequest) String

func (m *QueryGetMasterMinterRequest) String() string

func (*QueryGetMasterMinterRequest) Unmarshal

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

func (*QueryGetMasterMinterRequest) XXX_DiscardUnknown

func (m *QueryGetMasterMinterRequest) XXX_DiscardUnknown()

func (*QueryGetMasterMinterRequest) XXX_Marshal

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

func (*QueryGetMasterMinterRequest) XXX_Merge

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

func (*QueryGetMasterMinterRequest) XXX_Size

func (m *QueryGetMasterMinterRequest) XXX_Size() int

func (*QueryGetMasterMinterRequest) XXX_Unmarshal

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

type QueryGetMasterMinterResponse

type QueryGetMasterMinterResponse struct {
	MasterMinter MasterMinter `protobuf:"bytes,1,opt,name=masterMinter,proto3" json:"masterMinter"`
}

func (*QueryGetMasterMinterResponse) Descriptor

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

func (*QueryGetMasterMinterResponse) GetMasterMinter

func (m *QueryGetMasterMinterResponse) GetMasterMinter() MasterMinter

func (*QueryGetMasterMinterResponse) Marshal

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

func (*QueryGetMasterMinterResponse) MarshalTo

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

func (*QueryGetMasterMinterResponse) MarshalToSizedBuffer

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

func (*QueryGetMasterMinterResponse) ProtoMessage

func (*QueryGetMasterMinterResponse) ProtoMessage()

func (*QueryGetMasterMinterResponse) Reset

func (m *QueryGetMasterMinterResponse) Reset()

func (*QueryGetMasterMinterResponse) Size

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

func (*QueryGetMasterMinterResponse) String

func (*QueryGetMasterMinterResponse) Unmarshal

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

func (*QueryGetMasterMinterResponse) XXX_DiscardUnknown

func (m *QueryGetMasterMinterResponse) XXX_DiscardUnknown()

func (*QueryGetMasterMinterResponse) XXX_Marshal

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

func (*QueryGetMasterMinterResponse) XXX_Merge

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

func (*QueryGetMasterMinterResponse) XXX_Size

func (m *QueryGetMasterMinterResponse) XXX_Size() int

func (*QueryGetMasterMinterResponse) XXX_Unmarshal

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

type QueryGetMinterControllerRequest

type QueryGetMinterControllerRequest struct {
	ControllerAddress string `protobuf:"bytes,1,opt,name=controllerAddress,proto3" json:"controllerAddress,omitempty"`
}

func (*QueryGetMinterControllerRequest) Descriptor

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

func (*QueryGetMinterControllerRequest) GetControllerAddress

func (m *QueryGetMinterControllerRequest) GetControllerAddress() string

func (*QueryGetMinterControllerRequest) Marshal

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

func (*QueryGetMinterControllerRequest) MarshalTo

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

func (*QueryGetMinterControllerRequest) MarshalToSizedBuffer

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

func (*QueryGetMinterControllerRequest) ProtoMessage

func (*QueryGetMinterControllerRequest) ProtoMessage()

func (*QueryGetMinterControllerRequest) Reset

func (*QueryGetMinterControllerRequest) Size

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

func (*QueryGetMinterControllerRequest) String

func (*QueryGetMinterControllerRequest) Unmarshal

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

func (*QueryGetMinterControllerRequest) XXX_DiscardUnknown

func (m *QueryGetMinterControllerRequest) XXX_DiscardUnknown()

func (*QueryGetMinterControllerRequest) XXX_Marshal

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

func (*QueryGetMinterControllerRequest) XXX_Merge

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

func (*QueryGetMinterControllerRequest) XXX_Size

func (m *QueryGetMinterControllerRequest) XXX_Size() int

func (*QueryGetMinterControllerRequest) XXX_Unmarshal

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

type QueryGetMinterControllerResponse

type QueryGetMinterControllerResponse struct {
	MinterController MinterController `protobuf:"bytes,1,opt,name=minterController,proto3" json:"minterController"`
}

func (*QueryGetMinterControllerResponse) Descriptor

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

func (*QueryGetMinterControllerResponse) GetMinterController

func (m *QueryGetMinterControllerResponse) GetMinterController() MinterController

func (*QueryGetMinterControllerResponse) Marshal

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

func (*QueryGetMinterControllerResponse) MarshalTo

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

func (*QueryGetMinterControllerResponse) MarshalToSizedBuffer

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

func (*QueryGetMinterControllerResponse) ProtoMessage

func (*QueryGetMinterControllerResponse) ProtoMessage()

func (*QueryGetMinterControllerResponse) Reset

func (*QueryGetMinterControllerResponse) Size

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

func (*QueryGetMinterControllerResponse) String

func (*QueryGetMinterControllerResponse) Unmarshal

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

func (*QueryGetMinterControllerResponse) XXX_DiscardUnknown

func (m *QueryGetMinterControllerResponse) XXX_DiscardUnknown()

func (*QueryGetMinterControllerResponse) XXX_Marshal

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

func (*QueryGetMinterControllerResponse) XXX_Merge

func (*QueryGetMinterControllerResponse) XXX_Size

func (m *QueryGetMinterControllerResponse) XXX_Size() int

func (*QueryGetMinterControllerResponse) XXX_Unmarshal

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

type QueryGetMintersRequest

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

func (*QueryGetMintersRequest) Descriptor

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

func (*QueryGetMintersRequest) GetAddress

func (m *QueryGetMintersRequest) GetAddress() string

func (*QueryGetMintersRequest) Marshal

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

func (*QueryGetMintersRequest) MarshalTo

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

func (*QueryGetMintersRequest) MarshalToSizedBuffer

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

func (*QueryGetMintersRequest) ProtoMessage

func (*QueryGetMintersRequest) ProtoMessage()

func (*QueryGetMintersRequest) Reset

func (m *QueryGetMintersRequest) Reset()

func (*QueryGetMintersRequest) Size

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

func (*QueryGetMintersRequest) String

func (m *QueryGetMintersRequest) String() string

func (*QueryGetMintersRequest) Unmarshal

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

func (*QueryGetMintersRequest) XXX_DiscardUnknown

func (m *QueryGetMintersRequest) XXX_DiscardUnknown()

func (*QueryGetMintersRequest) XXX_Marshal

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

func (*QueryGetMintersRequest) XXX_Merge

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

func (*QueryGetMintersRequest) XXX_Size

func (m *QueryGetMintersRequest) XXX_Size() int

func (*QueryGetMintersRequest) XXX_Unmarshal

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

type QueryGetMintersResponse

type QueryGetMintersResponse struct {
	Minters Minters `protobuf:"bytes,1,opt,name=minters,proto3" json:"minters"`
}

func (*QueryGetMintersResponse) Descriptor

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

func (*QueryGetMintersResponse) GetMinters

func (m *QueryGetMintersResponse) GetMinters() Minters

func (*QueryGetMintersResponse) Marshal

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

func (*QueryGetMintersResponse) MarshalTo

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

func (*QueryGetMintersResponse) MarshalToSizedBuffer

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

func (*QueryGetMintersResponse) ProtoMessage

func (*QueryGetMintersResponse) ProtoMessage()

func (*QueryGetMintersResponse) Reset

func (m *QueryGetMintersResponse) Reset()

func (*QueryGetMintersResponse) Size

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

func (*QueryGetMintersResponse) String

func (m *QueryGetMintersResponse) String() string

func (*QueryGetMintersResponse) Unmarshal

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

func (*QueryGetMintersResponse) XXX_DiscardUnknown

func (m *QueryGetMintersResponse) XXX_DiscardUnknown()

func (*QueryGetMintersResponse) XXX_Marshal

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

func (*QueryGetMintersResponse) XXX_Merge

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

func (*QueryGetMintersResponse) XXX_Size

func (m *QueryGetMintersResponse) XXX_Size() int

func (*QueryGetMintersResponse) XXX_Unmarshal

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

type QueryGetMintingDenomRequest

type QueryGetMintingDenomRequest struct {
}

func (*QueryGetMintingDenomRequest) Descriptor

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

func (*QueryGetMintingDenomRequest) Marshal

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

func (*QueryGetMintingDenomRequest) MarshalTo

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

func (*QueryGetMintingDenomRequest) MarshalToSizedBuffer

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

func (*QueryGetMintingDenomRequest) ProtoMessage

func (*QueryGetMintingDenomRequest) ProtoMessage()

func (*QueryGetMintingDenomRequest) Reset

func (m *QueryGetMintingDenomRequest) Reset()

func (*QueryGetMintingDenomRequest) Size

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

func (*QueryGetMintingDenomRequest) String

func (m *QueryGetMintingDenomRequest) String() string

func (*QueryGetMintingDenomRequest) Unmarshal

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

func (*QueryGetMintingDenomRequest) XXX_DiscardUnknown

func (m *QueryGetMintingDenomRequest) XXX_DiscardUnknown()

func (*QueryGetMintingDenomRequest) XXX_Marshal

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

func (*QueryGetMintingDenomRequest) XXX_Merge

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

func (*QueryGetMintingDenomRequest) XXX_Size

func (m *QueryGetMintingDenomRequest) XXX_Size() int

func (*QueryGetMintingDenomRequest) XXX_Unmarshal

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

type QueryGetMintingDenomResponse

type QueryGetMintingDenomResponse struct {
	MintingDenom MintingDenom `protobuf:"bytes,1,opt,name=mintingDenom,proto3" json:"mintingDenom"`
}

func (*QueryGetMintingDenomResponse) Descriptor

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

func (*QueryGetMintingDenomResponse) GetMintingDenom

func (m *QueryGetMintingDenomResponse) GetMintingDenom() MintingDenom

func (*QueryGetMintingDenomResponse) Marshal

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

func (*QueryGetMintingDenomResponse) MarshalTo

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

func (*QueryGetMintingDenomResponse) MarshalToSizedBuffer

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

func (*QueryGetMintingDenomResponse) ProtoMessage

func (*QueryGetMintingDenomResponse) ProtoMessage()

func (*QueryGetMintingDenomResponse) Reset

func (m *QueryGetMintingDenomResponse) Reset()

func (*QueryGetMintingDenomResponse) Size

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

func (*QueryGetMintingDenomResponse) String

func (*QueryGetMintingDenomResponse) Unmarshal

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

func (*QueryGetMintingDenomResponse) XXX_DiscardUnknown

func (m *QueryGetMintingDenomResponse) XXX_DiscardUnknown()

func (*QueryGetMintingDenomResponse) XXX_Marshal

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

func (*QueryGetMintingDenomResponse) XXX_Merge

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

func (*QueryGetMintingDenomResponse) XXX_Size

func (m *QueryGetMintingDenomResponse) XXX_Size() int

func (*QueryGetMintingDenomResponse) XXX_Unmarshal

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

type QueryGetOwnerRequest

type QueryGetOwnerRequest struct {
}

func (*QueryGetOwnerRequest) Descriptor

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

func (*QueryGetOwnerRequest) Marshal

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

func (*QueryGetOwnerRequest) MarshalTo

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

func (*QueryGetOwnerRequest) MarshalToSizedBuffer

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

func (*QueryGetOwnerRequest) ProtoMessage

func (*QueryGetOwnerRequest) ProtoMessage()

func (*QueryGetOwnerRequest) Reset

func (m *QueryGetOwnerRequest) Reset()

func (*QueryGetOwnerRequest) Size

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

func (*QueryGetOwnerRequest) String

func (m *QueryGetOwnerRequest) String() string

func (*QueryGetOwnerRequest) Unmarshal

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

func (*QueryGetOwnerRequest) XXX_DiscardUnknown

func (m *QueryGetOwnerRequest) XXX_DiscardUnknown()

func (*QueryGetOwnerRequest) XXX_Marshal

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

func (*QueryGetOwnerRequest) XXX_Merge

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

func (*QueryGetOwnerRequest) XXX_Size

func (m *QueryGetOwnerRequest) XXX_Size() int

func (*QueryGetOwnerRequest) XXX_Unmarshal

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

type QueryGetOwnerResponse

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

func (*QueryGetOwnerResponse) Descriptor

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

func (*QueryGetOwnerResponse) GetOwner

func (m *QueryGetOwnerResponse) GetOwner() Owner

func (*QueryGetOwnerResponse) Marshal

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

func (*QueryGetOwnerResponse) MarshalTo

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

func (*QueryGetOwnerResponse) MarshalToSizedBuffer

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

func (*QueryGetOwnerResponse) ProtoMessage

func (*QueryGetOwnerResponse) ProtoMessage()

func (*QueryGetOwnerResponse) Reset

func (m *QueryGetOwnerResponse) Reset()

func (*QueryGetOwnerResponse) Size

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

func (*QueryGetOwnerResponse) String

func (m *QueryGetOwnerResponse) String() string

func (*QueryGetOwnerResponse) Unmarshal

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

func (*QueryGetOwnerResponse) XXX_DiscardUnknown

func (m *QueryGetOwnerResponse) XXX_DiscardUnknown()

func (*QueryGetOwnerResponse) XXX_Marshal

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

func (*QueryGetOwnerResponse) XXX_Merge

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

func (*QueryGetOwnerResponse) XXX_Size

func (m *QueryGetOwnerResponse) XXX_Size() int

func (*QueryGetOwnerResponse) XXX_Unmarshal

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

type QueryGetPausedRequest

type QueryGetPausedRequest struct {
}

func (*QueryGetPausedRequest) Descriptor

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

func (*QueryGetPausedRequest) Marshal

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

func (*QueryGetPausedRequest) MarshalTo

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

func (*QueryGetPausedRequest) MarshalToSizedBuffer

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

func (*QueryGetPausedRequest) ProtoMessage

func (*QueryGetPausedRequest) ProtoMessage()

func (*QueryGetPausedRequest) Reset

func (m *QueryGetPausedRequest) Reset()

func (*QueryGetPausedRequest) Size

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

func (*QueryGetPausedRequest) String

func (m *QueryGetPausedRequest) String() string

func (*QueryGetPausedRequest) Unmarshal

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

func (*QueryGetPausedRequest) XXX_DiscardUnknown

func (m *QueryGetPausedRequest) XXX_DiscardUnknown()

func (*QueryGetPausedRequest) XXX_Marshal

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

func (*QueryGetPausedRequest) XXX_Merge

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

func (*QueryGetPausedRequest) XXX_Size

func (m *QueryGetPausedRequest) XXX_Size() int

func (*QueryGetPausedRequest) XXX_Unmarshal

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

type QueryGetPausedResponse

type QueryGetPausedResponse struct {
	Paused Paused `protobuf:"bytes,1,opt,name=paused,proto3" json:"paused"`
}

func (*QueryGetPausedResponse) Descriptor

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

func (*QueryGetPausedResponse) GetPaused

func (m *QueryGetPausedResponse) GetPaused() Paused

func (*QueryGetPausedResponse) Marshal

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

func (*QueryGetPausedResponse) MarshalTo

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

func (*QueryGetPausedResponse) MarshalToSizedBuffer

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

func (*QueryGetPausedResponse) ProtoMessage

func (*QueryGetPausedResponse) ProtoMessage()

func (*QueryGetPausedResponse) Reset

func (m *QueryGetPausedResponse) Reset()

func (*QueryGetPausedResponse) Size

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

func (*QueryGetPausedResponse) String

func (m *QueryGetPausedResponse) String() string

func (*QueryGetPausedResponse) Unmarshal

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

func (*QueryGetPausedResponse) XXX_DiscardUnknown

func (m *QueryGetPausedResponse) XXX_DiscardUnknown()

func (*QueryGetPausedResponse) XXX_Marshal

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

func (*QueryGetPausedResponse) XXX_Merge

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

func (*QueryGetPausedResponse) XXX_Size

func (m *QueryGetPausedResponse) XXX_Size() int

func (*QueryGetPausedResponse) XXX_Unmarshal

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

type QueryGetPauserRequest

type QueryGetPauserRequest struct {
}

func (*QueryGetPauserRequest) Descriptor

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

func (*QueryGetPauserRequest) Marshal

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

func (*QueryGetPauserRequest) MarshalTo

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

func (*QueryGetPauserRequest) MarshalToSizedBuffer

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

func (*QueryGetPauserRequest) ProtoMessage

func (*QueryGetPauserRequest) ProtoMessage()

func (*QueryGetPauserRequest) Reset

func (m *QueryGetPauserRequest) Reset()

func (*QueryGetPauserRequest) Size

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

func (*QueryGetPauserRequest) String

func (m *QueryGetPauserRequest) String() string

func (*QueryGetPauserRequest) Unmarshal

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

func (*QueryGetPauserRequest) XXX_DiscardUnknown

func (m *QueryGetPauserRequest) XXX_DiscardUnknown()

func (*QueryGetPauserRequest) XXX_Marshal

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

func (*QueryGetPauserRequest) XXX_Merge

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

func (*QueryGetPauserRequest) XXX_Size

func (m *QueryGetPauserRequest) XXX_Size() int

func (*QueryGetPauserRequest) XXX_Unmarshal

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

type QueryGetPauserResponse

type QueryGetPauserResponse struct {
	Pauser Pauser `protobuf:"bytes,1,opt,name=pauser,proto3" json:"pauser"`
}

func (*QueryGetPauserResponse) Descriptor

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

func (*QueryGetPauserResponse) GetPauser

func (m *QueryGetPauserResponse) GetPauser() Pauser

func (*QueryGetPauserResponse) Marshal

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

func (*QueryGetPauserResponse) MarshalTo

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

func (*QueryGetPauserResponse) MarshalToSizedBuffer

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

func (*QueryGetPauserResponse) ProtoMessage

func (*QueryGetPauserResponse) ProtoMessage()

func (*QueryGetPauserResponse) Reset

func (m *QueryGetPauserResponse) Reset()

func (*QueryGetPauserResponse) Size

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

func (*QueryGetPauserResponse) String

func (m *QueryGetPauserResponse) String() string

func (*QueryGetPauserResponse) Unmarshal

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

func (*QueryGetPauserResponse) XXX_DiscardUnknown

func (m *QueryGetPauserResponse) XXX_DiscardUnknown()

func (*QueryGetPauserResponse) XXX_Marshal

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

func (*QueryGetPauserResponse) XXX_Merge

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

func (*QueryGetPauserResponse) XXX_Size

func (m *QueryGetPauserResponse) XXX_Size() int

func (*QueryGetPauserResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Queries a Blacklisted by index.
	Blacklisted(context.Context, *QueryGetBlacklistedRequest) (*QueryGetBlacklistedResponse, error)
	// Queries a list of Blacklisted items.
	BlacklistedAll(context.Context, *QueryAllBlacklistedRequest) (*QueryAllBlacklistedResponse, error)
	// Queries a Paused by index.
	Paused(context.Context, *QueryGetPausedRequest) (*QueryGetPausedResponse, error)
	// Queries a MasterMinter by index.
	MasterMinter(context.Context, *QueryGetMasterMinterRequest) (*QueryGetMasterMinterResponse, error)
	// Queries a Minters by index.
	Minters(context.Context, *QueryGetMintersRequest) (*QueryGetMintersResponse, error)
	// Queries a list of Minters items.
	MintersAll(context.Context, *QueryAllMintersRequest) (*QueryAllMintersResponse, error)
	// Queries a Pauser by index.
	Pauser(context.Context, *QueryGetPauserRequest) (*QueryGetPauserResponse, error)
	// Queries a Blacklister by index.
	Blacklister(context.Context, *QueryGetBlacklisterRequest) (*QueryGetBlacklisterResponse, error)
	// Queries a Owner by index.
	Owner(context.Context, *QueryGetOwnerRequest) (*QueryGetOwnerResponse, error)
	// Queries a MinterController by index.
	MinterController(context.Context, *QueryGetMinterControllerRequest) (*QueryGetMinterControllerResponse, error)
	// Queries a list of MinterController items.
	MinterControllerAll(context.Context, *QueryAllMinterControllerRequest) (*QueryAllMinterControllerResponse, error)
	// Queries a MintingDenom by index.
	MintingDenom(context.Context, *QueryGetMintingDenomRequest) (*QueryGetMintingDenomResponse, 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) AcceptOwner

func (*UnimplementedMsgServer) Blacklist

func (*UnimplementedMsgServer) Burn

func (*UnimplementedMsgServer) ConfigureMinter

func (*UnimplementedMsgServer) ConfigureMinterController

func (*UnimplementedMsgServer) Mint

func (*UnimplementedMsgServer) Pause

func (*UnimplementedMsgServer) RemoveMinter

func (*UnimplementedMsgServer) RemoveMinterController

func (*UnimplementedMsgServer) Unblacklist

func (*UnimplementedMsgServer) Unpause

func (*UnimplementedMsgServer) UpdateBlacklister

func (*UnimplementedMsgServer) UpdateMasterMinter

func (*UnimplementedMsgServer) UpdateOwner

func (*UnimplementedMsgServer) UpdatePauser

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Blacklisted

func (*UnimplementedQueryServer) BlacklistedAll

func (*UnimplementedQueryServer) Blacklister

func (*UnimplementedQueryServer) MasterMinter

func (*UnimplementedQueryServer) MinterControllerAll

func (*UnimplementedQueryServer) Minters

func (*UnimplementedQueryServer) MintersAll

func (*UnimplementedQueryServer) MintingDenom

func (*UnimplementedQueryServer) Owner

func (*UnimplementedQueryServer) Paused

func (*UnimplementedQueryServer) Pauser

Jump to

Keyboard shortcuts

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