types

package
v0.0.0-...-a6871c7 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 42 Imported by: 28

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeTransfer = "transfer"

	AttributeKeyRecipient = "recipient"
	AttributeKeySender    = sdk.AttributeKeySender

	// supply and balance tracking events name and attributes
	EventTypeCoinSpent    = "coin_spent"
	EventTypeCoinReceived = "coin_received"
	EventTypeCoinMint     = "coinbase" // NOTE(fdymylja): using mint clashes with mint module event
	EventTypeCoinBurn     = "burn"

	AttributeKeySpender  = "spender"
	AttributeKeyReceiver = "receiver"
	AttributeKeyMinter   = "minter"
	AttributeKeyBurner   = "burner"
)

bank module event types

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

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

	// GovModuleName duplicates the gov module's name to avoid a cyclic dependency with x/gov.
	// It should be synced with the gov module's name if it is ever changed.
	// See: https://github.com/cosmos/cosmos-sdk/blob/b62a28aac041829da5ded4aeacfcd7a42873d1c8/x/gov/types/keys.go#L9
	GovModuleName = "gov"

	// MintModuleName duplicates the mint module's name to avoid a cyclic dependency with x/mint.
	// It should be synced with the mint module's name if it is ever changed.
	// See: https://github.com/cosmos/cosmos-sdk/blob/0e34478eb7420b69869ed50f129fc274a97a9b06/x/mint/types/keys.go#L13
	MintModuleName = "mint"
)
View Source
const (
	QueryBalance     = "balance"
	QueryAllBalances = "all_balances"
	QueryTotalSupply = "total_supply"
	QuerySupplyOf    = "supply_of"
)

Querier path constants

Variables

View Source
var (
	ErrInvalidLengthAuthz        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowAuthz          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupAuthz = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthBank        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBank          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBank = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrNoInputs              = errors.Register(ModuleName, 2, "no inputs to send transaction")
	ErrNoOutputs             = errors.Register(ModuleName, 3, "no outputs to send transaction")
	ErrInputOutputMismatch   = errors.Register(ModuleName, 4, "sum inputs != sum outputs")
	ErrSendDisabled          = errors.Register(ModuleName, 5, "send transactions are disabled")
	ErrDenomMetadataNotFound = errors.Register(ModuleName, 6, "client denom metadata not found")
	ErrInvalidKey            = errors.Register(ModuleName, 7, "invalid key")
	ErrDuplicateEntry        = errors.Register(ModuleName, 8, "duplicate entry")
	ErrMultipleSenders       = errors.Register(ModuleName, 9, "multiple senders not allowed")
	ErrInvalidSigner         = errors.Register(ModuleName, 10, "expected authority account as only signer for proposal message")
)

x/bank module sentinel errors

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	SupplyKey           = collections.NewPrefix(0)
	DenomMetadataPrefix = collections.NewPrefix(1)
	// BalancesPrefix is the prefix for the account balances store. We use a byte
	// (instead of `[]byte("balances")` to save some disk space).
	BalancesPrefix     = collections.NewPrefix(2)
	DenomAddressPrefix = collections.NewPrefix(3)
	// SendEnabledPrefix is the prefix for the SendDisabled flags for a Denom.
	SendEnabledPrefix = collections.NewPrefix(4)

	// ParamsKey is the prefix for x/bank parameters
	ParamsKey = collections.NewPrefix(5)
)

KVStore keys

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 BalanceValueCodec = collcodec.NewAltValueCodec(sdk.IntValue, func(bytes []byte) (math.Int, error) {
	c := new(sdk.Coin)
	err := c.Unmarshal(bytes)
	if err != nil {
		return math.Int{}, err
	}
	return c.Amount, nil
})

BalanceValueCodec is a codec for encoding bank balances in a backwards compatible way. Historically, balances were represented as Coin, now they're represented as a simple math.Int

View Source
var DefaultDefaultSendEnabled = true

DefaultDefaultSendEnabled is the value that DefaultSendEnabled will have from DefaultParams().

Functions

func NoOpMintingRestrictionFn

func NoOpMintingRestrictionFn(_ context.Context, _ sdk.Coins) error

NoOpMintingRestrictionFn is a no-op MintingRestrictionFn.

func NoOpSendRestrictionFn

func NoOpSendRestrictionFn(_ context.Context, _, toAddr sdk.AccAddress, _ sdk.Coins) (sdk.AccAddress, error)

NoOpSendRestrictionFn is a no-op SendRestrictionFn.

func RegisterInterfaces

func RegisterInterfaces(registrar registry.InterfaceRegistrar)

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

RegisterLegacyAminoCodec registers the necessary x/bank interfaces and concrete types on the provided LegacyAmino codec. These types are used for Amino JSON serialization.

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 ValidateInputOutputs

func ValidateInputOutputs(input Input, outputs []Output) error

ValidateInputOutputs validates that each respective input and output is valid and that the sum of inputs is equal to the sum of outputs.

Types

type AccountKeeper

type AccountKeeper interface {
	AddressCodec() address.Codec

	NewAccount(context.Context, sdk.AccountI) sdk.AccountI
	NewAccountWithAddress(ctx context.Context, addr sdk.AccAddress) sdk.AccountI

	GetAccount(ctx context.Context, addr sdk.AccAddress) sdk.AccountI
	HasAccount(ctx context.Context, addr sdk.AccAddress) bool
	SetAccount(ctx context.Context, acc sdk.AccountI)
	ValidatePermissions(macc sdk.ModuleAccountI) error

	GetModuleAddress(moduleName string) sdk.AccAddress
	GetModuleAddressAndPermissions(moduleName string) (addr sdk.AccAddress, permissions []string)
	GetModuleAccountAndPermissions(ctx context.Context, moduleName string) (sdk.ModuleAccountI, []string)
	GetModuleAccount(ctx context.Context, moduleName string) sdk.ModuleAccountI
	SetModuleAccount(ctx context.Context, macc sdk.ModuleAccountI)
	GetModulePermissions() map[string]types.PermissionsForAddress
}

AccountKeeper defines the account contract that must be fulfilled when creating a x/bank keeper.

type Balance

type Balance struct {
	// address is the address of the balance holder.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// coins defines the different coins this balance holds.
	Coins github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=coins,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"coins"`
}

Balance defines an account address and balance pair used in the bank module's genesis state.

func SanitizeGenesisBalances

func SanitizeGenesisBalances(balances []Balance, addressCodec address.Codec) ([]Balance, error)

SanitizeGenesisBalances checks for duplicates and sorts addresses and coin sets.

func (*Balance) Descriptor

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

func (Balance) GetAddress

func (b Balance) GetAddress() string

GetAddress returns the account address of the Balance object.

func (Balance) GetCoins

func (b Balance) GetCoins() sdk.Coins

GetCoins returns the account coins of the Balance object.

func (*Balance) Marshal

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

func (*Balance) MarshalTo

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

func (*Balance) MarshalToSizedBuffer

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

func (*Balance) ProtoMessage

func (*Balance) ProtoMessage()

func (*Balance) Reset

func (m *Balance) Reset()

func (*Balance) Size

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

func (*Balance) String

func (m *Balance) String() string

func (*Balance) Unmarshal

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

func (Balance) Validate

func (b Balance) Validate() error

Validate checks for address and coins correctness.

func (*Balance) XXX_DiscardUnknown

func (m *Balance) XXX_DiscardUnknown()

func (*Balance) XXX_Marshal

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

func (*Balance) XXX_Merge

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

func (*Balance) XXX_Size

func (m *Balance) XXX_Size() int

func (*Balance) XXX_Unmarshal

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

type DenomOwner

type DenomOwner struct {
	// address defines the address that owns a particular denomination.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// balance is the balance of the denominated coin for an account.
	Balance types.Coin `protobuf:"bytes,2,opt,name=balance,proto3" json:"balance"`
}

DenomOwner defines structure representing an account that owns or holds a particular denominated token. It contains the account address and account balance of the denominated token.

func (*DenomOwner) Descriptor

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

func (*DenomOwner) GetAddress

func (m *DenomOwner) GetAddress() string

func (*DenomOwner) GetBalance

func (m *DenomOwner) GetBalance() types.Coin

func (*DenomOwner) Marshal

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

func (*DenomOwner) MarshalTo

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

func (*DenomOwner) MarshalToSizedBuffer

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

func (*DenomOwner) ProtoMessage

func (*DenomOwner) ProtoMessage()

func (*DenomOwner) Reset

func (m *DenomOwner) Reset()

func (*DenomOwner) Size

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

func (*DenomOwner) String

func (m *DenomOwner) String() string

func (*DenomOwner) Unmarshal

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

func (*DenomOwner) XXX_DiscardUnknown

func (m *DenomOwner) XXX_DiscardUnknown()

func (*DenomOwner) XXX_Marshal

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

func (*DenomOwner) XXX_Merge

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

func (*DenomOwner) XXX_Size

func (m *DenomOwner) XXX_Size() int

func (*DenomOwner) XXX_Unmarshal

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

type DenomUnit

type DenomUnit struct {
	// denom represents the string name of the given denom unit (e.g uatom).
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// exponent represents power of 10 exponent that one must
	// raise the base_denom to in order to equal the given DenomUnit's denom
	// 1 denom = 10^exponent base_denom
	// (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with
	// exponent = 6, thus: 1 atom = 10^6 uatom).
	Exponent uint32 `protobuf:"varint,2,opt,name=exponent,proto3" json:"exponent,omitempty"`
	// aliases is a list of string aliases for the given denom
	Aliases []string `protobuf:"bytes,3,rep,name=aliases,proto3" json:"aliases,omitempty"`
}

DenomUnit represents a struct that describes a given denomination unit of the basic token.

func (*DenomUnit) Descriptor

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

func (*DenomUnit) GetAliases

func (m *DenomUnit) GetAliases() []string

func (*DenomUnit) GetDenom

func (m *DenomUnit) GetDenom() string

func (*DenomUnit) GetExponent

func (m *DenomUnit) GetExponent() uint32

func (*DenomUnit) Marshal

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

func (*DenomUnit) MarshalTo

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

func (*DenomUnit) MarshalToSizedBuffer

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

func (*DenomUnit) ProtoMessage

func (*DenomUnit) ProtoMessage()

func (*DenomUnit) Reset

func (m *DenomUnit) Reset()

func (*DenomUnit) Size

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

func (*DenomUnit) String

func (m *DenomUnit) String() string

func (*DenomUnit) Unmarshal

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

func (DenomUnit) Validate

func (du DenomUnit) Validate() error

Validate performs a basic validation of the denomination unit fields

func (*DenomUnit) XXX_DiscardUnknown

func (m *DenomUnit) XXX_DiscardUnknown()

func (*DenomUnit) XXX_Marshal

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

func (*DenomUnit) XXX_Merge

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

func (*DenomUnit) XXX_Size

func (m *DenomUnit) XXX_Size() int

func (*DenomUnit) XXX_Unmarshal

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

type GenesisBalancesIterator

type GenesisBalancesIterator struct{}

GenesisBalancesIterator implements genesis account iteration.

func (GenesisBalancesIterator) IterateGenesisBalances

func (GenesisBalancesIterator) IterateGenesisBalances(
	cdc codec.JSONCodec, appState map[string]json.RawMessage, cb func(exported.GenesisBalance) (stop bool),
)

IterateGenesisBalances iterates over all the genesis balances found in appGenesis and invokes a callback on each genesis account. If any call returns true, iteration stops.

type GenesisState

type GenesisState struct {
	// params defines all the parameters of the module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	// balances is an array containing the balances of all the accounts.
	Balances []Balance `protobuf:"bytes,2,rep,name=balances,proto3" json:"balances"`
	// supply represents the total supply. If it is left empty, then supply will be calculated based on the provided
	// balances. Otherwise, it will be used to validate that the sum of the balances equals this amount.
	Supply github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=supply,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"supply"`
	// denom_metadata defines the metadata of the different coins.
	DenomMetadata []Metadata `protobuf:"bytes,4,rep,name=denom_metadata,json=denomMetadata,proto3" json:"denom_metadata"`
	// send_enabled defines the denoms where send is enabled or disabled.
	SendEnabled []SendEnabled `protobuf:"bytes,5,rep,name=send_enabled,json=sendEnabled,proto3" json:"send_enabled"`
}

