types

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Sep 11, 2024 License: Apache-2.0 Imports: 28 Imported by: 2

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const ModuleName = "florin"

Variables

View Source
var (
	ErrNoAuthority           = errors.Register(ModuleName, 1, "there is no authority")
	ErrInvalidAuthority      = errors.Register(ModuleName, 2, "signer is not authority")
	ErrInvalidDenom          = errors.Register(ModuleName, 3, "denom is already in use")
	ErrNoOwner               = errors.Register(ModuleName, 4, "there is no owner")
	ErrSameOwner             = errors.Register(ModuleName, 5, "provided owner is the current owner")
	ErrInvalidOwner          = errors.Register(ModuleName, 6, "signer is not owner")
	ErrNoPendingOwner        = errors.Register(ModuleName, 7, "there is no pending owner")
	ErrInvalidPendingOwner   = errors.Register(ModuleName, 8, "signer is not pending owner")
	ErrInvalidSystem         = errors.Register(ModuleName, 9, "signer is not a system")
	ErrInvalidAdmin          = errors.Register(ModuleName, 10, "signer is not an admin")
	ErrInvalidAllowance      = errors.Register(ModuleName, 11, "allowance cannot be negative or greater than max")
	ErrInsufficientAllowance = errors.Register(ModuleName, 12, "insufficient allowance")
	ErrNoPubKey              = errors.Register(ModuleName, 13, "there is no public key")
	ErrInvalidSignature      = errors.Register(ModuleName, 14, "invalid signature")
)
View Source
var (
	ErrInvalidLengthEvents        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvents          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	AuthorityKey           = []byte("authority")
	AllowedDenomPrefix     = []byte("allowed_denom/")
	OwnerPrefix            = []byte("owner/")
	PendingOwnerPrefix     = []byte("pending_owner/")
	SystemPrefix           = []byte("system/")
	AdminPrefix            = []byte("admin/")
	MintAllowancePrefix    = []byte("mint_allowance/")
	MaxMintAllowancePrefix = []byte("max_mint_allowance/")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ModuleCdc = codec.NewAminoCodec(amino)
)

Functions

func AdminKey

func AdminKey(denom string, address string) []byte

func AllowedDenomKey

func AllowedDenomKey(denom string) []byte

func MaxMintAllowanceKey

func MaxMintAllowanceKey(denom string) []byte

func MintAllowanceKey

func MintAllowanceKey(denom string, address string) []byte

func OwnerKey

func OwnerKey(denom string) []byte

func PendingOwnerKey

func PendingOwnerKey(denom string) []byte

func RegisterInterfaces

func RegisterInterfaces(registry codectypes.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)

func SystemKey

func SystemKey(denom string, address string) []byte

Types

type Account

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

func (*Account) Descriptor

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

func (*Account) GetAddress

func (m *Account) GetAddress() string

func (*Account) GetDenom

func (m *Account) GetDenom() string

func (*Account) Marshal

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

func (*Account) MarshalTo

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

func (*Account) MarshalToSizedBuffer

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

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) Reset

func (m *Account) Reset()

func (*Account) Size

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

func (*Account) String

func (m *Account) String() string

func (*Account) Unmarshal

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

func (*Account) XXX_DiscardUnknown

func (m *Account) XXX_DiscardUnknown()

func (*Account) XXX_Marshal

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

func (*Account) XXX_Merge

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

func (*Account) XXX_Size

func (m *Account) XXX_Size() int

func (*Account) XXX_Unmarshal

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

type AccountKeeper

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

type AdminAccountAdded

type AdminAccountAdded struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// account is the address that was added.
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
}

Emitted when admin account is added.

func (*AdminAccountAdded) Descriptor

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

func (*AdminAccountAdded) GetAccount

func (m *AdminAccountAdded) GetAccount() string

func (*AdminAccountAdded) GetDenom

func (m *AdminAccountAdded) GetDenom() string

func (*AdminAccountAdded) Marshal

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

func (*AdminAccountAdded) MarshalTo

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

func (*AdminAccountAdded) MarshalToSizedBuffer

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

func (*AdminAccountAdded) ProtoMessage

func (*AdminAccountAdded) ProtoMessage()

func (*AdminAccountAdded) Reset

func (m *AdminAccountAdded) Reset()

func (*AdminAccountAdded) Size

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

func (*AdminAccountAdded) String

func (m *AdminAccountAdded) String() string

func (*AdminAccountAdded) Unmarshal

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

func (*AdminAccountAdded) XXX_DiscardUnknown

func (m *AdminAccountAdded) XXX_DiscardUnknown()

func (*AdminAccountAdded) XXX_Marshal

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

func (*AdminAccountAdded) XXX_Merge

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

func (*AdminAccountAdded) XXX_Size

func (m *AdminAccountAdded) XXX_Size() int

func (*AdminAccountAdded) XXX_Unmarshal

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

type AdminAccountRemoved

type AdminAccountRemoved struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// account is the address that was removed.
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
}

Emitted when admin account is removed.

func (*AdminAccountRemoved) Descriptor

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

func (*AdminAccountRemoved) GetAccount

func (m *AdminAccountRemoved) GetAccount() string

func (*AdminAccountRemoved) GetDenom

func (m *AdminAccountRemoved) GetDenom() string

func (*AdminAccountRemoved) Marshal

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

func (*AdminAccountRemoved) MarshalTo

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

func (*AdminAccountRemoved) MarshalToSizedBuffer

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

func (*AdminAccountRemoved) ProtoMessage

func (*AdminAccountRemoved) ProtoMessage()

func (*AdminAccountRemoved) Reset

func (m *AdminAccountRemoved) Reset()

func (*AdminAccountRemoved) Size

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

func (*AdminAccountRemoved) String

func (m *AdminAccountRemoved) String() string

func (*AdminAccountRemoved) Unmarshal

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

func (*AdminAccountRemoved) XXX_DiscardUnknown

func (m *AdminAccountRemoved) XXX_DiscardUnknown()

func (*AdminAccountRemoved) XXX_Marshal

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

func (*AdminAccountRemoved) XXX_Merge

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

func (*AdminAccountRemoved) XXX_Size

func (m *AdminAccountRemoved) XXX_Size() int

func (*AdminAccountRemoved) XXX_Unmarshal

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

type Allowance

type Allowance struct {
	Denom     string                                 `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Address   string                                 `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Allowance github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=allowance,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"allowance"`
}

func (*Allowance) Descriptor

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

func (*Allowance) GetAddress

func (m *Allowance) GetAddress() string

func (*Allowance) GetDenom

func (m *Allowance) GetDenom() string

func (*Allowance) Marshal

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

func (*Allowance) MarshalTo

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

func (*Allowance) MarshalToSizedBuffer

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

func (*Allowance) ProtoMessage

func (*Allowance) ProtoMessage()

func (*Allowance) Reset

func (m *Allowance) Reset()

func (*Allowance) Size

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

func (*Allowance) String

func (m *Allowance) String() string

func (*Allowance) Unmarshal

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

func (*Allowance) XXX_DiscardUnknown

func (m *Allowance) XXX_DiscardUnknown()

func (*Allowance) XXX_Marshal

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

func (*Allowance) XXX_Merge

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

func (*Allowance) XXX_Size

func (m *Allowance) XXX_Size() int

func (*Allowance) XXX_Unmarshal

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

type BankKeeper

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

type DenomAllowed

type DenomAllowed struct {
	// denom is the denom that was allowed.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// owner is the address of the initial owner.
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
}

Emitted when a denom is allowed.

func (*DenomAllowed) Descriptor

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

func (*DenomAllowed) GetDenom

func (m *DenomAllowed) GetDenom() string

func (*DenomAllowed) GetOwner

func (m *DenomAllowed) GetOwner() string

func (*DenomAllowed) Marshal

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

func (*DenomAllowed) MarshalTo

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

func (*DenomAllowed) MarshalToSizedBuffer

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

func (*DenomAllowed) ProtoMessage

func (*DenomAllowed) ProtoMessage()

func (*DenomAllowed) Reset

func (m *DenomAllowed) Reset()

func (*DenomAllowed) Size

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

func (*DenomAllowed) String

func (m *DenomAllowed) String() string

func (*DenomAllowed) Unmarshal

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

func (*DenomAllowed) XXX_DiscardUnknown

func (m *DenomAllowed) XXX_DiscardUnknown()

func (*DenomAllowed) XXX_Marshal

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

func (*DenomAllowed) XXX_Merge

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

func (*DenomAllowed) XXX_Size

func (m *DenomAllowed) XXX_Size() int

func (*DenomAllowed) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	// blacklist_state is the genesis state of the blacklist submodule.
	BlacklistState blacklist.GenesisState `protobuf:"bytes,1,opt,name=blacklist_state,json=blacklistState,proto3" json:"blacklist_state"`
	// authority is the address that controls allowed denoms of this module.
	Authority string `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"`
	// allowed_denoms is a unique list of denoms that this module is allowed to burn / mint / etc.
	AllowedDenoms []string `protobuf:"bytes,3,rep,name=allowed_denoms,json=allowedDenoms,proto3" json:"allowed_denoms,omitempty"`
	// owners is a mapping between denoms and owner addresses for those tokens.
	Owners map[string]string `` /* 153-byte string literal not displayed */
	// pending_owners is the mapping between denoms and pending owner addresses.
	PendingOwners map[string]string `` /* 188-byte string literal not displayed */
	// systems is the list of addresses that can act as the system.
	Systems []Account `protobuf:"bytes,6,rep,name=systems,proto3" json:"systems"`
	// admins is the list of addresses that can act as the admin.
	Admins []Account `protobuf:"bytes,7,rep,name=admins,proto3" json:"admins"`
	// mint_allowances is a list of system accounts and their mint allowances.
	MintAllowances []Allowance `protobuf:"bytes,8,rep,name=mint_allowances,json=mintAllowances,proto3" json:"mint_allowances"`
	// max_mint_allowances is a mapping between denoms and max mint allowances.
	MaxMintAllowances map[string]string `` /* 202-byte string literal not displayed */
}

func DefaultGenesisState

func DefaultGenesisState() *GenesisState

func (*GenesisState) Descriptor

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

func (*GenesisState) GetAdmins

func (m *GenesisState) GetAdmins() []Account

func (*GenesisState) GetAllowedDenoms

func (m *GenesisState) GetAllowedDenoms() []string

func (*GenesisState) GetAuthority

func (m *GenesisState) GetAuthority() string

func (*GenesisState) GetBlacklistState

func (m *GenesisState) GetBlacklistState() blacklist.GenesisState

