types

package
v8.0.0-...-5ea88d2 Latest Latest
Warning

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

Go to latest
Published: Apr 18, 2024 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthClaims        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowClaims          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupClaims = fmt.Errorf("proto: unexpected end of group")
)
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 Action_name = map[int32]string{
	0: "ACTION_UNSPECIFIED",
	1: "ACTION_VOTE",
	2: "ACTION_DELEGATE",
	3: "ACTION_EVM",
	4: "ACTION_IBC_TRANSFER",
}
View Source
var Action_value = map[string]int32{
	"ACTION_UNSPECIFIED":  0,
	"ACTION_VOTE":         1,
	"ACTION_DELEGATE":     2,
	"ACTION_EVM":          3,
	"ACTION_IBC_TRANSFER": 4,
}

Functions

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 Action

type Action int32

Action defines the list of available actions to claim the airdrop tokens.

const (
	// UNSPECIFIED defines an invalid action.
	ActionUnspecified Action = 0
	// VOTE defines a proposal vote.
	ActionVote Action = 1
	// DELEGATE defines an staking delegation.
	ActionDelegate Action = 2
	// EVM defines an EVM transaction.
	ActionEVM Action = 3
	// IBC Transfer defines a fungible token transfer transaction via IBC.
	ActionIBCTransfer Action = 4
)

func (Action) EnumDescriptor

func (Action) EnumDescriptor() ([]byte, []int)

func (Action) String

func (x Action) String() string

type Claim

type Claim struct {
	// action enum
	Action Action `protobuf:"varint,1,opt,name=action,proto3,enum=reapchain.claims.v1.Action" json:"action,omitempty"`
	// true if the action has been completed
	Completed bool `protobuf:"varint,2,opt,name=completed,proto3" json:"completed,omitempty"`
	// claimable token amount for the action. Zero if completed
	ClaimableAmount github_com_reapchain_cosmos_sdk_types.Int `` /* 149-byte string literal not displayed */
}

Claim defines the action, completed flag and the remaining claimable amount for a given user. This is only used during client queries.

func (*Claim) Descriptor

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

func (*Claim) GetAction

func (m *Claim) GetAction() Action

func (*Claim) GetCompleted

func (m *Claim) GetCompleted() bool

func (*Claim) Marshal

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

func (*Claim) MarshalTo

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

func (*Claim) MarshalToSizedBuffer

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

func (*Claim) ProtoMessage

func (*Claim) ProtoMessage()

func (*Claim) Reset

func (m *Claim) Reset()

func (*Claim) Size

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

func (*Claim) String

func (m *Claim) String() string

func (*Claim) Unmarshal

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

func (*Claim) XXX_DiscardUnknown

func (m *Claim) XXX_DiscardUnknown()

func (*Claim) XXX_Marshal

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

func (*Claim) XXX_Merge

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

func (*Claim) XXX_Size

func (m *Claim) XXX_Size() int

func (*Claim) XXX_Unmarshal

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

type ClaimsRecord

type ClaimsRecord struct {
	// total initial claimable amount for the user
	InitialClaimableAmount github_com_reapchain_cosmos_sdk_types.Int `` /* 172-byte string literal not displayed */
	// slice of the available actions completed
	ActionsCompleted []bool `protobuf:"varint,2,rep,packed,name=actions_completed,json=actionsCompleted,proto3" json:"actions_completed,omitempty"`
}

ClaimsRecord defines the initial claimable airdrop amount and the list of completed actions to claim the tokens.

func (*ClaimsRecord) Descriptor

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

func (*ClaimsRecord) GetActionsCompleted

func (m *ClaimsRecord) GetActionsCompleted() []bool

func (*ClaimsRecord) Marshal

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

func (*ClaimsRecord) MarshalTo

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

func (*ClaimsRecord) MarshalToSizedBuffer

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

func (*ClaimsRecord) ProtoMessage

func (*ClaimsRecord) ProtoMessage()

func (*ClaimsRecord) Reset

func (m *ClaimsRecord) Reset()

func (*ClaimsRecord) Size

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

func (*ClaimsRecord) String

func (m *ClaimsRecord) String() string

