types

package
v2.0.4 Latest Latest
Warning

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

Go to latest
Published: Mar 28, 2024 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 = "cron"

	// 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_cron"
)
View Source
const ConsensusVersion = 1

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 (
	ScheduleKey      = []byte{prefixScheduleKey}
	ScheduleCountKey = []byte{prefixScheduleCountKey}
	ParamsKey        = []byte{prefixParamsKey}
)
View Source
var (
	KeySecurityAddress = []byte("SecurityAddress")
	KeyLimit           = []byte("Limit")

	DefaultSecurityAddress = ""
	DefaultLimit           = uint64(5)
)
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 (
	ErrInvalidLengthSchedule        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowSchedule          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupSchedule = 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/cron module sentinel errors

Functions

func GetScheduleKey

func GetScheduleKey(name 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

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 GenesisState

type GenesisState struct {
	ScheduleList []Schedule `protobuf:"bytes,2,rep,name=scheduleList,proto3" json:"scheduleList"`
	Params       Params     `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

GenesisState defines the cron 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) GetScheduleList

func (m *GenesisState) GetScheduleList() []Schedule

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

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

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgExecuteContract

type MsgExecuteContract struct {
	// Contract is the address of the smart contract
	Contract string `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	// Msg is json encoded message to be passed to the contract
	Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
}

func (*MsgExecuteContract) Descriptor

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

func (*MsgExecuteContract) GetContract

func (m *MsgExecuteContract) GetContract() string

func (*MsgExecuteContract) GetMsg

func (m *MsgExecuteContract) GetMsg() string

func (*MsgExecuteContract) Marshal

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

func (*MsgExecuteContract) MarshalTo

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

func (*MsgExecuteContract) MarshalToSizedBuffer

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

func (*MsgExecuteContract) ProtoMessage

func (*MsgExecuteContract) ProtoMessage()

func (*MsgExecuteContract) Reset

func (m *MsgExecuteContract) Reset()

func (*MsgExecuteContract) Size

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

func (*MsgExecuteContract) String

func (m *MsgExecuteContract) String() string

func (*MsgExecuteContract) Unmarshal

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

func (*MsgExecuteContract) XXX_DiscardUnknown

func (m *MsgExecuteContract) XXX_DiscardUnknown()

func (*MsgExecuteContract) XXX_Marshal

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

func (*MsgExecuteContract) XXX_Merge

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

func (*MsgExecuteContract) XXX_Size

func (m *MsgExecuteContract) XXX_Size() int

func (*MsgExecuteContract) XXX_Unmarshal

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

type MsgServer

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

MsgServer is the server API for Msg service.

type MsgUpdateParams

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/cron 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

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) GetSignBytes

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

func (*MsgUpdateParams) GetSigners

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

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

func (msg *MsgUpdateParams) Route() string

func (*MsgUpdateParams) Size

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

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Type

func (msg *MsgUpdateParams) Type() string

func (*MsgUpdateParams) Unmarshal

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

func (*MsgUpdateParams) ValidateBasic

func (msg *MsgUpdateParams) ValidateBasic() 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.

Since: 0.47

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 Params

type Params struct {
	// Security address that can remove schedules
	SecurityAddress string `protobuf:"bytes,1,opt,name=security_address,json=securityAddress,proto3" json:"security_address,omitempty"`
	// Limit of schedules executed in one block
	Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams(securityAddress string, limit uint64) Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) GetLimit

func (m *Params) GetLimit() uint64

func (*Params) GetSecurityAddress

func (m *Params) GetSecurityAddress() 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 {
	// Queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a Schedule by name.
	Schedule(ctx context.Context, in *QueryGetScheduleRequest, opts ...grpc.CallOption) (*QueryGetScheduleResponse, error)
	// Queries a list of Schedule items.
	Schedules(ctx context.Context, in *QuerySchedulesRequest, opts ...grpc.CallOption) (*QuerySchedulesResponse, 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 QueryGetScheduleRequest

type QueryGetScheduleRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
}

func (*QueryGetScheduleRequest) Descriptor

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

func (*QueryGetScheduleRequest) GetName

func (m *QueryGetScheduleRequest) GetName() string

func (*QueryGetScheduleRequest) Marshal

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

func (*QueryGetScheduleRequest) MarshalTo

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

func (*QueryGetScheduleRequest) MarshalToSizedBuffer

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

func (*QueryGetScheduleRequest) ProtoMessage

func (*QueryGetScheduleRequest) ProtoMessage()

func (*QueryGetScheduleRequest) Reset

func (m *QueryGetScheduleRequest) Reset()

func (*QueryGetScheduleRequest) Size

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

func (*QueryGetScheduleRequest) String

func (m *QueryGetScheduleRequest) String() string

func (*QueryGetScheduleRequest) Unmarshal

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

func (*QueryGetScheduleRequest) XXX_DiscardUnknown

func (m *QueryGetScheduleRequest) XXX_DiscardUnknown()

func (*QueryGetScheduleRequest) XXX_Marshal

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

func (*QueryGetScheduleRequest) XXX_Merge

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

func (*QueryGetScheduleRequest) XXX_Size

func (m *QueryGetScheduleRequest) XXX_Size() int

func (*QueryGetScheduleRequest) XXX_Unmarshal

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

type QueryGetScheduleResponse

type QueryGetScheduleResponse struct {
	Schedule Schedule `protobuf:"bytes,1,opt,name=schedule,proto3" json:"schedule"`
}

func (*QueryGetScheduleResponse) Descriptor

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

func (*QueryGetScheduleResponse) GetSchedule

func (m *QueryGetScheduleResponse) GetSchedule() Schedule

func (*QueryGetScheduleResponse) Marshal

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

func (*QueryGetScheduleResponse) MarshalTo

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

func (*QueryGetScheduleResponse) MarshalToSizedBuffer

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

func (*QueryGetScheduleResponse) ProtoMessage

func (*QueryGetScheduleResponse) ProtoMessage()

func (*QueryGetScheduleResponse) Reset

func (m *QueryGetScheduleResponse) Reset()

func (*QueryGetScheduleResponse) Size

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

func (*QueryGetScheduleResponse) String

func (m *QueryGetScheduleResponse) String() string

func (*QueryGetScheduleResponse) Unmarshal

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

func (*QueryGetScheduleResponse) XXX_DiscardUnknown

func (m *QueryGetScheduleResponse) XXX_DiscardUnknown()

func (*QueryGetScheduleResponse) XXX_Marshal

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

func (*QueryGetScheduleResponse) XXX_Merge

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

func (*QueryGetScheduleResponse) XXX_Size

func (m *QueryGetScheduleResponse) XXX_Size() int

func (*QueryGetScheduleResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

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"`
}

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 QuerySchedulesRequest

type QuerySchedulesRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QuerySchedulesRequest) Descriptor

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

func (*QuerySchedulesRequest) GetPagination

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

func (*QuerySchedulesRequest) Marshal

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

func (*QuerySchedulesRequest) MarshalTo

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

func (*QuerySchedulesRequest) MarshalToSizedBuffer

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

func (*QuerySchedulesRequest) ProtoMessage

func (*QuerySchedulesRequest) ProtoMessage()

func (*QuerySchedulesRequest) Reset

func (m *QuerySchedulesRequest) Reset()

func (*QuerySchedulesRequest) Size

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

func (*QuerySchedulesRequest) String

func (m *QuerySchedulesRequest) String() string

func (*QuerySchedulesRequest) Unmarshal

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

func (*QuerySchedulesRequest) XXX_DiscardUnknown

func (m *QuerySchedulesRequest) XXX_DiscardUnknown()

func (*QuerySchedulesRequest) XXX_Marshal

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

func (*QuerySchedulesRequest) XXX_Merge

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

func (*QuerySchedulesRequest) XXX_Size

func (m *QuerySchedulesRequest) XXX_Size() int

func (*QuerySchedulesRequest) XXX_Unmarshal

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

type QuerySchedulesResponse

type QuerySchedulesResponse struct {
	Schedules  []Schedule          `protobuf:"bytes,1,rep,name=schedules,proto3" json:"schedules"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QuerySchedulesResponse) Descriptor

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

func (*QuerySchedulesResponse) GetPagination

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

func (*QuerySchedulesResponse) GetSchedules

func (m *QuerySchedulesResponse) GetSchedules() []Schedule

func (*QuerySchedulesResponse) Marshal

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

func (*QuerySchedulesResponse) MarshalTo

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

func (*QuerySchedulesResponse) MarshalToSizedBuffer

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

func (*QuerySchedulesResponse) ProtoMessage

func (*QuerySchedulesResponse) ProtoMessage()

func (*QuerySchedulesResponse) Reset

func (m *QuerySchedulesResponse) Reset()

func (*QuerySchedulesResponse) Size

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

func (*QuerySchedulesResponse) String

func (m *QuerySchedulesResponse) String() string

func (*QuerySchedulesResponse) Unmarshal

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

func (*QuerySchedulesResponse) XXX_DiscardUnknown

func (m *QuerySchedulesResponse) XXX_DiscardUnknown()

func (*QuerySchedulesResponse) XXX_Marshal

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

func (*QuerySchedulesResponse) XXX_Merge

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

func (*QuerySchedulesResponse) XXX_Size

func (m *QuerySchedulesResponse) XXX_Size() int

func (*QuerySchedulesResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a Schedule by name.
	Schedule(context.Context, *QueryGetScheduleRequest) (*QueryGetScheduleResponse, error)
	// Queries a list of Schedule items.
	Schedules(context.Context, *QuerySchedulesRequest) (*QuerySchedulesResponse, error)
}

QueryServer is the server API for Query service.

type Schedule

type Schedule struct {
	// Name of schedule
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Period in blocks
	Period uint64 `protobuf:"varint,2,opt,name=period,proto3" json:"period,omitempty"`
	// Msgs that will be executed every period amount of time
	Msgs []MsgExecuteContract `protobuf:"bytes,3,rep,name=msgs,proto3" json:"msgs"`
	// Last execution's block height
	LastExecuteHeight uint64 `protobuf:"varint,4,opt,name=last_execute_height,json=lastExecuteHeight,proto3" json:"last_execute_height,omitempty"`
}

func (*Schedule) Descriptor

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

func (*Schedule) GetLastExecuteHeight

func (m *Schedule) GetLastExecuteHeight() uint64

func (*Schedule) GetMsgs

func (m *Schedule) GetMsgs() []MsgExecuteContract

func (*Schedule) GetName

func (m *Schedule) GetName() string

func (*Schedule) GetPeriod

func (m *Schedule) GetPeriod() uint64

func (*Schedule) Marshal

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

func (*Schedule) MarshalTo

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

func (*Schedule) MarshalToSizedBuffer

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

func (*Schedule) ProtoMessage

func (*Schedule) ProtoMessage()

func (*Schedule) Reset

func (m *Schedule) Reset()

func (*Schedule) Size

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

func (*Schedule) String

func (m *Schedule) String() string

func (*Schedule) Unmarshal

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

func (*Schedule) XXX_DiscardUnknown

func (m *Schedule) XXX_DiscardUnknown()

func (*Schedule) XXX_Marshal

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

func (*Schedule) XXX_Merge

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

func (*Schedule) XXX_Size

func (m *Schedule) XXX_Size() int

func (*Schedule) XXX_Unmarshal

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

type ScheduleCount

type ScheduleCount struct {
	// Count is the number of current schedules
	Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
}

func (*ScheduleCount) Descriptor

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

func (*ScheduleCount) GetCount

func (m *ScheduleCount) GetCount() int32

func (*ScheduleCount) Marshal

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

func (*ScheduleCount) MarshalTo

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

func (*ScheduleCount) MarshalToSizedBuffer

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

func (*ScheduleCount) ProtoMessage

func (*ScheduleCount) ProtoMessage()

func (*ScheduleCount) Reset

func (m *ScheduleCount) Reset()

func (*ScheduleCount) Size

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

func (*ScheduleCount) String

func (m *ScheduleCount) String() string

func (*ScheduleCount) Unmarshal

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

func (*ScheduleCount) XXX_DiscardUnknown

func (m *ScheduleCount) XXX_DiscardUnknown()

func (*ScheduleCount) XXX_Marshal

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

func (*ScheduleCount) XXX_Merge

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

func (*ScheduleCount) XXX_Size

func (m *ScheduleCount) XXX_Size() int

func (*ScheduleCount) XXX_Unmarshal

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

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) UpdateParams

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) Schedule

func (*UnimplementedQueryServer) Schedules

type WasmMsgServer

type WasmMsgServer interface {
	ExecuteContract(context.Context, *wasmtypes.MsgExecuteContract) (*wasmtypes.MsgExecuteContractResponse, error)
}

Jump to

Keyboard shortcuts

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