func (*GenesisState) GetMaxMintAllowances

func (m *GenesisState) GetMaxMintAllowances() map[string]string

func (*GenesisState) GetMintAllowances

func (m *GenesisState) GetMintAllowances() []Allowance

func (*GenesisState) GetOwners

func (m *GenesisState) GetOwners() map[string]string

func (*GenesisState) GetPendingOwners

func (m *GenesisState) GetPendingOwners() map[string]string

func (*GenesisState) GetSystems

func (m *GenesisState) GetSystems() []Account

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

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 MaxMintAllowance

type MaxMintAllowance struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// amount is the max allowance that was set.
	Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

Emitted when max allowance is set.

func (*MaxMintAllowance) Descriptor

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

func (*MaxMintAllowance) GetDenom

func (m *MaxMintAllowance) GetDenom() string

func (*MaxMintAllowance) Marshal

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

func (*MaxMintAllowance) MarshalTo

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

func (*MaxMintAllowance) MarshalToSizedBuffer

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

func (*MaxMintAllowance) ProtoMessage

func (*MaxMintAllowance) ProtoMessage()

func (*MaxMintAllowance) Reset

func (m *MaxMintAllowance) Reset()

func (*MaxMintAllowance) Size

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

func (*MaxMintAllowance) String

func (m *MaxMintAllowance) String() string

func (*MaxMintAllowance) Unmarshal

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

func (*MaxMintAllowance) XXX_DiscardUnknown

func (m *MaxMintAllowance) XXX_DiscardUnknown()

func (*MaxMintAllowance) XXX_Marshal

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

func (*MaxMintAllowance) XXX_Merge

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

func (*MaxMintAllowance) XXX_Size

func (m *MaxMintAllowance) XXX_Size() int

func (*MaxMintAllowance) XXX_Unmarshal

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

type MintAllowance

type MintAllowance struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// account is the address whose allowance was set.
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
	// amount is the allowance that was set.
	Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

Emitted when allowance is set.

func (*MintAllowance) Descriptor

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

func (*MintAllowance) GetAccount

func (m *MintAllowance) GetAccount() string

func (*MintAllowance) GetDenom

func (m *MintAllowance) GetDenom() string

func (*MintAllowance) Marshal

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

func (*MintAllowance) MarshalTo

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

func (*MintAllowance) MarshalToSizedBuffer

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

func (*MintAllowance) ProtoMessage

func (*MintAllowance) ProtoMessage()

func (*MintAllowance) Reset

func (m *MintAllowance) Reset()

func (*MintAllowance) Size

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

func (*MintAllowance) String

func (m *MintAllowance) String() string

func (*MintAllowance) Unmarshal

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

func (*MintAllowance) XXX_DiscardUnknown

func (m *MintAllowance) XXX_DiscardUnknown()

func (*MintAllowance) XXX_Marshal

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

func (*MintAllowance) XXX_Merge

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

func (*MintAllowance) XXX_Size

func (m *MintAllowance) XXX_Size() int

func (*MintAllowance) XXX_Unmarshal

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

type MsgAcceptOwnership

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

MsgAcceptOwnership implements the acceptOwnership (0x79ba5097) method.

func (*MsgAcceptOwnership) Descriptor

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

func (*MsgAcceptOwnership) GetSignBytes

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

func (*MsgAcceptOwnership) GetSigners

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

func (*MsgAcceptOwnership) Marshal

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

func (*MsgAcceptOwnership) MarshalTo

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

func (*MsgAcceptOwnership) MarshalToSizedBuffer

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

func (*MsgAcceptOwnership) ProtoMessage

func (*MsgAcceptOwnership) ProtoMessage()

func (*MsgAcceptOwnership) Reset

func (m *MsgAcceptOwnership) Reset()

func (*MsgAcceptOwnership) Route

func (*MsgAcceptOwnership) Route() string

func (*MsgAcceptOwnership) Size

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

func (*MsgAcceptOwnership) String

func (m *MsgAcceptOwnership) String() string

func (*MsgAcceptOwnership) Type

func (*MsgAcceptOwnership) Type() string

func (*MsgAcceptOwnership) Unmarshal

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

func (*MsgAcceptOwnership) ValidateBasic

func (msg *MsgAcceptOwnership) ValidateBasic() error

func (*MsgAcceptOwnership) XXX_DiscardUnknown

func (m *MsgAcceptOwnership) XXX_DiscardUnknown()

func (*MsgAcceptOwnership) XXX_Marshal

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

func (*MsgAcceptOwnership) XXX_Merge

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

func (*MsgAcceptOwnership) XXX_Size

func (m *MsgAcceptOwnership) XXX_Size() int

func (*MsgAcceptOwnership) XXX_Unmarshal

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

type MsgAcceptOwnershipResponse

type MsgAcceptOwnershipResponse struct {
}

MsgAcceptOwnershipResponse is the response of the AcceptOwnership action.

func (*MsgAcceptOwnershipResponse) Descriptor

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

func (*MsgAcceptOwnershipResponse) Marshal

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

func (*MsgAcceptOwnershipResponse) MarshalTo

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

func (*MsgAcceptOwnershipResponse) MarshalToSizedBuffer

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

func (*MsgAcceptOwnershipResponse) ProtoMessage

func (*MsgAcceptOwnershipResponse) ProtoMessage()

func (*MsgAcceptOwnershipResponse) Reset

func (m *MsgAcceptOwnershipResponse) Reset()

func (*MsgAcceptOwnershipResponse) Size

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

func (*MsgAcceptOwnershipResponse) String

func (m *MsgAcceptOwnershipResponse) String() string

func (*MsgAcceptOwnershipResponse) Unmarshal

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

func (*MsgAcceptOwnershipResponse) XXX_DiscardUnknown

func (m *MsgAcceptOwnershipResponse) XXX_DiscardUnknown()

func (*MsgAcceptOwnershipResponse) XXX_Marshal

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

func (*MsgAcceptOwnershipResponse) XXX_Merge

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

func (*MsgAcceptOwnershipResponse) XXX_Size

func (m *MsgAcceptOwnershipResponse) XXX_Size() int

func (*MsgAcceptOwnershipResponse) XXX_Unmarshal

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

type MsgAddAdminAccount

type MsgAddAdminAccount struct {
	Denom   string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer  string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
}

MsgAddAdminAccount implements the addAdminAccount (0x4fe57e7a) method.

func (*MsgAddAdminAccount) Descriptor

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

func (*MsgAddAdminAccount) GetSignBytes

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

func (*MsgAddAdminAccount) GetSigners

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

func (*MsgAddAdminAccount) Marshal

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

func (*MsgAddAdminAccount) MarshalTo

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

func (*MsgAddAdminAccount) MarshalToSizedBuffer

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

func (*MsgAddAdminAccount) ProtoMessage

func (*MsgAddAdminAccount) ProtoMessage()

func (*MsgAddAdminAccount) Reset

func (m *MsgAddAdminAccount) Reset()

func (*MsgAddAdminAccount) Route

func (*MsgAddAdminAccount) Route() string

func (*MsgAddAdminAccount) Size

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

func (*MsgAddAdminAccount) String

func (m *MsgAddAdminAccount) String() string

func (*MsgAddAdminAccount) Type

func (*MsgAddAdminAccount) Type() string

func (*MsgAddAdminAccount) Unmarshal

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

func (*MsgAddAdminAccount) ValidateBasic

func (msg *MsgAddAdminAccount) ValidateBasic() error

func (*MsgAddAdminAccount) XXX_DiscardUnknown

func (m *MsgAddAdminAccount) XXX_DiscardUnknown()

func (*MsgAddAdminAccount) XXX_Marshal

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

func (*MsgAddAdminAccount) XXX_Merge

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

func (*MsgAddAdminAccount) XXX_Size

func (m *MsgAddAdminAccount) XXX_Size() int

func (*MsgAddAdminAccount) XXX_Unmarshal

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

type MsgAddAdminAccountResponse

type MsgAddAdminAccountResponse struct {
}

MsgAddAdminAccountResponse is the response of the AddAminAccount action.

func (*MsgAddAdminAccountResponse) Descriptor

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

func (*MsgAddAdminAccountResponse) Marshal

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

func (*MsgAddAdminAccountResponse) MarshalTo

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

func (*MsgAddAdminAccountResponse) MarshalToSizedBuffer

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

func (*MsgAddAdminAccountResponse) ProtoMessage

func (*MsgAddAdminAccountResponse) ProtoMessage()

func (*MsgAddAdminAccountResponse) Reset

func (m *MsgAddAdminAccountResponse) Reset()

func (*MsgAddAdminAccountResponse) Size

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

func (*MsgAddAdminAccountResponse) String

func (m *MsgAddAdminAccountResponse) String() string

func (*MsgAddAdminAccountResponse) Unmarshal

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

func (*MsgAddAdminAccountResponse) XXX_DiscardUnknown

func (m *MsgAddAdminAccountResponse) XXX_DiscardUnknown()

func (*MsgAddAdminAccountResponse) XXX_Marshal

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

func (*MsgAddAdminAccountResponse) XXX_Merge

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

func (*MsgAddAdminAccountResponse) XXX_Size

func (m *MsgAddAdminAccountResponse) XXX_Size() int

func (*MsgAddAdminAccountResponse) XXX_Unmarshal

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

type MsgAddSystemAccount

type MsgAddSystemAccount struct {
	Denom   string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer  string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
}

MsgAddSystemAccount implements the addSystemAccount (0xa84c56d0) method.

func (*MsgAddSystemAccount) Descriptor

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

func (*MsgAddSystemAccount) GetSignBytes

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

func (*MsgAddSystemAccount) GetSigners

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

func (*MsgAddSystemAccount) Marshal

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

func (*MsgAddSystemAccount) MarshalTo

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

func (*MsgAddSystemAccount) MarshalToSizedBuffer

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

func (*MsgAddSystemAccount) ProtoMessage

func (*MsgAddSystemAccount) ProtoMessage()

func (*MsgAddSystemAccount) Reset

func (m *MsgAddSystemAccount) Reset()

func (*MsgAddSystemAccount) Route

func (*MsgAddSystemAccount) Route() string

func (*MsgAddSystemAccount) Size

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

func (*MsgAddSystemAccount) String

func (m *MsgAddSystemAccount) String() string

func (*MsgAddSystemAccount) Type

func (*MsgAddSystemAccount) Type() string

func (*MsgAddSystemAccount) Unmarshal

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

func (*MsgAddSystemAccount) ValidateBasic

func (msg *MsgAddSystemAccount) ValidateBasic() error

func (*MsgAddSystemAccount) XXX_DiscardUnknown