func (*ClaimsRecord) Unmarshal

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

func (*ClaimsRecord) XXX_DiscardUnknown

func (m *ClaimsRecord) XXX_DiscardUnknown()

func (*ClaimsRecord) XXX_Marshal

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

func (*ClaimsRecord) XXX_Merge

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

func (*ClaimsRecord) XXX_Size

func (m *ClaimsRecord) XXX_Size() int

func (*ClaimsRecord) XXX_Unmarshal

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

type ClaimsRecordAddress

type ClaimsRecordAddress struct {
	// bech32 or hex address of claim user
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// total initial claimable amount for the user
	InitialClaimableAmount github_com_reapchain_cosmos_sdk_types.Int `` /* 172-byte string literal not displayed */
	// slice of the available actions completed
	ActionsCompleted []bool `protobuf:"varint,3,rep,packed,name=actions_completed,json=actionsCompleted,proto3" json:"actions_completed,omitempty"`
}

ClaimsRecordAddress is the claims metadata per address that is used at Genesis.

func (*ClaimsRecordAddress) Descriptor

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

func (*ClaimsRecordAddress) GetActionsCompleted

func (m *ClaimsRecordAddress) GetActionsCompleted() []bool

func (*ClaimsRecordAddress) GetAddress

func (m *ClaimsRecordAddress) GetAddress() string

func (*ClaimsRecordAddress) Marshal

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

func (*ClaimsRecordAddress) MarshalTo

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

func (*ClaimsRecordAddress) MarshalToSizedBuffer

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

func (*ClaimsRecordAddress) ProtoMessage

func (*ClaimsRecordAddress) ProtoMessage()

func (*ClaimsRecordAddress) Reset

func (m *ClaimsRecordAddress) Reset()

func (*ClaimsRecordAddress) Size

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

func (*ClaimsRecordAddress) String

func (m *ClaimsRecordAddress) String() string

func (*ClaimsRecordAddress) Unmarshal

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

func (*ClaimsRecordAddress) XXX_DiscardUnknown

func (m *ClaimsRecordAddress) XXX_DiscardUnknown()

func (*ClaimsRecordAddress) XXX_Marshal

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

func (*ClaimsRecordAddress) XXX_Merge

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

func (*ClaimsRecordAddress) XXX_Size

func (m *ClaimsRecordAddress) XXX_Size() int

func (*ClaimsRecordAddress) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	// params defines all the parameters of the module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	// list of claim records with the corresponding airdrop recipient
	ClaimsRecords []ClaimsRecordAddress `protobuf:"bytes,2,rep,name=claims_records,json=claimsRecords,proto3" json:"claims_records"`
}

GenesisState define the claims module's genesis state.

func (*GenesisState) Descriptor

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

func (*GenesisState) GetClaimsRecords

func (m *GenesisState) GetClaimsRecords() []ClaimsRecordAddress

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 {
	// enable claiming process
	EnableClaims bool `protobuf:"varint,1,opt,name=enable_claims,json=enableClaims,proto3" json:"enable_claims,omitempty"`
	// timestamp of the airdrop start
	AirdropStartTime time.Time `protobuf:"bytes,2,opt,name=airdrop_start_time,json=airdropStartTime,proto3,stdtime" json:"airdrop_start_time"`
	// duration until decay of claimable tokens begin
	DurationUntilDecay time.Duration `protobuf:"bytes,3,opt,name=duration_until_decay,json=durationUntilDecay,proto3,stdduration" json:"duration_until_decay"`
	// duration of the token claim decay period
	DurationOfDecay time.Duration `protobuf:"bytes,4,opt,name=duration_of_decay,json=durationOfDecay,proto3,stdduration" json:"duration_of_decay"`
	// denom of claimable coin
	ClaimsDenom string `protobuf:"bytes,5,opt,name=claims_denom,json=claimsDenom,proto3" json:"claims_denom,omitempty"`
	// list of authorized channel identifiers that can perform address
	// attestations via IBC.
	AuthorizedChannels []string `protobuf:"bytes,6,rep,name=authorized_channels,json=authorizedChannels,proto3" json:"authorized_channels,omitempty"`
	// list of channel identifiers from EVM compatible chains
	EVMChannels []string `protobuf:"bytes,7,rep,name=evm_channels,json=evmChannels,proto3" json:"evm_channels,omitempty"`
}