GenesisState defines the bank module's genesis state.

func DefaultGenesisState

func DefaultGenesisState() *GenesisState

DefaultGenesisState returns a default bank module genesis state.

func GetGenesisStateFromAppState

func GetGenesisStateFromAppState(cdc codec.JSONCodec, appState map[string]json.RawMessage) *GenesisState

GetGenesisStateFromAppState returns x/bank GenesisState given raw application genesis state.

func NewGenesisState

func NewGenesisState(params Params, balances []Balance, supply sdk.Coins, denomMetaData []Metadata, sendEnabled []SendEnabled) *GenesisState

NewGenesisState creates a new genesis state.

func (*GenesisState) Descriptor

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

func (GenesisState) GetAllSendEnabled

func (gs GenesisState) GetAllSendEnabled() []SendEnabled

GetAllSendEnabled returns all the SendEnabled entries from both the SendEnabled field and the Params. If a denom has an entry in both, the entry in the SendEnabled field takes precedence over one in Params.

func (*GenesisState) GetBalances

func (m *GenesisState) GetBalances() []Balance

func (*GenesisState) GetDenomMetadata

func (m *GenesisState) GetDenomMetadata() []Metadata

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetSendEnabled

func (m *GenesisState) GetSendEnabled() []SendEnabled

func (*GenesisState) GetSupply

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

func (gs *GenesisState) MigrateSendEnabled()

MigrateSendEnabled moves the SendEnabled info from Params into the GenesisState.SendEnabled field and removes them from Params. If the Params.SendEnabled slice is empty, this is a noop.

If the main SendEnabled slice already has entries, the Params.SendEnabled entries are added. In case of the same demon in both, preference is given to the existing (main GenesisState field) entry.

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

Validate performs basic validation of supply genesis data returning an error for any failed validation criteria.

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 Input

type Input struct {
	Address string                                   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Coins   github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=coins,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"coins"`
}

Input models transaction input.

func NewInput

func NewInput(addr string, coins sdk.Coins) Input

NewInput - create a transaction input, used with MsgMultiSend

func (*Input) Descriptor

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

func (*Input) Marshal

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

func (*Input) MarshalTo

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

func (*Input) MarshalToSizedBuffer

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

func (*Input) ProtoMessage

func (*Input) ProtoMessage()

func (*Input) Reset

func (m *Input) Reset()

func (*Input) Size

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

func (*Input) String

func (m *Input) String() string

func (*Input) Unmarshal

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

func (Input) ValidateBasic

func (in Input) ValidateBasic() error

ValidateBasic - validate transaction input

func (*Input) XXX_DiscardUnknown

func (m *Input) XXX_DiscardUnknown()

func (*Input) XXX_Marshal

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

func (*Input) XXX_Merge

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

func (*Input) XXX_Size

func (m *Input) XXX_Size() int

func (*Input) XXX_Unmarshal

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

type Metadata

type Metadata struct {
	Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	// denom_units represents the list of DenomUnit's for a given coin
	DenomUnits []*DenomUnit `protobuf:"bytes,2,rep,name=denom_units,json=denomUnits,proto3" json:"denom_units,omitempty"`
	// base represents the base denom (should be the DenomUnit with exponent = 0).
	Base string `protobuf:"bytes,3,opt,name=base,proto3" json:"base,omitempty"`
	// display indicates the suggested denom that should be
	// displayed in clients.
	Display string `protobuf:"bytes,4,opt,name=display,proto3" json:"display,omitempty"`
	// name defines the name of the token (eg: Cosmos Atom)
	Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	// symbol is the token symbol usually shown on exchanges (eg: ATOM). This can
	// be the same as the display.
	Symbol string `protobuf:"bytes,6,opt,name=symbol,proto3" json:"symbol,omitempty"`
	// URI to a document (on or off-chain) that contains additional information. Optional.
	URI string `protobuf:"bytes,7,opt,name=uri,proto3" json:"uri,omitempty"`
	// URIHash is a sha256 hash of a document pointed by URI. It's used to verify that
	// the document didn't change. Optional.
	URIHash string `protobuf:"bytes,8,opt,name=uri_hash,json=uriHash,proto3" json:"uri_hash,omitempty"`
}

Metadata represents a struct that describes a basic token.

func (*Metadata) Descriptor

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

func (*Metadata) GetBase

func (m *Metadata) GetBase() string

func (*Metadata) GetDenomUnits

func (m *Metadata) GetDenomUnits() []*DenomUnit

func (*Metadata) GetDescription

func (m *Metadata) GetDescription() string

func (*Metadata) GetDisplay

func (m *Metadata) GetDisplay() string

func (*Metadata) GetName

func (m *Metadata) GetName() string

func (*Metadata) GetSymbol

func (m *Metadata) GetSymbol() string

func (*Metadata) GetURI

func (m *Metadata) GetURI() string

func (*Metadata) GetURIHash

func (m *Metadata) GetURIHash() string

func (*Metadata) Marshal

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

func (*Metadata) MarshalTo

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

func (*Metadata) MarshalToSizedBuffer

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

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) Reset

func (m *Metadata) Reset()

func (*Metadata) Size

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

func (*Metadata) String

func (m *Metadata) String() string

func (*Metadata) Unmarshal

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

func (Metadata) Validate

func (m Metadata) Validate() error

Validate performs a basic validation of the coin metadata fields. It checks:

  • Name and Symbol are not blank
  • Base and Display denominations are valid coin denominations
  • Base and Display denominations are present in the DenomUnit slice
  • Base denomination has exponent 0
  • Denomination units are sorted in ascending order
  • Denomination units not duplicated

func (*Metadata) XXX_DiscardUnknown

func (m *Metadata) XXX_DiscardUnknown()

func (*Metadata) XXX_Marshal

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

func (*Metadata) XXX_Merge

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

func (*Metadata) XXX_Size

func (m *Metadata) XXX_Size() int

func (*Metadata) XXX_Unmarshal

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

type MintingRestrictionFn

type MintingRestrictionFn func(ctx context.Context, coins sdk.Coins) error

A MintingRestrictionFn can restrict minting of coins.

func ComposeMintingRestrictions

func ComposeMintingRestrictions(restrictions ...MintingRestrictionFn) MintingRestrictionFn

ComposeMintingRestrictions combines multiple MintingRestrictionFn into one. nil entries are ignored. If all entries are nil, nil is returned. If exactly one entry is not nil, it is returned. Otherwise, a new MintingRestrictionFn is returned that runs the non-nil restrictions in the order they are given. The composition runs each minting restriction until an error is encountered and returns that error.

func (MintingRestrictionFn) Then

Then creates a composite restriction that runs this one then the provided second one.

type MsgBurn

type MsgBurn struct {
	FromAddress string        `protobuf:"bytes,1,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"`
	Amount      []*types.Coin `protobuf:"bytes,2,rep,name=amount,proto3" json:"amount,omitempty"`
}

MsgBurn defines a message for burning coins.

func (*MsgBurn) Descriptor

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

func (*MsgBurn) Marshal

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

func (*MsgBurn) MarshalTo

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

func (*MsgBurn) MarshalToSizedBuffer

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

func (*MsgBurn) ProtoMessage

func (*MsgBurn) ProtoMessage()

func (*MsgBurn) Reset

func (m *MsgBurn) Reset()

func (*MsgBurn) Size

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

func (*MsgBurn) String

func (m *MsgBurn) String() string

func (*MsgBurn) Unmarshal

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

func (*MsgBurn) 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 defines the Msg/Burn response type.

func (*MsgBurnResponse) Descriptor

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

func (*MsgBurnResponse) Marshal

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

func (*MsgBurnResponse) MarshalTo

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

func (*MsgBurnResponse) MarshalToSizedBuffer

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

func (*MsgBurnResponse) ProtoMessage

func (*MsgBurnResponse) ProtoMessage()

func (*MsgBurnResponse) Reset

func (m *MsgBurnResponse) Reset()

func (*MsgBurnResponse) Size

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

func (*MsgBurnResponse) String

func (m *MsgBurnResponse) String() string

func (*MsgBurnResponse) Unmarshal

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

func (*MsgBurnResponse) XXX_DiscardUnknown

func (m *MsgBurnResponse) XXX_DiscardUnknown()

func (*MsgBurnResponse) XXX_Marshal

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

func (*MsgBurnResponse) XXX_Merge

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

func (*MsgBurnResponse) XXX_Size

func (m *MsgBurnResponse) XXX_Size() int

func (*MsgBurnResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// Send defines a method for sending coins from one account to another account.
	Send(ctx context.Context, in *MsgSend, opts ...grpc.CallOption) (*MsgSendResponse, error)
	// MultiSend defines a method for sending coins from some accounts to other accounts.
	MultiSend(ctx context.Context, in *MsgMultiSend, opts ...grpc.CallOption) (*MsgMultiSendResponse, error)
	// Burn defines a method for burning coins by an account.
	Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOption) (*MsgBurnResponse, error)
	// UpdateParams defines a governance operation for updating the x/bank module parameters.
	// The authority is defined in the keeper.
	UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
	// SetSendEnabled is a governance operation for setting the SendEnabled flag
	// on any number of Denoms. Only the entries to add or update should be
	// included. Entries that already exist in the store, but that aren't
	// included in this message, will be left unchanged.
	SetSendEnabled(ctx context.Context, in *MsgSetSendEnabled, opts ...grpc.CallOption) (*MsgSetSendEnabledResponse, error)
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgMultiSend

type MsgMultiSend struct {
	// Inputs, despite being `repeated`, only allows one sender input. This is
	// checked in MsgMultiSend's ValidateBasic.
	Inputs  []Input  `protobuf:"bytes,1,rep,name=inputs,proto3" json:"inputs"`
	Outputs []Output `protobuf:"bytes,2,rep,name=outputs,proto3" json:"outputs"`
}

MsgMultiSend represents an arbitrary multi-in, multi-out send message.

func NewMsgMultiSend

func NewMsgMultiSend(in Input, out []Output) *MsgMultiSend

NewMsgMultiSend - construct arbitrary multi-in, multi-out send msg.

func (*MsgMultiSend) Descriptor

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

func (*MsgMultiSend) GetInputs

func (m *MsgMultiSend) GetInputs() []Input

func (*MsgMultiSend) GetOutputs

func (m *MsgMultiSend) GetOutputs() []Output

func (*MsgMultiSend) Marshal

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

func (*MsgMultiSend) MarshalTo

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

func (*MsgMultiSend) MarshalToSizedBuffer

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

func (*MsgMultiSend) ProtoMessage

func (*MsgMultiSend) ProtoMessage()

func (*MsgMultiSend) Reset

func (m *MsgMultiSend) Reset()

func (*MsgMultiSend) Size

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

func (*MsgMultiSend) String

func (m *MsgMultiSend) String() string

func (*MsgMultiSend) Unmarshal

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

func (*MsgMultiSend) XXX_DiscardUnknown

func (m *MsgMultiSend) XXX_DiscardUnknown()

func (*MsgMultiSend) XXX_Marshal

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

func (*MsgMultiSend) XXX_Merge

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

func (*MsgMultiSend) XXX_Size

func (m *MsgMultiSend) XXX_Size() int

func (*MsgMultiSend) XXX_Unmarshal

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

type MsgMultiSendResponse

type MsgMultiSendResponse struct {
}

MsgMultiSendResponse defines the Msg/MultiSend response type.

func (*MsgMultiSendResponse) Descriptor

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

func (*MsgMultiSendResponse) Marshal

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

func (*MsgMultiSendResponse) MarshalTo

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

func (*MsgMultiSendResponse) MarshalToSizedBuffer

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

func (*MsgMultiSendResponse) ProtoMessage

func (*MsgMultiSendResponse) ProtoMessage()

func (*MsgMultiSendResponse) Reset

func (m *MsgMultiSendResponse) Reset()

func (*MsgMultiSendResponse) Size

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

func (*MsgMultiSendResponse) String

func (m *MsgMultiSendResponse) String() string

func (*MsgMultiSendResponse) Unmarshal

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

func (*MsgMultiSendResponse) XXX_DiscardUnknown

func (m *MsgMultiSendResponse) XXX_DiscardUnknown()

func (*MsgMultiSendResponse) XXX_Marshal

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

func (*MsgMultiSendResponse) XXX_Merge

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

func (*MsgMultiSendResponse) XXX_Size

func (m *MsgMultiSendResponse) XXX_Size() int

func (*MsgMultiSendResponse) XXX_Unmarshal

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

type MsgSend

type MsgSend struct {
	FromAddress string                                   `protobuf:"bytes,1,opt,name=from_address,json=fromAddress,proto3" json:"from_address,omitempty"`
	ToAddress   string                                   `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3" json:"to_address,omitempty"`
	Amount      github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"`
}

