types

package
v8.0.0-...-3c7b58a Latest Latest
Warning

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

Go to latest
Published: Aug 30, 2022 License: Apache-2.0 Imports: 29 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeMint = ModuleName

	AttributeKeyEpochProvisions = "epoch_provisions"
	AttributeEpochNumber        = "epoch_number"
)

Minting module event types

View Source
const (
	// module name
	ModuleName = "inflation"

	// StoreKey to be used when creating the KVStore
	StoreKey = ModuleName

	// RouterKey to be used for message routing
	RouterKey = ModuleName
)

constants

Variables

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 (
	ErrInvalidLengthInflation        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowInflation          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupInflation = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	KeyPrefixPeriod             = []byte{prefixPeriod}
	KeyPrefixEpochMintProvision = []byte{prefixEpochMintProvision}
	KeyPrefixEpochIdentifier    = []byte{prefixEpochIdentifier}
	KeyPrefixEpochsPerPeriod    = []byte{prefixEpochsPerPeriod}
	KeyPrefixSkippedEpochs      = []byte{prefixSkippedEpochs}
)

KVStore key prefixes

View Source
var (
	ParamStoreKeyMintDenom              = []byte("ParamStoreKeyMintDenom")
	ParamStoreKeyExponentialCalculation = []byte("ParamStoreKeyExponentialCalculation")
	ParamStoreKeyInflationDistribution  = []byte("ParamStoreKeyInflationDistribution")
	ParamStoreKeyEnableInflation        = []byte("ParamStoreKeyEnableInflation")
)

Parameter store 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 DefaultInflationDenom = evm.DefaultEVMDenom

ModuleCdc references the global incentives module codec. Note, the codec should ONLY be used in certain instances of tests and for JSON encoding.

The actual codec used for serialization should be provided to modules/incentives and defined at the application level.

Functions

func CalculateEpochMintProvision

func CalculateEpochMintProvision(
	params Params,
	period uint64,
	epochsPerPeriod int64,
	bondedRatio sdk.Dec,
) sdk.Dec

CalculateEpochProvisions returns mint provision per epoch

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamTable for inflation module

func RegisterInterfaces

func RegisterInterfaces(registry codectypes.InterfaceRegistry)

RegisterInterfaces register implementations

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetModuleAddress(name string) sdk.AccAddress
	GetModuleAccount(ctx sdk.Context, moduleName string) types.ModuleAccountI
	GetAccount(sdk.Context, sdk.AccAddress) types.AccountI
	SetAccount(sdk.Context, types.AccountI)
}

AccountKeeper defines the contract required for account APIs.

type BankKeeper

type BankKeeper interface {
	GetBalance(ctx sdk.Context, addr sdk.AccAddress, denom string) sdk.Coin
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromModuleToModule(ctx sdk.Context, senderModule, recipientModule string, amt sdk.Coins) error
	MintCoins(ctx sdk.Context, name string, amt sdk.Coins) error
	BurnCoins(ctx sdk.Context, name string, amt sdk.Coins) error
	HasSupply(ctx sdk.Context, denom string) bool
	GetSupply(ctx sdk.Context, denom string) sdk.Coin
}

BankKeeper defines the contract needed to be fulfilled for banking and supply dependencies.

type DistrKeeper

type DistrKeeper interface {
	FundCommunityPool(ctx sdk.Context, amount sdk.Coins, sender sdk.AccAddress) error
}

DistrKeeper defines the contract needed to be fulfilled for distribution keeper

type ExponentialCalculation