Params defines the claims module's parameters.

func (*Params) Descriptor

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

func (*Params) GetAirdropStartTime

func (m *Params) GetAirdropStartTime() time.Time

func (*Params) GetAuthorizedChannels

func (m *Params) GetAuthorizedChannels() []string

func (*Params) GetClaimsDenom

func (m *Params) GetClaimsDenom() string

func (*Params) GetDurationOfDecay

func (m *Params) GetDurationOfDecay() time.Duration

func (*Params) GetDurationUntilDecay

func (m *Params) GetDurationUntilDecay() time.Duration

func (*Params) GetEVMChannels

func (m *Params) GetEVMChannels() []string

func (*Params) GetEnableClaims

func (m *Params) GetEnableClaims() bool

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (*Params) 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 QueryClaimsRecordRequest

type QueryClaimsRecordRequest struct {
	// address defines the user to query claims record for
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

QueryClaimsRecordRequest is the request type for the Query/ClaimsRecord RPC method.

func (*QueryClaimsRecordRequest) Descriptor

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

func (*QueryClaimsRecordRequest) GetAddress

func (m *QueryClaimsRecordRequest) GetAddress() string

func (*QueryClaimsRecordRequest) Marshal

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

func (*QueryClaimsRecordRequest) MarshalTo

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

func (*QueryClaimsRecordRequest) MarshalToSizedBuffer

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

func (*QueryClaimsRecordRequest) ProtoMessage

func (*QueryClaimsRecordRequest) ProtoMessage()

func (*QueryClaimsRecordRequest) Reset

func (m *QueryClaimsRecordRequest) Reset()

func (*QueryClaimsRecordRequest) Size

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

func (*QueryClaimsRecordRequest) String

func (m *QueryClaimsRecordRequest) String() string

func (*QueryClaimsRecordRequest) Unmarshal

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

func (*QueryClaimsRecordRequest) XXX_DiscardUnknown

func (m *QueryClaimsRecordRequest) XXX_DiscardUnknown()

func (*QueryClaimsRecordRequest) XXX_Marshal

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

func (*QueryClaimsRecordRequest) XXX_Merge

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

func (*QueryClaimsRecordRequest) XXX_Size

func (m *QueryClaimsRecordRequest) XXX_Size() int

func (*QueryClaimsRecordRequest) XXX_Unmarshal

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

type QueryClaimsRecordResponse

type QueryClaimsRecordResponse struct {
	// total initial claimable amount for the user
	InitialClaimableAmount github_com_reapchain_cosmos_sdk_types.Int `` /* 172-byte string literal not displayed */
	// the claims of the user
	Claims []Claim `protobuf:"bytes,2,rep,name=claims,proto3" json:"claims"`
}

QueryClaimsRecordResponse is the response type for the Query/ClaimsRecord RPC method.

func (*QueryClaimsRecordResponse) Descriptor

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

func (*QueryClaimsRecordResponse) GetClaims

func (m *QueryClaimsRecordResponse) GetClaims() []Claim

func (*QueryClaimsRecordResponse) Marshal

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

func (*QueryClaimsRecordResponse) MarshalTo

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

func (*QueryClaimsRecordResponse) MarshalToSizedBuffer

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

func (*QueryClaimsRecordResponse) ProtoMessage

func (*QueryClaimsRecordResponse) ProtoMessage()

func (*QueryClaimsRecordResponse) Reset

func (m *QueryClaimsRecordResponse) Reset()

func (*QueryClaimsRecordResponse) Size

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

func (*QueryClaimsRecordResponse) String

func (m *QueryClaimsRecordResponse) String() string

func (*QueryClaimsRecordResponse) Unmarshal

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

func (*QueryClaimsRecordResponse) XXX_DiscardUnknown

func (m *QueryClaimsRecordResponse) XXX_DiscardUnknown()

func (*QueryClaimsRecordResponse) XXX_Marshal

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

func (*QueryClaimsRecordResponse) XXX_Merge

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

func (*QueryClaimsRecordResponse) XXX_Size

func (m *QueryClaimsRecordResponse) XXX_Size() int

func (*QueryClaimsRecordResponse) XXX_Unmarshal

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

type QueryClaimsRecordsRequest

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

QueryClaimsRecordsRequest is the request type for the Query/ClaimsRecords RPC method.

func (*QueryClaimsRecordsRequest) Descriptor

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

func (*QueryClaimsRecordsRequest) GetPagination

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

func (*QueryClaimsRecordsRequest) Marshal

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

func (*QueryClaimsRecordsRequest) MarshalTo

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

func (*QueryClaimsRecordsRequest) MarshalToSizedBuffer

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

func (*QueryClaimsRecordsRequest) ProtoMessage

func (*QueryClaimsRecordsRequest) ProtoMessage()

func (*QueryClaimsRecordsRequest) Reset

func (m *QueryClaimsRecordsRequest) Reset()

func (*QueryClaimsRecordsRequest) Size

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

func (*QueryClaimsRecordsRequest) String

func (m *QueryClaimsRecordsRequest) String() string

func (*QueryClaimsRecordsRequest) Unmarshal

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

func (*QueryClaimsRecordsRequest) XXX_DiscardUnknown

func (m *QueryClaimsRecordsRequest) XXX_DiscardUnknown()

func (*QueryClaimsRecordsRequest) XXX_Marshal

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

func (*QueryClaimsRecordsRequest) XXX_Merge

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

func (*QueryClaimsRecordsRequest) XXX_Size

func (m *QueryClaimsRecordsRequest) XXX_Size() int

func (*QueryClaimsRecordsRequest) XXX_Unmarshal

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

type QueryClaimsRecordsResponse

type QueryClaimsRecordsResponse struct {
	// claims defines all claims records
	Claims []ClaimsRecordAddress `protobuf:"bytes,1,rep,name=claims,proto3" json:"claims"`
	// pagination defines the pagination in the response.
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryClaimsRecordsResponse is the response type for the Query/ClaimsRecords RPC method.

func (*QueryClaimsRecordsResponse) Descriptor

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

func (*QueryClaimsRecordsResponse) GetClaims

func (*QueryClaimsRecordsResponse) GetPagination

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

func (*QueryClaimsRecordsResponse) Marshal

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

func (*QueryClaimsRecordsResponse) MarshalTo

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

func (*QueryClaimsRecordsResponse) MarshalToSizedBuffer

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

func (*QueryClaimsRecordsResponse) ProtoMessage

func (*QueryClaimsRecordsResponse) ProtoMessage()

func (*QueryClaimsRecordsResponse) Reset

func (m *QueryClaimsRecordsResponse) Reset()

func (*QueryClaimsRecordsResponse) Size

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

func (*QueryClaimsRecordsResponse) String

func (m *QueryClaimsRecordsResponse) String() string

func (*QueryClaimsRecordsResponse) Unmarshal

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

func (*QueryClaimsRecordsResponse) XXX_DiscardUnknown

func (m *QueryClaimsRecordsResponse) XXX_DiscardUnknown()

func (*QueryClaimsRecordsResponse) XXX_Marshal

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

func (*QueryClaimsRecordsResponse) XXX_Merge

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

func (*QueryClaimsRecordsResponse) XXX_Size

func (m *QueryClaimsRecordsResponse) XXX_Size() int

func (*QueryClaimsRecordsResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// TotalUnclaimed queries the total unclaimed tokens from the airdrop
	TotalUnclaimed(ctx context.Context, in *QueryTotalUnclaimedRequest, opts ...grpc.CallOption) (*QueryTotalUnclaimedResponse, error)
	// Params returns the claims module parameters
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// ClaimsRecords returns all claims records
	ClaimsRecords(ctx context.Context, in *QueryClaimsRecordsRequest, opts ...grpc.CallOption) (*QueryClaimsRecordsResponse, error)
	// ClaimsRecord returns the claims record for a given address
	ClaimsRecord(ctx context.Context, in *QueryClaimsRecordRequest, opts ...grpc.CallOption) (*QueryClaimsRecordResponse, 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 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 QueryServer

type QueryServer interface {
	// TotalUnclaimed queries the total unclaimed tokens from the airdrop
	TotalUnclaimed(context.Context, *QueryTotalUnclaimedRequest) (*QueryTotalUnclaimedResponse, error)
	// Params returns the claims module parameters
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// ClaimsRecords returns all claims records
	ClaimsRecords(context.Context, *QueryClaimsRecordsRequest) (*QueryClaimsRecordsResponse, error)
	// ClaimsRecord returns the claims record for a given address
	ClaimsRecord(context.Context, *QueryClaimsRecordRequest) (*QueryClaimsRecordResponse, error)
}

QueryServer is the server API for Query service.

type QueryTotalUnclaimedRequest

type QueryTotalUnclaimedRequest struct {
}

QueryTotalUnclaimedRequest is the request type for the Query/TotalUnclaimed RPC method.

func (*QueryTotalUnclaimedRequest) Descriptor

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

func (*QueryTotalUnclaimedRequest) Marshal

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

func (*QueryTotalUnclaimedRequest) MarshalTo

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

func (*QueryTotalUnclaimedRequest) MarshalToSizedBuffer

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

func (*QueryTotalUnclaimedRequest) ProtoMessage

func (*QueryTotalUnclaimedRequest) ProtoMessage()

func (*QueryTotalUnclaimedRequest) Reset

func (m *QueryTotalUnclaimedRequest) Reset()

func (*QueryTotalUnclaimedRequest) Size

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

func (*QueryTotalUnclaimedRequest) String

func (m *QueryTotalUnclaimedRequest) String() string

func (*QueryTotalUnclaimedRequest) Unmarshal

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

func (*QueryTotalUnclaimedRequest) XXX_DiscardUnknown

func (m *QueryTotalUnclaimedRequest) XXX_DiscardUnknown()

func (*QueryTotalUnclaimedRequest) XXX_Marshal

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

func (*QueryTotalUnclaimedRequest) XXX_Merge

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

func (*QueryTotalUnclaimedRequest) XXX_Size

func (m *QueryTotalUnclaimedRequest) XXX_Size() int

func (*QueryTotalUnclaimedRequest) XXX_Unmarshal

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

type QueryTotalUnclaimedResponse

type QueryTotalUnclaimedResponse struct {
	// coins defines the unclaimed coins
	Coins github_com_reapchain_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=coins,proto3,castrepeated=github.com/reapchain/cosmos-sdk/types.Coins" json:"coins"`
}

QueryTotalUnclaimedResponse is the response type for the Query/TotalUnclaimed RPC method.

func (*QueryTotalUnclaimedResponse) Descriptor

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

func (*QueryTotalUnclaimedResponse) GetCoins

func (*QueryTotalUnclaimedResponse) Marshal

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

func (*QueryTotalUnclaimedResponse) MarshalTo

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

func (*QueryTotalUnclaimedResponse) MarshalToSizedBuffer

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

func (*QueryTotalUnclaimedResponse) ProtoMessage

func (*QueryTotalUnclaimedResponse) ProtoMessage()

func (*QueryTotalUnclaimedResponse) Reset

func (m *QueryTotalUnclaimedResponse) Reset()

func (*QueryTotalUnclaimedResponse) Size

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

func (*QueryTotalUnclaimedResponse) String

func (m *QueryTotalUnclaimedResponse) String() string

func (*QueryTotalUnclaimedResponse) Unmarshal

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

func (*QueryTotalUnclaimedResponse) XXX_DiscardUnknown

func (m *QueryTotalUnclaimedResponse) XXX_DiscardUnknown()

func (*QueryTotalUnclaimedResponse) XXX_Marshal

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

func (*QueryTotalUnclaimedResponse) XXX_Merge

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

func (*QueryTotalUnclaimedResponse) XXX_Size

func (m *QueryTotalUnclaimedResponse) XXX_Size() int

func (*QueryTotalUnclaimedResponse) XXX_Unmarshal

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

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) ClaimsRecord

func (*UnimplementedQueryServer) ClaimsRecords

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) TotalUnclaimed

Jump to

Keyboard shortcuts

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