MsgSend represents a message to send coins from one account to another.

func NewMsgSend

func NewMsgSend(fromAddr, toAddr string, amount sdk.Coins) *MsgSend

NewMsgSend - construct a msg to send coins from one account to another.

func (*MsgSend) Descriptor

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

func (*MsgSend) Marshal

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

func (*MsgSend) MarshalTo

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

func (*MsgSend) MarshalToSizedBuffer

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

func (*MsgSend) ProtoMessage

func (*MsgSend) ProtoMessage()

func (*MsgSend) Reset

func (m *MsgSend) Reset()

func (*MsgSend) Size

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

func (*MsgSend) String

func (m *MsgSend) String() string

func (*MsgSend) Unmarshal

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

func (*MsgSend) XXX_DiscardUnknown

func (m *MsgSend) XXX_DiscardUnknown()

func (*MsgSend) XXX_Marshal

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

func (*MsgSend) XXX_Merge

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

func (*MsgSend) XXX_Size

func (m *MsgSend) XXX_Size() int

func (*MsgSend) XXX_Unmarshal

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

type MsgSendResponse

type MsgSendResponse struct {
}

MsgSendResponse defines the Msg/Send response type.

func (*MsgSendResponse) Descriptor

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

func (*MsgSendResponse) Marshal

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

func (*MsgSendResponse) MarshalTo

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

func (*MsgSendResponse) MarshalToSizedBuffer

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

func (*MsgSendResponse) ProtoMessage

func (*MsgSendResponse) ProtoMessage()

func (*MsgSendResponse) Reset

func (m *MsgSendResponse) Reset()

func (*MsgSendResponse) Size

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

func (*MsgSendResponse) String

func (m *MsgSendResponse) String() string

func (*MsgSendResponse) Unmarshal

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

func (*MsgSendResponse) XXX_DiscardUnknown

func (m *MsgSendResponse) XXX_DiscardUnknown()

func (*MsgSendResponse) XXX_Marshal

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

func (*MsgSendResponse) XXX_Merge

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

func (*MsgSendResponse) XXX_Size

func (m *MsgSendResponse) XXX_Size() int

func (*MsgSendResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// Send defines a method for sending coins from one account to another account.
	Send(context.Context, *MsgSend) (*MsgSendResponse, error)
	// MultiSend defines a method for sending coins from some accounts to other accounts.
	MultiSend(context.Context, *MsgMultiSend) (*MsgMultiSendResponse, error)
	// Burn defines a method for burning coins by an account.
	Burn(context.Context, *MsgBurn) (*MsgBurnResponse, error)
	// UpdateParams defines a governance operation for updating the x/bank module parameters.
	// The authority is defined in the keeper.
	UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
	// SetSendEnabled is a governance operation for setting the SendEnabled flag
	// on any number of Denoms. Only the entries to add or update should be
	// included. Entries that already exist in the store, but that aren't
	// included in this message, will be left unchanged.
	SetSendEnabled(context.Context, *MsgSetSendEnabled) (*MsgSetSendEnabledResponse, error)
}

MsgServer is the server API for Msg service.

type MsgSetSendEnabled

type MsgSetSendEnabled struct {
	// authority is the address that controls the module.
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// send_enabled is the list of entries to add or update.
	SendEnabled []*SendEnabled `protobuf:"bytes,2,rep,name=send_enabled,json=sendEnabled,proto3" json:"send_enabled,omitempty"`
	// use_default_for is a list of denoms that should use the params.default_send_enabled value.
	// Denoms listed here will have their SendEnabled entries deleted.
	// If a denom is included that doesn't have a SendEnabled entry,
	// it will be ignored.
	UseDefaultFor []string `protobuf:"bytes,3,rep,name=use_default_for,json=useDefaultFor,proto3" json:"use_default_for,omitempty"`
}

MsgSetSendEnabled is the Msg/SetSendEnabled request type.

Only entries to add/update/delete need to be included. Existing SendEnabled entries that are not included in this message are left unchanged.

func NewMsgSetSendEnabled

func NewMsgSetSendEnabled(authority string, sendEnabled []*SendEnabled, useDefaultFor []string) *MsgSetSendEnabled

NewMsgSetSendEnabled Construct a message to set one or more SendEnabled entries.

func (*MsgSetSendEnabled) Descriptor

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

func (*MsgSetSendEnabled) GetAuthority

func (m *MsgSetSendEnabled) GetAuthority() string

func (*MsgSetSendEnabled) GetSendEnabled

func (m *MsgSetSendEnabled) GetSendEnabled() []*SendEnabled

func (*MsgSetSendEnabled) GetUseDefaultFor

func (m *MsgSetSendEnabled) GetUseDefaultFor() []string

func (*MsgSetSendEnabled) Marshal

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

func (*MsgSetSendEnabled) MarshalTo

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

func (*MsgSetSendEnabled) MarshalToSizedBuffer

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

func (*MsgSetSendEnabled) ProtoMessage

func (*MsgSetSendEnabled) ProtoMessage()

func (*MsgSetSendEnabled) Reset

func (m *MsgSetSendEnabled) Reset()

func (*MsgSetSendEnabled) Size

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

func (*MsgSetSendEnabled) String

func (m *MsgSetSendEnabled) String() string

func (*MsgSetSendEnabled) Unmarshal

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

func (*MsgSetSendEnabled) XXX_DiscardUnknown

func (m *MsgSetSendEnabled) XXX_DiscardUnknown()

func (*MsgSetSendEnabled) XXX_Marshal

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

func (*MsgSetSendEnabled) XXX_Merge

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

func (*MsgSetSendEnabled) XXX_Size

func (m *MsgSetSendEnabled) XXX_Size() int

func (*MsgSetSendEnabled) XXX_Unmarshal

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

type MsgSetSendEnabledResponse

type MsgSetSendEnabledResponse struct {
}

MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.

func (*MsgSetSendEnabledResponse) Descriptor

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

func (*MsgSetSendEnabledResponse) Marshal

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

func (*MsgSetSendEnabledResponse) MarshalTo

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

func (*MsgSetSendEnabledResponse) MarshalToSizedBuffer

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

func (*MsgSetSendEnabledResponse) ProtoMessage

func (*MsgSetSendEnabledResponse) ProtoMessage()

func (*MsgSetSendEnabledResponse) Reset

func (m *MsgSetSendEnabledResponse) Reset()

func (*MsgSetSendEnabledResponse) Size

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

func (*MsgSetSendEnabledResponse) String

func (m *MsgSetSendEnabledResponse) String() string

func (*MsgSetSendEnabledResponse) Unmarshal

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

func (*MsgSetSendEnabledResponse) XXX_DiscardUnknown

func (m *MsgSetSendEnabledResponse) XXX_DiscardUnknown()

func (*MsgSetSendEnabledResponse) XXX_Marshal

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

func (*MsgSetSendEnabledResponse) XXX_Merge

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

func (*MsgSetSendEnabledResponse) XXX_Size

func (m *MsgSetSendEnabledResponse) XXX_Size() int

func (*MsgSetSendEnabledResponse) XXX_Unmarshal

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

type MsgUpdateParams

type MsgUpdateParams struct {
	// authority is the address that controls the module (defaults to x/gov unless overwritten).
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// params defines the x/bank parameters to update.
	//
	// NOTE: All parameters must be supplied.
	Params Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params"`
}

MsgUpdateParams is the Msg/UpdateParams request type.

func (*MsgUpdateParams) Descriptor

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) Marshal

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

func (*MsgUpdateParams) MarshalTo

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

func (*MsgUpdateParams) MarshalToSizedBuffer

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

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Size

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

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Unmarshal

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

func (*MsgUpdateParams) XXX_DiscardUnknown

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal

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

func (*MsgUpdateParams) XXX_Merge

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

func (*MsgUpdateParams) XXX_Size

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal

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

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
}

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

func (*MsgUpdateParamsResponse) Descriptor

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

