types

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// ModuleName is the name of the this module
	ModuleName = "globalfee"

	QuerierRoute = ModuleName
)

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 (
	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 ParamStoreKeyMinGasPrices = []byte("MinimumGasPricesParam")

ParamStoreKeyMinGasPrices store key

Functions

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

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 (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type GenesisState

type GenesisState struct {
	// Params of this module
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
}

GenesisState - initial state of module

func (*GenesisState) Descriptor

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

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

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

type Params struct {
	// Minimum stores the minimum gas price(s) for all TX on the chain.
	// When multiple coins are defined then they are accepted alternatively.
	// The list must be sorted by denoms asc. No duplicate denoms or zero amount
	// values allowed. For more information see
	// https://docs.cosmos.network/master/modules/auth/01_concepts.html
	MinimumGasPrices github_com_cosmos_cosmos_sdk_types.DecCoins `` /* 194-byte string literal not displayed */
}

Params defines the set of module parameters.

func DefaultParams

func DefaultParams() Params

DefaultParams returns default wasm parameters

func (*Params) Descriptor

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

func (*Params) GetMinimumGasPrices

func (m *Params) GetMinimumGasPrices() github_com_cosmos_cosmos_sdk_types.DecCoins

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 returns the parameter set pairs.

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

func (p Params) ValidateBasic() error

ValidateBasic performs basic validation.

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 {
	MinimumGasPrices(ctx context.Context, in *QueryMinimumGasPricesRequest, opts ...grpc.CallOption) (*QueryMinimumGasPricesResponse, 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 QueryMinimumGasPricesRequest

type QueryMinimumGasPricesRequest struct{}

QueryMinimumGasPricesRequest is the request type for the Query/MinimumGasPrices RPC method.

func (*QueryMinimumGasPricesRequest) Descriptor

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

func (*QueryMinimumGasPricesRequest) Marshal

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

func (*QueryMinimumGasPricesRequest) MarshalTo

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

func (*QueryMinimumGasPricesRequest) MarshalToSizedBuffer

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

func (*QueryMinimumGasPricesRequest) ProtoMessage

func (*QueryMinimumGasPricesRequest) ProtoMessage()

func (*QueryMinimumGasPricesRequest) Reset

func (m *QueryMinimumGasPricesRequest) Reset()

func (*QueryMinimumGasPricesRequest) Size

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

func (*QueryMinimumGasPricesRequest) String

func (*QueryMinimumGasPricesRequest) Unmarshal

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

func (*QueryMinimumGasPricesRequest) XXX_DiscardUnknown

func (m *QueryMinimumGasPricesRequest) XXX_DiscardUnknown()

func (*QueryMinimumGasPricesRequest) XXX_Marshal

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

func (*QueryMinimumGasPricesRequest) XXX_Merge

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

func (*QueryMinimumGasPricesRequest) XXX_Size

func (m *QueryMinimumGasPricesRequest) XXX_Size() int

func (*QueryMinimumGasPricesRequest) XXX_Unmarshal

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

type QueryMinimumGasPricesResponse

type QueryMinimumGasPricesResponse struct {
	MinimumGasPrices github_com_cosmos_cosmos_sdk_types.DecCoins `` /* 194-byte string literal not displayed */
}

QueryMinimumGasPricesResponse is the response type for the Query/MinimumGasPrices RPC method.

func (*QueryMinimumGasPricesResponse) Descriptor

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

func (*QueryMinimumGasPricesResponse) GetMinimumGasPrices

func (*QueryMinimumGasPricesResponse) Marshal

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

func (*QueryMinimumGasPricesResponse) MarshalTo

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

func (*QueryMinimumGasPricesResponse) MarshalToSizedBuffer

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

func (*QueryMinimumGasPricesResponse) ProtoMessage

func (*QueryMinimumGasPricesResponse) ProtoMessage()

func (*QueryMinimumGasPricesResponse) Reset

func (m *QueryMinimumGasPricesResponse) Reset()

func (*QueryMinimumGasPricesResponse) Size

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

func (*QueryMinimumGasPricesResponse) String

func (*QueryMinimumGasPricesResponse) Unmarshal

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

func (*QueryMinimumGasPricesResponse) XXX_DiscardUnknown

func (m *QueryMinimumGasPricesResponse) XXX_DiscardUnknown()

func (*QueryMinimumGasPricesResponse) XXX_Marshal

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

func (*QueryMinimumGasPricesResponse) XXX_Merge

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

func (*QueryMinimumGasPricesResponse) XXX_Size

func (m *QueryMinimumGasPricesResponse) XXX_Size() int

func (*QueryMinimumGasPricesResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	MinimumGasPrices(context.Context, *QueryMinimumGasPricesRequest) (*QueryMinimumGasPricesResponse, error)
}

QueryServer is the server API for Query service.

type UnimplementedQueryServer

type UnimplementedQueryServer struct{}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) MinimumGasPrices

Jump to

Keyboard shortcuts

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