func (m *MsgAddSystemAccount) XXX_DiscardUnknown()

func (*MsgAddSystemAccount) XXX_Marshal

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

func (*MsgAddSystemAccount) XXX_Merge

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

func (*MsgAddSystemAccount) XXX_Size

func (m *MsgAddSystemAccount) XXX_Size() int

func (*MsgAddSystemAccount) XXX_Unmarshal

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

type MsgAddSystemAccountResponse

type MsgAddSystemAccountResponse struct {
}

MsgAddSystemAccountResponse is the response of the AddSystemAccount action.

func (*MsgAddSystemAccountResponse) Descriptor

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

func (*MsgAddSystemAccountResponse) Marshal

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

func (*MsgAddSystemAccountResponse) MarshalTo

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

func (*MsgAddSystemAccountResponse) MarshalToSizedBuffer

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

func (*MsgAddSystemAccountResponse) ProtoMessage

func (*MsgAddSystemAccountResponse) ProtoMessage()

func (*MsgAddSystemAccountResponse) Reset

func (m *MsgAddSystemAccountResponse) Reset()

func (*MsgAddSystemAccountResponse) Size

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

func (*MsgAddSystemAccountResponse) String

func (m *MsgAddSystemAccountResponse) String() string

func (*MsgAddSystemAccountResponse) Unmarshal

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

func (*MsgAddSystemAccountResponse) XXX_DiscardUnknown

func (m *MsgAddSystemAccountResponse) XXX_DiscardUnknown()

func (*MsgAddSystemAccountResponse) XXX_Marshal

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

func (*MsgAddSystemAccountResponse) XXX_Merge

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

func (*MsgAddSystemAccountResponse) XXX_Size

func (m *MsgAddSystemAccountResponse) XXX_Size() int

func (*MsgAddSystemAccountResponse) XXX_Unmarshal

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

type MsgAllowDenom

type MsgAllowDenom struct {
	Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Denom  string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
	Owner  string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
}

MsgAllowDenom is the request of the AllowDenom action.

func (*MsgAllowDenom) Descriptor

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

func (*MsgAllowDenom) GetSignBytes

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

func (*MsgAllowDenom) GetSigners

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

func (*MsgAllowDenom) Marshal

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

func (*MsgAllowDenom) MarshalTo

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

func (*MsgAllowDenom) MarshalToSizedBuffer

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

func (*MsgAllowDenom) ProtoMessage

func (*MsgAllowDenom) ProtoMessage()

func (*MsgAllowDenom) Reset

func (m *MsgAllowDenom) Reset()

func (*MsgAllowDenom) Route

func (*MsgAllowDenom) Route() string

func (*MsgAllowDenom) Size

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

func (*MsgAllowDenom) String

func (m *MsgAllowDenom) String() string

func (*MsgAllowDenom) Type

func (*MsgAllowDenom) Type() string

func (*MsgAllowDenom) Unmarshal

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

func (*MsgAllowDenom) ValidateBasic

func (msg *MsgAllowDenom) ValidateBasic() error

func (*MsgAllowDenom) XXX_DiscardUnknown

func (m *MsgAllowDenom) XXX_DiscardUnknown()

func (*MsgAllowDenom) XXX_Marshal

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

func (*MsgAllowDenom) XXX_Merge

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

func (*MsgAllowDenom) XXX_Size

func (m *MsgAllowDenom) XXX_Size() int

func (*MsgAllowDenom) XXX_Unmarshal

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

type MsgAllowDenomResponse

type MsgAllowDenomResponse struct {
}

MsgAllowDenomResponse is the response of the AllowDenom action.

func (*MsgAllowDenomResponse) Descriptor

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

func (*MsgAllowDenomResponse) Marshal

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

func (*MsgAllowDenomResponse) MarshalTo

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

func (*MsgAllowDenomResponse) MarshalToSizedBuffer

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

func (*MsgAllowDenomResponse) ProtoMessage

func (*MsgAllowDenomResponse) ProtoMessage()

func (*MsgAllowDenomResponse) Reset

func (m *MsgAllowDenomResponse) Reset()

func (*MsgAllowDenomResponse) Size

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

func (*MsgAllowDenomResponse) String

func (m *MsgAllowDenomResponse) String() string

func (*MsgAllowDenomResponse) Unmarshal

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

func (*MsgAllowDenomResponse) XXX_DiscardUnknown

func (m *MsgAllowDenomResponse) XXX_DiscardUnknown()

func (*MsgAllowDenomResponse) XXX_Marshal

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

func (*MsgAllowDenomResponse) XXX_Merge

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

func (*MsgAllowDenomResponse) XXX_Size

func (m *MsgAllowDenomResponse) XXX_Size() int

func (*MsgAllowDenomResponse) XXX_Unmarshal

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

type MsgBurn