func (*MsgUpdateParamsResponse) Marshal

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

func (*MsgUpdateParamsResponse) MarshalTo

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

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size

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

func (*MsgUpdateParamsResponse) String

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal

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

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal

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

func (*MsgUpdateParamsResponse) XXX_Merge

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

func (*MsgUpdateParamsResponse) XXX_Size

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal

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

type Output

type Output struct {
	Address string                                   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Coins   github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=coins,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"coins"`
}

Output models transaction outputs.

func NewOutput

func NewOutput(addr string, coins sdk.Coins) Output

NewOutput - create a transaction output, used with MsgMultiSend

func (*Output) Descriptor

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

func (*Output) Marshal

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

func (*Output) MarshalTo

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

func (*Output) MarshalToSizedBuffer

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

func (*Output) ProtoMessage

func (*Output) ProtoMessage()

func (*Output) Reset

func (m *Output) Reset()

func (*Output) Size

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

func (*Output) String

func (m *Output) String() string

func (*Output) Unmarshal

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

func (Output) ValidateBasic

func (out Output) ValidateBasic() error

ValidateBasic - validate transaction output

func (*Output) XXX_DiscardUnknown

func (m *Output) XXX_DiscardUnknown()

func (*Output) XXX_Marshal

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

func (*Output) XXX_Merge

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

func (*Output) XXX_Size

func (m *Output) XXX_Size() int

func (*Output) XXX_Unmarshal

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

type Params

type Params struct {
	// Deprecated: Use of SendEnabled in params is deprecated.
	// For genesis, use the newly added send_enabled field in the genesis object.
	// Storage, lookup, and manipulation of this information is now in the keeper.
	//
	// As of cosmos-sdk 0.47, this only exists for backwards compatibility of genesis files.
	SendEnabled        []*SendEnabled `protobuf:"bytes,1,rep,name=send_enabled,json=sendEnabled,proto3" json:"send_enabled,omitempty"` // Deprecated: Do not use.
	DefaultSendEnabled bool           `protobuf:"varint,2,opt,name=default_send_enabled,json=defaultSendEnabled,proto3" json:"default_send_enabled,omitempty"`
}

Params defines the parameters for the bank module.

func DefaultParams

func DefaultParams() Params

DefaultParams is the default parameter configuration for the bank module

func NewParams

func NewParams(defaultSendEnabled bool) Params

NewParams creates a new parameter configuration for the bank module

func (*Params) Descriptor

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

func (*Params) GetDefaultSendEnabled

func (m *Params) GetDefaultSendEnabled() bool

func (*Params) GetSendEnabled deprecated

func (m *Params) GetSendEnabled() []*SendEnabled

Deprecated: Do not use.

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate all bank module parameters

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryAllBalancesRequest

type QueryAllBalancesRequest struct {
	// address is the address to query balances for.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.
	ResolveDenom bool `protobuf:"varint,3,opt,name=resolve_denom,json=resolveDenom,proto3" json:"resolve_denom,omitempty"`
}

QueryBalanceRequest is the request type for the Query/AllBalances RPC method.

func NewQueryAllBalancesRequest

func NewQueryAllBalancesRequest(addr string, req *query.PageRequest, resolveDenom bool) *QueryAllBalancesRequest

NewQueryAllBalancesRequest creates a new instance of QueryAllBalancesRequest.

func (*QueryAllBalancesRequest) Descriptor

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

func (*QueryAllBalancesRequest) Marshal

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

func (*QueryAllBalancesRequest) MarshalTo

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

func (*QueryAllBalancesRequest) MarshalToSizedBuffer

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

func (*QueryAllBalancesRequest) ProtoMessage

func (*QueryAllBalancesRequest) ProtoMessage()

func (*QueryAllBalancesRequest) Reset

func (m *QueryAllBalancesRequest) Reset()

func (*QueryAllBalancesRequest) Size

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

func (*QueryAllBalancesRequest) String

func (m *QueryAllBalancesRequest) String() string

func (*QueryAllBalancesRequest) Unmarshal

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

func (*QueryAllBalancesRequest) XXX_DiscardUnknown

func (m *QueryAllBalancesRequest) XXX_DiscardUnknown()

func (*QueryAllBalancesRequest) XXX_Marshal

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

func (*QueryAllBalancesRequest) XXX_Merge

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

func (*QueryAllBalancesRequest) XXX_Size

func (m *QueryAllBalancesRequest) XXX_Size() int

func (*QueryAllBalancesRequest) XXX_Unmarshal

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

type QueryAllBalancesResponse

type QueryAllBalancesResponse struct {
	// balances is the balances of all the coins.
	Balances github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=balances,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"balances"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryAllBalancesResponse is the response type for the Query/AllBalances RPC method.

func (*QueryAllBalancesResponse) Descriptor

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

func (*QueryAllBalancesResponse) GetBalances

func (*QueryAllBalancesResponse) GetPagination

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

func (*QueryAllBalancesResponse) Marshal

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

func (*QueryAllBalancesResponse) MarshalTo

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

func (*QueryAllBalancesResponse) MarshalToSizedBuffer

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

func (*QueryAllBalancesResponse) ProtoMessage

func (*QueryAllBalancesResponse) ProtoMessage()

func (*QueryAllBalancesResponse) Reset

func (m *QueryAllBalancesResponse) Reset()

func (*QueryAllBalancesResponse) Size

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

func (*QueryAllBalancesResponse) String

func (m *QueryAllBalancesResponse) String() string

func (*QueryAllBalancesResponse) Unmarshal

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

func (*QueryAllBalancesResponse) XXX_DiscardUnknown

func (m *QueryAllBalancesResponse) XXX_DiscardUnknown()

func (*QueryAllBalancesResponse) XXX_Marshal

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

func (*QueryAllBalancesResponse) XXX_Merge

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

func (*QueryAllBalancesResponse) XXX_Size

func (m *QueryAllBalancesResponse) XXX_Size() int

func (*QueryAllBalancesResponse) XXX_Unmarshal

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

type QueryBalanceRequest

type QueryBalanceRequest struct {
	// address is the address to query balances for.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// denom is the coin denom to query balances for.
	Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

QueryBalanceRequest is the request type for the Query/Balance RPC method.

func NewQueryBalanceRequest

func NewQueryBalanceRequest(addr, denom string) *QueryBalanceRequest

NewQueryBalanceRequest creates a new instance of QueryBalanceRequest.

func (*QueryBalanceRequest) Descriptor

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

func (*QueryBalanceRequest) Marshal

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

func (*QueryBalanceRequest) MarshalTo

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

func (*QueryBalanceRequest) MarshalToSizedBuffer

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

func (*QueryBalanceRequest) ProtoMessage

func (*QueryBalanceRequest) ProtoMessage()

func (*QueryBalanceRequest) Reset

func (m *QueryBalanceRequest) Reset()

func (*QueryBalanceRequest) Size

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

func (*QueryBalanceRequest) String

func (m *QueryBalanceRequest) String() string

func (*QueryBalanceRequest) Unmarshal

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

func (*QueryBalanceRequest) XXX_DiscardUnknown

func (m *QueryBalanceRequest) XXX_DiscardUnknown()

func (*QueryBalanceRequest) XXX_Marshal

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

func (*QueryBalanceRequest) XXX_Merge

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

func (*QueryBalanceRequest) XXX_Size

func (m *QueryBalanceRequest) XXX_Size() int

func (*QueryBalanceRequest) XXX_Unmarshal

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

type QueryBalanceResponse

type QueryBalanceResponse struct {
	// balance is the balance of the coin.
	Balance *types.Coin `protobuf:"bytes,1,opt,name=balance,proto3" json:"balance,omitempty"`
}

QueryBalanceResponse is the response type for the Query/Balance RPC method.

func (*QueryBalanceResponse) Descriptor

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

func (*QueryBalanceResponse) GetBalance

func (m *QueryBalanceResponse) GetBalance() *types.Coin

func (*QueryBalanceResponse) Marshal

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

func (*QueryBalanceResponse) MarshalTo

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

func (*QueryBalanceResponse) MarshalToSizedBuffer

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

func (*QueryBalanceResponse) ProtoMessage

func (*QueryBalanceResponse) ProtoMessage()

func (*QueryBalanceResponse) Reset

func (m *QueryBalanceResponse) Reset()

func (*QueryBalanceResponse) Size

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

func (*QueryBalanceResponse) String

func (m *QueryBalanceResponse) String() string

func (*QueryBalanceResponse) Unmarshal

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

func (*QueryBalanceResponse) XXX_DiscardUnknown

func (m *QueryBalanceResponse) XXX_DiscardUnknown()

func (*QueryBalanceResponse) XXX_Marshal

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

func (*QueryBalanceResponse) XXX_Merge

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

func (*QueryBalanceResponse) XXX_Size

func (m *QueryBalanceResponse) XXX_Size() int

func (*QueryBalanceResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Balance queries the balance of a single coin for a single account.
	Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error)
	// AllBalances queries the balance of all coins for a single account.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	AllBalances(ctx context.Context, in *QueryAllBalancesRequest, opts ...grpc.CallOption) (*QueryAllBalancesResponse, error)
	// SpendableBalances queries the spendable balance of all coins for a single
	// account.
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SpendableBalances(ctx context.Context, in *QuerySpendableBalancesRequest, opts ...grpc.CallOption) (*QuerySpendableBalancesResponse, error)
	// SpendableBalanceByDenom queries the spendable balance of a single denom for
	// a single account.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SpendableBalanceByDenom(ctx context.Context, in *QuerySpendableBalanceByDenomRequest, opts ...grpc.CallOption) (*QuerySpendableBalanceByDenomResponse, error)
	// TotalSupply queries the total supply of all coins.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	TotalSupply(ctx context.Context, in *QueryTotalSupplyRequest, opts ...grpc.CallOption) (*QueryTotalSupplyResponse, error)
	// SupplyOf queries the supply of a single coin.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, opts ...grpc.CallOption) (*QuerySupplyOfResponse, error)
	// Params queries the parameters of x/bank module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// DenomMetadata queries the client metadata of a given coin denomination.
	DenomMetadata(ctx context.Context, in *QueryDenomMetadataRequest, opts ...grpc.CallOption) (*QueryDenomMetadataResponse, error)
	// DenomMetadataByQueryString queries the client metadata of a given coin denomination.
	DenomMetadataByQueryString(ctx context.Context, in *QueryDenomMetadataByQueryStringRequest, opts ...grpc.CallOption) (*QueryDenomMetadataByQueryStringResponse, error)
	// DenomsMetadata queries the client metadata for all registered coin
	// denominations.
	DenomsMetadata(ctx context.Context, in *QueryDenomsMetadataRequest, opts ...grpc.CallOption) (*QueryDenomsMetadataResponse, error)
	// DenomOwners queries for all account addresses that own a particular token
	// denomination.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	DenomOwners(ctx context.Context, in *QueryDenomOwnersRequest, opts ...grpc.CallOption) (*QueryDenomOwnersResponse, error)
	// DenomOwnersByQuery queries for all account addresses that own a particular token
	// denomination.
	DenomOwnersByQuery(ctx context.Context, in *QueryDenomOwnersByQueryRequest, opts ...grpc.CallOption) (*QueryDenomOwnersByQueryResponse, error)
	// SendEnabled queries for SendEnabled entries.
	//
	// This query only returns denominations that have specific SendEnabled settings.
	// Any denomination that does not have a specific setting will use the default
	// params.default_send_enabled, and will not be returned by this query.
	SendEnabled(ctx context.Context, in *QuerySendEnabledRequest, opts ...grpc.CallOption) (*QuerySendEnabledResponse, error)
}

QueryClient is the client API for Query service.

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

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryDenomMetadataByQueryStringRequest

type QueryDenomMetadataByQueryStringRequest struct {
	// denom is the coin denom to query the metadata for.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method. Identical with QueryDenomMetadataRequest but receives denom as query string.

func (*QueryDenomMetadataByQueryStringRequest) Descriptor

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

func (*QueryDenomMetadataByQueryStringRequest) GetDenom

func (*QueryDenomMetadataByQueryStringRequest) Marshal

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

func (*QueryDenomMetadataByQueryStringRequest) MarshalTo

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

func (*QueryDenomMetadataByQueryStringRequest) MarshalToSizedBuffer

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

func (*QueryDenomMetadataByQueryStringRequest) ProtoMessage

func (*QueryDenomMetadataByQueryStringRequest) Reset

func (*QueryDenomMetadataByQueryStringRequest) Size

func (*QueryDenomMetadataByQueryStringRequest) String

func (*QueryDenomMetadataByQueryStringRequest) Unmarshal

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

func (*QueryDenomMetadataByQueryStringRequest) XXX_DiscardUnknown

func (m *QueryDenomMetadataByQueryStringRequest) XXX_DiscardUnknown()

func (*QueryDenomMetadataByQueryStringRequest) XXX_Marshal

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

func (*QueryDenomMetadataByQueryStringRequest) XXX_Merge

func (*QueryDenomMetadataByQueryStringRequest) XXX_Size

func (*QueryDenomMetadataByQueryStringRequest) XXX_Unmarshal

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

type QueryDenomMetadataByQueryStringResponse

type QueryDenomMetadataByQueryStringResponse struct {
	// metadata describes and provides all the client information for the requested token.
	Metadata Metadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata"`
}

QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.

func (*QueryDenomMetadataByQueryStringResponse) Descriptor

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

func (*QueryDenomMetadataByQueryStringResponse) GetMetadata

func (*QueryDenomMetadataByQueryStringResponse) Marshal

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

func (*QueryDenomMetadataByQueryStringResponse) MarshalTo

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

func (*QueryDenomMetadataByQueryStringResponse) MarshalToSizedBuffer

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

func (*QueryDenomMetadataByQueryStringResponse) ProtoMessage

func (*QueryDenomMetadataByQueryStringResponse) Reset

func (*QueryDenomMetadataByQueryStringResponse) Size

func (*QueryDenomMetadataByQueryStringResponse) String

func (*QueryDenomMetadataByQueryStringResponse) Unmarshal

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

func (*QueryDenomMetadataByQueryStringResponse) XXX_DiscardUnknown

func (m *QueryDenomMetadataByQueryStringResponse) XXX_DiscardUnknown()

func (*QueryDenomMetadataByQueryStringResponse) XXX_Marshal

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

func (*QueryDenomMetadataByQueryStringResponse) XXX_Merge

func (*QueryDenomMetadataByQueryStringResponse) XXX_Size

func (*QueryDenomMetadataByQueryStringResponse) XXX_Unmarshal

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

type QueryDenomMetadataRequest

