types

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Nov 28, 2023 License: Apache-2.0 Imports: 30 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

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

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

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

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_feeburner"
)
View Source
const ConsensusVersion = 1
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

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 (
	KeyNeutronDenom        = []byte("NeutronDenom")
	DefaultNeutronDenom    = params.DefaultDenom
	KeyReserveAddress      = []byte("ReserveAddress")
	DefaultReserveAddress  = ""
	KeyTreasuryAddress     = []byte("TreasuryAddress")
	DefaultTreasuryAddress = ""
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTotalBurnedNeutronsAmount        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTotalBurnedNeutronsAmount          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTotalBurnedNeutronsAmount = 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 (
	ErrSample = errors.Register(ModuleName, 1100, "sample error")
)

x/feeburner module sentinel errors

View Source
var ParamsKey = []byte{prefixParamsKey}

Functions

func KeyPrefix

func KeyPrefix(p string) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer added in v1.1.0

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetModuleAddress(moduleName string) sdk.AccAddress
}

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

type BankKeeper

type BankKeeper interface {
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	BurnCoins(ctx sdk.Context, moduleName string, amt sdk.Coins) error
	SendCoins(ctx sdk.Context, fromAddr, toAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
}

BankKeeper defines the expected interface needed to retrieve account balances.

type GenesisState

type GenesisState struct {
	Params                    Params                    `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	TotalBurnedNeutronsAmount TotalBurnedNeutronsAmount `` /* 130-byte string literal not displayed */
}

GenesisState defines the feeburner module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetTotalBurnedNeutronsAmount

func (m *GenesisState) GetTotalBurnedNeutronsAmount() TotalBurnedNeutronsAmount

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 MsgClient added in v1.1.0

type MsgClient interface {
	UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, 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 added in v1.1.0

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgServer added in v1.1.0

type MsgServer interface {
	UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
}

MsgServer is the server API for Msg service.

type MsgUpdateParams added in v1.1.0

type MsgUpdateParams struct {
	// Authority is the address of the governance account.
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// params defines the x/feeburner parameters to update.
	//
	// NOTE: All parameters must be supplied.
	Params Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params"`
}

MsgUpdateParams is the MsgUpdateParams request type.

Since: 0.47

func (*MsgUpdateParams) Descriptor added in v1.1.0

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

func (*MsgUpdateParams) GetAuthority added in v1.1.0

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams added in v1.1.0

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) GetSignBytes added in v1.1.0

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

func (*MsgUpdateParams) GetSigners added in v1.1.0

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

func (*MsgUpdateParams) Marshal added in v1.1.0

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

func (*MsgUpdateParams) MarshalTo added in v1.1.0

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

func (*MsgUpdateParams) MarshalToSizedBuffer added in v1.1.0

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

func (*MsgUpdateParams) ProtoMessage added in v1.1.0

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset added in v1.1.0

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Route added in v1.1.0

func (msg *MsgUpdateParams) Route() string

func (*MsgUpdateParams) Size added in v1.1.0

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

func (*MsgUpdateParams) String added in v1.1.0

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Type added in v1.1.0

func (msg *MsgUpdateParams) Type() string

func (*MsgUpdateParams) Unmarshal added in v1.1.0

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

func (*MsgUpdateParams) ValidateBasic added in v1.1.0

func (msg *MsgUpdateParams) ValidateBasic() error

func (*MsgUpdateParams) XXX_DiscardUnknown added in v1.1.0

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal added in v1.1.0

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

func (*MsgUpdateParams) XXX_Merge added in v1.1.0

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

func (*MsgUpdateParams) XXX_Size added in v1.1.0

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal added in v1.1.0

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

type MsgUpdateParamsResponse added in v1.1.0

type MsgUpdateParamsResponse struct {
}

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

Since: 0.47

func (*MsgUpdateParamsResponse) Descriptor added in v1.1.0

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