type ExponentialCalculation struct {
	// initial value
	A github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=a,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"a"`
	// reduction factor
	R github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=r,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"r"`
	// long term inflation
	C github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=c,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"c"`
	// bonding target
	BondingTarget github_com_cosmos_cosmos_sdk_types.Dec `` /* 140-byte string literal not displayed */
	// max variance
	MaxVariance github_com_cosmos_cosmos_sdk_types.Dec `` /* 134-byte string literal not displayed */
}

ExponentialCalculation holds factors to calculate exponential inflation on each period. Calculation reference: periodProvision = exponentialDecay * bondingIncentive f(x) = (a * (1 - r) ^ x + c) * (1 + max_variance - bondedRatio * (max_variance / bonding_target))

func (*ExponentialCalculation) Descriptor

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

func (*ExponentialCalculation) Marshal

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

func (*ExponentialCalculation) MarshalTo

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

func (*ExponentialCalculation) MarshalToSizedBuffer

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

func (*ExponentialCalculation) ProtoMessage

func (*ExponentialCalculation) ProtoMessage()

func (*ExponentialCalculation) Reset

func (m *ExponentialCalculation) Reset()

func (*ExponentialCalculation) Size

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

func (*ExponentialCalculation) String

func (m *ExponentialCalculation) String() string

func (*ExponentialCalculation) Unmarshal

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

func (*ExponentialCalculation) XXX_DiscardUnknown

func (m *ExponentialCalculation) XXX_DiscardUnknown()

func (*ExponentialCalculation) XXX_Marshal

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

func (*ExponentialCalculation) XXX_Merge

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

func (*ExponentialCalculation) XXX_Size

func (m *ExponentialCalculation) XXX_Size() int

func (*ExponentialCalculation) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	// params defines all the paramaters of the module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	// amount of past periods, based on the epochs per period param
	Period uint64 `protobuf:"varint,2,opt,name=period,proto3" json:"period,omitempty"`
	// inflation epoch identifier
	EpochIdentifier string `protobuf:"bytes,3,opt,name=epoch_identifier,json=epochIdentifier,proto3" json:"epoch_identifier,omitempty"`
	// number of epochs after which inflation is recalculated
	EpochsPerPeriod int64 `protobuf:"varint,4,opt,name=epochs_per_period,json=epochsPerPeriod,proto3" json:"epochs_per_period,omitempty"`
	// number of epochs that have passed while inflation is disabled
	SkippedEpochs uint64 `protobuf:"varint,5,opt,name=skipped_epochs,json=skippedEpochs,proto3" json:"skipped_epochs,omitempty"`
}

GenesisState defines the inflation module's genesis state.

func DefaultGenesisState

func DefaultGenesisState() *GenesisState

DefaultGenesisState creates a default GenesisState object

func NewGenesisState

func NewGenesisState(
	params Params,
	period uint64,
	epochIdentifier string,
	epochsPerPeriod int64,
	skippedEpochs uint64,
) GenesisState

NewGenesisState creates a new GenesisState object

func (*GenesisState) Descriptor

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

func (*GenesisState) GetEpochIdentifier

func (m *GenesisState) GetEpochIdentifier() string

func (*GenesisState) GetEpochsPerPeriod

func (m *GenesisState) GetEpochsPerPeriod() int64

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetPeriod

func (m *GenesisState) GetPeriod() uint64

func (*GenesisState) GetSkippedEpochs

func (m *GenesisState) GetSkippedEpochs() uint64

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

Validate performs basic genesis state validation returning an error upon any failure.

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type InflationDistribution

type InflationDistribution struct {
	// staking_rewards defines the proportion of the minted minted_denom that is
	// to be allocated as staking rewards
	StakingRewards github_com_cosmos_cosmos_sdk_types.Dec `` /* 143-byte string literal not displayed */
	// usage_incentives defines the proportion of the minted minted_denom that is
	// to be allocated to the incentives module address
	UsageIncentives github_com_cosmos_cosmos_sdk_types.Dec `` /* 146-byte string literal not displayed */
	// community_pool defines the proportion of the minted minted_denom that is to
	// be allocated to the community pool
	CommunityPool github_com_cosmos_cosmos_sdk_types.Dec `` /* 140-byte string literal not displayed */
}

InflationDistribution defines the distribution in which inflation is allocated through minting on each epoch (staking, incentives, community). It excludes the team vesting distribution, as this is minted once at genesis. The initial InflationDistribution can be calculated from the Arcis Token Model like this: mintDistribution1 = distribution1 / (1 - teamVestingDistribution) 0.5333333 = 40% / (1 - 25%)

func (*InflationDistribution) Descriptor

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

func (*InflationDistribution) Marshal

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

func (*InflationDistribution) MarshalTo

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

func (*InflationDistribution) MarshalToSizedBuffer

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

func (*InflationDistribution) ProtoMessage

func (*InflationDistribution) ProtoMessage()

func (*InflationDistribution) Reset

func (m *InflationDistribution) Reset()

func (*InflationDistribution) Size

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

func (*InflationDistribution) String

func (m *InflationDistribution) String() string

func (*InflationDistribution) Unmarshal

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

func (*InflationDistribution) XXX_DiscardUnknown

func (m *InflationDistribution) XXX_DiscardUnknown()

func (*InflationDistribution) XXX_Marshal

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

func (*InflationDistribution) XXX_Merge

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

func (*InflationDistribution) XXX_Size

func (m *InflationDistribution) XXX_Size() int

func (*InflationDistribution) XXX_Unmarshal

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

type Params

type Params struct {
	// type of coin to mint
	MintDenom string `protobuf:"bytes,1,opt,name=mint_denom,json=mintDenom,proto3" json:"mint_denom,omitempty"`
	// variables to calculate exponential inflation
	ExponentialCalculation ExponentialCalculation `protobuf:"bytes,2,opt,name=exponential_calculation,json=exponentialCalculation,proto3" json:"exponential_calculation"`
	// inflation distribution of the minted denom
	InflationDistribution InflationDistribution `protobuf:"bytes,3,opt,name=inflation_distribution,json=inflationDistribution,proto3" json:"inflation_distribution"`
	// parameter to enable inflation and halt increasing the skipped_epochs
	EnableInflation bool `protobuf:"varint,4,opt,name=enable_inflation,json=enableInflation,proto3" json:"enable_inflation,omitempty"`
}

Params holds parameters for the inflation module.

func DefaultParams

func DefaultParams() Params

default minting module parameters

func NewParams

func NewParams(
	mintDenom string,
	exponentialCalculation ExponentialCalculation,
	inflationDistribution InflationDistribution,
	enableInflation bool,
) Params

func (*Params) Descriptor

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

func (*Params) GetEnableInflation

func (m *Params) GetEnableInflation() bool

func (*Params) GetExponentialCalculation

func (m *Params) GetExponentialCalculation() ExponentialCalculation

func (*Params) GetInflationDistribution

func (m *Params) GetInflationDistribution() InflationDistribution

func (*Params) GetMintDenom

func (m *Params) GetMintDenom() string

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

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

Implements params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

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 QueryCirculatingSupplyRequest

type QueryCirculatingSupplyRequest struct {
}

QueryCirculatingSupplyRequest is the request type for the Query/CirculatingSupply RPC method.

func (*QueryCirculatingSupplyRequest) Descriptor

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

func (*QueryCirculatingSupplyRequest) Marshal

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

func (*QueryCirculatingSupplyRequest) MarshalTo

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

func (*QueryCirculatingSupplyRequest) MarshalToSizedBuffer

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

func (*QueryCirculatingSupplyRequest) ProtoMessage

func (*QueryCirculatingSupplyRequest) ProtoMessage()

func (*QueryCirculatingSupplyRequest) Reset

func (m *QueryCirculatingSupplyRequest) Reset()

func (*QueryCirculatingSupplyRequest) Size

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

func (*QueryCirculatingSupplyRequest) String

func (*QueryCirculatingSupplyRequest) Unmarshal

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

func (*QueryCirculatingSupplyRequest) XXX_DiscardUnknown

func (m *QueryCirculatingSupplyRequest) XXX_DiscardUnknown()

func (*QueryCirculatingSupplyRequest) XXX_Marshal

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

func (*QueryCirculatingSupplyRequest) XXX_Merge

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

func (*QueryCirculatingSupplyRequest) XXX_Size

func (m *QueryCirculatingSupplyRequest) XXX_Size() int

func (*QueryCirculatingSupplyRequest) XXX_Unmarshal

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

type QueryCirculatingSupplyResponse

type QueryCirculatingSupplyResponse struct {
	// total amount of coins in circulation
	CirculatingSupply types.DecCoin `` /* 159-byte string literal not displayed */
}

QueryCirculatingSupplyResponse is the response type for the Query/CirculatingSupply RPC method.

func (*QueryCirculatingSupplyResponse) Descriptor

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

func (*QueryCirculatingSupplyResponse) GetCirculatingSupply

func (m *QueryCirculatingSupplyResponse) GetCirculatingSupply() types.DecCoin

func (*QueryCirculatingSupplyResponse) Marshal

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

func (*QueryCirculatingSupplyResponse) MarshalTo

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

func (*QueryCirculatingSupplyResponse) MarshalToSizedBuffer

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

func (*QueryCirculatingSupplyResponse) ProtoMessage

func (*QueryCirculatingSupplyResponse) ProtoMessage()

func (*QueryCirculatingSupplyResponse) Reset

func (m *QueryCirculatingSupplyResponse) Reset()

func (*QueryCirculatingSupplyResponse) Size

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

func (*QueryCirculatingSupplyResponse) String

func (*QueryCirculatingSupplyResponse) Unmarshal

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

func (*QueryCirculatingSupplyResponse) XXX_DiscardUnknown

func (m *QueryCirculatingSupplyResponse) XXX_DiscardUnknown()

func (*QueryCirculatingSupplyResponse) XXX_Marshal

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

func (*QueryCirculatingSupplyResponse) XXX_Merge

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

func (*QueryCirculatingSupplyResponse) XXX_Size

func (m *QueryCirculatingSupplyResponse) XXX_Size() int

func (*QueryCirculatingSupplyResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Period retrieves current period.
	Period(ctx context.Context, in *QueryPeriodRequest, opts ...grpc.CallOption) (*QueryPeriodResponse, error)
	// EpochMintProvision retrieves current minting epoch provision value.
	EpochMintProvision(ctx context.Context, in *QueryEpochMintProvisionRequest, opts ...grpc.CallOption) (*QueryEpochMintProvisionResponse, error)
	// SkippedEpochs retrieves the total number of skipped epochs.
	SkippedEpochs(ctx context.Context, in *QuerySkippedEpochsRequest, opts ...grpc.CallOption) (*QuerySkippedEpochsResponse, error)
	// CirculatingSupply retrieves the total number of tokens that are in
	// circulation (i.e. excluding unvested tokens).
	CirculatingSupply(ctx context.Context, in *QueryCirculatingSupplyRequest, opts ...grpc.CallOption) (*QueryCirculatingSupplyResponse, error)
	// InflationRate retrieves the inflation rate of the current period.
	InflationRate(ctx context.Context, in *QueryInflationRateRequest, opts ...grpc.CallOption) (*QueryInflationRateResponse, error)
	// Params retrieves the total set of minting parameters.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, 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 QueryEpochMintProvisionRequest

type QueryEpochMintProvisionRequest struct {
}

QueryEpochMintProvisionRequest is the request type for the Query/EpochMintProvision RPC method.

func (*QueryEpochMintProvisionRequest) Descriptor

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

func (*QueryEpochMintProvisionRequest) Marshal

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

func (*QueryEpochMintProvisionRequest) MarshalTo

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

func (*QueryEpochMintProvisionRequest) MarshalToSizedBuffer

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

func (*QueryEpochMintProvisionRequest) ProtoMessage

func (*QueryEpochMintProvisionRequest) ProtoMessage()

func (*QueryEpochMintProvisionRequest) Reset

func (m *QueryEpochMintProvisionRequest) Reset()

func (*QueryEpochMintProvisionRequest) Size

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

func (*QueryEpochMintProvisionRequest) String

func (*QueryEpochMintProvisionRequest) Unmarshal

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

func (*QueryEpochMintProvisionRequest) XXX_DiscardUnknown

func (m *QueryEpochMintProvisionRequest) XXX_DiscardUnknown()

func (*QueryEpochMintProvisionRequest) XXX_Marshal

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

func (*QueryEpochMintProvisionRequest) XXX_Merge

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

func (*QueryEpochMintProvisionRequest) XXX_Size

func (m *QueryEpochMintProvisionRequest) XXX_Size() int

func (*QueryEpochMintProvisionRequest) XXX_Unmarshal

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

type QueryEpochMintProvisionResponse

type QueryEpochMintProvisionResponse struct {
	// epoch_mint_provision is the current minting per epoch provision value.
	EpochMintProvision types.DecCoin `` /* 164-byte string literal not displayed */
}

QueryEpochMintProvisionResponse is the response type for the Query/EpochMintProvision RPC method.

func (*QueryEpochMintProvisionResponse) Descriptor

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

func (*QueryEpochMintProvisionResponse) GetEpochMintProvision

func (m *QueryEpochMintProvisionResponse) GetEpochMintProvision() types.DecCoin

func (*QueryEpochMintProvisionResponse) Marshal

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

func (*QueryEpochMintProvisionResponse) MarshalTo

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

func (*QueryEpochMintProvisionResponse) MarshalToSizedBuffer

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

func (*QueryEpochMintProvisionResponse) ProtoMessage

func (*QueryEpochMintProvisionResponse) ProtoMessage()

func (*QueryEpochMintProvisionResponse) Reset

func (*QueryEpochMintProvisionResponse) Size

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

func (*QueryEpochMintProvisionResponse) String

func (*QueryEpochMintProvisionResponse) Unmarshal

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

func (*QueryEpochMintProvisionResponse) XXX_DiscardUnknown

func (m *QueryEpochMintProvisionResponse) XXX_DiscardUnknown()

func (*QueryEpochMintProvisionResponse) XXX_Marshal

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

func (*QueryEpochMintProvisionResponse) XXX_Merge

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

func (*QueryEpochMintProvisionResponse) XXX_Size

func (m *QueryEpochMintProvisionResponse) XXX_Size() int

func (*QueryEpochMintProvisionResponse) XXX_Unmarshal

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

type QueryInflationRateRequest

type QueryInflationRateRequest struct {
}

QueryInflationRateRequest is the request type for the Query/InflationRate RPC method.

func (*QueryInflationRateRequest) Descriptor

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

func (*QueryInflationRateRequest) Marshal

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

func (*QueryInflationRateRequest) MarshalTo

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

func (*QueryInflationRateRequest) MarshalToSizedBuffer

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

func (*QueryInflationRateRequest) ProtoMessage

func (*QueryInflationRateRequest) ProtoMessage()

func (*QueryInflationRateRequest) Reset

func (m *QueryInflationRateRequest) Reset()

func (*QueryInflationRateRequest) Size

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

func (*QueryInflationRateRequest) String

func (m *QueryInflationRateRequest) String() string

func (*QueryInflationRateRequest) Unmarshal

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

func (*QueryInflationRateRequest) XXX_DiscardUnknown

func (m *QueryInflationRateRequest) XXX_DiscardUnknown()

func (*QueryInflationRateRequest) XXX_Marshal

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

func (*QueryInflationRateRequest) XXX_Merge

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

func (*QueryInflationRateRequest) XXX_Size

func (m *QueryInflationRateRequest) XXX_Size() int

func (*QueryInflationRateRequest) XXX_Unmarshal

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

type QueryInflationRateResponse

type QueryInflationRateResponse struct {
	// rate by which the total supply increases within one period
	InflationRate github_com_cosmos_cosmos_sdk_types.Dec `` /* 140-byte string literal not displayed */
}

QueryInflationRateResponse is the response type for the Query/InflationRate RPC method.

func (*QueryInflationRateResponse) Descriptor

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

func (*QueryInflationRateResponse) Marshal

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

func (*QueryInflationRateResponse) MarshalTo

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

func (*QueryInflationRateResponse) MarshalToSizedBuffer

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

func (*QueryInflationRateResponse) ProtoMessage

func (*QueryInflationRateResponse) ProtoMessage()

func (*QueryInflationRateResponse) Reset

func (m *QueryInflationRateResponse) Reset()

func (*QueryInflationRateResponse) Size

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

func (*QueryInflationRateResponse) String

func (m *QueryInflationRateResponse) String() string

func (*QueryInflationRateResponse) Unmarshal

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

func (*QueryInflationRateResponse) XXX_DiscardUnknown

func (m *QueryInflationRateResponse) XXX_DiscardUnknown()

func (*QueryInflationRateResponse) XXX_Marshal

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

func (*QueryInflationRateResponse) XXX_Merge

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

func (*QueryInflationRateResponse) XXX_Size

func (m *QueryInflationRateResponse) XXX_Size() int

func (*QueryInflationRateResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is the request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

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

QueryParamsResponse is the response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryPeriodRequest

type QueryPeriodRequest struct {
}

QueryPeriodRequest is the request type for the Query/Period RPC method.

func (*QueryPeriodRequest) Descriptor

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

func (*QueryPeriodRequest) Marshal

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

func (*QueryPeriodRequest) MarshalTo

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

func (*QueryPeriodRequest) MarshalToSizedBuffer

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

func (*QueryPeriodRequest) ProtoMessage

func (*QueryPeriodRequest) ProtoMessage()

func (*QueryPeriodRequest) Reset

func (m *QueryPeriodRequest) Reset()

func (*QueryPeriodRequest) Size

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

func (*QueryPeriodRequest) String

func (m *QueryPeriodRequest) String() string

func (*QueryPeriodRequest) Unmarshal

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

func (*QueryPeriodRequest) XXX_DiscardUnknown

func (m *QueryPeriodRequest) XXX_DiscardUnknown()

func (*QueryPeriodRequest) XXX_Marshal

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

func (*QueryPeriodRequest) XXX_Merge

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

func (*QueryPeriodRequest) XXX_Size

func (m *QueryPeriodRequest) XXX_Size() int

func (*QueryPeriodRequest) XXX_Unmarshal

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

type QueryPeriodResponse

type QueryPeriodResponse struct {
	// period is the current minting per epoch provision value.
	Period uint64 `protobuf:"varint,1,opt,name=period,proto3" json:"period,omitempty"`
}

QueryPeriodResponse is the response type for the Query/Period RPC method.

func (*QueryPeriodResponse) Descriptor

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

func (*QueryPeriodResponse) GetPeriod

func (m *QueryPeriodResponse) GetPeriod() uint64

func (*QueryPeriodResponse) Marshal

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

func (*QueryPeriodResponse) MarshalTo

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

func (*QueryPeriodResponse) MarshalToSizedBuffer

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

func (*QueryPeriodResponse) ProtoMessage

func (*QueryPeriodResponse) ProtoMessage()

func (*QueryPeriodResponse) Reset

func (m *QueryPeriodResponse) Reset()

func (*QueryPeriodResponse) Size

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

func (*QueryPeriodResponse) String

func (m *QueryPeriodResponse) String() string

func (*QueryPeriodResponse) Unmarshal

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

func (*QueryPeriodResponse) XXX_DiscardUnknown

func (m *QueryPeriodResponse) XXX_DiscardUnknown()

func (*QueryPeriodResponse) XXX_Marshal

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

func (*QueryPeriodResponse) XXX_Merge

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

func (*QueryPeriodResponse) XXX_Size

func (m *QueryPeriodResponse) XXX_Size() int

func (*QueryPeriodResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Period retrieves current period.
	Period(context.Context, *QueryPeriodRequest) (*QueryPeriodResponse, error)
	// EpochMintProvision retrieves current minting epoch provision value.
	EpochMintProvision(context.Context, *QueryEpochMintProvisionRequest) (*QueryEpochMintProvisionResponse, error)
	// SkippedEpochs retrieves the total number of skipped epochs.
	SkippedEpochs(context.Context, *QuerySkippedEpochsRequest) (*QuerySkippedEpochsResponse, error)
	// CirculatingSupply retrieves the total number of tokens that are in
	// circulation (i.e. excluding unvested tokens).
	CirculatingSupply(context.Context, *QueryCirculatingSupplyRequest) (*QueryCirculatingSupplyResponse, error)
	// InflationRate retrieves the inflation rate of the current period.
	InflationRate(context.Context, *QueryInflationRateRequest) (*QueryInflationRateResponse, error)
	// Params retrieves the total set of minting parameters.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
}

QueryServer is the server API for Query service.

type QuerySkippedEpochsRequest

type QuerySkippedEpochsRequest struct {
}

QuerySkippedEpochsRequest is the request type for the Query/SkippedEpochs RPC method.

func (*QuerySkippedEpochsRequest) Descriptor

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

func (*QuerySkippedEpochsRequest) Marshal

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

func (*QuerySkippedEpochsRequest) MarshalTo

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

func (*QuerySkippedEpochsRequest) MarshalToSizedBuffer

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

func (*QuerySkippedEpochsRequest) ProtoMessage

func (*QuerySkippedEpochsRequest) ProtoMessage()

func (*QuerySkippedEpochsRequest) Reset

func (m *QuerySkippedEpochsRequest) Reset()

func (*QuerySkippedEpochsRequest) Size

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

func (*QuerySkippedEpochsRequest) String

func (m *QuerySkippedEpochsRequest) String() string

func (*QuerySkippedEpochsRequest) Unmarshal

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

func (*QuerySkippedEpochsRequest) XXX_DiscardUnknown

func (m *QuerySkippedEpochsRequest) XXX_DiscardUnknown()

func (*QuerySkippedEpochsRequest) XXX_Marshal

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

func (*QuerySkippedEpochsRequest) XXX_Merge

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

func (*QuerySkippedEpochsRequest) XXX_Size

func (m *QuerySkippedEpochsRequest) XXX_Size() int

func (*QuerySkippedEpochsRequest) XXX_Unmarshal

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

type QuerySkippedEpochsResponse

type QuerySkippedEpochsResponse struct {
	// number of epochs that the inflation module has been disabled.
	SkippedEpochs uint64 `protobuf:"varint,1,opt,name=skipped_epochs,json=skippedEpochs,proto3" json:"skipped_epochs,omitempty"`
}

QuerySkippedEpochsResponse is the response type for the Query/SkippedEpochs RPC method.

func (*QuerySkippedEpochsResponse) Descriptor

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

func (*QuerySkippedEpochsResponse) GetSkippedEpochs

func (m *QuerySkippedEpochsResponse) GetSkippedEpochs() uint64

func (*QuerySkippedEpochsResponse) Marshal

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

func (*QuerySkippedEpochsResponse) MarshalTo

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

func (*QuerySkippedEpochsResponse) MarshalToSizedBuffer

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

func (*QuerySkippedEpochsResponse) ProtoMessage

func (*QuerySkippedEpochsResponse) ProtoMessage()

func (*QuerySkippedEpochsResponse) Reset

func (m *QuerySkippedEpochsResponse) Reset()

func (*QuerySkippedEpochsResponse) Size

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

func (*QuerySkippedEpochsResponse) String

func (m *QuerySkippedEpochsResponse) String() string

func (*QuerySkippedEpochsResponse) Unmarshal

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

func (*QuerySkippedEpochsResponse) XXX_DiscardUnknown

func (m *QuerySkippedEpochsResponse) XXX_DiscardUnknown()

func (*QuerySkippedEpochsResponse) XXX_Marshal

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

func (*QuerySkippedEpochsResponse) XXX_Merge

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

func (*QuerySkippedEpochsResponse) XXX_Size

func (m *QuerySkippedEpochsResponse) XXX_Size() int

func (*QuerySkippedEpochsResponse) XXX_Unmarshal

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

type StakingKeeper

type StakingKeeper interface {
	// BondedRatio the fraction of the staking tokens which are currently bonded
	BondedRatio(ctx sdk.Context) sdk.Dec
	StakingTokenSupply(ctx sdk.Context) sdk.Int
	TotalBondedTokens(ctx sdk.Context) sdk.Int
}

StakingKeeper expected staking keeper

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) CirculatingSupply

func (*UnimplementedQueryServer) EpochMintProvision

func (*UnimplementedQueryServer) InflationRate

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Period

func (*UnimplementedQueryServer) SkippedEpochs

Jump to

Keyboard shortcuts

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