type QueryDenomMetadataRequest struct {
	// denom is the coin denom to query the metadata for.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.

func (*QueryDenomMetadataRequest) Descriptor

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

func (*QueryDenomMetadataRequest) GetDenom

func (m *QueryDenomMetadataRequest) GetDenom() string

func (*QueryDenomMetadataRequest) Marshal

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

func (*QueryDenomMetadataRequest) MarshalTo

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

func (*QueryDenomMetadataRequest) MarshalToSizedBuffer

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

func (*QueryDenomMetadataRequest) ProtoMessage

func (*QueryDenomMetadataRequest) ProtoMessage()

func (*QueryDenomMetadataRequest) Reset

func (m *QueryDenomMetadataRequest) Reset()

func (*QueryDenomMetadataRequest) Size

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

func (*QueryDenomMetadataRequest) String

func (m *QueryDenomMetadataRequest) String() string

func (*QueryDenomMetadataRequest) Unmarshal

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

func (*QueryDenomMetadataRequest) XXX_DiscardUnknown

func (m *QueryDenomMetadataRequest) XXX_DiscardUnknown()

func (*QueryDenomMetadataRequest) XXX_Marshal

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

func (*QueryDenomMetadataRequest) XXX_Merge

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

func (*QueryDenomMetadataRequest) XXX_Size

func (m *QueryDenomMetadataRequest) XXX_Size() int

func (*QueryDenomMetadataRequest) XXX_Unmarshal

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

type QueryDenomMetadataResponse

type QueryDenomMetadataResponse struct {
	// metadata describes and provides all the client information for the requested token.
	Metadata Metadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata"`
}

QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC method.

func (*QueryDenomMetadataResponse) Descriptor

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

func (*QueryDenomMetadataResponse) GetMetadata

func (m *QueryDenomMetadataResponse) GetMetadata() Metadata

func (*QueryDenomMetadataResponse) Marshal

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

func (*QueryDenomMetadataResponse) MarshalTo

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

func (*QueryDenomMetadataResponse) MarshalToSizedBuffer

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

func (*QueryDenomMetadataResponse) ProtoMessage

func (*QueryDenomMetadataResponse) ProtoMessage()

func (*QueryDenomMetadataResponse) Reset

func (m *QueryDenomMetadataResponse) Reset()

func (*QueryDenomMetadataResponse) Size

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

func (*QueryDenomMetadataResponse) String

func (m *QueryDenomMetadataResponse) String() string

func (*QueryDenomMetadataResponse) Unmarshal

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

func (*QueryDenomMetadataResponse) XXX_DiscardUnknown

func (m *QueryDenomMetadataResponse) XXX_DiscardUnknown()

func (*QueryDenomMetadataResponse) XXX_Marshal

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

func (*QueryDenomMetadataResponse) XXX_Merge

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

func (*QueryDenomMetadataResponse) XXX_Size

func (m *QueryDenomMetadataResponse) XXX_Size() int

func (*QueryDenomMetadataResponse) XXX_Unmarshal

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

type QueryDenomOwnersByQueryRequest

type QueryDenomOwnersByQueryRequest struct {
	// denom defines the coin denomination to query all account holders for.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query, which queries for a paginated set of all account holders of a particular denomination.

func (*QueryDenomOwnersByQueryRequest) Descriptor

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

func (*QueryDenomOwnersByQueryRequest) GetDenom

func (m *QueryDenomOwnersByQueryRequest) GetDenom() string

func (*QueryDenomOwnersByQueryRequest) GetPagination

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

func (*QueryDenomOwnersByQueryRequest) Marshal

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

func (*QueryDenomOwnersByQueryRequest) MarshalTo

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

func (*QueryDenomOwnersByQueryRequest) MarshalToSizedBuffer

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

func (*QueryDenomOwnersByQueryRequest) ProtoMessage

func (*QueryDenomOwnersByQueryRequest) ProtoMessage()

func (*QueryDenomOwnersByQueryRequest) Reset

func (m *QueryDenomOwnersByQueryRequest) Reset()

func (*QueryDenomOwnersByQueryRequest) Size

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

func (*QueryDenomOwnersByQueryRequest) String

func (*QueryDenomOwnersByQueryRequest) Unmarshal

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

func (*QueryDenomOwnersByQueryRequest) XXX_DiscardUnknown

func (m *QueryDenomOwnersByQueryRequest) XXX_DiscardUnknown()

func (*QueryDenomOwnersByQueryRequest) XXX_Marshal

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

func (*QueryDenomOwnersByQueryRequest) XXX_Merge

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

func (*QueryDenomOwnersByQueryRequest) XXX_Size

func (m *QueryDenomOwnersByQueryRequest) XXX_Size() int

func (*QueryDenomOwnersByQueryRequest) XXX_Unmarshal

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

type QueryDenomOwnersByQueryResponse

type QueryDenomOwnersByQueryResponse struct {
	DenomOwners []*DenomOwner `protobuf:"bytes,1,rep,name=denom_owners,json=denomOwners,proto3" json:"denom_owners,omitempty"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.

func (*QueryDenomOwnersByQueryResponse) Descriptor

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

func (*QueryDenomOwnersByQueryResponse) GetDenomOwners

func (m *QueryDenomOwnersByQueryResponse) GetDenomOwners() []*DenomOwner

func (*QueryDenomOwnersByQueryResponse) GetPagination

func (*QueryDenomOwnersByQueryResponse) Marshal

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

func (*QueryDenomOwnersByQueryResponse) MarshalTo

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

func (*QueryDenomOwnersByQueryResponse) MarshalToSizedBuffer

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

func (*QueryDenomOwnersByQueryResponse) ProtoMessage

func (*QueryDenomOwnersByQueryResponse) ProtoMessage()

func (*QueryDenomOwnersByQueryResponse) Reset

func (*QueryDenomOwnersByQueryResponse) Size

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

func (*QueryDenomOwnersByQueryResponse) String

func (*QueryDenomOwnersByQueryResponse) Unmarshal

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

func (*QueryDenomOwnersByQueryResponse) XXX_DiscardUnknown

func (m *QueryDenomOwnersByQueryResponse) XXX_DiscardUnknown()

func (*QueryDenomOwnersByQueryResponse) XXX_Marshal

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

func (*QueryDenomOwnersByQueryResponse) XXX_Merge

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

func (*QueryDenomOwnersByQueryResponse) XXX_Size

func (m *QueryDenomOwnersByQueryResponse) XXX_Size() int

func (*QueryDenomOwnersByQueryResponse) XXX_Unmarshal

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

type QueryDenomOwnersRequest

type QueryDenomOwnersRequest struct {
	// denom defines the coin denomination to query all account holders for.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query, which queries for a paginated set of all account holders of a particular denomination.

func (*QueryDenomOwnersRequest) Descriptor

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

func (*QueryDenomOwnersRequest) GetDenom

func (m *QueryDenomOwnersRequest) GetDenom() string

func (*QueryDenomOwnersRequest) GetPagination

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

func (*QueryDenomOwnersRequest) Marshal

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

func (*QueryDenomOwnersRequest) MarshalTo

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

func (*QueryDenomOwnersRequest) MarshalToSizedBuffer

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

func (*QueryDenomOwnersRequest) ProtoMessage

func (*QueryDenomOwnersRequest) ProtoMessage()

func (*QueryDenomOwnersRequest) Reset

func (m *QueryDenomOwnersRequest) Reset()

func (*QueryDenomOwnersRequest) Size

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

func (*QueryDenomOwnersRequest) String

func (m *QueryDenomOwnersRequest) String() string

func (*QueryDenomOwnersRequest) Unmarshal

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

func (*QueryDenomOwnersRequest) XXX_DiscardUnknown

func (m *QueryDenomOwnersRequest) XXX_DiscardUnknown()

func (*QueryDenomOwnersRequest) XXX_Marshal

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

func (*QueryDenomOwnersRequest) XXX_Merge

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

func (*QueryDenomOwnersRequest) XXX_Size

func (m *QueryDenomOwnersRequest) XXX_Size() int

func (*QueryDenomOwnersRequest) XXX_Unmarshal

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

type QueryDenomOwnersResponse

type QueryDenomOwnersResponse struct {
	DenomOwners []*DenomOwner `protobuf:"bytes,1,rep,name=denom_owners,json=denomOwners,proto3" json:"denom_owners,omitempty"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.

func (*QueryDenomOwnersResponse) Descriptor

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

func (*QueryDenomOwnersResponse) GetDenomOwners

func (m *QueryDenomOwnersResponse) GetDenomOwners() []*DenomOwner

func (*QueryDenomOwnersResponse) GetPagination

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

func (*QueryDenomOwnersResponse) Marshal

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

func (*QueryDenomOwnersResponse) MarshalTo

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

func (*QueryDenomOwnersResponse) MarshalToSizedBuffer

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

func (*QueryDenomOwnersResponse) ProtoMessage

func (*QueryDenomOwnersResponse) ProtoMessage()

func (*QueryDenomOwnersResponse) Reset

func (m *QueryDenomOwnersResponse) Reset()

func (*QueryDenomOwnersResponse) Size

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

func (*QueryDenomOwnersResponse) String

func (m *QueryDenomOwnersResponse) String() string

func (*QueryDenomOwnersResponse) Unmarshal

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

func (*QueryDenomOwnersResponse) XXX_DiscardUnknown

func (m *QueryDenomOwnersResponse) XXX_DiscardUnknown()

func (*QueryDenomOwnersResponse) XXX_Marshal

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

func (*QueryDenomOwnersResponse) XXX_Merge

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

func (*QueryDenomOwnersResponse) XXX_Size

func (m *QueryDenomOwnersResponse) XXX_Size() int

func (*QueryDenomOwnersResponse) XXX_Unmarshal

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

type QueryDenomsMetadataRequest

type QueryDenomsMetadataRequest struct {
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.

func (*QueryDenomsMetadataRequest) Descriptor

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

func (*QueryDenomsMetadataRequest) GetPagination

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

func (*QueryDenomsMetadataRequest) Marshal

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

func (*QueryDenomsMetadataRequest) MarshalTo

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

func (*QueryDenomsMetadataRequest) MarshalToSizedBuffer

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

func (*QueryDenomsMetadataRequest) ProtoMessage

func (*QueryDenomsMetadataRequest) ProtoMessage()

func (*QueryDenomsMetadataRequest) Reset

func (m *QueryDenomsMetadataRequest) Reset()

func (*QueryDenomsMetadataRequest) Size

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

func (*QueryDenomsMetadataRequest) String

func (m *QueryDenomsMetadataRequest) String() string

func (*QueryDenomsMetadataRequest) Unmarshal

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

func (*QueryDenomsMetadataRequest) XXX_DiscardUnknown

func (m *QueryDenomsMetadataRequest) XXX_DiscardUnknown()

func (*QueryDenomsMetadataRequest) XXX_Marshal

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

func (*QueryDenomsMetadataRequest) XXX_Merge

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

func (*QueryDenomsMetadataRequest) XXX_Size

func (m *QueryDenomsMetadataRequest) XXX_Size() int

func (*QueryDenomsMetadataRequest) XXX_Unmarshal

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

type QueryDenomsMetadataResponse

type QueryDenomsMetadataResponse struct {
	// metadata provides the client information for all the registered tokens.
	Metadatas []Metadata `protobuf:"bytes,1,rep,name=metadatas,proto3" json:"metadatas"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC method.

func (*QueryDenomsMetadataResponse) Descriptor

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

func (*QueryDenomsMetadataResponse) GetMetadatas

func (m *QueryDenomsMetadataResponse) GetMetadatas() []Metadata

func (*QueryDenomsMetadataResponse) GetPagination

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

func (*QueryDenomsMetadataResponse) Marshal

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

func (*QueryDenomsMetadataResponse) MarshalTo

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

func (*QueryDenomsMetadataResponse) MarshalToSizedBuffer

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

func (*QueryDenomsMetadataResponse) ProtoMessage

func (*QueryDenomsMetadataResponse) ProtoMessage()

func (*QueryDenomsMetadataResponse) Reset

func (m *QueryDenomsMetadataResponse) Reset()

func (*QueryDenomsMetadataResponse) Size

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

func (*QueryDenomsMetadataResponse) String

func (m *QueryDenomsMetadataResponse) String() string

func (*QueryDenomsMetadataResponse) Unmarshal

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

func (*QueryDenomsMetadataResponse) XXX_DiscardUnknown

func (m *QueryDenomsMetadataResponse) XXX_DiscardUnknown()

func (*QueryDenomsMetadataResponse) XXX_Marshal

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

func (*QueryDenomsMetadataResponse) XXX_Merge

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

func (*QueryDenomsMetadataResponse) XXX_Size

func (m *QueryDenomsMetadataResponse) XXX_Size() int

func (*QueryDenomsMetadataResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest defines the request type for querying x/bank parameters.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params provides the parameters of the bank module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse defines the response type for querying x/bank parameters.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QuerySendEnabledRequest

type QuerySendEnabledRequest struct {
	// denoms is the specific denoms you want look up. Leave empty to get all entries.
	Denoms []string `protobuf:"bytes,1,rep,name=denoms,proto3" json:"denoms,omitempty"`
	// pagination defines an optional pagination for the request. This field is
	// only read if the denoms field is empty.
	Pagination *query.PageRequest `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.

func (*QuerySendEnabledRequest) Descriptor

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

func (*QuerySendEnabledRequest) GetDenoms

func (m *QuerySendEnabledRequest) GetDenoms() []string

func (*QuerySendEnabledRequest) GetPagination

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

func (*QuerySendEnabledRequest) Marshal

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

func (*QuerySendEnabledRequest) MarshalTo

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

func (*QuerySendEnabledRequest) MarshalToSizedBuffer

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

func (*QuerySendEnabledRequest) ProtoMessage

func (*QuerySendEnabledRequest) ProtoMessage()

func (*QuerySendEnabledRequest) Reset

func (m *QuerySendEnabledRequest) Reset()

func (*QuerySendEnabledRequest) Size

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

func (*QuerySendEnabledRequest) String

func (m *QuerySendEnabledRequest) String() string

func (*QuerySendEnabledRequest) Unmarshal

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

func (*QuerySendEnabledRequest) XXX_DiscardUnknown

func (m *QuerySendEnabledRequest) XXX_DiscardUnknown()

func (*QuerySendEnabledRequest) XXX_Marshal

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

func (*QuerySendEnabledRequest) XXX_Merge

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

func (*QuerySendEnabledRequest) XXX_Size

func (m *QuerySendEnabledRequest) XXX_Size() int

func (*QuerySendEnabledRequest) XXX_Unmarshal

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

type QuerySendEnabledResponse

type QuerySendEnabledResponse struct {
	SendEnabled []*SendEnabled `protobuf:"bytes,1,rep,name=send_enabled,json=sendEnabled,proto3" json:"send_enabled,omitempty"`
	// pagination defines the pagination in the response. This field is only
	// populated if the denoms field in the request is empty.
	Pagination *query.PageResponse `protobuf:"bytes,99,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QuerySendEnabledResponse defines the RPC response of a SendEnable query.

func (*QuerySendEnabledResponse) Descriptor

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

func (*QuerySendEnabledResponse) GetPagination

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

func (*QuerySendEnabledResponse) GetSendEnabled

func (m *QuerySendEnabledResponse) GetSendEnabled() []*SendEnabled

func (*QuerySendEnabledResponse) Marshal

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

func (*QuerySendEnabledResponse) MarshalTo

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

func (*QuerySendEnabledResponse) MarshalToSizedBuffer

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

func (*QuerySendEnabledResponse) ProtoMessage

func (*QuerySendEnabledResponse) ProtoMessage()

func (*QuerySendEnabledResponse) Reset

func (m *QuerySendEnabledResponse) Reset()

func (*QuerySendEnabledResponse) Size

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

func (*QuerySendEnabledResponse) String

func (m *QuerySendEnabledResponse) String() string

func (*QuerySendEnabledResponse) Unmarshal

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

func (*QuerySendEnabledResponse) XXX_DiscardUnknown

func (m *QuerySendEnabledResponse) XXX_DiscardUnknown()

func (*QuerySendEnabledResponse) XXX_Marshal

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

func (*QuerySendEnabledResponse) XXX_Merge

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

func (*QuerySendEnabledResponse) XXX_Size

func (m *QuerySendEnabledResponse) XXX_Size() int

func (*QuerySendEnabledResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Balance queries the balance of a single coin for a single account.
	Balance(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error)
	// AllBalances queries the balance of all coins for a single account.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	AllBalances(context.Context, *QueryAllBalancesRequest) (*QueryAllBalancesResponse, error)
	// SpendableBalances queries the spendable balance of all coins for a single
	// account.
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SpendableBalances(context.Context, *QuerySpendableBalancesRequest) (*QuerySpendableBalancesResponse, error)
	// SpendableBalanceByDenom queries the spendable balance of a single denom for
	// a single account.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SpendableBalanceByDenom(context.Context, *QuerySpendableBalanceByDenomRequest) (*QuerySpendableBalanceByDenomResponse, error)
	// TotalSupply queries the total supply of all coins.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	TotalSupply(context.Context, *QueryTotalSupplyRequest) (*QueryTotalSupplyResponse, error)
	// SupplyOf queries the supply of a single coin.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	SupplyOf(context.Context, *QuerySupplyOfRequest) (*QuerySupplyOfResponse, error)
	// Params queries the parameters of x/bank module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// DenomMetadata queries the client metadata of a given coin denomination.
	DenomMetadata(context.Context, *QueryDenomMetadataRequest) (*QueryDenomMetadataResponse, error)
	// DenomMetadataByQueryString queries the client metadata of a given coin denomination.
	DenomMetadataByQueryString(context.Context, *QueryDenomMetadataByQueryStringRequest) (*QueryDenomMetadataByQueryStringResponse, error)
	// DenomsMetadata queries the client metadata for all registered coin
	// denominations.
	DenomsMetadata(context.Context, *QueryDenomsMetadataRequest) (*QueryDenomsMetadataResponse, error)
	// DenomOwners queries for all account addresses that own a particular token
	// denomination.
	//
	// When called from another module, this query might consume a high amount of
	// gas if the pagination field is incorrectly set.
	DenomOwners(context.Context, *QueryDenomOwnersRequest) (*QueryDenomOwnersResponse, error)
	// DenomOwnersByQuery queries for all account addresses that own a particular token
	// denomination.
	DenomOwnersByQuery(context.Context, *QueryDenomOwnersByQueryRequest) (*QueryDenomOwnersByQueryResponse, error)
	// SendEnabled queries for SendEnabled entries.
	//
	// This query only returns denominations that have specific SendEnabled settings.
	// Any denomination that does not have a specific setting will use the default
	// params.default_send_enabled, and will not be returned by this query.
	SendEnabled(context.Context, *QuerySendEnabledRequest) (*QuerySendEnabledResponse, error)
}

QueryServer is the server API for Query service.

type QuerySpendableBalanceByDenomRequest

type QuerySpendableBalanceByDenomRequest struct {
	// address is the address to query balances for.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// denom is the coin denom to query balances for.
	Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

QuerySpendableBalanceByDenomRequest defines the gRPC request structure for querying an account's spendable balance for a specific denom.

func NewQuerySpendableBalanceByDenomRequest

func NewQuerySpendableBalanceByDenomRequest(addr, denom string) *QuerySpendableBalanceByDenomRequest

NewQuerySpendableBalanceByDenomRequest creates a new instance of a QuerySpendableBalanceByDenomRequest.

func (*QuerySpendableBalanceByDenomRequest) Descriptor

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

func (*QuerySpendableBalanceByDenomRequest) Marshal

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

func (*QuerySpendableBalanceByDenomRequest) MarshalTo

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

func (*QuerySpendableBalanceByDenomRequest) MarshalToSizedBuffer

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

func (*QuerySpendableBalanceByDenomRequest) ProtoMessage

func (*QuerySpendableBalanceByDenomRequest) ProtoMessage()

func (*QuerySpendableBalanceByDenomRequest) Reset

func (*QuerySpendableBalanceByDenomRequest) Size

func (*QuerySpendableBalanceByDenomRequest) String

func (*QuerySpendableBalanceByDenomRequest) Unmarshal

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

func (*QuerySpendableBalanceByDenomRequest) XXX_DiscardUnknown

func (m *QuerySpendableBalanceByDenomRequest) XXX_DiscardUnknown()

func (*QuerySpendableBalanceByDenomRequest) XXX_Marshal

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

func (*QuerySpendableBalanceByDenomRequest) XXX_Merge

func (*QuerySpendableBalanceByDenomRequest) XXX_Size

func (*QuerySpendableBalanceByDenomRequest) XXX_Unmarshal

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

type QuerySpendableBalanceByDenomResponse

type QuerySpendableBalanceByDenomResponse struct {
	// balance is the balance of the coin.
	Balance *types.Coin `protobuf:"bytes,1,opt,name=balance,proto3" json:"balance,omitempty"`
}

QuerySpendableBalanceByDenomResponse defines the gRPC response structure for querying an account's spendable balance for a specific denom.

func (*QuerySpendableBalanceByDenomResponse) Descriptor

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

func (*QuerySpendableBalanceByDenomResponse) GetBalance

func (*QuerySpendableBalanceByDenomResponse) Marshal

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

func (*QuerySpendableBalanceByDenomResponse) MarshalTo

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

func (*QuerySpendableBalanceByDenomResponse) MarshalToSizedBuffer

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

func (*QuerySpendableBalanceByDenomResponse) ProtoMessage

func (*QuerySpendableBalanceByDenomResponse) ProtoMessage()

func (*QuerySpendableBalanceByDenomResponse) Reset

func (*QuerySpendableBalanceByDenomResponse) Size

func (*QuerySpendableBalanceByDenomResponse) String

func (*QuerySpendableBalanceByDenomResponse) Unmarshal

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

func (*QuerySpendableBalanceByDenomResponse) XXX_DiscardUnknown

func (m *QuerySpendableBalanceByDenomResponse) XXX_DiscardUnknown()

func (*QuerySpendableBalanceByDenomResponse) XXX_Marshal

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

func (*QuerySpendableBalanceByDenomResponse) XXX_Merge

func (*QuerySpendableBalanceByDenomResponse) XXX_Size

func (*QuerySpendableBalanceByDenomResponse) XXX_Unmarshal

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

type QuerySpendableBalancesRequest

type QuerySpendableBalancesRequest struct {
	// address is the address to query spendable balances for.
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QuerySpendableBalancesRequest defines the gRPC request structure for querying an account's spendable balances.

func NewQuerySpendableBalancesRequest

func NewQuerySpendableBalancesRequest(addr string, req *query.PageRequest) *QuerySpendableBalancesRequest

NewQuerySpendableBalancesRequest creates a new instance of a QuerySpendableBalancesRequest.

func (*QuerySpendableBalancesRequest) Descriptor

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

func (*QuerySpendableBalancesRequest) Marshal

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

func (*QuerySpendableBalancesRequest) MarshalTo

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

func (*QuerySpendableBalancesRequest) MarshalToSizedBuffer

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

func (*QuerySpendableBalancesRequest) ProtoMessage

func (*QuerySpendableBalancesRequest) ProtoMessage()

func (*QuerySpendableBalancesRequest) Reset

func (m *QuerySpendableBalancesRequest) Reset()

func (*QuerySpendableBalancesRequest) Size

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

func (*QuerySpendableBalancesRequest) String

func (*QuerySpendableBalancesRequest) Unmarshal

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

func (*QuerySpendableBalancesRequest) XXX_DiscardUnknown

func (m *QuerySpendableBalancesRequest) XXX_DiscardUnknown()

func (*QuerySpendableBalancesRequest) XXX_Marshal

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

func (*QuerySpendableBalancesRequest) XXX_Merge

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

func (*QuerySpendableBalancesRequest) XXX_Size

func (m *QuerySpendableBalancesRequest) XXX_Size() int

func (*QuerySpendableBalancesRequest) XXX_Unmarshal

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

type QuerySpendableBalancesResponse

type QuerySpendableBalancesResponse struct {
	// balances is the spendable balances of all the coins.
	Balances github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=balances,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"balances"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QuerySpendableBalancesResponse defines the gRPC response structure for querying an account's spendable balances.

func (*QuerySpendableBalancesResponse) Descriptor

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

func (*QuerySpendableBalancesResponse) GetBalances

func (*QuerySpendableBalancesResponse) GetPagination

func (*QuerySpendableBalancesResponse) Marshal

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

func (*QuerySpendableBalancesResponse) MarshalTo

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

func (*QuerySpendableBalancesResponse) MarshalToSizedBuffer

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

func (*QuerySpendableBalancesResponse) ProtoMessage

func (*QuerySpendableBalancesResponse) ProtoMessage()

func (*QuerySpendableBalancesResponse) Reset

func (m *QuerySpendableBalancesResponse) Reset()

func (*QuerySpendableBalancesResponse) Size

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

func (*QuerySpendableBalancesResponse) String

func (*QuerySpendableBalancesResponse) Unmarshal

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

func (*QuerySpendableBalancesResponse) XXX_DiscardUnknown

func (m *QuerySpendableBalancesResponse) XXX_DiscardUnknown()

func (*QuerySpendableBalancesResponse) XXX_Marshal

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

func (*QuerySpendableBalancesResponse) XXX_Merge

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

func (*QuerySpendableBalancesResponse) XXX_Size

func (m *QuerySpendableBalancesResponse) XXX_Size() int

func (*QuerySpendableBalancesResponse) XXX_Unmarshal

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

type QuerySupplyOfParams

type QuerySupplyOfParams struct {
	Denom string
}

QuerySupplyOfParams defines the params for the following queries: - 'custom/bank/totalSupplyOf'

func NewQuerySupplyOfParams

func NewQuerySupplyOfParams(denom string) QuerySupplyOfParams

NewQuerySupplyOfParams creates a new instance to query the total supply of a given denomination

type QuerySupplyOfRequest

type QuerySupplyOfRequest struct {
	// denom is the coin denom to query balances for.
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.

func (*QuerySupplyOfRequest) Descriptor

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

func (*QuerySupplyOfRequest) GetDenom

func (m *QuerySupplyOfRequest) GetDenom() string

func (*QuerySupplyOfRequest) Marshal

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

func (*QuerySupplyOfRequest) MarshalTo

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

func (*QuerySupplyOfRequest) MarshalToSizedBuffer

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

func (*QuerySupplyOfRequest) ProtoMessage

func (*QuerySupplyOfRequest) ProtoMessage()

func (*QuerySupplyOfRequest) Reset

func (m *QuerySupplyOfRequest) Reset()

func (*QuerySupplyOfRequest) Size

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

func (*QuerySupplyOfRequest) String

func (m *QuerySupplyOfRequest) String() string

func (*QuerySupplyOfRequest) Unmarshal

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

func (*QuerySupplyOfRequest) XXX_DiscardUnknown

func (m *QuerySupplyOfRequest) XXX_DiscardUnknown()

func (*QuerySupplyOfRequest) XXX_Marshal

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

func (*QuerySupplyOfRequest) XXX_Merge

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

func (*QuerySupplyOfRequest) XXX_Size

func (m *QuerySupplyOfRequest) XXX_Size() int

func (*QuerySupplyOfRequest) XXX_Unmarshal

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

type QuerySupplyOfResponse

type QuerySupplyOfResponse struct {
	// amount is the supply of the coin.
	Amount types.Coin `protobuf:"bytes,1,opt,name=amount,proto3" json:"amount"`
}

QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.

func (*QuerySupplyOfResponse) Descriptor

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

func (*QuerySupplyOfResponse) GetAmount

func (m *QuerySupplyOfResponse) GetAmount() types.Coin

func (*QuerySupplyOfResponse) Marshal

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

func (*QuerySupplyOfResponse) MarshalTo

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

func (*QuerySupplyOfResponse) MarshalToSizedBuffer

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

func (*QuerySupplyOfResponse) ProtoMessage

func (*QuerySupplyOfResponse) ProtoMessage()

func (*QuerySupplyOfResponse) Reset

func (m *QuerySupplyOfResponse) Reset()

func (*QuerySupplyOfResponse) Size

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

func (*QuerySupplyOfResponse) String

func (m *QuerySupplyOfResponse) String() string

func (*QuerySupplyOfResponse) Unmarshal

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

func (*QuerySupplyOfResponse) XXX_DiscardUnknown

func (m *QuerySupplyOfResponse) XXX_DiscardUnknown()

func (*QuerySupplyOfResponse) XXX_Marshal

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

func (*QuerySupplyOfResponse) XXX_Merge

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

func (*QuerySupplyOfResponse) XXX_Size

func (m *QuerySupplyOfResponse) XXX_Size() int

func (*QuerySupplyOfResponse) XXX_Unmarshal

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

type QueryTotalSupplyParams

type QueryTotalSupplyParams struct {
	Page, Limit int
}

QueryTotalSupplyParams defines the params for the following queries: - 'custom/bank/totalSupply'

func NewQueryTotalSupplyParams

func NewQueryTotalSupplyParams(page, limit int) QueryTotalSupplyParams

NewQueryTotalSupplyParams creates a new instance to query the total supply

type QueryTotalSupplyRequest

type QueryTotalSupplyRequest struct {
	// pagination defines an optional pagination for the request.
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC method.

func (*QueryTotalSupplyRequest) Descriptor

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

func (*QueryTotalSupplyRequest) Marshal

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

func (*QueryTotalSupplyRequest) MarshalTo

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

func (*QueryTotalSupplyRequest) MarshalToSizedBuffer

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

func (*QueryTotalSupplyRequest) ProtoMessage

func (*QueryTotalSupplyRequest) ProtoMessage()

func (*QueryTotalSupplyRequest) Reset

func (m *QueryTotalSupplyRequest) Reset()

func (*QueryTotalSupplyRequest) Size

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

func (*QueryTotalSupplyRequest) String

func (m *QueryTotalSupplyRequest) String() string

func (*QueryTotalSupplyRequest) Unmarshal

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

func (*QueryTotalSupplyRequest) XXX_DiscardUnknown

func (m *QueryTotalSupplyRequest) XXX_DiscardUnknown()

func (*QueryTotalSupplyRequest) XXX_Marshal

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

func (*QueryTotalSupplyRequest) XXX_Merge

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

func (*QueryTotalSupplyRequest) XXX_Size

func (m *QueryTotalSupplyRequest) XXX_Size() int

func (*QueryTotalSupplyRequest) XXX_Unmarshal

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

type QueryTotalSupplyResponse

type QueryTotalSupplyResponse struct {
	// supply is the supply of the coins
	Supply github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=supply,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"supply"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC method

func (*QueryTotalSupplyResponse) Descriptor

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

func (*QueryTotalSupplyResponse) GetPagination

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

func (*QueryTotalSupplyResponse) GetSupply

func (*QueryTotalSupplyResponse) Marshal

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

func (*QueryTotalSupplyResponse) MarshalTo

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

func (*QueryTotalSupplyResponse) MarshalToSizedBuffer

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

func (*QueryTotalSupplyResponse) ProtoMessage

func (*QueryTotalSupplyResponse) ProtoMessage()

func (*QueryTotalSupplyResponse) Reset

func (m *QueryTotalSupplyResponse) Reset()

func (*QueryTotalSupplyResponse) Size

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

func (*QueryTotalSupplyResponse) String

func (m *QueryTotalSupplyResponse) String() string

func (*QueryTotalSupplyResponse) Unmarshal

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

func (*QueryTotalSupplyResponse) XXX_DiscardUnknown

func (m *QueryTotalSupplyResponse) XXX_DiscardUnknown()

func (*QueryTotalSupplyResponse) XXX_Marshal

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

func (*QueryTotalSupplyResponse) XXX_Merge

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

func (*QueryTotalSupplyResponse) XXX_Size

func (m *QueryTotalSupplyResponse) XXX_Size() int

func (*QueryTotalSupplyResponse) XXX_Unmarshal

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

type SendAuthorization

type SendAuthorization struct {
	SpendLimit github_com_cosmos_cosmos_sdk_types.Coins `` /* 135-byte string literal not displayed */
	// allow_list specifies an optional list of addresses to whom the grantee can send tokens on behalf of the
	// granter. If omitted, any recipient is allowed.
	AllowList []string `protobuf:"bytes,2,rep,name=allow_list,json=allowList,proto3" json:"allow_list,omitempty"`
}

SendAuthorization allows the grantee to spend up to spend_limit coins from the granter's account.

func NewSendAuthorization

func NewSendAuthorization(spendLimit sdk.Coins, allowed []sdk.AccAddress, addressCodec address.Codec) *SendAuthorization

NewSendAuthorization creates a new SendAuthorization object.

func (SendAuthorization) Accept

Accept implements Authorization.Accept.

func (*SendAuthorization) Descriptor

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

func (*SendAuthorization) GetAllowList

func (m *SendAuthorization) GetAllowList() []string

func (*SendAuthorization) GetSpendLimit

func (*SendAuthorization) Marshal

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

func (*SendAuthorization) MarshalTo

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

func (*SendAuthorization) MarshalToSizedBuffer

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

func (SendAuthorization) MsgTypeURL

func (a SendAuthorization) MsgTypeURL() string

MsgTypeURL implements Authorization.MsgTypeURL.

func (*SendAuthorization) ProtoMessage

func (*SendAuthorization) ProtoMessage()

func (*SendAuthorization) Reset

func (m *SendAuthorization) Reset()

func (*SendAuthorization) Size

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

func (*SendAuthorization) String

func (m *SendAuthorization) String() string

func (*SendAuthorization) Unmarshal

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

func (SendAuthorization) ValidateBasic

func (a SendAuthorization) ValidateBasic() error

ValidateBasic implements Authorization.ValidateBasic.

func (*SendAuthorization) XXX_DiscardUnknown

func (m *SendAuthorization) XXX_DiscardUnknown()

func (*SendAuthorization) XXX_Marshal

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

func (*SendAuthorization) XXX_Merge

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

func (*SendAuthorization) XXX_Size

func (m *SendAuthorization) XXX_Size() int

func (*SendAuthorization) XXX_Unmarshal

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

type SendEnabled

type SendEnabled struct {
	Denom   string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
	Enabled bool   `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
}

SendEnabled maps coin denom to a send_enabled status (whether a denom is sendable).

func NewSendEnabled

func NewSendEnabled(denom string, sendEnabled bool) *SendEnabled

NewSendEnabled creates a new SendEnabled object The denom may be left empty to control the global default setting of send_enabled

func (*SendEnabled) Descriptor

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

func (*SendEnabled) Equal

func (this *SendEnabled) Equal(that interface{}) bool

func (*SendEnabled) GetDenom

func (m *SendEnabled) GetDenom() string

func (*SendEnabled) GetEnabled

func (m *SendEnabled) GetEnabled() bool

func (*SendEnabled) Marshal

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

func (*SendEnabled) MarshalTo

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

func (*SendEnabled) MarshalToSizedBuffer

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

func (*SendEnabled) ProtoMessage

func (*SendEnabled) ProtoMessage()

func (*SendEnabled) Reset

func (m *SendEnabled) Reset()

func (*SendEnabled) Size

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

func (*SendEnabled) String

func (m *SendEnabled) String() string

func (*SendEnabled) Unmarshal

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

func (SendEnabled) Validate

func (se SendEnabled) Validate() error

Validate gets any errors with this SendEnabled entry.

func (*SendEnabled) XXX_DiscardUnknown

func (m *SendEnabled) XXX_DiscardUnknown()

func (*SendEnabled) XXX_Marshal

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

func (*SendEnabled) XXX_Merge

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

func (*SendEnabled) XXX_Size

func (m *SendEnabled) XXX_Size() int

func (*SendEnabled) XXX_Unmarshal

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

type SendRestrictionFn

type SendRestrictionFn func(ctx context.Context, fromAddr, toAddr sdk.AccAddress, amt sdk.Coins) (newToAddr sdk.AccAddress, err error)

A SendRestrictionFn can restrict sends and/or provide a new receiver address.

func ComposeSendRestrictions

func ComposeSendRestrictions(restrictions ...SendRestrictionFn) SendRestrictionFn

ComposeSendRestrictions combines multiple SendRestrictionFn into one. nil entries are ignored. If all entries are nil, nil is returned. If exactly one entry is not nil, it is returned. Otherwise, a new SendRestrictionFn is returned that runs the non-nil restrictions in the order they are given. The composition runs each send restriction until an error is encountered and returns that error, otherwise it returns the toAddr of the last send restriction.

func (SendRestrictionFn) IsOnePerModuleType

func (SendRestrictionFn) IsOnePerModuleType()

IsOnePerModuleType implements the depinject.OnePerModuleType interface.

func (SendRestrictionFn) Then

Then creates a composite restriction that runs this one then the provided second one.

type Supply deprecated

type Supply struct {
	// total is the total supply of coins across the network.
	Total github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=total,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"total"`
}

Supply represents a struct that passively keeps track of the total supply amounts in the network. This message is deprecated now that supply is indexed by denom.

Deprecated: Do not use.

func (*Supply) Descriptor

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

func (*Supply) Equal

func (this *Supply) Equal(that interface{}) bool

func (*Supply) Marshal

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

func (*Supply) MarshalTo

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

func (*Supply) MarshalToSizedBuffer

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

func (*Supply) ProtoMessage

func (*Supply) ProtoMessage()

func (*Supply) Reset

func (m *Supply) Reset()

func (*Supply) Size

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

func (*Supply) String

func (m *Supply) String() string

func (*Supply) Unmarshal

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

func (*Supply) XXX_DiscardUnknown

func (m *Supply) XXX_DiscardUnknown()

func (*Supply) XXX_Marshal

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

func (*Supply) XXX_Merge

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

func (*Supply) XXX_Size

func (m *Supply) XXX_Size() int

func (*Supply) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) Burn

func (*UnimplementedMsgServer) MultiSend

func (*UnimplementedMsgServer) Send

func (*UnimplementedMsgServer) SetSendEnabled

func (*UnimplementedMsgServer) UpdateParams

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) AllBalances

func (*UnimplementedQueryServer) Balance

func (*UnimplementedQueryServer) DenomMetadata

func (*UnimplementedQueryServer) DenomMetadataByQueryString

func (*UnimplementedQueryServer) DenomOwners

func (*UnimplementedQueryServer) DenomOwnersByQuery

func (*UnimplementedQueryServer) DenomsMetadata

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) SendEnabled

func (*UnimplementedQueryServer) SpendableBalanceByDenom

func (*UnimplementedQueryServer) SpendableBalances

func (*UnimplementedQueryServer) SupplyOf

func (*UnimplementedQueryServer) TotalSupply

type VestingAccount

type VestingAccount interface {
	// LockedCoins returns the set of coins that are not spendable (i.e. locked),
	// defined as the vesting coins that are not delegated.
	//
	// To get spendable coins of a vesting account, first the total balance must
	// be retrieved and the locked tokens can be subtracted from the total balance.
	// Note, the spendable balance can be negative.
	LockedCoins(blockTime time.Time) sdk.Coins

	// TrackDelegation performs internal vesting accounting necessary when
	// delegating from a vesting account. It accepts the current block time, the
	// delegation amount and balance of all coins whose denomination exists in
	// the account's original vesting balance.
	TrackDelegation(blockTime time.Time, balance, amount sdk.Coins)

	// TrackUndelegation performs internal vesting accounting necessary when a
	// vesting account performs an undelegation.
	TrackUndelegation(amount sdk.Coins)

	GetOriginalVesting() sdk.Coins
	GetDelegatedFree() sdk.Coins
	GetDelegatedVesting() sdk.Coins
}

VestingAccount defines an interface used for account vesting.

Jump to

Keyboard shortcuts

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