type MsgBurn struct {
	Denom     string                                 `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer    string                                 `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	From      string                                 `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`
	Amount    github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
	Signature []byte                                 `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
}

MsgBurn implements the burn (0x8d1247ba) method.

func (*MsgBurn) Descriptor

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

func (*MsgBurn) GetSignBytes

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

func (*MsgBurn) GetSigners

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

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

func (*MsgBurn) Route() string

func (*MsgBurn) Size

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

func (*MsgBurn) String

func (m *MsgBurn) String() string

func (*MsgBurn) Type

func (*MsgBurn) Type() 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 {
}

MsgBurnResponse is the response of the Burn action.

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

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 MsgMint

type MsgMint struct {
	Denom  string                                 `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer string                                 `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	To     string                                 `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

MsgMint implements the mint (0x40c10f19) method.

func (*MsgMint) Descriptor

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

func (*MsgMint) GetSignBytes

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

func (*MsgMint) GetSigners

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

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

func (*MsgMint) Route() string

func (*MsgMint) Size

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

func (*MsgMint) String

func (m *MsgMint) String() string

func (*MsgMint) Type

func (*MsgMint) Type() 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 {
}

MsgMintResponse is the response of the Mint action.

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 MsgRecover

type MsgRecover struct {
	Denom     string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer    string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	From      string `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`
	To        string `protobuf:"bytes,4,opt,name=to,proto3" json:"to,omitempty"`
	Signature []byte `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
}

MsgRecover implements the recover (0x6eb4c609) method.

func (*MsgRecover) Descriptor

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

func (*MsgRecover) GetSignBytes

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

func (*MsgRecover) GetSigners

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

func (*MsgRecover) Marshal

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

func (*MsgRecover) MarshalTo

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

func (*MsgRecover) MarshalToSizedBuffer

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

func (*MsgRecover) ProtoMessage

func (*MsgRecover) ProtoMessage()

func (*MsgRecover) Reset

func (m *MsgRecover) Reset()

func (*MsgRecover) Route

func (*MsgRecover) Route() string

func (*MsgRecover) Size

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

func (*MsgRecover) String

func (m *MsgRecover) String() string

func (*MsgRecover) Type

func (*MsgRecover) Type() string

func (*MsgRecover) Unmarshal

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

func (*MsgRecover) ValidateBasic

func (msg *MsgRecover) ValidateBasic() error

func (*MsgRecover) XXX_DiscardUnknown

func (m *MsgRecover) XXX_DiscardUnknown()

func (*MsgRecover) XXX_Marshal

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

func (*MsgRecover) XXX_Merge

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

func (*MsgRecover) XXX_Size

func (m *MsgRecover) XXX_Size() int

func (*MsgRecover) XXX_Unmarshal

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

type MsgRecoverResponse

type MsgRecoverResponse struct {
}

MsgRecoverResponse is the response of the Recover action.

func (*MsgRecoverResponse) Descriptor

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

func (*MsgRecoverResponse) Marshal

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

func (*MsgRecoverResponse) MarshalTo

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

func (*MsgRecoverResponse) MarshalToSizedBuffer

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

func (*MsgRecoverResponse) ProtoMessage

func (*MsgRecoverResponse) ProtoMessage()

func (*MsgRecoverResponse) Reset

func (m *MsgRecoverResponse) Reset()

func (*MsgRecoverResponse) Size

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

func (*MsgRecoverResponse) String

func (m *MsgRecoverResponse) String() string

func (*MsgRecoverResponse) Unmarshal

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

func (*MsgRecoverResponse) XXX_DiscardUnknown

func (m *MsgRecoverResponse) XXX_DiscardUnknown()

func (*MsgRecoverResponse) XXX_Marshal

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

func (*MsgRecoverResponse) XXX_Merge

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

func (*MsgRecoverResponse) XXX_Size

func (m *MsgRecoverResponse) XXX_Size() int

func (*MsgRecoverResponse) XXX_Unmarshal

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

type MsgRemoveAdminAccount

type MsgRemoveAdminAccount struct {
	Denom   string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer  string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
}

MsgRemoveAdminAccount implements the removeAdminAccount (0x67a89a72) method.

func (*MsgRemoveAdminAccount) Descriptor

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

func (*MsgRemoveAdminAccount) GetSignBytes

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

func (*MsgRemoveAdminAccount) GetSigners

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

func (*MsgRemoveAdminAccount) Marshal

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

func (*MsgRemoveAdminAccount) MarshalTo

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

func (*MsgRemoveAdminAccount) MarshalToSizedBuffer

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

func (*MsgRemoveAdminAccount) ProtoMessage

func (*MsgRemoveAdminAccount) ProtoMessage()

func (*MsgRemoveAdminAccount) Reset

func (m *MsgRemoveAdminAccount) Reset()

func (*MsgRemoveAdminAccount) Route

func (*MsgRemoveAdminAccount) Route() string

func (*MsgRemoveAdminAccount) Size

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

func (*MsgRemoveAdminAccount) String

func (m *MsgRemoveAdminAccount) String() string

func (*MsgRemoveAdminAccount) Type

func (*MsgRemoveAdminAccount) Type() string

func (*MsgRemoveAdminAccount) Unmarshal

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

func (*MsgRemoveAdminAccount) ValidateBasic

func (msg *MsgRemoveAdminAccount) ValidateBasic() error

func (*MsgRemoveAdminAccount) XXX_DiscardUnknown

func (m *MsgRemoveAdminAccount) XXX_DiscardUnknown()

func (*MsgRemoveAdminAccount) XXX_Marshal

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

func (*MsgRemoveAdminAccount) XXX_Merge

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

func (*MsgRemoveAdminAccount) XXX_Size

func (m *MsgRemoveAdminAccount) XXX_Size() int

func (*MsgRemoveAdminAccount) XXX_Unmarshal

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

type MsgRemoveAdminAccountResponse

type MsgRemoveAdminAccountResponse struct {
}

MsgRemoveAdminAccountResponse is the response of the RemoveAdminAccount action.

func (*MsgRemoveAdminAccountResponse) Descriptor

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

func (*MsgRemoveAdminAccountResponse) Marshal

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

func (*MsgRemoveAdminAccountResponse) MarshalTo

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

func (*MsgRemoveAdminAccountResponse) MarshalToSizedBuffer

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

func (*MsgRemoveAdminAccountResponse) ProtoMessage

func (*MsgRemoveAdminAccountResponse) ProtoMessage()

func (*MsgRemoveAdminAccountResponse) Reset

func (m *MsgRemoveAdminAccountResponse) Reset()

func (*MsgRemoveAdminAccountResponse) Size

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

func (*MsgRemoveAdminAccountResponse) String

func (*MsgRemoveAdminAccountResponse) Unmarshal

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

func (*MsgRemoveAdminAccountResponse) XXX_DiscardUnknown

func (m *MsgRemoveAdminAccountResponse) XXX_DiscardUnknown()

func (*MsgRemoveAdminAccountResponse) XXX_Marshal

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

func (*MsgRemoveAdminAccountResponse) XXX_Merge

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

func (*MsgRemoveAdminAccountResponse) XXX_Size

func (m *MsgRemoveAdminAccountResponse) XXX_Size() int

func (*MsgRemoveAdminAccountResponse) XXX_Unmarshal

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

type MsgRemoveSystemAccount

type MsgRemoveSystemAccount struct {
	Denom   string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer  string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
}

MsgRemoveSystemAccount implements the removeSystemAccount (0xebbc3d46) method.

func (*MsgRemoveSystemAccount) Descriptor

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

func (*MsgRemoveSystemAccount) GetSignBytes

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

func (*MsgRemoveSystemAccount) GetSigners

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

func (*MsgRemoveSystemAccount) Marshal

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

func (*MsgRemoveSystemAccount) MarshalTo

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

func (*MsgRemoveSystemAccount) MarshalToSizedBuffer

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

func (*MsgRemoveSystemAccount) ProtoMessage

func (*MsgRemoveSystemAccount) ProtoMessage()

func (*MsgRemoveSystemAccount) Reset

func (m *MsgRemoveSystemAccount) Reset()

func (*MsgRemoveSystemAccount) Route

func (*MsgRemoveSystemAccount) Route() string

func (*MsgRemoveSystemAccount) Size

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

func (*MsgRemoveSystemAccount) String

func (m *MsgRemoveSystemAccount) String() string

func (*MsgRemoveSystemAccount) Type

func (*MsgRemoveSystemAccount) Unmarshal

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

func (*MsgRemoveSystemAccount) ValidateBasic

func (msg *MsgRemoveSystemAccount) ValidateBasic() error

func (*MsgRemoveSystemAccount) XXX_DiscardUnknown

func (m *MsgRemoveSystemAccount) XXX_DiscardUnknown()

func (*MsgRemoveSystemAccount) XXX_Marshal

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

func (*MsgRemoveSystemAccount) XXX_Merge

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

func (*MsgRemoveSystemAccount) XXX_Size

func (m *MsgRemoveSystemAccount) XXX_Size() int

func (*MsgRemoveSystemAccount) XXX_Unmarshal

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

type MsgRemoveSystemAccountResponse

type MsgRemoveSystemAccountResponse struct {
}

MsgRemoveSystemAccountResponse is the response of the RemoveSystemAccount action.

func (*MsgRemoveSystemAccountResponse) Descriptor

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

func (*MsgRemoveSystemAccountResponse) Marshal

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

func (*MsgRemoveSystemAccountResponse) MarshalTo

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

func (*MsgRemoveSystemAccountResponse) MarshalToSizedBuffer

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

func (*MsgRemoveSystemAccountResponse) ProtoMessage

func (*MsgRemoveSystemAccountResponse) ProtoMessage()

func (*MsgRemoveSystemAccountResponse) Reset

func (m *MsgRemoveSystemAccountResponse) Reset()

func (*MsgRemoveSystemAccountResponse) Size

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

func (*MsgRemoveSystemAccountResponse) String

func (*MsgRemoveSystemAccountResponse) Unmarshal

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

func (*MsgRemoveSystemAccountResponse) XXX_DiscardUnknown

func (m *MsgRemoveSystemAccountResponse) XXX_DiscardUnknown()

func (*MsgRemoveSystemAccountResponse) XXX_Marshal

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

func (*MsgRemoveSystemAccountResponse) XXX_Merge

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

func (*MsgRemoveSystemAccountResponse) XXX_Size

func (m *MsgRemoveSystemAccountResponse) XXX_Size() int

func (*MsgRemoveSystemAccountResponse) XXX_Unmarshal

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

type MsgSetMaxMintAllowance

type MsgSetMaxMintAllowance struct {
	Denom  string                                 `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer string                                 `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

MsgSetMaxMintAllowance implements the setMaxMintAllowance (0xfd2319c4) method.

func (*MsgSetMaxMintAllowance) Descriptor

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

func (*MsgSetMaxMintAllowance) GetSignBytes

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

func (*MsgSetMaxMintAllowance) GetSigners

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

func (*MsgSetMaxMintAllowance) Marshal

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

func (*MsgSetMaxMintAllowance) MarshalTo

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

func (*MsgSetMaxMintAllowance) MarshalToSizedBuffer

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

func (*MsgSetMaxMintAllowance) ProtoMessage

func (*MsgSetMaxMintAllowance) ProtoMessage()

func (*MsgSetMaxMintAllowance) Reset

func (m *MsgSetMaxMintAllowance) Reset()

func (*MsgSetMaxMintAllowance) Route

func (*MsgSetMaxMintAllowance) Route() string

func (*MsgSetMaxMintAllowance) Size

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

func (*MsgSetMaxMintAllowance) String

func (m *MsgSetMaxMintAllowance) String() string

func (*MsgSetMaxMintAllowance) Type

func (*MsgSetMaxMintAllowance) Unmarshal

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

func (*MsgSetMaxMintAllowance) ValidateBasic

func (msg *MsgSetMaxMintAllowance) ValidateBasic() error

func (*MsgSetMaxMintAllowance) XXX_DiscardUnknown

func (m *MsgSetMaxMintAllowance) XXX_DiscardUnknown()

func (*MsgSetMaxMintAllowance) XXX_Marshal

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

func (*MsgSetMaxMintAllowance) XXX_Merge

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

func (*MsgSetMaxMintAllowance) XXX_Size

func (m *MsgSetMaxMintAllowance) XXX_Size() int

func (*MsgSetMaxMintAllowance) XXX_Unmarshal

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

type MsgSetMaxMintAllowanceResponse

type MsgSetMaxMintAllowanceResponse struct {
}

MsgSetMaxMintAllowanceResponse is the response of the SetMaxMintAllowance action.

func (*MsgSetMaxMintAllowanceResponse) Descriptor

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

func (*MsgSetMaxMintAllowanceResponse) Marshal

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

func (*MsgSetMaxMintAllowanceResponse) MarshalTo

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

func (*MsgSetMaxMintAllowanceResponse) MarshalToSizedBuffer

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

func (*MsgSetMaxMintAllowanceResponse) ProtoMessage

func (*MsgSetMaxMintAllowanceResponse) ProtoMessage()

func (*MsgSetMaxMintAllowanceResponse) Reset

func (m *MsgSetMaxMintAllowanceResponse) Reset()

func (*MsgSetMaxMintAllowanceResponse) Size

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

func (*MsgSetMaxMintAllowanceResponse) String

func (*MsgSetMaxMintAllowanceResponse) Unmarshal

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

func (*MsgSetMaxMintAllowanceResponse) XXX_DiscardUnknown

func (m *MsgSetMaxMintAllowanceResponse) XXX_DiscardUnknown()

func (*MsgSetMaxMintAllowanceResponse) XXX_Marshal

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

func (*MsgSetMaxMintAllowanceResponse) XXX_Merge

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

func (*MsgSetMaxMintAllowanceResponse) XXX_Size

func (m *MsgSetMaxMintAllowanceResponse) XXX_Size() int

func (*MsgSetMaxMintAllowanceResponse) XXX_Unmarshal

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

type MsgSetMintAllowance

type MsgSetMintAllowance struct {
	Denom   string                                 `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer  string                                 `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	Account string                                 `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
	Amount  github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

MsgSetMintAllowance implements the setMintAllowance (0xf27c5f6e) method.

func (*MsgSetMintAllowance) Descriptor

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

func (*MsgSetMintAllowance) GetSignBytes

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

func (*MsgSetMintAllowance) GetSigners

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

func (*MsgSetMintAllowance) Marshal

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

func (*MsgSetMintAllowance) MarshalTo

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

func (*MsgSetMintAllowance) MarshalToSizedBuffer

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

func (*MsgSetMintAllowance) ProtoMessage

func (*MsgSetMintAllowance) ProtoMessage()

func (*MsgSetMintAllowance) Reset

func (m *MsgSetMintAllowance) Reset()

func (*MsgSetMintAllowance) Route

func (*MsgSetMintAllowance) Route() string

func (*MsgSetMintAllowance) Size

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

func (*MsgSetMintAllowance) String

func (m *MsgSetMintAllowance) String() string

func (*MsgSetMintAllowance) Type

func (*MsgSetMintAllowance) Type() string

func (*MsgSetMintAllowance) Unmarshal

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

func (*MsgSetMintAllowance) ValidateBasic

func (msg *MsgSetMintAllowance) ValidateBasic() error

func (*MsgSetMintAllowance) XXX_DiscardUnknown

func (m *MsgSetMintAllowance) XXX_DiscardUnknown()

func (*MsgSetMintAllowance) XXX_Marshal

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

func (*MsgSetMintAllowance) XXX_Merge

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

func (*MsgSetMintAllowance) XXX_Size

func (m *MsgSetMintAllowance) XXX_Size() int

func (*MsgSetMintAllowance) XXX_Unmarshal

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

type MsgSetMintAllowanceResponse

type MsgSetMintAllowanceResponse struct {
}

MsgSetMintAllowanceResponse is the response of the SetMintAllowance action.

func (*MsgSetMintAllowanceResponse) Descriptor

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

func (*MsgSetMintAllowanceResponse) Marshal

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

func (*MsgSetMintAllowanceResponse) MarshalTo

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

func (*MsgSetMintAllowanceResponse) MarshalToSizedBuffer

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

func (*MsgSetMintAllowanceResponse) ProtoMessage

func (*MsgSetMintAllowanceResponse) ProtoMessage()

func (*MsgSetMintAllowanceResponse) Reset

func (m *MsgSetMintAllowanceResponse) Reset()

func (*MsgSetMintAllowanceResponse) Size

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

func (*MsgSetMintAllowanceResponse) String

func (m *MsgSetMintAllowanceResponse) String() string

func (*MsgSetMintAllowanceResponse) Unmarshal

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

func (*MsgSetMintAllowanceResponse) XXX_DiscardUnknown

func (m *MsgSetMintAllowanceResponse) XXX_DiscardUnknown()

func (*MsgSetMintAllowanceResponse) XXX_Marshal

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

func (*MsgSetMintAllowanceResponse) XXX_Merge

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

func (*MsgSetMintAllowanceResponse) XXX_Size

func (m *MsgSetMintAllowanceResponse) XXX_Size() int

func (*MsgSetMintAllowanceResponse) XXX_Unmarshal

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

type MsgTransferOwnership

type MsgTransferOwnership struct {
	Denom    string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Signer   string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"`
	NewOwner string `protobuf:"bytes,3,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
}

MsgTransferOwnership implements the transferOwnership (0xf2fde38b) method.

func (*MsgTransferOwnership) Descriptor

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

func (*MsgTransferOwnership) GetSignBytes

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

func (*MsgTransferOwnership) GetSigners

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

func (*MsgTransferOwnership) Marshal

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

func (*MsgTransferOwnership) MarshalTo

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

func (*MsgTransferOwnership) MarshalToSizedBuffer

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

func (*MsgTransferOwnership) ProtoMessage

func (*MsgTransferOwnership) ProtoMessage()

func (*MsgTransferOwnership) Reset

func (m *MsgTransferOwnership) Reset()

func (*MsgTransferOwnership) Route

func (*MsgTransferOwnership) Route() string

func (*MsgTransferOwnership) Size

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

func (*MsgTransferOwnership) String

func (m *MsgTransferOwnership) String() string

func (*MsgTransferOwnership) Type

func (*MsgTransferOwnership) Type() string

func (*MsgTransferOwnership) Unmarshal

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

func (*MsgTransferOwnership) ValidateBasic

func (msg *MsgTransferOwnership) ValidateBasic() error

func (*MsgTransferOwnership) XXX_DiscardUnknown

func (m *MsgTransferOwnership) XXX_DiscardUnknown()

func (*MsgTransferOwnership) XXX_Marshal

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

func (*MsgTransferOwnership) XXX_Merge

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

func (*MsgTransferOwnership) XXX_Size

func (m *MsgTransferOwnership) XXX_Size() int

func (*MsgTransferOwnership) XXX_Unmarshal

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

type MsgTransferOwnershipResponse

type MsgTransferOwnershipResponse struct {
}

MsgTransferOwnershipResponse is the response of the TransferOwnership action.

func (*MsgTransferOwnershipResponse) Descriptor

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

func (*MsgTransferOwnershipResponse) Marshal

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

func (*MsgTransferOwnershipResponse) MarshalTo

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

func (*MsgTransferOwnershipResponse) MarshalToSizedBuffer

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

func (*MsgTransferOwnershipResponse) ProtoMessage

func (*MsgTransferOwnershipResponse) ProtoMessage()

func (*MsgTransferOwnershipResponse) Reset

func (m *MsgTransferOwnershipResponse) Reset()

func (*MsgTransferOwnershipResponse) Size

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

func (*MsgTransferOwnershipResponse) String

func (*MsgTransferOwnershipResponse) Unmarshal

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

func (*MsgTransferOwnershipResponse) XXX_DiscardUnknown

func (m *MsgTransferOwnershipResponse) XXX_DiscardUnknown()

func (*MsgTransferOwnershipResponse) XXX_Marshal

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

func (*MsgTransferOwnershipResponse) XXX_Merge

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

func (*MsgTransferOwnershipResponse) XXX_Size

func (m *MsgTransferOwnershipResponse) XXX_Size() int

func (*MsgTransferOwnershipResponse) XXX_Unmarshal

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

type OwnershipTransferStarted

type OwnershipTransferStarted struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// previous_owner is the address of the previous owner.
	PreviousOwner string `protobuf:"bytes,2,opt,name=previous_owner,json=previousOwner,proto3" json:"previous_owner,omitempty"`
	// new_owner is the address of the new owner.
	NewOwner string `protobuf:"bytes,3,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
}

Emitted when an ownership transfer is started.

func (*OwnershipTransferStarted) Descriptor

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

func (*OwnershipTransferStarted) GetDenom

func (m *OwnershipTransferStarted) GetDenom() string

func (*OwnershipTransferStarted) GetNewOwner

func (m *OwnershipTransferStarted) GetNewOwner() string

func (*OwnershipTransferStarted) GetPreviousOwner

func (m *OwnershipTransferStarted) GetPreviousOwner() string

func (*OwnershipTransferStarted) Marshal

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

func (*OwnershipTransferStarted) MarshalTo

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

func (*OwnershipTransferStarted) MarshalToSizedBuffer

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

func (*OwnershipTransferStarted) ProtoMessage

func (*OwnershipTransferStarted) ProtoMessage()

func (*OwnershipTransferStarted) Reset

func (m *OwnershipTransferStarted) Reset()

func (*OwnershipTransferStarted) Size

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

func (*OwnershipTransferStarted) String

func (m *OwnershipTransferStarted) String() string

func (*OwnershipTransferStarted) Unmarshal

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

func (*OwnershipTransferStarted) XXX_DiscardUnknown

func (m *OwnershipTransferStarted) XXX_DiscardUnknown()

func (*OwnershipTransferStarted) XXX_Marshal

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

func (*OwnershipTransferStarted) XXX_Merge

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

func (*OwnershipTransferStarted) XXX_Size

func (m *OwnershipTransferStarted) XXX_Size() int

func (*OwnershipTransferStarted) XXX_Unmarshal

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

type OwnershipTransferred

type OwnershipTransferred struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// previous_owner is the address of the previous owner.
	PreviousOwner string `protobuf:"bytes,2,opt,name=previous_owner,json=previousOwner,proto3" json:"previous_owner,omitempty"`
	// new_owner is the address of the new owner.
	NewOwner string `protobuf:"bytes,3,opt,name=new_owner,json=newOwner,proto3" json:"new_owner,omitempty"`
}

Emitted when an ownership transfer is finalized.

func (*OwnershipTransferred) Descriptor

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

func (*OwnershipTransferred) GetDenom

func (m *OwnershipTransferred) GetDenom() string

func (*OwnershipTransferred) GetNewOwner

func (m *OwnershipTransferred) GetNewOwner() string

func (*OwnershipTransferred) GetPreviousOwner

func (m *OwnershipTransferred) GetPreviousOwner() string

func (*OwnershipTransferred) Marshal

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

func (*OwnershipTransferred) MarshalTo

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

func (*OwnershipTransferred) MarshalToSizedBuffer

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

func (*OwnershipTransferred) ProtoMessage

func (*OwnershipTransferred) ProtoMessage()

func (*OwnershipTransferred) Reset

func (m *OwnershipTransferred) Reset()

func (*OwnershipTransferred) Size

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

func (*OwnershipTransferred) String

func (m *OwnershipTransferred) String() string

func (*OwnershipTransferred) Unmarshal

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

func (*OwnershipTransferred) XXX_DiscardUnknown

func (m *OwnershipTransferred) XXX_DiscardUnknown()

func (*OwnershipTransferred) XXX_Marshal

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

func (*OwnershipTransferred) XXX_Merge

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

func (*OwnershipTransferred) XXX_Size

func (m *OwnershipTransferred) XXX_Size() int

func (*OwnershipTransferred) XXX_Unmarshal

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

type QueryAdmins

type QueryAdmins struct {
}

func (*QueryAdmins) Descriptor

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

func (*QueryAdmins) Marshal

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

func (*QueryAdmins) MarshalTo

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

func (*QueryAdmins) MarshalToSizedBuffer

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

func (*QueryAdmins) ProtoMessage

func (*QueryAdmins) ProtoMessage()

func (*QueryAdmins) Reset

func (m *QueryAdmins) Reset()

func (*QueryAdmins) Size

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

func (*QueryAdmins) String

func (m *QueryAdmins) String() string

func (*QueryAdmins) Unmarshal

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

func (*QueryAdmins) XXX_DiscardUnknown

func (m *QueryAdmins) XXX_DiscardUnknown()

func (*QueryAdmins) XXX_Marshal

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

func (*QueryAdmins) XXX_Merge

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

func (*QueryAdmins) XXX_Size

func (m *QueryAdmins) XXX_Size() int

func (*QueryAdmins) XXX_Unmarshal

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

type QueryAdminsByDenom

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

func (*QueryAdminsByDenom) Descriptor

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

func (*QueryAdminsByDenom) GetDenom

func (m *QueryAdminsByDenom) GetDenom() string

func (*QueryAdminsByDenom) Marshal

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

func (*QueryAdminsByDenom) MarshalTo

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

func (*QueryAdminsByDenom) MarshalToSizedBuffer

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

func (*QueryAdminsByDenom) ProtoMessage

func (*QueryAdminsByDenom) ProtoMessage()

func (*QueryAdminsByDenom) Reset

func (m *QueryAdminsByDenom) Reset()

func (*QueryAdminsByDenom) Size

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

func (*QueryAdminsByDenom) String

func (m *QueryAdminsByDenom) String() string

func (*QueryAdminsByDenom) Unmarshal

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

func (*QueryAdminsByDenom) XXX_DiscardUnknown

func (m *QueryAdminsByDenom) XXX_DiscardUnknown()

func (*QueryAdminsByDenom) XXX_Marshal

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

func (*QueryAdminsByDenom) XXX_Merge

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

func (*QueryAdminsByDenom) XXX_Size

func (m *QueryAdminsByDenom) XXX_Size() int

func (*QueryAdminsByDenom) XXX_Unmarshal

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

type QueryAdminsByDenomResponse

type QueryAdminsByDenomResponse struct {
	Admins []string `protobuf:"bytes,1,rep,name=admins,proto3" json:"admins,omitempty"`
}

func (*QueryAdminsByDenomResponse) Descriptor

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

func (*QueryAdminsByDenomResponse) GetAdmins

func (m *QueryAdminsByDenomResponse) GetAdmins() []string

func (*QueryAdminsByDenomResponse) Marshal

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

func (*QueryAdminsByDenomResponse) MarshalTo

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

func (*QueryAdminsByDenomResponse) MarshalToSizedBuffer

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

func (*QueryAdminsByDenomResponse) ProtoMessage

func (*QueryAdminsByDenomResponse) ProtoMessage()

func (*QueryAdminsByDenomResponse) Reset

func (m *QueryAdminsByDenomResponse) Reset()

func (*QueryAdminsByDenomResponse) Size

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

func (*QueryAdminsByDenomResponse) String

func (m *QueryAdminsByDenomResponse) String() string

func (*QueryAdminsByDenomResponse) Unmarshal

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

func (*QueryAdminsByDenomResponse) XXX_DiscardUnknown

func (m *QueryAdminsByDenomResponse) XXX_DiscardUnknown()

func (*QueryAdminsByDenomResponse) XXX_Marshal

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

func (*QueryAdminsByDenomResponse) XXX_Merge

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

func (*QueryAdminsByDenomResponse) XXX_Size

func (m *QueryAdminsByDenomResponse) XXX_Size() int

func (*QueryAdminsByDenomResponse) XXX_Unmarshal

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

type QueryAdminsResponse

type QueryAdminsResponse struct {
	Admins []Account `protobuf:"bytes,1,rep,name=admins,proto3" json:"admins"`
}

func (*QueryAdminsResponse) Descriptor

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

func (*QueryAdminsResponse) GetAdmins

func (m *QueryAdminsResponse) GetAdmins() []Account

func (*QueryAdminsResponse) Marshal

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

func (*QueryAdminsResponse) MarshalTo

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

func (*QueryAdminsResponse) MarshalToSizedBuffer

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

func (*QueryAdminsResponse) ProtoMessage

func (*QueryAdminsResponse) ProtoMessage()

func (*QueryAdminsResponse) Reset

func (m *QueryAdminsResponse) Reset()

func (*QueryAdminsResponse) Size

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

func (*QueryAdminsResponse) String

func (m *QueryAdminsResponse) String() string

func (*QueryAdminsResponse) Unmarshal

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

func (*QueryAdminsResponse) XXX_DiscardUnknown

func (m *QueryAdminsResponse) XXX_DiscardUnknown()

func (*QueryAdminsResponse) XXX_Marshal

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

func (*QueryAdminsResponse) XXX_Merge

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

func (*QueryAdminsResponse) XXX_Size

func (m *QueryAdminsResponse) XXX_Size() int

func (*QueryAdminsResponse) XXX_Unmarshal

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

type QueryAllowedDenoms

type QueryAllowedDenoms struct {
}

func (*QueryAllowedDenoms) Descriptor

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

func (*QueryAllowedDenoms) Marshal

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

func (*QueryAllowedDenoms) MarshalTo

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

func (*QueryAllowedDenoms) MarshalToSizedBuffer

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

func (*QueryAllowedDenoms) ProtoMessage

func (*QueryAllowedDenoms) ProtoMessage()

func (*QueryAllowedDenoms) Reset

func (m *QueryAllowedDenoms) Reset()

func (*QueryAllowedDenoms) Size

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

func (*QueryAllowedDenoms) String

func (m *QueryAllowedDenoms) String() string

func (*QueryAllowedDenoms) Unmarshal

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

func (*QueryAllowedDenoms) XXX_DiscardUnknown

func (m *QueryAllowedDenoms) XXX_DiscardUnknown()

func (*QueryAllowedDenoms) XXX_Marshal

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

func (*QueryAllowedDenoms) XXX_Merge

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

func (*QueryAllowedDenoms) XXX_Size

func (m *QueryAllowedDenoms) XXX_Size() int

func (*QueryAllowedDenoms) XXX_Unmarshal

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

type QueryAllowedDenomsResponse

type QueryAllowedDenomsResponse struct {
	AllowedDenoms []string `protobuf:"bytes,1,rep,name=allowed_denoms,json=allowedDenoms,proto3" json:"allowed_denoms,omitempty"`
}

func (*QueryAllowedDenomsResponse) Descriptor

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

func (*QueryAllowedDenomsResponse) GetAllowedDenoms

func (m *QueryAllowedDenomsResponse) GetAllowedDenoms() []string

func (*QueryAllowedDenomsResponse) Marshal

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

func (*QueryAllowedDenomsResponse) MarshalTo

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

func (*QueryAllowedDenomsResponse) MarshalToSizedBuffer

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

func (*QueryAllowedDenomsResponse) ProtoMessage

func (*QueryAllowedDenomsResponse) ProtoMessage()

func (*QueryAllowedDenomsResponse) Reset

func (m *QueryAllowedDenomsResponse) Reset()

func (*QueryAllowedDenomsResponse) Size

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

func (*QueryAllowedDenomsResponse) String

func (m *QueryAllowedDenomsResponse) String() string

func (*QueryAllowedDenomsResponse) Unmarshal

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

func (*QueryAllowedDenomsResponse) XXX_DiscardUnknown

func (m *QueryAllowedDenomsResponse) XXX_DiscardUnknown()

func (*QueryAllowedDenomsResponse) XXX_Marshal

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

func (*QueryAllowedDenomsResponse) XXX_Merge

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

func (*QueryAllowedDenomsResponse) XXX_Size

func (m *QueryAllowedDenomsResponse) XXX_Size() int

func (*QueryAllowedDenomsResponse) XXX_Unmarshal

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

type QueryClient

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 QueryMaxMintAllowance

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

func (*QueryMaxMintAllowance) Descriptor

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

func (*QueryMaxMintAllowance) GetDenom

func (m *QueryMaxMintAllowance) GetDenom() string

func (*QueryMaxMintAllowance) Marshal

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

func (*QueryMaxMintAllowance) MarshalTo

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

func (*QueryMaxMintAllowance) MarshalToSizedBuffer

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

func (*QueryMaxMintAllowance) ProtoMessage

func (*QueryMaxMintAllowance) ProtoMessage()

func (*QueryMaxMintAllowance) Reset

func (m *QueryMaxMintAllowance) Reset()

func (*QueryMaxMintAllowance) Size

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

func (*QueryMaxMintAllowance) String

func (m *QueryMaxMintAllowance) String() string

func (*QueryMaxMintAllowance) Unmarshal

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

func (*QueryMaxMintAllowance) XXX_DiscardUnknown

func (m *QueryMaxMintAllowance) XXX_DiscardUnknown()

func (*QueryMaxMintAllowance) XXX_Marshal

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

func (*QueryMaxMintAllowance) XXX_Merge

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

func (*QueryMaxMintAllowance) XXX_Size

func (m *QueryMaxMintAllowance) XXX_Size() int

func (*QueryMaxMintAllowance) XXX_Unmarshal

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

type QueryMaxMintAllowanceResponse

type QueryMaxMintAllowanceResponse struct {
	MaxMintAllowance github_com_cosmos_cosmos_sdk_types.Int `` /* 151-byte string literal not displayed */
}

func (*QueryMaxMintAllowanceResponse) Descriptor

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

func (*QueryMaxMintAllowanceResponse) Marshal

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

func (*QueryMaxMintAllowanceResponse) MarshalTo

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

func (*QueryMaxMintAllowanceResponse) MarshalToSizedBuffer

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

func (*QueryMaxMintAllowanceResponse) ProtoMessage

func (*QueryMaxMintAllowanceResponse) ProtoMessage()

func (*QueryMaxMintAllowanceResponse) Reset

func (m *QueryMaxMintAllowanceResponse) Reset()

func (*QueryMaxMintAllowanceResponse) Size

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

func (*QueryMaxMintAllowanceResponse) String

func (*QueryMaxMintAllowanceResponse) Unmarshal

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

func (*QueryMaxMintAllowanceResponse) XXX_DiscardUnknown

func (m *QueryMaxMintAllowanceResponse) XXX_DiscardUnknown()

func (*QueryMaxMintAllowanceResponse) XXX_Marshal

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

func (*QueryMaxMintAllowanceResponse) XXX_Merge

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

func (*QueryMaxMintAllowanceResponse) XXX_Size

func (m *QueryMaxMintAllowanceResponse) XXX_Size() int

func (*QueryMaxMintAllowanceResponse) XXX_Unmarshal

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

type QueryMaxMintAllowances

type QueryMaxMintAllowances struct {
}

func (*QueryMaxMintAllowances) Descriptor

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

func (*QueryMaxMintAllowances) Marshal

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

func (*QueryMaxMintAllowances) MarshalTo

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

func (*QueryMaxMintAllowances) MarshalToSizedBuffer

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

func (*QueryMaxMintAllowances) ProtoMessage

func (*QueryMaxMintAllowances) ProtoMessage()

func (*QueryMaxMintAllowances) Reset

func (m *QueryMaxMintAllowances) Reset()

func (*QueryMaxMintAllowances) Size

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

func (*QueryMaxMintAllowances) String

func (m *QueryMaxMintAllowances) String() string

func (*QueryMaxMintAllowances) Unmarshal

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

func (*QueryMaxMintAllowances) XXX_DiscardUnknown

func (m *QueryMaxMintAllowances) XXX_DiscardUnknown()

func (*QueryMaxMintAllowances) XXX_Marshal

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

func (*QueryMaxMintAllowances) XXX_Merge

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

func (*QueryMaxMintAllowances) XXX_Size

func (m *QueryMaxMintAllowances) XXX_Size() int

func (*QueryMaxMintAllowances) XXX_Unmarshal

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

type QueryMaxMintAllowancesResponse

type QueryMaxMintAllowancesResponse struct {
	MaxMintAllowances map[string]string `` /* 202-byte string literal not displayed */
}

func (*QueryMaxMintAllowancesResponse) Descriptor

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

func (*QueryMaxMintAllowancesResponse) GetMaxMintAllowances

func (m *QueryMaxMintAllowancesResponse) GetMaxMintAllowances() map[string]string

func (*QueryMaxMintAllowancesResponse) Marshal

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

func (*QueryMaxMintAllowancesResponse) MarshalTo

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

func (*QueryMaxMintAllowancesResponse) MarshalToSizedBuffer

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

func (*QueryMaxMintAllowancesResponse) ProtoMessage

func (*QueryMaxMintAllowancesResponse) ProtoMessage()

func (*QueryMaxMintAllowancesResponse) Reset

func (m *QueryMaxMintAllowancesResponse) Reset()

func (*QueryMaxMintAllowancesResponse) Size

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

func (*QueryMaxMintAllowancesResponse) String

func (*QueryMaxMintAllowancesResponse) Unmarshal

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

func (*QueryMaxMintAllowancesResponse) XXX_DiscardUnknown

func (m *QueryMaxMintAllowancesResponse) XXX_DiscardUnknown()

func (*QueryMaxMintAllowancesResponse) XXX_Marshal

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

func (*QueryMaxMintAllowancesResponse) XXX_Merge

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

func (*QueryMaxMintAllowancesResponse) XXX_Size

func (m *QueryMaxMintAllowancesResponse) XXX_Size() int

func (*QueryMaxMintAllowancesResponse) XXX_Unmarshal

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

type QueryMintAllowance

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

func (*QueryMintAllowance) Descriptor

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

func (*QueryMintAllowance) GetAccount

func (m *QueryMintAllowance) GetAccount() string

func (*QueryMintAllowance) GetDenom

func (m *QueryMintAllowance) GetDenom() string

func (*QueryMintAllowance) Marshal

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

func (*QueryMintAllowance) MarshalTo

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

func (*QueryMintAllowance) MarshalToSizedBuffer

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

func (*QueryMintAllowance) ProtoMessage

func (*QueryMintAllowance) ProtoMessage()

func (*QueryMintAllowance) Reset

func (m *QueryMintAllowance) Reset()

func (*QueryMintAllowance) Size

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

func (*QueryMintAllowance) String

func (m *QueryMintAllowance) String() string

func (*QueryMintAllowance) Unmarshal

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

func (*QueryMintAllowance) XXX_DiscardUnknown

func (m *QueryMintAllowance) XXX_DiscardUnknown()

func (*QueryMintAllowance) XXX_Marshal

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

func (*QueryMintAllowance) XXX_Merge

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

func (*QueryMintAllowance) XXX_Size

func (m *QueryMintAllowance) XXX_Size() int

func (*QueryMintAllowance) XXX_Unmarshal

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

type QueryMintAllowanceResponse

type QueryMintAllowanceResponse struct {
	Allowance github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,1,opt,name=allowance,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"allowance"`
}

func (*QueryMintAllowanceResponse) Descriptor

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

func (*QueryMintAllowanceResponse) Marshal

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

func (*QueryMintAllowanceResponse) MarshalTo

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

func (*QueryMintAllowanceResponse) MarshalToSizedBuffer

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

func (*QueryMintAllowanceResponse) ProtoMessage

func (*QueryMintAllowanceResponse) ProtoMessage()

func (*QueryMintAllowanceResponse) Reset

func (m *QueryMintAllowanceResponse) Reset()

func (*QueryMintAllowanceResponse) Size

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

func (*QueryMintAllowanceResponse) String

func (m *QueryMintAllowanceResponse) String() string

func (*QueryMintAllowanceResponse) Unmarshal

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

func (*QueryMintAllowanceResponse) XXX_DiscardUnknown

func (m *QueryMintAllowanceResponse) XXX_DiscardUnknown()

func (*QueryMintAllowanceResponse) XXX_Marshal

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

func (*QueryMintAllowanceResponse) XXX_Merge

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

func (*QueryMintAllowanceResponse) XXX_Size

func (m *QueryMintAllowanceResponse) XXX_Size() int

func (*QueryMintAllowanceResponse) XXX_Unmarshal

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

type QueryMintAllowances

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

func (*QueryMintAllowances) Descriptor

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

func (*QueryMintAllowances) GetDenom

func (m *QueryMintAllowances) GetDenom() string

func (*QueryMintAllowances) Marshal

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

func (*QueryMintAllowances) MarshalTo

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

func (*QueryMintAllowances) MarshalToSizedBuffer

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

func (*QueryMintAllowances) ProtoMessage

func (*QueryMintAllowances) ProtoMessage()

func (*QueryMintAllowances) Reset

func (m *QueryMintAllowances) Reset()

func (*QueryMintAllowances) Size

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

func (*QueryMintAllowances) String

func (m *QueryMintAllowances) String() string

func (*QueryMintAllowances) Unmarshal

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

func (*QueryMintAllowances) XXX_DiscardUnknown

func (m *QueryMintAllowances) XXX_DiscardUnknown()

func (*QueryMintAllowances) XXX_Marshal

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

func (*QueryMintAllowances) XXX_Merge

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

func (*QueryMintAllowances) XXX_Size

func (m *QueryMintAllowances) XXX_Size() int

func (*QueryMintAllowances) XXX_Unmarshal

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

type QueryMintAllowancesResponse

type QueryMintAllowancesResponse struct {
	Allowances map[string]string `` /* 161-byte string literal not displayed */
}

func (*QueryMintAllowancesResponse) Descriptor

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

func (*QueryMintAllowancesResponse) GetAllowances

func (m *QueryMintAllowancesResponse) GetAllowances() map[string]string

func (*QueryMintAllowancesResponse) Marshal

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

func (*QueryMintAllowancesResponse) MarshalTo

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

func (*QueryMintAllowancesResponse) MarshalToSizedBuffer

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

func (*QueryMintAllowancesResponse) ProtoMessage

func (*QueryMintAllowancesResponse) ProtoMessage()

func (*QueryMintAllowancesResponse) Reset

func (m *QueryMintAllowancesResponse) Reset()

func (*QueryMintAllowancesResponse) Size

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

func (*QueryMintAllowancesResponse) String

func (m *QueryMintAllowancesResponse) String() string

func (*QueryMintAllowancesResponse) Unmarshal

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

func (*QueryMintAllowancesResponse) XXX_DiscardUnknown

func (m *QueryMintAllowancesResponse) XXX_DiscardUnknown()

func (*QueryMintAllowancesResponse) XXX_Marshal

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

func (*QueryMintAllowancesResponse) XXX_Merge

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

func (*QueryMintAllowancesResponse) XXX_Size

func (m *QueryMintAllowancesResponse) XXX_Size() int

func (*QueryMintAllowancesResponse) XXX_Unmarshal

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

type QueryOwner

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

func (*QueryOwner) Descriptor

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

func (*QueryOwner) GetDenom

func (m *QueryOwner) GetDenom() string

func (*QueryOwner) Marshal

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

func (*QueryOwner) MarshalTo

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

func (*QueryOwner) MarshalToSizedBuffer

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

func (*QueryOwner) ProtoMessage

func (*QueryOwner) ProtoMessage()

func (*QueryOwner) Reset

func (m *QueryOwner) Reset()

func (*QueryOwner) Size

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

func (*QueryOwner) String

func (m *QueryOwner) String() string

func (*QueryOwner) Unmarshal

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

func (*QueryOwner) XXX_DiscardUnknown

func (m *QueryOwner) XXX_DiscardUnknown()

func (*QueryOwner) XXX_Marshal

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

func (*QueryOwner) XXX_Merge

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

func (*QueryOwner) XXX_Size

func (m *QueryOwner) XXX_Size() int

func (*QueryOwner) XXX_Unmarshal

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

type QueryOwnerResponse

type QueryOwnerResponse struct {
	Owner        string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	PendingOwner string `protobuf:"bytes,2,opt,name=pending_owner,json=pendingOwner,proto3" json:"pending_owner,omitempty"`
}

func (*QueryOwnerResponse) Descriptor

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

func (*QueryOwnerResponse) GetOwner

func (m *QueryOwnerResponse) GetOwner() string

func (*QueryOwnerResponse) GetPendingOwner

func (m *QueryOwnerResponse) GetPendingOwner() string

func (*QueryOwnerResponse) Marshal

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

func (*QueryOwnerResponse) MarshalTo

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

func (*QueryOwnerResponse) MarshalToSizedBuffer

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

func (*QueryOwnerResponse) ProtoMessage

func (*QueryOwnerResponse) ProtoMessage()

func (*QueryOwnerResponse) Reset

func (m *QueryOwnerResponse) Reset()

func (*QueryOwnerResponse) Size

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

func (*QueryOwnerResponse) String

func (m *QueryOwnerResponse) String() string

func (*QueryOwnerResponse) Unmarshal

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

func (*QueryOwnerResponse) XXX_DiscardUnknown

func (m *QueryOwnerResponse) XXX_DiscardUnknown()

func (*QueryOwnerResponse) XXX_Marshal

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

func (*QueryOwnerResponse) XXX_Merge

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

func (*QueryOwnerResponse) XXX_Size

func (m *QueryOwnerResponse) XXX_Size() int

func (*QueryOwnerResponse) XXX_Unmarshal

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

type QueryOwners

type QueryOwners struct {
}

func (*QueryOwners) Descriptor

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

func (*QueryOwners) Marshal

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

func (*QueryOwners) MarshalTo

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

func (*QueryOwners) MarshalToSizedBuffer

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

func (*QueryOwners) ProtoMessage

func (*QueryOwners) ProtoMessage()

func (*QueryOwners) Reset

func (m *QueryOwners) Reset()

func (*QueryOwners) Size

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

func (*QueryOwners) String

func (m *QueryOwners) String() string

func (*QueryOwners) Unmarshal

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

func (*QueryOwners) XXX_DiscardUnknown

func (m *QueryOwners) XXX_DiscardUnknown()

func (*QueryOwners) XXX_Marshal

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

func (*QueryOwners) XXX_Merge

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

func (*QueryOwners) XXX_Size

func (m *QueryOwners) XXX_Size() int

func (*QueryOwners) XXX_Unmarshal

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

type QueryOwnersResponse

type QueryOwnersResponse struct {
	Owners        map[string]string `` /* 153-byte string literal not displayed */
	PendingOwners map[string]string `` /* 188-byte string literal not displayed */
}

func (*QueryOwnersResponse) Descriptor

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

func (*QueryOwnersResponse) GetOwners

func (m *QueryOwnersResponse) GetOwners() map[string]string

func (*QueryOwnersResponse) GetPendingOwners

func (m *QueryOwnersResponse) GetPendingOwners() map[string]string

func (*QueryOwnersResponse) Marshal

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

func (*QueryOwnersResponse) MarshalTo

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

func (*QueryOwnersResponse) MarshalToSizedBuffer

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

func (*QueryOwnersResponse) ProtoMessage

func (*QueryOwnersResponse) ProtoMessage()

func (*QueryOwnersResponse) Reset

func (m *QueryOwnersResponse) Reset()

func (*QueryOwnersResponse) Size

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

func (*QueryOwnersResponse) String

func (m *QueryOwnersResponse) String() string

func (*QueryOwnersResponse) Unmarshal

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

func (*QueryOwnersResponse) XXX_DiscardUnknown

func (m *QueryOwnersResponse) XXX_DiscardUnknown()

func (*QueryOwnersResponse) XXX_Marshal

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

func (*QueryOwnersResponse) XXX_Merge

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

func (*QueryOwnersResponse) XXX_Size

func (m *QueryOwnersResponse) XXX_Size() int

func (*QueryOwnersResponse) XXX_Unmarshal

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

type QuerySystems

type QuerySystems struct {
}

func (*QuerySystems) Descriptor

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

func (*QuerySystems) Marshal

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

func (*QuerySystems) MarshalTo

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

func (*QuerySystems) MarshalToSizedBuffer

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

func (*QuerySystems) ProtoMessage

func (*QuerySystems) ProtoMessage()

func (*QuerySystems) Reset

func (m *QuerySystems) Reset()

func (*QuerySystems) Size

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

func (*QuerySystems) String

func (m *QuerySystems) String() string

func (*QuerySystems) Unmarshal

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

func (*QuerySystems) XXX_DiscardUnknown

func (m *QuerySystems) XXX_DiscardUnknown()

func (*QuerySystems) XXX_Marshal

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

func (*QuerySystems) XXX_Merge

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

func (*QuerySystems) XXX_Size

func (m *QuerySystems) XXX_Size() int

func (*QuerySystems) XXX_Unmarshal

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

type QuerySystemsByDenom

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

func (*QuerySystemsByDenom) Descriptor

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

func (*QuerySystemsByDenom) GetDenom

func (m *QuerySystemsByDenom) GetDenom() string

func (*QuerySystemsByDenom) Marshal

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

func (*QuerySystemsByDenom) MarshalTo

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

func (*QuerySystemsByDenom) MarshalToSizedBuffer

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

func (*QuerySystemsByDenom) ProtoMessage

func (*QuerySystemsByDenom) ProtoMessage()

func (*QuerySystemsByDenom) Reset

func (m *QuerySystemsByDenom) Reset()

func (*QuerySystemsByDenom) Size

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

func (*QuerySystemsByDenom) String

func (m *QuerySystemsByDenom) String() string

func (*QuerySystemsByDenom) Unmarshal

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

func (*QuerySystemsByDenom) XXX_DiscardUnknown

func (m *QuerySystemsByDenom) XXX_DiscardUnknown()

func (*QuerySystemsByDenom) XXX_Marshal

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

func (*QuerySystemsByDenom) XXX_Merge

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

func (*QuerySystemsByDenom) XXX_Size

func (m *QuerySystemsByDenom) XXX_Size() int

func (*QuerySystemsByDenom) XXX_Unmarshal

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

type QuerySystemsByDenomResponse

type QuerySystemsByDenomResponse struct {
	Systems []string `protobuf:"bytes,1,rep,name=systems,proto3" json:"systems,omitempty"`
}

func (*QuerySystemsByDenomResponse) Descriptor

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

func (*QuerySystemsByDenomResponse) GetSystems

func (m *QuerySystemsByDenomResponse) GetSystems() []string

func (*QuerySystemsByDenomResponse) Marshal

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

func (*QuerySystemsByDenomResponse) MarshalTo

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

func (*QuerySystemsByDenomResponse) MarshalToSizedBuffer

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

func (*QuerySystemsByDenomResponse) ProtoMessage

func (*QuerySystemsByDenomResponse) ProtoMessage()

func (*QuerySystemsByDenomResponse) Reset

func (m *QuerySystemsByDenomResponse) Reset()

func (*QuerySystemsByDenomResponse) Size

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

func (*QuerySystemsByDenomResponse) String

func (m *QuerySystemsByDenomResponse) String() string

func (*QuerySystemsByDenomResponse) Unmarshal

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

func (*QuerySystemsByDenomResponse) XXX_DiscardUnknown

func (m *QuerySystemsByDenomResponse) XXX_DiscardUnknown()

func (*QuerySystemsByDenomResponse) XXX_Marshal

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

func (*QuerySystemsByDenomResponse) XXX_Merge

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

func (*QuerySystemsByDenomResponse) XXX_Size

func (m *QuerySystemsByDenomResponse) XXX_Size() int

func (*QuerySystemsByDenomResponse) XXX_Unmarshal

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

type QuerySystemsResponse

type QuerySystemsResponse struct {
	Systems []Account `protobuf:"bytes,1,rep,name=systems,proto3" json:"systems"`
}

func (*QuerySystemsResponse) Descriptor

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

func (*QuerySystemsResponse) GetSystems

func (m *QuerySystemsResponse) GetSystems() []Account

func (*QuerySystemsResponse) Marshal

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

func (*QuerySystemsResponse) MarshalTo

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

func (*QuerySystemsResponse) MarshalToSizedBuffer

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

func (*QuerySystemsResponse) ProtoMessage

func (*QuerySystemsResponse) ProtoMessage()

func (*QuerySystemsResponse) Reset

func (m *QuerySystemsResponse) Reset()

func (*QuerySystemsResponse) Size

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

func (*QuerySystemsResponse) String

func (m *QuerySystemsResponse) String() string

func (*QuerySystemsResponse) Unmarshal

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

func (*QuerySystemsResponse) XXX_DiscardUnknown

func (m *QuerySystemsResponse) XXX_DiscardUnknown()

func (*QuerySystemsResponse) XXX_Marshal

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

func (*QuerySystemsResponse) XXX_Merge

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

func (*QuerySystemsResponse) XXX_Size

func (m *QuerySystemsResponse) XXX_Size() int

func (*QuerySystemsResponse) XXX_Unmarshal

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

type Recovered

type Recovered struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// from is the address that tokens were recovered from.
	From string `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`
	// to is the address the recovered tokens were sent to.
	To string `protobuf:"bytes,3,opt,name=to,proto3" json:"to,omitempty"`
	// amount is the amount of recovered tokens.
	Amount github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

Emitted when the module owner recovers tokens.

func (*Recovered) Descriptor

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

func (*Recovered) GetDenom

func (m *Recovered) GetDenom() string

func (*Recovered) GetFrom

func (m *Recovered) GetFrom() string

func (*Recovered) GetTo

func (m *Recovered) GetTo() string

func (*Recovered) Marshal

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

func (*Recovered) MarshalTo

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

func (*Recovered) MarshalToSizedBuffer

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

func (*Recovered) ProtoMessage

func (*Recovered) ProtoMessage()

func (*Recovered) Reset

func (m *Recovered) Reset()

func (*Recovered) Size

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

func (*Recovered) String

func (m *Recovered) String() string

func (*Recovered) Unmarshal

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

func (*Recovered) XXX_DiscardUnknown

func (m *Recovered) XXX_DiscardUnknown()

func (*Recovered) XXX_Marshal

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

func (*Recovered) XXX_Merge

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

func (*Recovered) XXX_Size

func (m *Recovered) XXX_Size() int

func (*Recovered) XXX_Unmarshal

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

type SystemAccountAdded

type SystemAccountAdded struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// account is the address that was added.
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
}

Emitted when system account is added.

func (*SystemAccountAdded) Descriptor

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

func (*SystemAccountAdded) GetAccount

func (m *SystemAccountAdded) GetAccount() string

func (*SystemAccountAdded) GetDenom

func (m *SystemAccountAdded) GetDenom() string

func (*SystemAccountAdded) Marshal

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

func (*SystemAccountAdded) MarshalTo

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

func (*SystemAccountAdded) MarshalToSizedBuffer

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

func (*SystemAccountAdded) ProtoMessage

func (*SystemAccountAdded) ProtoMessage()

func (*SystemAccountAdded) Reset

func (m *SystemAccountAdded) Reset()

func (*SystemAccountAdded) Size

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

func (*SystemAccountAdded) String

func (m *SystemAccountAdded) String() string

func (*SystemAccountAdded) Unmarshal

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

func (*SystemAccountAdded) XXX_DiscardUnknown

func (m *SystemAccountAdded) XXX_DiscardUnknown()

func (*SystemAccountAdded) XXX_Marshal

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

func (*SystemAccountAdded) XXX_Merge

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

func (*SystemAccountAdded) XXX_Size

func (m *SystemAccountAdded) XXX_Size() int

func (*SystemAccountAdded) XXX_Unmarshal

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

type SystemAccountRemoved

type SystemAccountRemoved struct {
	// denom is the denom that was affected.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// account is the address that was removed.
	Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
}

Emitted when system account is removed.

func (*SystemAccountRemoved) Descriptor

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

func (*SystemAccountRemoved) GetAccount

func (m *SystemAccountRemoved) GetAccount() string

func (*SystemAccountRemoved) GetDenom

func (m *SystemAccountRemoved) GetDenom() string

func (*SystemAccountRemoved) Marshal

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

func (*SystemAccountRemoved) MarshalTo

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

func (*SystemAccountRemoved) MarshalToSizedBuffer

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

func (*SystemAccountRemoved) ProtoMessage

func (*SystemAccountRemoved) ProtoMessage()

func (*SystemAccountRemoved) Reset

func (m *SystemAccountRemoved) Reset()

func (*SystemAccountRemoved) Size

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

func (*SystemAccountRemoved) String

func (m *SystemAccountRemoved) String() string

func (*SystemAccountRemoved) Unmarshal

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

func (*SystemAccountRemoved) XXX_DiscardUnknown

func (m *SystemAccountRemoved) XXX_DiscardUnknown()

func (*SystemAccountRemoved) XXX_Marshal

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

func (*SystemAccountRemoved) XXX_Merge

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

func (*SystemAccountRemoved) XXX_Size

func (m *SystemAccountRemoved) XXX_Size() int

func (*SystemAccountRemoved) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AcceptOwnership

func (*UnimplementedMsgServer) AddAdminAccount

func (*UnimplementedMsgServer) AddSystemAccount

func (*UnimplementedMsgServer) AllowDenom

func (*UnimplementedMsgServer) Burn

func (*UnimplementedMsgServer) Mint

func (*UnimplementedMsgServer) Recover

func (*UnimplementedMsgServer) RemoveAdminAccount

func (*UnimplementedMsgServer) RemoveSystemAccount

func (*UnimplementedMsgServer) SetMaxMintAllowance

func (*UnimplementedMsgServer) SetMintAllowance

func (*UnimplementedMsgServer) TransferOwnership

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Admins

func (*UnimplementedQueryServer) AdminsByDenom

func (*UnimplementedQueryServer) AllowedDenoms

func (*UnimplementedQueryServer) MaxMintAllowance

func (*UnimplementedQueryServer) MaxMintAllowances

func (*UnimplementedQueryServer) MintAllowance

func (*UnimplementedQueryServer) MintAllowances

func (*UnimplementedQueryServer) Owner

func (*UnimplementedQueryServer) Owners

func (*UnimplementedQueryServer) Systems

func (*UnimplementedQueryServer) SystemsByDenom

Directories

Path Synopsis
Package blacklist is a reverse proxy.
Package blacklist is a reverse proxy.

Jump to

Keyboard shortcuts

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