func (*MsgUpdateParamsResponse) Marshal added in v1.1.0

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

func (*MsgUpdateParamsResponse) MarshalTo added in v1.1.0

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

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer added in v1.1.0

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

func (*MsgUpdateParamsResponse) ProtoMessage added in v1.1.0

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset added in v1.1.0

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size added in v1.1.0

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

func (*MsgUpdateParamsResponse) String added in v1.1.0

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal added in v1.1.0

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

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown added in v1.1.0

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal added in v1.1.0

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

func (*MsgUpdateParamsResponse) XXX_Merge added in v1.1.0

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

func (*MsgUpdateParamsResponse) XXX_Size added in v1.1.0

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal added in v1.1.0

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

type Params

type Params struct {
	// Defines Neutron denom, which will be burned during fee processing, any
	// other denom will be sent to Treasury
	NeutronDenom string `protobuf:"bytes,1,opt,name=neutron_denom,json=neutronDenom,proto3" json:"neutron_denom,omitempty"`
	// Deprecated in v0.4.4. Is not used anymore
	ReserveAddress string `protobuf:"bytes,2,opt,name=reserve_address,json=reserveAddress,proto3" json:"reserve_address,omitempty"`
	// Defines treasury address
	TreasuryAddress string `protobuf:"bytes,3,opt,name=treasury_address,json=treasuryAddress,proto3" json:"treasury_address,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams(neutronDenom, treasuryAddress string) Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetNeutronDenom

func (m *Params) GetNeutronDenom() string

func (*Params) GetReserveAddress added in v0.4.0

func (m *Params) GetReserveAddress() string

func (*Params) GetTreasuryAddress

func (m *Params) GetTreasuryAddress() string

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

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

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// TotalBurnedNeutronsAmount queries total amount of burned neutron fees.
	TotalBurnedNeutronsAmount(ctx context.Context, in *QueryTotalBurnedNeutronsAmountRequest, opts ...grpc.CallOption) (*QueryTotalBurnedNeutronsAmountResponse, 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 QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is 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 holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is 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 QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// TotalBurnedNeutronsAmount queries total amount of burned neutron fees.
	TotalBurnedNeutronsAmount(context.Context, *QueryTotalBurnedNeutronsAmountRequest) (*QueryTotalBurnedNeutronsAmountResponse, error)
}

QueryServer is the server API for Query service.

type QueryTotalBurnedNeutronsAmountRequest

type QueryTotalBurnedNeutronsAmountRequest struct {
}

QueryTotalBurnedNeutronsAmountRequest is request type for the Query/QueryTotalBurnedNeutronsAmount method.

func (*QueryTotalBurnedNeutronsAmountRequest) Descriptor

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

func (*QueryTotalBurnedNeutronsAmountRequest) Marshal

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

func (*QueryTotalBurnedNeutronsAmountRequest) MarshalTo

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

func (*QueryTotalBurnedNeutronsAmountRequest) MarshalToSizedBuffer

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

func (*QueryTotalBurnedNeutronsAmountRequest) ProtoMessage

func (*QueryTotalBurnedNeutronsAmountRequest) ProtoMessage()

func (*QueryTotalBurnedNeutronsAmountRequest) Reset

func (*QueryTotalBurnedNeutronsAmountRequest) Size

func (*QueryTotalBurnedNeutronsAmountRequest) String

func (*QueryTotalBurnedNeutronsAmountRequest) Unmarshal

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

func (*QueryTotalBurnedNeutronsAmountRequest) XXX_DiscardUnknown

func (m *QueryTotalBurnedNeutronsAmountRequest) XXX_DiscardUnknown()

func (*QueryTotalBurnedNeutronsAmountRequest) XXX_Marshal

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

func (*QueryTotalBurnedNeutronsAmountRequest) XXX_Merge

func (*QueryTotalBurnedNeutronsAmountRequest) XXX_Size

func (*QueryTotalBurnedNeutronsAmountRequest) XXX_Unmarshal

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

type QueryTotalBurnedNeutronsAmountResponse

type QueryTotalBurnedNeutronsAmountResponse struct {
	TotalBurnedNeutronsAmount TotalBurnedNeutronsAmount `` /* 130-byte string literal not displayed */
}

QueryTotalBurnedNeutronsAmountResponse is response type for the Query/QueryTotalBurnedNeutronsAmount method.

func (*QueryTotalBurnedNeutronsAmountResponse) Descriptor

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

func (*QueryTotalBurnedNeutronsAmountResponse) GetTotalBurnedNeutronsAmount

func (m *QueryTotalBurnedNeutronsAmountResponse) GetTotalBurnedNeutronsAmount() TotalBurnedNeutronsAmount

func (*QueryTotalBurnedNeutronsAmountResponse) Marshal

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

func (*QueryTotalBurnedNeutronsAmountResponse) MarshalTo

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

func (*QueryTotalBurnedNeutronsAmountResponse) MarshalToSizedBuffer

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

func (*QueryTotalBurnedNeutronsAmountResponse) ProtoMessage

func (*QueryTotalBurnedNeutronsAmountResponse) Reset

func (*QueryTotalBurnedNeutronsAmountResponse) Size

func (*QueryTotalBurnedNeutronsAmountResponse) String

func (*QueryTotalBurnedNeutronsAmountResponse) Unmarshal

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

func (*QueryTotalBurnedNeutronsAmountResponse) XXX_DiscardUnknown

func (m *QueryTotalBurnedNeutronsAmountResponse) XXX_DiscardUnknown()

func (*QueryTotalBurnedNeutronsAmountResponse) XXX_Marshal

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

func (*QueryTotalBurnedNeutronsAmountResponse) XXX_Merge

func (*QueryTotalBurnedNeutronsAmountResponse) XXX_Size

func (*QueryTotalBurnedNeutronsAmountResponse) XXX_Unmarshal

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

type TotalBurnedNeutronsAmount

type TotalBurnedNeutronsAmount struct {
	Coin types.Coin `protobuf:"bytes,1,opt,name=coin,proto3" json:"coin" yaml:"coin"`
}

TotalBurnedNeutronsAmount defines total amount of burned neutron fees

func (*TotalBurnedNeutronsAmount) Descriptor

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

func (*TotalBurnedNeutronsAmount) GetCoin

func (m *TotalBurnedNeutronsAmount) GetCoin() types.Coin

func (*TotalBurnedNeutronsAmount) Marshal

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

func (*TotalBurnedNeutronsAmount) MarshalTo

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

func (*TotalBurnedNeutronsAmount) MarshalToSizedBuffer

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

func (*TotalBurnedNeutronsAmount) ProtoMessage

func (*TotalBurnedNeutronsAmount) ProtoMessage()

func (*TotalBurnedNeutronsAmount) Reset

func (m *TotalBurnedNeutronsAmount) Reset()

func (*TotalBurnedNeutronsAmount) Size

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

func (*TotalBurnedNeutronsAmount) String

func (m *TotalBurnedNeutronsAmount) String() string

func (*TotalBurnedNeutronsAmount) Unmarshal

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

func (*TotalBurnedNeutronsAmount) XXX_DiscardUnknown

func (m *TotalBurnedNeutronsAmount) XXX_DiscardUnknown()

func (*TotalBurnedNeutronsAmount) XXX_Marshal

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

func (*TotalBurnedNeutronsAmount) XXX_Merge

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

func (*TotalBurnedNeutronsAmount) XXX_Size

func (m *TotalBurnedNeutronsAmount) XXX_Size() int

func (*TotalBurnedNeutronsAmount) XXX_Unmarshal

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

type UnimplementedMsgServer added in v1.1.0

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) UpdateParams added in v1.1.0

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Params

Jump to

Keyboard shortcuts

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