From f048bfac017d844fc98a5a41f8d5d37660346e85 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Thu, 8 Sep 2022 21:52:01 +0000 Subject: [PATCH] scaffold locked-funds query --- docs/static/openapi.yml | 46 ++ proto/colinearcore/query.proto | 12 + x/colinearcore/client/cli/query.go | 2 + .../client/cli/query_locked_funds.go | 46 ++ .../keeper/grpc_query_locked_funds.go | 23 + x/colinearcore/types/query.pb.go | 418 ++++++++++++++++-- x/colinearcore/types/query.pb.gw.go | 101 +++++ 7 files changed, 604 insertions(+), 44 deletions(-) create mode 100644 x/colinearcore/client/cli/query_locked_funds.go create mode 100644 x/colinearcore/keeper/grpc_query_locked_funds.go diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 9281b51..adf66e6 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -4,6 +4,40 @@ info: name: '' description: '' paths: + '/colinear/colinearcore/locked_funds/{owner}': + get: + summary: Queries a list of LockedFunds items. + operationId: ColinearColinearcoreLockedFunds + responses: + '200': + description: A successful response. + schema: + type: object + default: + description: An unexpected error response. + schema: + type: object + properties: + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + '@type': + type: string + additionalProperties: {} + parameters: + - name: owner + in: path + required: true + type: string + tags: + - Query /colinear/colinearcore/locked_users: get: summary: Queries a LockedUsers by index. @@ -178,6 +212,16 @@ paths: in: query required: false type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean tags: - Query '/colinearcore/colinearcore/auction/{index}': @@ -30930,6 +30974,8 @@ definitions: auctionId: type: string format: uint64 + colinear.colinearcore.QueryLockedFundsResponse: + type: object colinear.colinearcore.QueryParamsResponse: type: object properties: diff --git a/proto/colinearcore/query.proto b/proto/colinearcore/query.proto index c0e9e48..38f49bd 100644 --- a/proto/colinearcore/query.proto +++ b/proto/colinearcore/query.proto @@ -42,6 +42,11 @@ service Query { rpc LockedUsers(QueryGetLockedUsersRequest) returns (QueryGetLockedUsersResponse) { option (google.api.http).get = "/colinear/colinearcore/locked_users"; } +// Queries a list of LockedFunds items. + rpc LockedFunds(QueryLockedFundsRequest) returns (QueryLockedFundsResponse) { + option (google.api.http).get = "/colinear/colinearcore/locked_funds/{owner}"; + } + // this line is used by starport scaffolding # 2 } @@ -90,4 +95,11 @@ message QueryGetLockedUsersRequest {} message QueryGetLockedUsersResponse { LockedUsers LockedUsers = 1 [(gogoproto.nullable) = false]; } +message QueryLockedFundsRequest { + string owner = 1; +} + +message QueryLockedFundsResponse { +} + // this line is used by starport scaffolding # 3 diff --git a/x/colinearcore/client/cli/query.go b/x/colinearcore/client/cli/query.go index d65b7ba..3661c9e 100644 --- a/x/colinearcore/client/cli/query.go +++ b/x/colinearcore/client/cli/query.go @@ -31,6 +31,8 @@ func GetQueryCmd(queryRoute string) *cobra.Command { cmd.AddCommand(CmdAuctionBids()) cmd.AddCommand(CmdShowLockedUsers()) + cmd.AddCommand(CmdLockedFunds()) + // this line is used by starport scaffolding # 1 return cmd diff --git a/x/colinearcore/client/cli/query_locked_funds.go b/x/colinearcore/client/cli/query_locked_funds.go new file mode 100644 index 0000000..3922153 --- /dev/null +++ b/x/colinearcore/client/cli/query_locked_funds.go @@ -0,0 +1,46 @@ +package cli + +import ( + "strconv" + + "colinear/x/colinearcore/types" + "github.com/cosmos/cosmos-sdk/client" + "github.com/cosmos/cosmos-sdk/client/flags" + "github.com/spf13/cobra" +) + +var _ = strconv.Itoa(0) + +func CmdLockedFunds() *cobra.Command { + cmd := &cobra.Command{ + Use: "locked-funds [owner]", + Short: "Query lockedFunds", + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) (err error) { + reqOwner := args[0] + + clientCtx, err := client.GetClientTxContext(cmd) + if err != nil { + return err + } + + queryClient := types.NewQueryClient(clientCtx) + + params := &types.QueryLockedFundsRequest{ + + Owner: reqOwner, + } + + res, err := queryClient.LockedFunds(cmd.Context(), params) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + + return cmd +} diff --git a/x/colinearcore/keeper/grpc_query_locked_funds.go b/x/colinearcore/keeper/grpc_query_locked_funds.go new file mode 100644 index 0000000..e1808ac --- /dev/null +++ b/x/colinearcore/keeper/grpc_query_locked_funds.go @@ -0,0 +1,23 @@ +package keeper + +import ( + "context" + + "colinear/x/colinearcore/types" + sdk "github.com/cosmos/cosmos-sdk/types" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" +) + +func (k Keeper) LockedFunds(goCtx context.Context, req *types.QueryLockedFundsRequest) (*types.QueryLockedFundsResponse, error) { + if req == nil { + return nil, status.Error(codes.InvalidArgument, "invalid request") + } + + ctx := sdk.UnwrapSDKContext(goCtx) + + // TODO: Process the query + _ = ctx + + return &types.QueryLockedFundsResponse{}, nil +} diff --git a/x/colinearcore/types/query.pb.go b/x/colinearcore/types/query.pb.go index 019e329..4ba4108 100644 --- a/x/colinearcore/types/query.pb.go +++ b/x/colinearcore/types/query.pb.go @@ -545,6 +545,86 @@ func (m *QueryGetLockedUsersResponse) GetLockedUsers() LockedUsers { return LockedUsers{} } +type QueryLockedFundsRequest struct { + Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` +} + +func (m *QueryLockedFundsRequest) Reset() { *m = QueryLockedFundsRequest{} } +func (m *QueryLockedFundsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryLockedFundsRequest) ProtoMessage() {} +func (*QueryLockedFundsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_7b40a5389bf6a896, []int{12} +} +func (m *QueryLockedFundsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryLockedFundsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryLockedFundsRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryLockedFundsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryLockedFundsRequest.Merge(m, src) +} +func (m *QueryLockedFundsRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryLockedFundsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryLockedFundsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryLockedFundsRequest proto.InternalMessageInfo + +func (m *QueryLockedFundsRequest) GetOwner() string { + if m != nil { + return m.Owner + } + return "" +} + +type QueryLockedFundsResponse struct { +} + +func (m *QueryLockedFundsResponse) Reset() { *m = QueryLockedFundsResponse{} } +func (m *QueryLockedFundsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryLockedFundsResponse) ProtoMessage() {} +func (*QueryLockedFundsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_7b40a5389bf6a896, []int{13} +} +func (m *QueryLockedFundsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryLockedFundsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryLockedFundsResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryLockedFundsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryLockedFundsResponse.Merge(m, src) +} +func (m *QueryLockedFundsResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryLockedFundsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryLockedFundsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryLockedFundsResponse proto.InternalMessageInfo + func init() { proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinearcore.QueryParamsRequest") proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinearcore.QueryParamsResponse") @@ -558,55 +638,60 @@ func init() { proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinearcore.QueryAuctionBidsResponse") proto.RegisterType((*QueryGetLockedUsersRequest)(nil), "colinear.colinearcore.QueryGetLockedUsersRequest") proto.RegisterType((*QueryGetLockedUsersResponse)(nil), "colinear.colinearcore.QueryGetLockedUsersResponse") + proto.RegisterType((*QueryLockedFundsRequest)(nil), "colinear.colinearcore.QueryLockedFundsRequest") + proto.RegisterType((*QueryLockedFundsResponse)(nil), "colinear.colinearcore.QueryLockedFundsResponse") } func init() { proto.RegisterFile("colinearcore/query.proto", fileDescriptor_7b40a5389bf6a896) } var fileDescriptor_7b40a5389bf6a896 = []byte{ - // 675 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x3d, 0x6f, 0xd3, 0x40, - 0x1c, 0xc6, 0x73, 0xa5, 0x2f, 0xe2, 0xba, 0x1d, 0xa5, 0x14, 0xd3, 0xba, 0x70, 0x05, 0x4a, 0x03, - 0xf8, 0x94, 0x30, 0x74, 0x40, 0x42, 0x6a, 0x06, 0x2a, 0x55, 0x08, 0x15, 0x4b, 0x0c, 0xb0, 0x84, - 0x4b, 0x7c, 0xb2, 0x2c, 0x5c, 0x9f, 0x6b, 0x3b, 0x28, 0x15, 0x62, 0x61, 0x64, 0x42, 0x62, 0x60, - 0x61, 0x01, 0x09, 0xf1, 0x41, 0x58, 0x3a, 0x56, 0x62, 0x61, 0x42, 0x28, 0xe1, 0x83, 0xa0, 0x9c, - 0xcf, 0xe9, 0x5d, 0xed, 0xd8, 0xe9, 0xd6, 0xde, 0xff, 0xe5, 0xf9, 0xd9, 0x79, 0x9e, 0x33, 0x5c, - 0xe9, 0x72, 0xdf, 0x0b, 0x18, 0x8d, 0xba, 0x3c, 0x62, 0xe4, 0xb0, 0xc7, 0xa2, 0x23, 0x2b, 0x8c, - 0x78, 0xc2, 0xd1, 0xe5, 0xac, 0x62, 0xa9, 0x2d, 0xc6, 0x92, 0xcb, 0x5d, 0x2e, 0x3a, 0xc8, 0xe8, - 0xaf, 0xb4, 0xd9, 0x58, 0x75, 0x39, 0x77, 0x7d, 0x46, 0x68, 0xe8, 0x11, 0x1a, 0x04, 0x3c, 0xa1, - 0x89, 0xc7, 0x83, 0x58, 0x56, 0xeb, 0x5d, 0x1e, 0x1f, 0xf0, 0x98, 0x74, 0x68, 0x2c, 0x35, 0xc8, - 0x9b, 0x46, 0x87, 0x25, 0xb4, 0x41, 0x42, 0xea, 0x7a, 0x81, 0x68, 0x96, 0xbd, 0x57, 0x35, 0xa0, - 0x90, 0x46, 0xf4, 0x20, 0x5b, 0xb3, 0xae, 0x95, 0x02, 0xd6, 0x4f, 0xda, 0xb4, 0xd7, 0x55, 0x66, - 0x0d, 0xad, 0x41, 0xaf, 0x2d, 0x6b, 0xb5, 0x8e, 0xe7, 0x14, 0x2e, 0xf5, 0x79, 0xf7, 0x35, 0x73, - 0xda, 0xbd, 0x98, 0x45, 0x52, 0x15, 0x2f, 0x41, 0xf4, 0x6c, 0x84, 0xbc, 0x2f, 0x50, 0x6c, 0x76, - 0xd8, 0x63, 0x71, 0x82, 0x6d, 0x78, 0x49, 0x3b, 0x8d, 0x43, 0x1e, 0xc4, 0x0c, 0x3d, 0x84, 0xf3, - 0x29, 0xf2, 0x0a, 0xb8, 0x0e, 0xee, 0x2c, 0x36, 0xd7, 0xac, 0xc2, 0xb7, 0x68, 0xa5, 0x63, 0xad, - 0xd9, 0xe3, 0x3f, 0xeb, 0x35, 0x5b, 0x8e, 0xe0, 0x55, 0x68, 0x88, 0x9d, 0xbb, 0x2c, 0x79, 0xca, - 0xfa, 0xc9, 0x4e, 0xca, 0x9f, 0x29, 0x7a, 0xf0, 0x5a, 0x61, 0x55, 0x2a, 0xef, 0xc1, 0x45, 0xe5, - 0x58, 0xca, 0xe3, 0x09, 0xf2, 0x4a, 0xa7, 0x64, 0x50, 0x87, 0xb1, 0x05, 0x97, 0x33, 0x29, 0x1d, - 0x02, 0x2d, 0xc1, 0x39, 0x2f, 0x70, 0x58, 0x5f, 0xec, 0xbf, 0x68, 0xa7, 0xff, 0xe0, 0x17, 0xf0, - 0x4a, 0xae, 0x5f, 0x62, 0x3d, 0x82, 0x0b, 0x54, 0x43, 0x32, 0x27, 0x20, 0xe9, 0x38, 0xd9, 0x10, - 0x7e, 0x25, 0x51, 0x76, 0x7c, 0xff, 0x0c, 0xca, 0x63, 0x08, 0x4f, 0xcd, 0x23, 0x97, 0xdf, 0xb6, - 0x52, 0xa7, 0x59, 0x23, 0xa7, 0x59, 0xa9, 0x9b, 0xa5, 0xd3, 0xac, 0x7d, 0xea, 0x32, 0x39, 0x6b, - 0x2b, 0x93, 0xf8, 0x1b, 0x90, 0xf4, 0xaa, 0x44, 0x11, 0xfd, 0x85, 0x73, 0xd3, 0xa3, 0x5d, 0x8d, - 0x71, 0x46, 0x30, 0x6e, 0x56, 0x32, 0xa6, 0xe2, 0x1a, 0x24, 0xc9, 0x18, 0xa5, 0x8e, 0xe7, 0xc4, - 0xe5, 0x3f, 0xc9, 0x1e, 0x5c, 0xc9, 0x0f, 0xc8, 0xa7, 0xb2, 0xe0, 0x6c, 0xc7, 0x73, 0x62, 0xf9, - 0x48, 0xc6, 0x84, 0x47, 0x6a, 0x79, 0x8e, 0x2d, 0xfa, 0x54, 0x5f, 0x3e, 0x11, 0xf9, 0x78, 0x3e, - 0x8a, 0x47, 0x81, 0x2f, 0xb5, 0xea, 0xa9, 0x2f, 0x95, 0xe3, 0x0a, 0x5f, 0x2a, 0x9d, 0x99, 0x2f, - 0x95, 0xa3, 0xe6, 0xcf, 0x05, 0x38, 0x27, 0xb4, 0xd0, 0x07, 0x00, 0xe7, 0xd3, 0x0c, 0xa1, 0xad, - 0x09, 0xbb, 0xf2, 0xa1, 0x35, 0xea, 0xd3, 0xb4, 0xa6, 0xdc, 0x78, 0xeb, 0xfd, 0xaf, 0x7f, 0x9f, - 0x66, 0x36, 0xd0, 0x0d, 0xa2, 0x5d, 0x10, 0x05, 0xb7, 0x13, 0xfa, 0x0e, 0xb4, 0xec, 0xa1, 0x46, - 0x99, 0x4c, 0x61, 0xb8, 0x8d, 0xe6, 0x79, 0x46, 0x24, 0x21, 0x11, 0x84, 0x5b, 0x68, 0xb3, 0x84, - 0x50, 0xbd, 0x24, 0xd1, 0x17, 0x00, 0x17, 0x32, 0xc6, 0xfb, 0x15, 0x82, 0x67, 0xf8, 0xac, 0x69, - 0xdb, 0x25, 0x5b, 0x53, 0xb0, 0xdd, 0x43, 0xf5, 0x12, 0x36, 0x89, 0x45, 0xde, 0x0a, 0xc7, 0xbe, - 0x43, 0x9f, 0x01, 0x84, 0x72, 0xcf, 0x8e, 0xef, 0x97, 0x13, 0xe6, 0xae, 0x83, 0x72, 0xc2, 0x7c, - 0xb4, 0x71, 0x5d, 0x10, 0xde, 0x44, 0xb8, 0x9a, 0x10, 0xfd, 0x00, 0x70, 0x51, 0x09, 0x12, 0x2a, - 0xd7, 0xca, 0x45, 0xd4, 0x20, 0x53, 0xf7, 0x4b, 0xb8, 0x6d, 0x01, 0xd7, 0x40, 0xa4, 0x1a, 0xae, - 0x3d, 0x8a, 0xe8, 0xf8, 0x1d, 0x7e, 0x05, 0x5a, 0xdc, 0x2a, 0xad, 0x98, 0xcf, 0x73, 0xa5, 0x15, - 0x0b, 0x42, 0x8e, 0xef, 0x0a, 0xde, 0x5b, 0x68, 0x63, 0x8c, 0x48, 0x26, 0x7e, 0x56, 0x5b, 0xdb, - 0xc7, 0x03, 0x13, 0x9c, 0x0c, 0x4c, 0xf0, 0x77, 0x60, 0x82, 0x8f, 0x43, 0xb3, 0x76, 0x32, 0x34, - 0x6b, 0xbf, 0x87, 0x66, 0xed, 0xe5, 0xda, 0x78, 0xba, 0xaf, 0xcf, 0x27, 0x47, 0x21, 0x8b, 0x3b, - 0xf3, 0xe2, 0x83, 0xfc, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, 0xf1, 0xb6, 0x7a, 0xb4, - 0x08, 0x00, 0x00, + // 735 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x96, 0xcf, 0x4f, 0xd4, 0x40, + 0x14, 0xc7, 0x77, 0x90, 0x1f, 0x3a, 0xdc, 0x46, 0x44, 0xac, 0x50, 0x74, 0x50, 0x91, 0x45, 0x3a, + 0xd9, 0xe5, 0xc0, 0xc1, 0xc4, 0x04, 0x0e, 0x90, 0x10, 0x63, 0x70, 0x13, 0x0f, 0x7a, 0xc1, 0xd9, + 0xdd, 0x71, 0xd3, 0x58, 0x3a, 0xa5, 0xed, 0xea, 0x12, 0xc2, 0xc5, 0xa3, 0x27, 0x13, 0x0f, 0x5e, + 0xbc, 0xa8, 0x31, 0xfe, 0x2b, 0x1c, 0x49, 0xbc, 0x78, 0x32, 0x06, 0xbc, 0xf8, 0x5f, 0x98, 0xce, + 0x4c, 0x97, 0x19, 0xda, 0x6d, 0xe1, 0xb6, 0x9d, 0x79, 0xef, 0x7d, 0x3f, 0x7d, 0xfb, 0x7d, 0x6f, + 0x17, 0x4e, 0xb5, 0xb8, 0xe7, 0xfa, 0x8c, 0x86, 0x2d, 0x1e, 0x32, 0xb2, 0xdb, 0x65, 0xe1, 0x9e, + 0x13, 0x84, 0x3c, 0xe6, 0xe8, 0x5a, 0x7a, 0xe3, 0xe8, 0x21, 0xd6, 0x44, 0x87, 0x77, 0xb8, 0x88, + 0x20, 0xc9, 0x27, 0x19, 0x6c, 0x4d, 0x77, 0x38, 0xef, 0x78, 0x8c, 0xd0, 0xc0, 0x25, 0xd4, 0xf7, + 0x79, 0x4c, 0x63, 0x97, 0xfb, 0x91, 0xba, 0xad, 0xb6, 0x78, 0xb4, 0xc3, 0x23, 0xd2, 0xa4, 0x91, + 0xd2, 0x20, 0x6f, 0x6a, 0x4d, 0x16, 0xd3, 0x1a, 0x09, 0x68, 0xc7, 0xf5, 0x45, 0xb0, 0x8a, 0xbd, + 0x61, 0x00, 0x05, 0x34, 0xa4, 0x3b, 0x69, 0x99, 0x59, 0xe3, 0xca, 0x67, 0xbd, 0x78, 0x9b, 0x76, + 0x5b, 0x5a, 0xae, 0x65, 0x04, 0x98, 0x77, 0x93, 0xc6, 0x5d, 0xd3, 0x6d, 0xe7, 0x16, 0xf5, 0x78, + 0xeb, 0x35, 0x6b, 0x6f, 0x77, 0x23, 0x16, 0x2a, 0x55, 0x3c, 0x01, 0xd1, 0xd3, 0x04, 0x79, 0x4b, + 0xa0, 0x34, 0xd8, 0x6e, 0x97, 0x45, 0x31, 0x6e, 0xc0, 0xab, 0xc6, 0x69, 0x14, 0x70, 0x3f, 0x62, + 0xe8, 0x21, 0x1c, 0x95, 0xc8, 0x53, 0xe0, 0x16, 0xb8, 0x3f, 0x5e, 0x9f, 0x71, 0x72, 0xbb, 0xe8, + 0xc8, 0xb4, 0xb5, 0xe1, 0xc3, 0xdf, 0xb3, 0x95, 0x86, 0x4a, 0xc1, 0xd3, 0xd0, 0x12, 0x35, 0x37, + 0x58, 0xfc, 0x84, 0xf5, 0xe2, 0x55, 0xc9, 0x9f, 0x2a, 0xba, 0xf0, 0x66, 0xee, 0xad, 0x52, 0xde, + 0x84, 0xe3, 0xda, 0xb1, 0x92, 0xc7, 0x03, 0xe4, 0xb5, 0x48, 0xc5, 0xa0, 0x27, 0x63, 0x07, 0x4e, + 0xa6, 0x52, 0x26, 0x04, 0x9a, 0x80, 0x23, 0xae, 0xdf, 0x66, 0x3d, 0x51, 0xff, 0x4a, 0x43, 0x3e, + 0xe0, 0xe7, 0xf0, 0x7a, 0x26, 0x5e, 0x61, 0x3d, 0x82, 0x63, 0xd4, 0x40, 0xb2, 0x07, 0x20, 0x99, + 0x38, 0x69, 0x12, 0x7e, 0xa9, 0x50, 0x56, 0x3d, 0xef, 0x0c, 0xca, 0x3a, 0x84, 0xa7, 0xe6, 0x51, + 0xc5, 0xef, 0x39, 0xd2, 0x69, 0x4e, 0xe2, 0x34, 0x47, 0xba, 0x59, 0x39, 0xcd, 0xd9, 0xa2, 0x1d, + 0xa6, 0x72, 0x1b, 0x5a, 0x26, 0xfe, 0x0a, 0x14, 0xbd, 0x2e, 0x91, 0x47, 0x7f, 0xe9, 0xc2, 0xf4, + 0x68, 0xc3, 0x60, 0x1c, 0x12, 0x8c, 0xf3, 0xa5, 0x8c, 0x52, 0xdc, 0x80, 0x24, 0x29, 0xa3, 0xd2, + 0x71, 0xdb, 0x51, 0xf1, 0x57, 0xb2, 0x09, 0xa7, 0xb2, 0x09, 0xea, 0xad, 0x1c, 0x38, 0xdc, 0x74, + 0xdb, 0x91, 0x7a, 0x25, 0x6b, 0xc0, 0x2b, 0xad, 0xb9, 0xed, 0x86, 0x88, 0xd3, 0x7d, 0xf9, 0x58, + 0xcc, 0xc7, 0xb3, 0x64, 0x3c, 0x72, 0x7c, 0x69, 0xdc, 0x9e, 0xfa, 0x52, 0x3b, 0x2e, 0xf1, 0xa5, + 0x16, 0x99, 0xfa, 0x52, 0x3b, 0xea, 0x77, 0x41, 0x9e, 0xad, 0x77, 0x7d, 0xa3, 0x0b, 0xfc, 0xad, + 0xcf, 0xc2, 0xb4, 0x0b, 0xe2, 0x01, 0x5b, 0xaa, 0x0b, 0x46, 0x82, 0x04, 0xab, 0xff, 0xbb, 0x0c, + 0x47, 0xc4, 0x25, 0x7a, 0x0f, 0xe0, 0xa8, 0x1c, 0x48, 0xb4, 0x30, 0x00, 0x2c, 0xbb, 0x01, 0xac, + 0xea, 0x79, 0x42, 0xa5, 0x16, 0x5e, 0x78, 0xf7, 0xf3, 0xef, 0xc7, 0xa1, 0x39, 0x74, 0x9b, 0x18, + 0xdb, 0x26, 0x67, 0xd5, 0xa1, 0xef, 0xc0, 0x18, 0x64, 0x54, 0x2b, 0x92, 0xc9, 0xdd, 0x14, 0x56, + 0xfd, 0x22, 0x29, 0x8a, 0x90, 0x08, 0xc2, 0x05, 0x34, 0x5f, 0x40, 0xa8, 0x6f, 0x5c, 0xf4, 0x19, + 0xc0, 0xb1, 0x94, 0x71, 0xa9, 0x44, 0xf0, 0x0c, 0x9f, 0x73, 0xde, 0x70, 0xc5, 0x56, 0x17, 0x6c, + 0x0f, 0x50, 0xb5, 0x80, 0x4d, 0x61, 0x91, 0x7d, 0x61, 0xff, 0x03, 0xf4, 0x09, 0x40, 0xa8, 0xea, + 0xac, 0x7a, 0x5e, 0x31, 0x61, 0x66, 0xb7, 0x14, 0x13, 0x66, 0xf7, 0x04, 0xae, 0x0a, 0xc2, 0x3b, + 0x08, 0x97, 0x13, 0xa2, 0x1f, 0x00, 0x8e, 0x6b, 0x53, 0x89, 0x8a, 0xb5, 0x32, 0xf3, 0x6e, 0x91, + 0x73, 0xc7, 0x2b, 0xb8, 0x15, 0x01, 0x57, 0x43, 0xa4, 0x1c, 0x6e, 0x3b, 0x99, 0xf7, 0x7e, 0x0f, + 0xbf, 0x00, 0x63, 0x76, 0x4b, 0xad, 0x98, 0x5d, 0x0e, 0xa5, 0x56, 0xcc, 0xd9, 0x18, 0x78, 0x51, + 0xf0, 0xde, 0x45, 0x73, 0x7d, 0x44, 0x32, 0xf0, 0x37, 0x1a, 0x7d, 0xeb, 0x33, 0x8a, 0xe9, 0x2e, + 0xee, 0x66, 0x76, 0x6f, 0x14, 0x77, 0x33, 0x67, 0x6d, 0xe0, 0x65, 0x41, 0xb7, 0x84, 0x16, 0x8b, + 0xe9, 0x5e, 0x25, 0x49, 0x64, 0x5f, 0xac, 0xa1, 0x83, 0xb5, 0x95, 0xc3, 0x63, 0x1b, 0x1c, 0x1d, + 0xdb, 0xe0, 0xcf, 0xb1, 0x0d, 0x3e, 0x9c, 0xd8, 0x95, 0xa3, 0x13, 0xbb, 0xf2, 0xeb, 0xc4, 0xae, + 0xbc, 0x98, 0xe9, 0x57, 0xe9, 0x99, 0x75, 0xe2, 0xbd, 0x80, 0x45, 0xcd, 0x51, 0xf1, 0x1f, 0x64, + 0xf9, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb1, 0x24, 0x22, 0xec, 0xa7, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -633,6 +718,8 @@ type QueryClient interface { AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) // Queries a LockedUsers by index. LockedUsers(ctx context.Context, in *QueryGetLockedUsersRequest, opts ...grpc.CallOption) (*QueryGetLockedUsersResponse, error) + // Queries a list of LockedFunds items. + LockedFunds(ctx context.Context, in *QueryLockedFundsRequest, opts ...grpc.CallOption) (*QueryLockedFundsResponse, error) } type queryClient struct { @@ -697,6 +784,15 @@ func (c *queryClient) LockedUsers(ctx context.Context, in *QueryGetLockedUsersRe return out, nil } +func (c *queryClient) LockedFunds(ctx context.Context, in *QueryLockedFundsRequest, opts ...grpc.CallOption) (*QueryLockedFundsResponse, error) { + out := new(QueryLockedFundsResponse) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/LockedFunds", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // QueryServer is the server API for Query service. type QueryServer interface { // Parameters queries the parameters of the module. @@ -711,6 +807,8 @@ type QueryServer interface { AuctionBids(context.Context, *QueryAuctionBidsRequest) (*QueryAuctionBidsResponse, error) // Queries a LockedUsers by index. LockedUsers(context.Context, *QueryGetLockedUsersRequest) (*QueryGetLockedUsersResponse, error) + // Queries a list of LockedFunds items. + LockedFunds(context.Context, *QueryLockedFundsRequest) (*QueryLockedFundsResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -735,6 +833,9 @@ func (*UnimplementedQueryServer) AuctionBids(ctx context.Context, req *QueryAuct func (*UnimplementedQueryServer) LockedUsers(ctx context.Context, req *QueryGetLockedUsersRequest) (*QueryGetLockedUsersResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method LockedUsers not implemented") } +func (*UnimplementedQueryServer) LockedFunds(ctx context.Context, req *QueryLockedFundsRequest) (*QueryLockedFundsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method LockedFunds not implemented") +} func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) @@ -848,6 +949,24 @@ func _Query_LockedUsers_Handler(srv interface{}, ctx context.Context, dec func(i return interceptor(ctx, in, info, handler) } +func _Query_LockedFunds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryLockedFundsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).LockedFunds(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/colinear.colinearcore.Query/LockedFunds", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).LockedFunds(ctx, req.(*QueryLockedFundsRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "colinear.colinearcore.Query", HandlerType: (*QueryServer)(nil), @@ -876,6 +995,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "LockedUsers", Handler: _Query_LockedUsers_Handler, }, + { + MethodName: "LockedFunds", + Handler: _Query_LockedFunds_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "colinearcore/query.proto", @@ -1263,6 +1386,59 @@ func (m *QueryGetLockedUsersResponse) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } +func (m *QueryLockedFundsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryLockedFundsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryLockedFundsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Owner) > 0 { + i -= len(m.Owner) + copy(dAtA[i:], m.Owner) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Owner))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryLockedFundsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryLockedFundsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryLockedFundsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -1418,6 +1594,28 @@ func (m *QueryGetLockedUsersResponse) Size() (n int) { return n } +func (m *QueryLockedFundsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Owner) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryLockedFundsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -2360,6 +2558,138 @@ func (m *QueryGetLockedUsersResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryLockedFundsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryLockedFundsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryLockedFundsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Owner", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Owner = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryLockedFundsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryLockedFundsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryLockedFundsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/colinearcore/types/query.pb.gw.go b/x/colinearcore/types/query.pb.gw.go index 9f29494..216f8db 100644 --- a/x/colinearcore/types/query.pb.gw.go +++ b/x/colinearcore/types/query.pb.gw.go @@ -231,6 +231,60 @@ func local_request_Query_LockedUsers_0(ctx context.Context, marshaler runtime.Ma } +func request_Query_LockedFunds_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryLockedFundsRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["owner"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "owner") + } + + protoReq.Owner, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "owner", err) + } + + msg, err := client.LockedFunds(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_LockedFunds_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryLockedFundsRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["owner"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "owner") + } + + protoReq.Owner, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "owner", err) + } + + msg, err := server.LockedFunds(ctx, &protoReq) + return msg, metadata, err + +} + // 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. @@ -375,6 +429,29 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_LockedFunds_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_LockedFunds_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_LockedFunds_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -536,6 +613,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_LockedFunds_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_LockedFunds_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_LockedFunds_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -551,6 +648,8 @@ var ( pattern_Query_AuctionBids_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"colinearcore", "auction_bids", "index"}, "", runtime.AssumeColonVerbOpt(true))) pattern_Query_LockedUsers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinearcore", "locked_users"}, "", runtime.AssumeColonVerbOpt(true))) + + pattern_Query_LockedFunds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"colinear", "colinearcore", "locked_funds", "owner"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( @@ -565,4 +664,6 @@ var ( forward_Query_AuctionBids_0 = runtime.ForwardResponseMessage forward_Query_LockedUsers_0 = runtime.ForwardResponseMessage + + forward_Query_LockedFunds_0 = runtime.ForwardResponseMessage )