From 5d2534234dcd0243652240eaa7561b82b64305e7 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Tue, 6 Sep 2022 21:29:55 +0000 Subject: [PATCH] finish rename --- app/app.go | 2 +- docs/static/openapi.yml | 1738 +++++++++++----------- proto/colinear-core/auction.proto | 2 +- proto/colinear-core/genesis.proto | 6 +- proto/colinear-core/query.proto | 18 +- x/colinear-core/types/auction.pb.go | 48 +- x/colinear-core/types/bid.pb.go | 31 +- x/colinear-core/types/genesis.pb.go | 44 +- x/colinear-core/types/next_auction.pb.go | 30 +- x/colinear-core/types/params.pb.go | 30 +- x/colinear-core/types/query.pb.go | 149 +- x/colinear-core/types/query.pb.gw.go | 12 +- x/colinear-core/types/tx.pb.go | 80 +- 13 files changed, 1101 insertions(+), 1089 deletions(-) diff --git a/app/app.go b/app/app.go index f789159..0221c7f 100644 --- a/app/app.go +++ b/app/app.go @@ -107,7 +107,7 @@ import ( ) const ( - AccountAddressPrefix = "cosmos" + AccountAddressPrefix = "colinear" Name = "colinear" ) diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 0676e53..883416e 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -4,6 +4,339 @@ info: name: '' description: '' paths: + /colinear-core/colinear-core/auction: + get: + summary: Queries a list of Auction items. + operationId: ColinearColinearcoreAuctionAll + responses: + '200': + description: A successful response. + schema: + type: object + properties: + auction: + type: array + items: + type: object + properties: + index: + type: string + name: + type: string + description: + type: string + best: + type: object + properties: + owner: + type: string + amount: + type: string + deadline: + type: string + format: uint64 + ceiling: + type: string + denom: + type: string + owner: + type: string + leaseStart: + type: string + format: uint64 + leaseEnd: + type: string + format: uint64 + remaining: + type: string + pagination: + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + PageResponse is to be embedded in gRPC response messages where + the + + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + 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: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + 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 + '/colinear-core/colinear-core/auction/{index}': + get: + summary: Queries a Auction by index. + operationId: ColinearColinearcoreAuction + responses: + '200': + description: A successful response. + schema: + type: object + properties: + auction: + type: object + properties: + index: + type: string + name: + type: string + description: + type: string + best: + type: object + properties: + owner: + type: string + amount: + type: string + deadline: + type: string + format: uint64 + ceiling: + type: string + denom: + type: string + owner: + type: string + leaseStart: + type: string + format: uint64 + leaseEnd: + type: string + format: uint64 + remaining: + type: string + 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: index + in: path + required: true + type: string + tags: + - Query + '/colinear-core/colinear-core/auction_bids/{index}': + get: + summary: Queries a list of AuctionBids items. + operationId: ColinearColinearcoreAuctionBids + responses: + '200': + description: A successful response. + schema: + type: object + properties: + bids: + type: array + items: + type: object + properties: + owner: + type: string + amount: + type: string + 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: index + in: path + required: true + type: string + tags: + - Query + /colinear-core/colinear-core/next_auction: + get: + summary: Queries a NextAuction by index. + operationId: ColinearColinearcoreNextAuction + responses: + '200': + description: A successful response. + schema: + type: object + properties: + NextAuction: + type: object + properties: + auctionId: + type: string + format: uint64 + 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: {} + tags: + - Query + /colinear-core/colinear-core/params: + get: + summary: Parameters queries the parameters of the module. + operationId: ColinearColinearcoreParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params holds all the parameters of this module. + type: object + description: >- + QueryParamsResponse is response type for the Query/Params RPC + method. + 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: {} + tags: + - Query /cosmos/auth/v1beta1/accounts: get: summary: Accounts returns all the existing accounts @@ -20122,329 +20455,6 @@ paths: format: int64 tags: - Query - /colinear/colinear/auction: - get: - summary: Queries a list of Auction items. - operationId: ColinearcoreColinearcoreAuctionAll - responses: - '200': - description: A successful response. - schema: - type: object - properties: - auction: - type: array - items: - type: object - properties: - index: - type: string - name: - type: string - description: - type: string - best: - type: object - properties: - owner: - type: string - amount: - type: string - deadline: - type: string - format: uint64 - ceiling: - type: string - denom: - type: string - owner: - type: string - leaseStart: - type: string - format: uint64 - leaseEnd: - type: string - format: uint64 - remaining: - type: string - pagination: - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: >- - PageResponse is to be embedded in gRPC response messages where - the - - corresponding request message has used PageRequest. - - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - 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: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. - in: query - required: false - type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. - in: query - required: false - type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. - in: query - required: false - type: boolean - tags: - - Query - '/colinear/colinear/auction/{index}': - get: - summary: Queries a Auction by index. - operationId: ColinearcoreColinearcoreAuction - responses: - '200': - description: A successful response. - schema: - type: object - properties: - auction: - type: object - properties: - index: - type: string - name: - type: string - description: - type: string - best: - type: object - properties: - owner: - type: string - amount: - type: string - deadline: - type: string - format: uint64 - ceiling: - type: string - denom: - type: string - owner: - type: string - leaseStart: - type: string - format: uint64 - leaseEnd: - type: string - format: uint64 - remaining: - type: string - 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: index - in: path - required: true - type: string - tags: - - Query - '/colinear/colinear/auction_bids/{index}': - get: - summary: Queries a list of AuctionBids items. - operationId: ColinearcoreColinearcoreAuctionBids - responses: - '200': - description: A successful response. - schema: - type: object - properties: - bids: - type: array - items: - type: object - properties: - owner: - type: string - amount: - type: string - 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: index - in: path - required: true - type: string - tags: - - Query - /colinear/colinear/next_auction: - get: - summary: Queries a NextAuction by index. - operationId: ColinearcoreColinearcoreNextAuction - responses: - '200': - description: A successful response. - schema: - type: object - properties: - NextAuction: - type: object - properties: - auctionId: - type: string - format: uint64 - 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: {} - tags: - - Query - /colinear/colinear/params: - get: - summary: Parameters queries the parameters of the module. - operationId: ColinearcoreColinearcoreParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - description: params holds all the parameters of this module. - type: object - description: >- - QueryParamsResponse is response type for the Query/Params RPC - method. - 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: {} - tags: - - Query /ibc/apps/interchain_accounts/controller/v1/params: get: summary: Params queries all parameters of the ICA controller submodule. @@ -30696,356 +30706,101 @@ paths: tags: - Query definitions: - cosmos.auth.v1beta1.Params: + colinear.colinearcore.Auction: type: object properties: - max_memo_characters: + index: type: string - format: uint64 - tx_sig_limit: + name: type: string - format: uint64 - tx_size_cost_per_byte: + description: type: string - format: uint64 - sig_verify_cost_ed25519: - type: string - format: uint64 - sig_verify_cost_secp256k1: - type: string - format: uint64 - description: Params defines the parameters for the auth module. - cosmos.auth.v1beta1.QueryAccountResponse: - type: object - properties: - account: + best: type: object properties: - '@type': + owner: type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up a - type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might be - - used with implementation specific semantics. - additionalProperties: {} - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - description: >- - QueryAccountResponse is the response type for the Query/Account RPC - method. - cosmos.auth.v1beta1.QueryAccountsResponse: + amount: + type: string + deadline: + type: string + format: uint64 + ceiling: + type: string + denom: + type: string + owner: + type: string + leaseStart: + type: string + format: uint64 + leaseEnd: + type: string + format: uint64 + remaining: + type: string + colinear.colinearcore.Bid: type: object properties: - accounts: + owner: + type: string + amount: + type: string + colinear.colinearcore.MsgNewAuctionResponse: + type: object + properties: + auctionId: + type: string + colinear.colinearcore.MsgNewBidResponse: + type: object + colinear.colinearcore.NextAuction: + type: object + properties: + auctionId: + type: string + format: uint64 + colinear.colinearcore.Params: + type: object + description: Params defines the parameters for the module. + colinear.colinearcore.QueryAllAuctionResponse: + type: object + properties: + auction: type: array items: type: object properties: - '@type': + index: + type: string + name: + type: string + description: + type: string + best: + type: object + properties: + owner: + type: string + amount: + type: string + deadline: + type: string + format: uint64 + ceiling: + type: string + denom: + type: string + owner: + type: string + leaseStart: + type: string + format: uint64 + leaseEnd: + type: string + format: uint64 + remaining: type: string - description: >- - A URL/resource name that uniquely identifies the type of the - serialized - - protocol buffer message. This string must contain at least - - one "/" character. The last segment of the URL's path must - represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in a - canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary all types - that they - - expect it to use in the context of Any. However, for URLs which - use the - - scheme `http`, `https`, or no scheme, one can optionally set up - a type - - server that maps type URLs to message definitions as follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in the - official - - protobuf release, and it is not used for type URLs beginning - with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) might - be - - used with implementation specific semantics. - additionalProperties: {} - description: >- - `Any` contains an arbitrary serialized protocol buffer message along - with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values in the - form - - of utility functions or additional generated methods of the Any - type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); - } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by default use - - 'type.googleapis.com/full.type.name' as the type URL and the unpack - - methods only use the fully qualified type name after the last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield type - - name "y.z". - - - - JSON - - ==== - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with an - - additional field `@type` which contains the type URL. Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom JSON - - representation, that representation will be embedded adding a field - - `value` which holds the custom JSON in addition to the `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - title: accounts are the existing accounts pagination: - description: pagination defines the pagination in the response. type: object properties: next_key: @@ -31062,35 +30817,78 @@ definitions: PageRequest.count_total was set, its value is undefined otherwise - description: >- - QueryAccountsResponse is the response type for the Query/Accounts RPC - method. + description: |- + PageResponse is to be embedded in gRPC response messages where the + corresponding request message has used PageRequest. - - Since: cosmos-sdk 0.43 - cosmos.auth.v1beta1.QueryParamsResponse: + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } + colinear.colinearcore.QueryAuctionBidsResponse: + type: object + properties: + bids: + type: array + items: + type: object + properties: + owner: + type: string + amount: + type: string + colinear.colinearcore.QueryGetAuctionResponse: + type: object + properties: + auction: + type: object + properties: + index: + type: string + name: + type: string + description: + type: string + best: + type: object + properties: + owner: + type: string + amount: + type: string + deadline: + type: string + format: uint64 + ceiling: + type: string + denom: + type: string + owner: + type: string + leaseStart: + type: string + format: uint64 + leaseEnd: + type: string + format: uint64 + remaining: + type: string + colinear.colinearcore.QueryGetNextAuctionResponse: + type: object + properties: + NextAuction: + type: object + properties: + auctionId: + type: string + format: uint64 + colinear.colinearcore.QueryParamsResponse: type: object properties: params: - description: params defines the parameters of the module. + description: params holds all the parameters of this module. type: object - properties: - max_memo_characters: - type: string - format: uint64 - tx_sig_limit: - type: string - format: uint64 - tx_size_cost_per_byte: - type: string - format: uint64 - sig_verify_cost_ed25519: - type: string - format: uint64 - sig_verify_cost_secp256k1: - type: string - format: uint64 - description: QueryParamsResponse is the response type for the Query/Params RPC method. + description: QueryParamsResponse is response type for the Query/Params RPC method. cosmos.base.query.v1beta1.PageRequest: type: object properties: @@ -31490,6 +31288,401 @@ definitions: "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } + cosmos.auth.v1beta1.Params: + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + description: Params defines the parameters for the auth module. + cosmos.auth.v1beta1.QueryAccountResponse: + type: object + properties: + account: + type: object + properties: + '@type': + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up a + type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might be + + used with implementation specific semantics. + additionalProperties: {} + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + description: >- + QueryAccountResponse is the response type for the Query/Account RPC + method. + cosmos.auth.v1beta1.QueryAccountsResponse: + type: object + properties: + accounts: + type: array + items: + type: object + properties: + '@type': + type: string + description: >- + A URL/resource name that uniquely identifies the type of the + serialized + + protocol buffer message. This string must contain at least + + one "/" character. The last segment of the URL's path must + represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in a + canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary all types + that they + + expect it to use in the context of Any. However, for URLs which + use the + + scheme `http`, `https`, or no scheme, one can optionally set up + a type + + server that maps type URLs to message definitions as follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in the + official + + protobuf release, and it is not used for type URLs beginning + with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) might + be + + used with implementation specific semantics. + additionalProperties: {} + description: >- + `Any` contains an arbitrary serialized protocol buffer message along + with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values in the + form + + of utility functions or additional generated methods of the Any + type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by default use + + 'type.googleapis.com/full.type.name' as the type URL and the unpack + + methods only use the fully qualified type name after the last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with an + + additional field `@type` which contains the type URL. Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom JSON + + representation, that representation will be embedded adding a field + + `value` which holds the custom JSON in addition to the `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + title: accounts are the existing accounts + pagination: + description: pagination defines the pagination in the response. + type: object + properties: + next_key: + type: string + format: byte + title: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently + total: + type: string + format: uint64 + title: >- + total is total number of results available if + PageRequest.count_total + + was set, its value is undefined otherwise + description: >- + QueryAccountsResponse is the response type for the Query/Accounts RPC + method. + + + Since: cosmos-sdk 0.43 + cosmos.auth.v1beta1.QueryParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_memo_characters: + type: string + format: uint64 + tx_sig_limit: + type: string + format: uint64 + tx_size_cost_per_byte: + type: string + format: uint64 + sig_verify_cost_ed25519: + type: string + format: uint64 + sig_verify_cost_secp256k1: + type: string + format: uint64 + description: QueryParamsResponse is the response type for the Query/Params RPC method. cosmos.authz.v1beta1.Grant: type: object properties: @@ -47465,189 +47658,6 @@ definitions: description: >- MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. - colinear.colinear.Auction: - type: object - properties: - index: - type: string - name: - type: string - description: - type: string - best: - type: object - properties: - owner: - type: string - amount: - type: string - deadline: - type: string - format: uint64 - ceiling: - type: string - denom: - type: string - owner: - type: string - leaseStart: - type: string - format: uint64 - leaseEnd: - type: string - format: uint64 - remaining: - type: string - colinear.colinear.Bid: - type: object - properties: - owner: - type: string - amount: - type: string - colinear.colinear.MsgNewAuctionResponse: - type: object - properties: - auctionId: - type: string - colinear.colinear.MsgNewBidResponse: - type: object - colinear.colinear.NextAuction: - type: object - properties: - auctionId: - type: string - format: uint64 - colinear.colinear.Params: - type: object - description: Params defines the parameters for the module. - colinear.colinear.QueryAllAuctionResponse: - type: object - properties: - auction: - type: array - items: - type: object - properties: - index: - type: string - name: - type: string - description: - type: string - best: - type: object - properties: - owner: - type: string - amount: - type: string - deadline: - type: string - format: uint64 - ceiling: - type: string - denom: - type: string - owner: - type: string - leaseStart: - type: string - format: uint64 - leaseEnd: - type: string - format: uint64 - remaining: - type: string - pagination: - type: object - properties: - next_key: - type: string - format: byte - title: |- - next_key is the key to be passed to PageRequest.key to - query the next page most efficiently - total: - type: string - format: uint64 - title: >- - total is total number of results available if - PageRequest.count_total - - was set, its value is undefined otherwise - description: |- - PageResponse is to be embedded in gRPC response messages where the - corresponding request message has used PageRequest. - - message SomeResponse { - repeated Bar results = 1; - PageResponse page = 2; - } - colinear.colinear.QueryAuctionBidsResponse: - type: object - properties: - bids: - type: array - items: - type: object - properties: - owner: - type: string - amount: - type: string - colinear.colinear.QueryGetAuctionResponse: - type: object - properties: - auction: - type: object - properties: - index: - type: string - name: - type: string - description: - type: string - best: - type: object - properties: - owner: - type: string - amount: - type: string - deadline: - type: string - format: uint64 - ceiling: - type: string - denom: - type: string - owner: - type: string - leaseStart: - type: string - format: uint64 - leaseEnd: - type: string - format: uint64 - remaining: - type: string - colinear.colinear.QueryGetNextAuctionResponse: - type: object - properties: - NextAuction: - type: object - properties: - auctionId: - type: string - format: uint64 - colinear.colinear.QueryParamsResponse: - type: object - properties: - params: - description: params holds all the parameters of this module. - type: object - description: QueryParamsResponse is response type for the Query/Params RPC method. ibc.applications.interchain_accounts.controller.v1.Params: type: object properties: diff --git a/proto/colinear-core/auction.proto b/proto/colinear-core/auction.proto index 067b04b..1f8bfb3 100644 --- a/proto/colinear-core/auction.proto +++ b/proto/colinear-core/auction.proto @@ -3,7 +3,7 @@ package colinear.colinearcore; option go_package = "colinear/x/colinear-core/types"; -import "colinear/bid.proto"; +import "colinear-core/bid.proto"; message Auction { string index = 1; diff --git a/proto/colinear-core/genesis.proto b/proto/colinear-core/genesis.proto index 1404379..4f84821 100644 --- a/proto/colinear-core/genesis.proto +++ b/proto/colinear-core/genesis.proto @@ -2,9 +2,9 @@ syntax = "proto3"; package colinear.colinearcore; import "gogoproto/gogo.proto"; -import "colinear/params.proto"; -import "colinear/next_auction.proto"; -import "colinear/auction.proto"; +import "colinear-core/params.proto"; +import "colinear-core/next_auction.proto"; +import "colinear-core/auction.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "colinear/x/colinear-core/types"; diff --git a/proto/colinear-core/query.proto b/proto/colinear-core/query.proto index 4e4422a..bac8271 100644 --- a/proto/colinear-core/query.proto +++ b/proto/colinear-core/query.proto @@ -4,10 +4,10 @@ package colinear.colinearcore; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "colinear/params.proto"; -import "colinear/next_auction.proto"; -import "colinear/auction.proto"; -import "colinear/bid.proto"; +import "colinear-core/params.proto"; +import "colinear-core/next_auction.proto"; +import "colinear-core/auction.proto"; +import "colinear-core/bid.proto"; // this line is used by starport scaffolding # 1 option go_package = "colinear/x/colinear-core/types"; @@ -16,25 +16,25 @@ option go_package = "colinear/x/colinear-core/types"; service Query { // Parameters queries the parameters of the module. rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { - option (google.api.http).get = "/colinear/colinear/params"; + option (google.api.http).get = "/colinear-core/colinear-core/params"; } // Queries a NextAuction by index. rpc NextAuction(QueryGetNextAuctionRequest) returns (QueryGetNextAuctionResponse) { - option (google.api.http).get = "/colinear/colinear/next_auction"; + option (google.api.http).get = "/colinear-core/colinear-core/next_auction"; } // Queries a Auction by index. rpc Auction(QueryGetAuctionRequest) returns (QueryGetAuctionResponse) { - option (google.api.http).get = "/colinear/colinear/auction/{index}"; + option (google.api.http).get = "/colinear-core/colinear-core/auction/{index}"; } // Queries a list of Auction items. rpc AuctionAll(QueryAllAuctionRequest) returns (QueryAllAuctionResponse) { - option (google.api.http).get = "/colinear/colinear/auction"; + option (google.api.http).get = "/colinear-core/colinear-core/auction"; } // Queries a list of AuctionBids items. rpc AuctionBids(QueryAuctionBidsRequest) returns (QueryAuctionBidsResponse) { - option (google.api.http).get = "/colinear/colinear/auction_bids/{index}"; + option (google.api.http).get = "/colinear-core/colinear-core/auction_bids/{index}"; } // this line is used by starport scaffolding # 2 diff --git a/x/colinear-core/types/auction.pb.go b/x/colinear-core/types/auction.pb.go index 92a4add..5c1c335 100644 --- a/x/colinear-core/types/auction.pb.go +++ b/x/colinear-core/types/auction.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/auction.proto +// source: colinear-core/auction.proto package types @@ -40,7 +40,7 @@ func (m *Auction) Reset() { *m = Auction{} } func (m *Auction) String() string { return proto.CompactTextString(m) } func (*Auction) ProtoMessage() {} func (*Auction) Descriptor() ([]byte, []int) { - return fileDescriptor_631f6f59914101d9, []int{0} + return fileDescriptor_ae97a8b1e46847c8, []int{0} } func (m *Auction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -147,32 +147,32 @@ func (m *Auction) GetRemaining() string { } func init() { - proto.RegisterType((*Auction)(nil), "colinear.colinear.Auction") + proto.RegisterType((*Auction)(nil), "colinear.colinearcore.Auction") } -func init() { proto.RegisterFile("colinear/auction.proto", fileDescriptor_631f6f59914101d9) } +func init() { proto.RegisterFile("colinear-core/auction.proto", fileDescriptor_ae97a8b1e46847c8) } -var fileDescriptor_631f6f59914101d9 = []byte{ - // 298 bytes of a gzipped FileDescriptorProto +var fileDescriptor_ae97a8b1e46847c8 = []byte{ + // 299 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xbf, 0x4e, 0xc3, 0x30, - 0x10, 0xc6, 0xeb, 0x92, 0xfe, 0xbb, 0x6e, 0x56, 0x91, 0x4e, 0x15, 0xb2, 0x22, 0xa6, 0x2e, 0xa4, - 0x12, 0x2c, 0xac, 0x54, 0xe2, 0x05, 0xca, 0xc6, 0xe6, 0xc6, 0x27, 0x64, 0xa9, 0xb1, 0xab, 0xd8, - 0x88, 0xf2, 0x16, 0xbc, 0x12, 0x1b, 0x63, 0x47, 0x46, 0xd4, 0xbe, 0x08, 0xca, 0x59, 0x25, 0x19, - 0xd8, 0xee, 0xf7, 0xdd, 0x7d, 0xb9, 0x2f, 0x3e, 0xc0, 0xd2, 0x87, 0xca, 0x87, 0x48, 0x21, 0x2e, - 0xf5, 0x6b, 0x19, 0xad, 0x77, 0xc5, 0xae, 0xf6, 0xd1, 0xcb, 0xcb, 0xb6, 0x53, 0xb4, 0xe5, 0x7c, - 0xd6, 0x31, 0x6c, 0xac, 0x49, 0xc3, 0xd7, 0x9f, 0x7d, 0x18, 0x3d, 0x24, 0xbb, 0x9c, 0xc1, 0xc0, - 0x3a, 0x43, 0x7b, 0x14, 0xb9, 0x58, 0x4c, 0xd6, 0x09, 0xa4, 0x84, 0xcc, 0xe9, 0x8a, 0xb0, 0xcf, - 0x22, 0xd7, 0x32, 0x87, 0xa9, 0xa1, 0x50, 0xd6, 0x76, 0xd7, 0x18, 0xf1, 0x82, 0x5b, 0x5d, 0x49, - 0x16, 0x90, 0x6d, 0x28, 0x44, 0xcc, 0x72, 0xb1, 0x98, 0xde, 0xce, 0x8b, 0x7f, 0x33, 0x15, 0x2b, - 0x6b, 0xd6, 0x3c, 0x27, 0xe7, 0x30, 0x36, 0xa4, 0xcd, 0xd6, 0x3a, 0xc2, 0x41, 0x2e, 0x16, 0xd9, - 0xfa, 0x8f, 0x25, 0xc2, 0xa8, 0x24, 0xbb, 0xb5, 0xee, 0x05, 0x87, 0xbc, 0xe9, 0x8c, 0x4d, 0x62, - 0x43, 0xce, 0x57, 0x38, 0x4a, 0x89, 0x19, 0x1a, 0xd5, 0xbf, 0x39, 0xaa, 0x71, 0x9c, 0x54, 0x06, - 0xa9, 0x00, 0xb6, 0xa4, 0x03, 0x3d, 0x45, 0x5d, 0x47, 0x9c, 0xf0, 0x8e, 0x8e, 0xd2, 0x24, 0x60, - 0x7a, 0x74, 0x06, 0x21, 0x25, 0x38, 0xb3, 0xbc, 0x82, 0x49, 0x4d, 0x95, 0xb6, 0xae, 0xc9, 0x30, - 0xe5, 0xaf, 0xb6, 0xc2, 0xea, 0xfe, 0xeb, 0xa8, 0xc4, 0xe1, 0xa8, 0xc4, 0xcf, 0x51, 0x89, 0x8f, - 0x93, 0xea, 0x1d, 0x4e, 0xaa, 0xf7, 0x7d, 0x52, 0xbd, 0x67, 0x95, 0xfe, 0xf5, 0x86, 0x1f, 0x7d, - 0xbf, 0xec, 0x5c, 0x20, 0xbe, 0xef, 0x28, 0x6c, 0x86, 0x7c, 0x84, 0xbb, 0xdf, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x99, 0xa2, 0x60, 0x3e, 0xcd, 0x01, 0x00, 0x00, + 0x10, 0xc6, 0xeb, 0x92, 0xfe, 0xbb, 0x6e, 0x16, 0x08, 0xab, 0x20, 0x2b, 0x62, 0xea, 0x42, 0x2a, + 0xc1, 0xc2, 0x4a, 0x25, 0x5e, 0x20, 0x6c, 0x6c, 0x4e, 0x7c, 0x42, 0x96, 0x12, 0x3b, 0x72, 0x8c, + 0x28, 0x6f, 0xc1, 0x2b, 0xb1, 0x31, 0x76, 0x64, 0x44, 0xc9, 0x8b, 0x20, 0xdb, 0x0a, 0xb4, 0x12, + 0x9b, 0x7f, 0xdf, 0x7d, 0x77, 0xf7, 0x59, 0x07, 0x17, 0xa5, 0xa9, 0x94, 0x46, 0x61, 0xaf, 0x4b, + 0x63, 0x71, 0x23, 0x5e, 0x4a, 0xa7, 0x8c, 0xce, 0x1a, 0x6b, 0x9c, 0xa1, 0x67, 0x43, 0x31, 0x1b, + 0x1e, 0xde, 0xb4, 0x3a, 0x3f, 0xee, 0x29, 0x94, 0x8c, 0xfe, 0xab, 0x8f, 0x31, 0xcc, 0xee, 0xe3, + 0x04, 0x7a, 0x0a, 0x13, 0xa5, 0x25, 0xee, 0x18, 0x49, 0xc9, 0x7a, 0x91, 0x47, 0xa0, 0x14, 0x12, + 0x2d, 0x6a, 0x64, 0xe3, 0x20, 0x86, 0x37, 0x4d, 0x61, 0x29, 0xb1, 0x2d, 0xad, 0x6a, 0x7c, 0x23, + 0x3b, 0x09, 0xa5, 0x43, 0x89, 0x66, 0x90, 0x14, 0xd8, 0x3a, 0x96, 0xa4, 0x64, 0xbd, 0xbc, 0x59, + 0x65, 0xff, 0xc6, 0xca, 0xb6, 0x4a, 0xe6, 0xc1, 0x47, 0x57, 0x30, 0x97, 0x28, 0xa4, 0xaf, 0xb1, + 0x49, 0x4a, 0xd6, 0x49, 0xfe, 0xcb, 0x94, 0xc1, 0xac, 0x44, 0x55, 0x29, 0xfd, 0xcc, 0xa6, 0x61, + 0xd3, 0x80, 0x3e, 0xb1, 0x44, 0x6d, 0x6a, 0x36, 0x8b, 0x89, 0x03, 0x78, 0xd5, 0xbc, 0x6a, 0xb4, + 0x6c, 0x1e, 0xd5, 0x00, 0x94, 0x03, 0x54, 0x28, 0x5a, 0x7c, 0x74, 0xc2, 0x3a, 0xb6, 0x08, 0x3b, + 0x0e, 0x14, 0x9f, 0x20, 0xd0, 0x83, 0x96, 0x0c, 0x62, 0x82, 0x81, 0xe9, 0x25, 0x2c, 0x2c, 0xd6, + 0x42, 0x69, 0x9f, 0x61, 0x19, 0xa6, 0xfe, 0x09, 0xdb, 0xbb, 0xcf, 0x8e, 0x93, 0x7d, 0xc7, 0xc9, + 0x77, 0xc7, 0xc9, 0x7b, 0xcf, 0x47, 0xfb, 0x9e, 0x8f, 0xbe, 0x7a, 0x3e, 0x7a, 0xe2, 0xc3, 0x6f, + 0x37, 0xbb, 0xcd, 0xf1, 0x05, 0xdc, 0x5b, 0x83, 0x6d, 0x31, 0x0d, 0x47, 0xb8, 0xfd, 0x09, 0x00, + 0x00, 0xff, 0xff, 0x62, 0x0c, 0x0e, 0xed, 0xd3, 0x01, 0x00, 0x00, } func (m *Auction) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/bid.pb.go b/x/colinear-core/types/bid.pb.go index b4597ef..9475953 100644 --- a/x/colinear-core/types/bid.pb.go +++ b/x/colinear-core/types/bid.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/bid.proto +// source: colinear-core/bid.proto package types @@ -31,7 +31,7 @@ func (m *Bid) Reset() { *m = Bid{} } func (m *Bid) String() string { return proto.CompactTextString(m) } func (*Bid) ProtoMessage() {} func (*Bid) Descriptor() ([]byte, []int) { - return fileDescriptor_74e391fc4965aac8, []int{0} + return fileDescriptor_26dbba15cad2395c, []int{0} } func (m *Bid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,22 +75,23 @@ func (m *Bid) GetAmount() string { } func init() { - proto.RegisterType((*Bid)(nil), "colinear.colinear.Bid") + proto.RegisterType((*Bid)(nil), "colinear.colinearcore.Bid") } -func init() { proto.RegisterFile("colinear/bid.proto", fileDescriptor_74e391fc4965aac8) } +func init() { proto.RegisterFile("colinear-core/bid.proto", fileDescriptor_26dbba15cad2395c) } -var fileDescriptor_74e391fc4965aac8 = []byte{ - // 142 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x4f, 0xca, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x45, 0x88, 0xea, 0x21, 0x98, 0x4a, 0xc6, 0x5c, 0xcc, 0x4e, 0x99, 0x29, 0x42, 0x22, - 0x5c, 0xac, 0xf9, 0xe5, 0x79, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x10, 0x8e, - 0x90, 0x18, 0x17, 0x5b, 0x62, 0x6e, 0x7e, 0x69, 0x5e, 0x89, 0x04, 0x13, 0x58, 0x18, 0xca, 0x73, - 0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x39, 0x88, 0xd1, 0xba, - 0x60, 0xcb, 0x2b, 0xf4, 0x91, 0x5c, 0x52, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0x8c, - 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x20, 0x17, 0xe0, 0x92, 0xa4, 0x00, 0x00, 0x00, +var fileDescriptor_26dbba15cad2395c = []byte{ + // 145 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0xcf, 0xc9, + 0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xca, 0x4c, 0xd1, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0x49, 0xe8, 0xc1, 0x18, 0x20, 0x05, 0x4a, 0xc6, 0x5c, 0xcc, + 0x4e, 0x99, 0x29, 0x42, 0x22, 0x5c, 0xac, 0xf9, 0xe5, 0x79, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c, + 0x1a, 0x9c, 0x41, 0x10, 0x8e, 0x90, 0x18, 0x17, 0x5b, 0x62, 0x6e, 0x7e, 0x69, 0x5e, 0x89, 0x04, + 0x13, 0x58, 0x18, 0xca, 0x73, 0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, + 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, + 0x28, 0x39, 0x98, 0xe1, 0xfa, 0x15, 0xfa, 0xa8, 0x2e, 0x29, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, + 0x03, 0x3b, 0xc6, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x9c, 0x74, 0x04, 0xa7, 0x00, 0x00, + 0x00, } func (m *Bid) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/genesis.pb.go b/x/colinear-core/types/genesis.pb.go index b49a7d0..3afec7a 100644 --- a/x/colinear-core/types/genesis.pb.go +++ b/x/colinear-core/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/genesis.proto +// source: colinear-core/genesis.proto package types @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_78c0d8c25fe3d9a9, []int{0} + return fileDescriptor_630a43dd473b505c, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,29 +85,29 @@ func (m *GenesisState) GetAuctionList() []Auction { } func init() { - proto.RegisterType((*GenesisState)(nil), "colinear.colinear.GenesisState") + proto.RegisterType((*GenesisState)(nil), "colinear.colinearcore.GenesisState") } -func init() { proto.RegisterFile("colinear/genesis.proto", fileDescriptor_78c0d8c25fe3d9a9) } +func init() { proto.RegisterFile("colinear-core/genesis.proto", fileDescriptor_630a43dd473b505c) } -var fileDescriptor_78c0d8c25fe3d9a9 = []byte{ - // 247 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0xc8, 0xe8, 0x21, 0x98, 0x52, 0x22, 0xe9, 0xf9, 0xe9, - 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x94, 0x38, 0x92, 0x31, 0x05, 0x89, 0x45, 0x89, - 0xb9, 0x50, 0x53, 0xa4, 0x64, 0x91, 0x24, 0xf2, 0x52, 0x2b, 0x4a, 0xe2, 0x13, 0x4b, 0x93, 0x4b, - 0x32, 0xf3, 0xf3, 0xa0, 0xd2, 0xc8, 0xd6, 0xa3, 0xc8, 0x28, 0xdd, 0x64, 0xe4, 0xe2, 0x71, 0x87, - 0x38, 0x28, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x9a, 0x8b, 0x0d, 0x62, 0xb2, 0x04, 0xa3, 0x02, - 0xa3, 0x06, 0xb7, 0x91, 0xac, 0x1e, 0x56, 0x07, 0xea, 0x05, 0x80, 0x15, 0x39, 0xb1, 0x9c, 0xb8, - 0x27, 0xcf, 0x10, 0x04, 0xd5, 0x22, 0xe4, 0xc2, 0xc5, 0x0d, 0xb2, 0xdd, 0x11, 0x62, 0x85, 0x04, - 0x13, 0xd8, 0x04, 0x25, 0x1c, 0x26, 0xf8, 0x21, 0x54, 0x06, 0x21, 0x6b, 0x13, 0x72, 0xe3, 0xe2, - 0x86, 0x3a, 0xd2, 0x27, 0xb3, 0xb8, 0x44, 0x82, 0x59, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x0e, 0x87, - 0x29, 0x50, 0x4d, 0x50, 0x87, 0x20, 0x6b, 0x74, 0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, - 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, - 0x63, 0x39, 0x86, 0x28, 0x39, 0x88, 0x01, 0xba, 0xe0, 0x00, 0xa9, 0xd0, 0x47, 0x0a, 0x9d, 0x92, - 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0xe0, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3c, - 0x94, 0xf7, 0x48, 0xb7, 0x01, 0x00, 0x00, +var fileDescriptor_630a43dd473b505c = []byte{ + // 250 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xce, 0xcf, 0xc9, + 0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, + 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0x49, 0xea, 0xc1, 0x18, 0x20, 0x45, + 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x94, 0x14, 0xaa, + 0x49, 0x05, 0x89, 0x45, 0x89, 0xb9, 0x50, 0x83, 0xa4, 0x14, 0x50, 0xe5, 0xf2, 0x52, 0x2b, 0x4a, + 0xe2, 0x13, 0x4b, 0x93, 0x4b, 0x32, 0xf3, 0xf3, 0xa0, 0x2a, 0xd0, 0xdc, 0x81, 0x22, 0xa9, 0x74, + 0x93, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, 0xb2, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x6b, 0x2e, 0x36, + 0x88, 0xf9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xb2, 0x7a, 0x58, 0x5d, 0xaa, 0x17, 0x00, + 0x56, 0xe4, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0x8b, 0x90, 0x0b, 0x17, 0x37, 0xc8, + 0x01, 0x8e, 0x10, 0x2b, 0x24, 0x98, 0xc0, 0x26, 0x28, 0xe1, 0x30, 0xc1, 0x0f, 0xa1, 0x32, 0x08, + 0x59, 0x9b, 0x90, 0x1b, 0x17, 0x37, 0xd4, 0x91, 0x3e, 0x99, 0xc5, 0x25, 0x12, 0xcc, 0x0a, 0xcc, + 0x1a, 0xdc, 0x46, 0x72, 0x38, 0x4c, 0x81, 0x6a, 0x82, 0x3a, 0x04, 0x59, 0xa3, 0x93, 0xc5, 0x89, + 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, + 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xc9, 0xc1, 0x8c, 0xd0, 0xaf, 0xd0, 0x47, + 0x0d, 0x9d, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0xe0, 0x18, 0x03, 0x02, 0x00, 0x00, + 0xff, 0xff, 0xd8, 0x73, 0x01, 0x31, 0xc3, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/next_auction.pb.go b/x/colinear-core/types/next_auction.pb.go index c790b15..4224e71 100644 --- a/x/colinear-core/types/next_auction.pb.go +++ b/x/colinear-core/types/next_auction.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/next_auction.proto +// source: colinear-core/next_auction.proto package types @@ -30,7 +30,7 @@ func (m *NextAuction) Reset() { *m = NextAuction{} } func (m *NextAuction) String() string { return proto.CompactTextString(m) } func (*NextAuction) ProtoMessage() {} func (*NextAuction) Descriptor() ([]byte, []int) { - return fileDescriptor_403ab8ae798c785d, []int{0} + return fileDescriptor_bcf6c95c676bf51f, []int{0} } func (m *NextAuction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,22 +67,22 @@ func (m *NextAuction) GetAuctionId() uint64 { } func init() { - proto.RegisterType((*NextAuction)(nil), "colinear.colinear.NextAuction") + proto.RegisterType((*NextAuction)(nil), "colinear.colinearcore.NextAuction") } -func init() { proto.RegisterFile("colinear/next_auction.proto", fileDescriptor_403ab8ae798c785d) } +func init() { proto.RegisterFile("colinear-core/next_auction.proto", fileDescriptor_bcf6c95c676bf51f) } -var fileDescriptor_403ab8ae798c785d = []byte{ - // 139 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0xcf, 0x4b, 0xad, 0x28, 0x89, 0x4f, 0x2c, 0x4d, 0x2e, - 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0x48, 0xeb, 0x21, 0x98, - 0x4a, 0xda, 0x5c, 0xdc, 0x7e, 0xa9, 0x15, 0x25, 0x8e, 0x10, 0xb5, 0x42, 0x32, 0x5c, 0x9c, 0x50, - 0x6d, 0x9e, 0x29, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x08, 0x01, 0x27, 0x8b, 0x13, 0x8f, - 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x92, 0x83, 0x18, 0xa9, 0x0b, 0xb6, 0xbd, 0x42, - 0x1f, 0xc9, 0x29, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x47, 0x18, 0x03, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xb1, 0x7c, 0xed, 0xa0, 0xa5, 0x00, 0x00, 0x00, +var fileDescriptor_bcf6c95c676bf51f = []byte{ + // 142 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0xcf, 0xc9, + 0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0xcf, 0x4b, 0xad, 0x28, 0x89, 0x4f, + 0x2c, 0x4d, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xa9, + 0xd0, 0x83, 0x31, 0x40, 0x2a, 0x95, 0xb4, 0xb9, 0xb8, 0xfd, 0x52, 0x2b, 0x4a, 0x1c, 0x21, 0x6a, + 0x85, 0x64, 0xb8, 0x38, 0xa1, 0xda, 0x3c, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0x10, + 0x02, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, + 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x07, 0x33, + 0x54, 0xbf, 0x42, 0x1f, 0xd5, 0x29, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x47, 0x18, + 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x7e, 0xbb, 0x0a, 0xa8, 0x00, 0x00, 0x00, } func (m *NextAuction) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/params.pb.go b/x/colinear-core/types/params.pb.go index bccd20f..4ea0cd6 100644 --- a/x/colinear-core/types/params.pb.go +++ b/x/colinear-core/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/params.proto +// source: colinear-core/params.proto package types @@ -30,7 +30,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_dec10d5375a626c5, []int{0} + return fileDescriptor_30a417e0196848c0, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -60,22 +60,22 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "colinear.colinear.Params") + proto.RegisterType((*Params)(nil), "colinear.colinearcore.Params") } -func init() { proto.RegisterFile("colinear/params.proto", fileDescriptor_dec10d5375a626c5) } +func init() { proto.RegisterFile("colinear-core/params.proto", fileDescriptor_30a417e0196848c0) } -var fileDescriptor_dec10d5375a626c5 = []byte{ - // 131 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0x48, 0xe8, 0x21, 0x98, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, - 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x12, 0x1f, 0x17, 0x5b, 0x00, 0x58, 0xb3, 0x15, 0xcb, - 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, - 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, - 0x25, 0x07, 0x31, 0x4b, 0x17, 0x6c, 0x61, 0x85, 0x3e, 0x92, 0xed, 0x25, 0x95, 0x05, 0xa9, 0xc5, - 0x49, 0x6c, 0x60, 0x03, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x4e, 0x2a, 0x32, 0x98, - 0x00, 0x00, 0x00, +var fileDescriptor_30a417e0196848c0 = []byte{ + // 134 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0xcf, 0xc9, + 0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, + 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xc9, 0xe9, 0xc1, 0x18, 0x20, 0x35, 0x52, + 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x12, 0x1f, 0x17, 0x5b, + 0x00, 0x58, 0xb3, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e, + 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, + 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x07, 0x33, 0x4d, 0xbf, 0x42, 0x1f, 0xd5, 0xf6, 0x92, 0xca, + 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x81, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0xd9, + 0x41, 0xb0, 0x9b, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/query.pb.go b/x/colinear-core/types/query.pb.go index 14619d6..49eea43 100644 --- a/x/colinear-core/types/query.pb.go +++ b/x/colinear-core/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/query.proto +// source: colinear-core/query.proto package types @@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{0} + return fileDescriptor_da24993497be29f8, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{1} + return fileDescriptor_da24993497be29f8, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,7 +120,7 @@ func (m *QueryGetNextAuctionRequest) Reset() { *m = QueryGetNextAuctionR func (m *QueryGetNextAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetNextAuctionRequest) ProtoMessage() {} func (*QueryGetNextAuctionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{2} + return fileDescriptor_da24993497be29f8, []int{2} } func (m *QueryGetNextAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -157,7 +157,7 @@ func (m *QueryGetNextAuctionResponse) Reset() { *m = QueryGetNextAuction func (m *QueryGetNextAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetNextAuctionResponse) ProtoMessage() {} func (*QueryGetNextAuctionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{3} + return fileDescriptor_da24993497be29f8, []int{3} } func (m *QueryGetNextAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -201,7 +201,7 @@ func (m *QueryGetAuctionRequest) Reset() { *m = QueryGetAuctionRequest{} func (m *QueryGetAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionRequest) ProtoMessage() {} func (*QueryGetAuctionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{4} + return fileDescriptor_da24993497be29f8, []int{4} } func (m *QueryGetAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -245,7 +245,7 @@ func (m *QueryGetAuctionResponse) Reset() { *m = QueryGetAuctionResponse func (m *QueryGetAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionResponse) ProtoMessage() {} func (*QueryGetAuctionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{5} + return fileDescriptor_da24993497be29f8, []int{5} } func (m *QueryGetAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,7 +289,7 @@ func (m *QueryAllAuctionRequest) Reset() { *m = QueryAllAuctionRequest{} func (m *QueryAllAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionRequest) ProtoMessage() {} func (*QueryAllAuctionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{6} + return fileDescriptor_da24993497be29f8, []int{6} } func (m *QueryAllAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -334,7 +334,7 @@ func (m *QueryAllAuctionResponse) Reset() { *m = QueryAllAuctionResponse func (m *QueryAllAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionResponse) ProtoMessage() {} func (*QueryAllAuctionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{7} + return fileDescriptor_da24993497be29f8, []int{7} } func (m *QueryAllAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -385,7 +385,7 @@ func (m *QueryAuctionBidsRequest) Reset() { *m = QueryAuctionBidsRequest func (m *QueryAuctionBidsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAuctionBidsRequest) ProtoMessage() {} func (*QueryAuctionBidsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{8} + return fileDescriptor_da24993497be29f8, []int{8} } func (m *QueryAuctionBidsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -429,7 +429,7 @@ func (m *QueryAuctionBidsResponse) Reset() { *m = QueryAuctionBidsRespon func (m *QueryAuctionBidsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAuctionBidsResponse) ProtoMessage() {} func (*QueryAuctionBidsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_540d26b2788a5d10, []int{9} + return fileDescriptor_da24993497be29f8, []int{9} } func (m *QueryAuctionBidsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -466,60 +466,61 @@ func (m *QueryAuctionBidsResponse) GetBids() []*Bid { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinear.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinear.QueryParamsResponse") - proto.RegisterType((*QueryGetNextAuctionRequest)(nil), "colinear.colinear.QueryGetNextAuctionRequest") - proto.RegisterType((*QueryGetNextAuctionResponse)(nil), "colinear.colinear.QueryGetNextAuctionResponse") - proto.RegisterType((*QueryGetAuctionRequest)(nil), "colinear.colinear.QueryGetAuctionRequest") - proto.RegisterType((*QueryGetAuctionResponse)(nil), "colinear.colinear.QueryGetAuctionResponse") - proto.RegisterType((*QueryAllAuctionRequest)(nil), "colinear.colinear.QueryAllAuctionRequest") - proto.RegisterType((*QueryAllAuctionResponse)(nil), "colinear.colinear.QueryAllAuctionResponse") - proto.RegisterType((*QueryAuctionBidsRequest)(nil), "colinear.colinear.QueryAuctionBidsRequest") - proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinear.QueryAuctionBidsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinearcore.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinearcore.QueryParamsResponse") + proto.RegisterType((*QueryGetNextAuctionRequest)(nil), "colinear.colinearcore.QueryGetNextAuctionRequest") + proto.RegisterType((*QueryGetNextAuctionResponse)(nil), "colinear.colinearcore.QueryGetNextAuctionResponse") + proto.RegisterType((*QueryGetAuctionRequest)(nil), "colinear.colinearcore.QueryGetAuctionRequest") + proto.RegisterType((*QueryGetAuctionResponse)(nil), "colinear.colinearcore.QueryGetAuctionResponse") + proto.RegisterType((*QueryAllAuctionRequest)(nil), "colinear.colinearcore.QueryAllAuctionRequest") + proto.RegisterType((*QueryAllAuctionResponse)(nil), "colinear.colinearcore.QueryAllAuctionResponse") + proto.RegisterType((*QueryAuctionBidsRequest)(nil), "colinear.colinearcore.QueryAuctionBidsRequest") + proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinearcore.QueryAuctionBidsResponse") } -func init() { proto.RegisterFile("colinear/query.proto", fileDescriptor_540d26b2788a5d10) } +func init() { proto.RegisterFile("colinear-core/query.proto", fileDescriptor_da24993497be29f8) } -var fileDescriptor_540d26b2788a5d10 = []byte{ - // 605 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xc1, 0x6b, 0x13, 0x41, - 0x14, 0xc6, 0x33, 0xb5, 0x4d, 0x71, 0x7a, 0x1b, 0x63, 0x1b, 0xd6, 0x76, 0x5b, 0x17, 0x49, 0x6c, - 0x69, 0x67, 0x48, 0xf4, 0x20, 0x08, 0x42, 0x72, 0xb0, 0xd0, 0x83, 0xd4, 0xbd, 0xe9, 0xa5, 0x4e, - 0x9a, 0x61, 0x59, 0x48, 0x77, 0xb6, 0x99, 0x89, 0xa4, 0x88, 0x17, 0x2f, 0x5e, 0x0b, 0x7a, 0xf1, - 0x5a, 0xfc, 0x63, 0x7a, 0x2c, 0x78, 0xf1, 0x24, 0x92, 0xf8, 0x87, 0x48, 0x66, 0x66, 0xc9, 0x6c, - 0x37, 0xbb, 0x49, 0x6f, 0x9b, 0x79, 0xdf, 0xf7, 0xbe, 0xdf, 0x6c, 0xde, 0x4b, 0xe0, 0xfa, 0x29, - 0x17, 0x67, 0x5c, 0x48, 0x26, 0x24, 0x39, 0x1f, 0xb0, 0xfe, 0x05, 0x8e, 0xfb, 0x5c, 0x72, 0xf4, - 0x70, 0x7a, 0x8e, 0xa7, 0x8f, 0x4e, 0x25, 0xe0, 0x01, 0x57, 0x0a, 0x32, 0x79, 0xd2, 0x62, 0x67, - 0x33, 0xe0, 0x3c, 0xe8, 0x31, 0x42, 0xe3, 0x90, 0xd0, 0x28, 0xe2, 0x92, 0xca, 0x90, 0x47, 0xc2, - 0x54, 0xf7, 0xb4, 0x9f, 0x74, 0xa8, 0x60, 0x3a, 0x83, 0x7c, 0x6c, 0x74, 0x98, 0xa4, 0x0d, 0x12, - 0xd3, 0x20, 0x8c, 0x94, 0xd8, 0x68, 0x37, 0x2c, 0x9c, 0x98, 0xf6, 0xe9, 0x59, 0xd2, 0x64, 0xcb, - 0x2a, 0x44, 0x6c, 0x28, 0x4f, 0xe8, 0xe0, 0xd4, 0xf2, 0x55, 0xad, 0x72, 0xba, 0x52, 0xb1, 0x2a, - 0x9d, 0xb0, 0xab, 0x4f, 0xbd, 0x0a, 0x44, 0x6f, 0x27, 0x24, 0xc7, 0x2a, 0xc3, 0x67, 0xe7, 0x03, - 0x26, 0xa4, 0xe7, 0xc3, 0x07, 0xa9, 0x53, 0x11, 0xf3, 0x48, 0x30, 0xf4, 0x12, 0x96, 0x35, 0x4b, - 0x15, 0xec, 0x80, 0xa7, 0x6b, 0xcd, 0x2d, 0x3c, 0xf3, 0xe5, 0x60, 0x6d, 0x6b, 0x2f, 0x5f, 0xff, - 0xd9, 0x2e, 0xf9, 0xc6, 0xe2, 0x6d, 0x42, 0x47, 0xf5, 0x3c, 0x64, 0xf2, 0x0d, 0x1b, 0xca, 0x96, - 0x86, 0x4b, 0x12, 0x43, 0xf8, 0x68, 0x66, 0xd5, 0x24, 0x1f, 0xc1, 0x35, 0xeb, 0xd8, 0xc4, 0x7b, - 0x39, 0xf1, 0x96, 0xd2, 0x30, 0xd8, 0x66, 0x0f, 0xc3, 0xf5, 0x24, 0x2a, 0x0d, 0x81, 0x2a, 0x70, - 0x25, 0x8c, 0xba, 0x6c, 0xa8, 0xfa, 0xdf, 0xf7, 0xf5, 0x07, 0xef, 0x1d, 0xdc, 0xc8, 0xe8, 0x0d, - 0xd6, 0x2b, 0xb8, 0x4a, 0x53, 0x48, 0x6e, 0x0e, 0x52, 0x1a, 0x27, 0x31, 0x79, 0x1f, 0x0c, 0x4a, - 0xab, 0xd7, 0xbb, 0x85, 0xf2, 0x1a, 0xc2, 0xe9, 0x4c, 0x98, 0xe6, 0x35, 0xd3, 0x11, 0x4f, 0x06, - 0x08, 0xeb, 0x21, 0x35, 0x03, 0x84, 0x8f, 0x69, 0xc0, 0x8c, 0xd7, 0xb7, 0x9c, 0xde, 0x15, 0x30, - 0xf4, 0x76, 0xc4, 0x2c, 0xfa, 0x7b, 0x77, 0xa6, 0x47, 0x87, 0x29, 0xc6, 0x25, 0xc5, 0x58, 0x9f, - 0xcb, 0xa8, 0xc3, 0x53, 0x90, 0x24, 0x61, 0x34, 0x39, 0x61, 0x57, 0x14, 0x7f, 0x25, 0x47, 0xb0, - 0x9a, 0x35, 0x98, 0x5b, 0x61, 0xb8, 0xdc, 0x09, 0xbb, 0xc2, 0x5c, 0xc9, 0xc9, 0xb9, 0x52, 0x3b, - 0xec, 0xfa, 0x4a, 0xd7, 0xbc, 0x2c, 0xc3, 0x15, 0xd5, 0x0c, 0x7d, 0x05, 0xb0, 0xac, 0x47, 0x17, - 0xed, 0xe6, 0xd8, 0xb2, 0xbb, 0xe2, 0xec, 0x2d, 0x22, 0xd5, 0x6c, 0x5e, 0xed, 0xcb, 0xaf, 0x7f, - 0xdf, 0x96, 0x76, 0x90, 0x4b, 0xb4, 0xf0, 0x40, 0x6d, 0x63, 0x66, 0xd5, 0xd1, 0x15, 0x48, 0xcd, - 0x3b, 0x6a, 0x14, 0x65, 0xcc, 0x5c, 0x28, 0xa7, 0x79, 0x17, 0x8b, 0xc1, 0xdb, 0x57, 0x78, 0x35, - 0xf4, 0x24, 0x0f, 0xcf, 0xfe, 0xc1, 0x41, 0x3f, 0x00, 0x5c, 0x4d, 0x00, 0x0f, 0xe6, 0xa4, 0xdd, - 0x82, 0xc3, 0x8b, 0xca, 0x0d, 0x18, 0x51, 0x60, 0xbb, 0xa8, 0x9e, 0x07, 0x66, 0x98, 0xc8, 0x27, - 0x35, 0x1f, 0x9f, 0xd1, 0x77, 0x00, 0xa1, 0x69, 0xd2, 0xea, 0xf5, 0x8a, 0xf1, 0x32, 0xcb, 0x57, - 0x8c, 0x97, 0x5d, 0x24, 0xaf, 0xae, 0xf0, 0x1e, 0xa3, 0xed, 0x39, 0x78, 0xe8, 0x27, 0x80, 0x6b, - 0xd6, 0xcc, 0xa2, 0xe2, 0xa0, 0xcc, 0x36, 0x38, 0x64, 0x61, 0xbd, 0x21, 0x7b, 0xae, 0xc8, 0x30, - 0xda, 0x9f, 0x43, 0x76, 0x32, 0x59, 0x85, 0xe4, 0xed, 0xb5, 0x5f, 0x5c, 0x8f, 0x5c, 0x70, 0x33, - 0x72, 0xc1, 0xdf, 0x91, 0x0b, 0x2e, 0xc7, 0x6e, 0xe9, 0x66, 0xec, 0x96, 0x7e, 0x8f, 0xdd, 0xd2, - 0x7b, 0xd7, 0x6e, 0x33, 0xb4, 0x1b, 0xc9, 0x8b, 0x98, 0x89, 0x4e, 0x59, 0xfd, 0xab, 0x3c, 0xfb, - 0x1f, 0x00, 0x00, 0xff, 0xff, 0xd5, 0x23, 0xd8, 0xc6, 0x4e, 0x07, 0x00, 0x00, +var fileDescriptor_da24993497be29f8 = []byte{ + // 614 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x73, 0xa5, 0x4d, 0xc5, 0x75, 0x3b, 0x02, 0x2d, 0x6e, 0x31, 0x95, 0x81, 0x42, 0x7f, + 0xdd, 0x29, 0x29, 0x03, 0x08, 0x09, 0x29, 0x19, 0xa8, 0xd4, 0x01, 0x15, 0x6f, 0xb0, 0x94, 0x4b, + 0x72, 0xb2, 0x2c, 0xb9, 0x3e, 0x37, 0x76, 0x50, 0x2a, 0xc4, 0xc2, 0xcc, 0x80, 0xc4, 0xc4, 0xc2, + 0xc0, 0x82, 0xfa, 0x9f, 0x74, 0xac, 0xc4, 0xc2, 0x84, 0x50, 0xc2, 0x1f, 0x82, 0x72, 0xf7, 0x2c, + 0x7c, 0x71, 0xe2, 0xba, 0x9b, 0xe3, 0xf7, 0xfd, 0xbe, 0xef, 0xe7, 0x2e, 0xef, 0x25, 0xf8, 0x76, + 0x47, 0x06, 0x7e, 0x28, 0x78, 0x6f, 0xb7, 0x23, 0x7b, 0x82, 0x9d, 0xf4, 0x45, 0xef, 0x94, 0x46, + 0x3d, 0x99, 0x48, 0x72, 0x33, 0x2d, 0xd1, 0xf4, 0x61, 0x2c, 0xb1, 0x6a, 0x9e, 0xf4, 0xa4, 0x52, + 0xb0, 0xf1, 0x93, 0x16, 0x5b, 0x6b, 0x9e, 0x94, 0x5e, 0x20, 0x18, 0x8f, 0x7c, 0xc6, 0xc3, 0x50, + 0x26, 0x3c, 0xf1, 0x65, 0x18, 0x43, 0x75, 0xab, 0x23, 0xe3, 0x63, 0x19, 0xb3, 0x36, 0x8f, 0x21, + 0x83, 0xbd, 0xab, 0xb7, 0x45, 0xc2, 0xeb, 0x2c, 0xe2, 0x9e, 0x1f, 0x2a, 0x31, 0x68, 0x2d, 0x93, + 0x28, 0xe2, 0x3d, 0x7e, 0x9c, 0xf6, 0x59, 0x37, 0x6b, 0xa1, 0x18, 0x24, 0x47, 0xbc, 0xdf, 0xc9, + 0xb8, 0x57, 0x4d, 0x85, 0x59, 0x5c, 0x36, 0x8b, 0x6d, 0xbf, 0xab, 0x0b, 0x4e, 0x0d, 0x93, 0x57, + 0x63, 0xaa, 0x43, 0x15, 0xe6, 0x8a, 0x93, 0xbe, 0x88, 0x13, 0xc7, 0xc5, 0x37, 0x8c, 0xb7, 0x71, + 0x24, 0xc3, 0x58, 0x90, 0x67, 0xb8, 0xaa, 0xa1, 0x56, 0xd0, 0x3a, 0x7a, 0xb4, 0xd4, 0xb8, 0x43, + 0xa7, 0x5e, 0x14, 0xd5, 0xb6, 0xd6, 0xfc, 0xf9, 0xef, 0xbb, 0x15, 0x17, 0x2c, 0xce, 0x1a, 0xb6, + 0x54, 0xcf, 0x7d, 0x91, 0xbc, 0x14, 0x83, 0xa4, 0xa9, 0xf9, 0xd2, 0x44, 0x1f, 0xaf, 0x4e, 0xad, + 0x42, 0xf2, 0x01, 0x5e, 0xca, 0xbc, 0x86, 0x78, 0x67, 0x46, 0x7c, 0x46, 0x09, 0x0c, 0x59, 0xb3, + 0x43, 0xf1, 0xad, 0x34, 0xca, 0x84, 0x20, 0x35, 0xbc, 0xe0, 0x87, 0x5d, 0x31, 0x50, 0xfd, 0xaf, + 0xbb, 0xfa, 0x83, 0xf3, 0x1a, 0x2f, 0xe7, 0xf4, 0x80, 0xf5, 0x1c, 0x2f, 0x72, 0x03, 0xc9, 0x9e, + 0x81, 0x64, 0xe2, 0xa4, 0x26, 0xe7, 0x2d, 0xa0, 0x34, 0x83, 0x60, 0x02, 0xe5, 0x05, 0xc6, 0xff, + 0xe7, 0x03, 0x9a, 0x6f, 0x50, 0x3d, 0x4c, 0x74, 0x3c, 0x4c, 0x54, 0x0f, 0x2c, 0x0c, 0x13, 0x3d, + 0xe4, 0x9e, 0x00, 0xaf, 0x9b, 0x71, 0x3a, 0xdf, 0x11, 0xd0, 0x67, 0x23, 0xa6, 0xd1, 0x5f, 0xbb, + 0x32, 0x3d, 0xd9, 0x37, 0x18, 0xe7, 0x14, 0xe3, 0xc3, 0x4b, 0x19, 0x75, 0xb8, 0x01, 0xc9, 0x52, + 0x46, 0xc8, 0xf1, 0xbb, 0x71, 0xf1, 0x57, 0x72, 0x80, 0x57, 0xf2, 0x06, 0x38, 0x15, 0xc5, 0xf3, + 0x6d, 0xbf, 0x1b, 0xc3, 0x91, 0xac, 0x19, 0x47, 0x6a, 0xf9, 0x5d, 0x57, 0xe9, 0x1a, 0x67, 0x55, + 0xbc, 0xa0, 0x9a, 0x91, 0x4f, 0x08, 0x57, 0xf5, 0xe8, 0x92, 0xcd, 0x19, 0xb6, 0xfc, 0xae, 0x58, + 0x5b, 0x65, 0xa4, 0x9a, 0xcd, 0xd9, 0xfe, 0xf8, 0xf3, 0xef, 0x97, 0xb9, 0x07, 0xe4, 0x1e, 0x33, + 0xf7, 0x71, 0xda, 0xe2, 0x93, 0x1f, 0xc8, 0x18, 0x7a, 0x52, 0x2f, 0x0a, 0x9a, 0xba, 0x55, 0x56, + 0xe3, 0x2a, 0x16, 0x60, 0xac, 0x2b, 0xc6, 0x6d, 0xb2, 0x59, 0xc8, 0x98, 0xfd, 0x01, 0x22, 0xdf, + 0x10, 0x5e, 0x4c, 0x29, 0x77, 0x2f, 0x89, 0x9c, 0x20, 0xa4, 0x65, 0xe5, 0x40, 0xf7, 0x58, 0xd1, + 0x51, 0xb2, 0x53, 0x48, 0x07, 0x60, 0xec, 0xbd, 0x1a, 0x97, 0x0f, 0xe4, 0x2b, 0xc2, 0x18, 0x3a, + 0x35, 0x83, 0xa0, 0x98, 0x31, 0xb7, 0x8b, 0xc5, 0x8c, 0xf9, 0xbd, 0x72, 0x76, 0x14, 0xe3, 0x06, + 0xb9, 0x5f, 0x86, 0x91, 0x9c, 0x21, 0xbc, 0x94, 0x99, 0x63, 0x52, 0x9c, 0x96, 0xdb, 0x10, 0x8b, + 0x95, 0xd6, 0x03, 0xde, 0x53, 0x85, 0xb7, 0x47, 0xea, 0x65, 0xf0, 0x8e, 0xc6, 0x3b, 0x92, 0xde, + 0x63, 0xeb, 0xc9, 0xf9, 0xd0, 0x46, 0x17, 0x43, 0x1b, 0xfd, 0x19, 0xda, 0xe8, 0xf3, 0xc8, 0xae, + 0x5c, 0x8c, 0xec, 0xca, 0xaf, 0x91, 0x5d, 0x79, 0x63, 0xa7, 0x6e, 0x36, 0x98, 0x68, 0x94, 0x9c, + 0x46, 0x22, 0x6e, 0x57, 0xd5, 0xdf, 0xcd, 0xde, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x53, 0x17, + 0x56, 0x65, 0x76, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -556,7 +557,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -565,7 +566,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRequest, opts ...grpc.CallOption) (*QueryGetNextAuctionResponse, error) { out := new(QueryGetNextAuctionResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Query/NextAuction", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/NextAuction", in, out, opts...) if err != nil { return nil, err } @@ -574,7 +575,7 @@ func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRe func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, opts ...grpc.CallOption) (*QueryGetAuctionResponse, error) { out := new(QueryGetAuctionResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Query/Auction", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Auction", in, out, opts...) if err != nil { return nil, err } @@ -583,7 +584,7 @@ func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, o func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest, opts ...grpc.CallOption) (*QueryAllAuctionResponse, error) { out := new(QueryAllAuctionResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Query/AuctionAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionAll", in, out, opts...) if err != nil { return nil, err } @@ -592,7 +593,7 @@ func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest func (c *queryClient) AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) { out := new(QueryAuctionBidsResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Query/AuctionBids", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionBids", in, out, opts...) if err != nil { return nil, err } @@ -647,7 +648,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Query/Params", + FullMethod: "/colinear.colinearcore.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -665,7 +666,7 @@ func _Query_NextAuction_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Query/NextAuction", + FullMethod: "/colinear.colinearcore.Query/NextAuction", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).NextAuction(ctx, req.(*QueryGetNextAuctionRequest)) @@ -683,7 +684,7 @@ func _Query_Auction_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Query/Auction", + FullMethod: "/colinear.colinearcore.Query/Auction", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Auction(ctx, req.(*QueryGetAuctionRequest)) @@ -701,7 +702,7 @@ func _Query_AuctionAll_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Query/AuctionAll", + FullMethod: "/colinear.colinearcore.Query/AuctionAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionAll(ctx, req.(*QueryAllAuctionRequest)) @@ -719,7 +720,7 @@ func _Query_AuctionBids_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Query/AuctionBids", + FullMethod: "/colinear.colinearcore.Query/AuctionBids", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionBids(ctx, req.(*QueryAuctionBidsRequest)) @@ -728,7 +729,7 @@ func _Query_AuctionBids_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "colinear.colinear.Query", + ServiceName: "colinear.colinearcore.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -753,7 +754,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "colinear/query.proto", + Metadata: "colinear-core/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/colinear-core/types/query.pb.gw.go b/x/colinear-core/types/query.pb.gw.go index a8ea1d7..e284764 100644 --- a/x/colinear-core/types/query.pb.gw.go +++ b/x/colinear-core/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: colinear/query.proto +// source: colinear-core/query.proto /* Package types is a reverse proxy. @@ -479,15 +479,15 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "params"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_NextAuction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "next_auction"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_NextAuction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "next_auction"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Auction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"colinear", "colinear", "auction", "index"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Auction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"colinear-core", "auction", "index"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_AuctionAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "auction"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AuctionAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "auction"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_AuctionBids_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"colinear", "colinear", "auction_bids", "index"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AuctionBids_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"colinear-core", "auction_bids", "index"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/colinear-core/types/tx.pb.go b/x/colinear-core/types/tx.pb.go index 8c7f9fb..8122a0e 100644 --- a/x/colinear-core/types/tx.pb.go +++ b/x/colinear-core/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: colinear/tx.proto +// source: colinear-core/tx.proto package types @@ -40,7 +40,7 @@ func (m *MsgNewAuction) Reset() { *m = MsgNewAuction{} } func (m *MsgNewAuction) String() string { return proto.CompactTextString(m) } func (*MsgNewAuction) ProtoMessage() {} func (*MsgNewAuction) Descriptor() ([]byte, []int) { - return fileDescriptor_2fcd5aa4ac15d93c, []int{0} + return fileDescriptor_a752a1f2bf4fb99e, []int{0} } func (m *MsgNewAuction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -119,7 +119,7 @@ func (m *MsgNewAuctionResponse) Reset() { *m = MsgNewAuctionResponse{} } func (m *MsgNewAuctionResponse) String() string { return proto.CompactTextString(m) } func (*MsgNewAuctionResponse) ProtoMessage() {} func (*MsgNewAuctionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2fcd5aa4ac15d93c, []int{1} + return fileDescriptor_a752a1f2bf4fb99e, []int{1} } func (m *MsgNewAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +165,7 @@ func (m *MsgNewBid) Reset() { *m = MsgNewBid{} } func (m *MsgNewBid) String() string { return proto.CompactTextString(m) } func (*MsgNewBid) ProtoMessage() {} func (*MsgNewBid) Descriptor() ([]byte, []int) { - return fileDescriptor_2fcd5aa4ac15d93c, []int{2} + return fileDescriptor_a752a1f2bf4fb99e, []int{2} } func (m *MsgNewBid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -222,7 +222,7 @@ func (m *MsgNewBidResponse) Reset() { *m = MsgNewBidResponse{} } func (m *MsgNewBidResponse) String() string { return proto.CompactTextString(m) } func (*MsgNewBidResponse) ProtoMessage() {} func (*MsgNewBidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2fcd5aa4ac15d93c, []int{3} + return fileDescriptor_a752a1f2bf4fb99e, []int{3} } func (m *MsgNewBidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -252,38 +252,38 @@ func (m *MsgNewBidResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgNewBidResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgNewAuction)(nil), "colinear.colinear.MsgNewAuction") - proto.RegisterType((*MsgNewAuctionResponse)(nil), "colinear.colinear.MsgNewAuctionResponse") - proto.RegisterType((*MsgNewBid)(nil), "colinear.colinear.MsgNewBid") - proto.RegisterType((*MsgNewBidResponse)(nil), "colinear.colinear.MsgNewBidResponse") + proto.RegisterType((*MsgNewAuction)(nil), "colinear.colinearcore.MsgNewAuction") + proto.RegisterType((*MsgNewAuctionResponse)(nil), "colinear.colinearcore.MsgNewAuctionResponse") + proto.RegisterType((*MsgNewBid)(nil), "colinear.colinearcore.MsgNewBid") + proto.RegisterType((*MsgNewBidResponse)(nil), "colinear.colinearcore.MsgNewBidResponse") } -func init() { proto.RegisterFile("colinear/tx.proto", fileDescriptor_2fcd5aa4ac15d93c) } +func init() { proto.RegisterFile("colinear-core/tx.proto", fileDescriptor_a752a1f2bf4fb99e) } -var fileDescriptor_2fcd5aa4ac15d93c = []byte{ - // 338 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xcf, 0x4a, 0xc3, 0x40, - 0x10, 0xc6, 0xbb, 0xb6, 0x8d, 0x76, 0xd4, 0x83, 0x5b, 0x2b, 0x4b, 0x91, 0x25, 0x04, 0x0f, 0x3d, - 0x68, 0x0a, 0x8a, 0xe0, 0xd5, 0x82, 0x07, 0x0f, 0xf5, 0x50, 0x3c, 0x79, 0x32, 0x66, 0x87, 0x12, - 0x68, 0x76, 0x43, 0x76, 0x8b, 0xf5, 0x2d, 0x7c, 0x0f, 0x9f, 0xc1, 0xbb, 0xc7, 0x1e, 0x3d, 0x4a, - 0xfb, 0x22, 0xe2, 0x66, 0xd3, 0x3f, 0x20, 0xd5, 0xdb, 0x7c, 0xbf, 0xcc, 0x37, 0x99, 0x2f, 0x19, - 0x68, 0xc6, 0x4a, 0xa7, 0x4a, 0x1b, 0xd4, 0xa6, 0x6b, 0x26, 0x61, 0x96, 0x2b, 0xa3, 0x68, 0x6b, - 0x09, 0xc3, 0x65, 0x19, 0xbc, 0x11, 0xd8, 0xef, 0xeb, 0xe1, 0x1d, 0x3e, 0x5f, 0x8f, 0x63, 0x93, - 0x28, 0x49, 0x19, 0x6c, 0xc7, 0x39, 0x46, 0x46, 0xe5, 0x8c, 0xf8, 0xa4, 0xd3, 0x18, 0x94, 0x92, - 0x52, 0xa8, 0xc9, 0x28, 0x45, 0xb6, 0x65, 0xb1, 0xad, 0xa9, 0x0f, 0xbb, 0x02, 0x75, 0x9c, 0x27, - 0xd9, 0x8f, 0x99, 0x55, 0xed, 0xa3, 0x55, 0x64, 0xe7, 0x61, 0x32, 0x4a, 0xe4, 0x90, 0xd5, 0xdc, - 0xbc, 0x42, 0xd2, 0x43, 0xa8, 0x0b, 0x94, 0x2a, 0x65, 0x75, 0xcb, 0x0b, 0x41, 0xdb, 0xb0, 0x33, - 0xc2, 0x48, 0xe3, 0x8d, 0x14, 0xcc, 0xf3, 0x49, 0xa7, 0x36, 0x58, 0xe8, 0xe0, 0x12, 0x5a, 0x6b, - 0xcb, 0x0e, 0x50, 0x67, 0x4a, 0x6a, 0xa4, 0xc7, 0xd0, 0x88, 0x0a, 0x74, 0x2b, 0xdc, 0xda, 0x4b, - 0x10, 0x44, 0xd0, 0x28, 0x6c, 0xbd, 0x44, 0x6c, 0xc8, 0x17, 0xc0, 0x5e, 0xe9, 0x91, 0x02, 0x27, - 0x2e, 0xe7, 0x1a, 0xa3, 0x47, 0xe0, 0x45, 0xa9, 0x1a, 0x4b, 0xe3, 0xa2, 0x3a, 0x15, 0x34, 0xe1, - 0x60, 0xf1, 0x8a, 0x72, 0xab, 0xf3, 0x77, 0x02, 0xd5, 0xbe, 0x1e, 0xd2, 0x47, 0x80, 0x95, 0x0f, - 0x7c, 0x12, 0xfe, 0xfa, 0x2b, 0xc2, 0xb5, 0x64, 0xed, 0xd3, 0xff, 0x74, 0x2d, 0xf2, 0xdf, 0x83, - 0xe7, 0xe2, 0xf9, 0x1b, 0x7d, 0xbd, 0x44, 0xb4, 0x3b, 0x7f, 0x75, 0x94, 0x53, 0x7b, 0x57, 0x1f, - 0x33, 0x4e, 0xa6, 0x33, 0x4e, 0xbe, 0x66, 0x9c, 0xbc, 0xce, 0x79, 0x65, 0x3a, 0xe7, 0x95, 0xcf, - 0x39, 0xaf, 0x3c, 0xf0, 0xc2, 0x77, 0x66, 0x6f, 0x6c, 0xd2, 0x5d, 0x3d, 0xb8, 0x97, 0x0c, 0xf5, - 0x93, 0x67, 0x8f, 0xee, 0xe2, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x58, 0xb3, 0x7c, 0x83, 0x8b, 0x02, - 0x00, 0x00, +var fileDescriptor_a752a1f2bf4fb99e = []byte{ + // 342 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xb1, 0x4e, 0xfb, 0x30, + 0x10, 0xc6, 0xeb, 0x7f, 0xdb, 0xfc, 0xe9, 0x01, 0x03, 0x86, 0x56, 0x56, 0x85, 0xac, 0x28, 0x62, + 0xe8, 0x00, 0xa9, 0x04, 0x42, 0x62, 0xa5, 0x12, 0x03, 0x43, 0x19, 0x2a, 0x26, 0x26, 0x4c, 0x7c, + 0xaa, 0x2c, 0xb5, 0x76, 0x14, 0xa7, 0xa2, 0xbc, 0x05, 0xef, 0xc1, 0x33, 0xb0, 0x33, 0x76, 0x64, + 0x44, 0xed, 0x8b, 0xa0, 0x26, 0x71, 0x69, 0x10, 0x2a, 0x6c, 0xfe, 0x7e, 0xbe, 0xef, 0x72, 0x5f, + 0x7c, 0xd0, 0x8a, 0xcc, 0x48, 0x69, 0x14, 0xc9, 0x49, 0x64, 0x12, 0xec, 0xa6, 0xd3, 0x30, 0x4e, + 0x4c, 0x6a, 0x68, 0xd3, 0xf1, 0xd0, 0x1d, 0x96, 0xf7, 0xc1, 0x0b, 0x81, 0xdd, 0xbe, 0x1d, 0xde, + 0xe0, 0xe3, 0xe5, 0x24, 0x4a, 0x95, 0xd1, 0x94, 0xc1, 0xff, 0x28, 0x41, 0x91, 0x9a, 0x84, 0x11, + 0x9f, 0x74, 0x1a, 0x03, 0x27, 0x29, 0x85, 0x9a, 0x16, 0x63, 0x64, 0xff, 0x32, 0x9c, 0x9d, 0xa9, + 0x0f, 0xdb, 0x12, 0x6d, 0x94, 0xa8, 0x78, 0x69, 0x66, 0xd5, 0xec, 0x6a, 0x1d, 0x65, 0xfd, 0x50, + 0x8d, 0x94, 0x1e, 0xb2, 0x5a, 0xd1, 0x2f, 0x97, 0xf4, 0x00, 0xea, 0x12, 0xb5, 0x19, 0xb3, 0x7a, + 0xc6, 0x73, 0x41, 0xdb, 0xb0, 0x35, 0x42, 0x61, 0xf1, 0x4a, 0x4b, 0xe6, 0xf9, 0xa4, 0x53, 0x1b, + 0xac, 0x74, 0x70, 0x0e, 0xcd, 0xd2, 0xb0, 0x03, 0xb4, 0xb1, 0xd1, 0x16, 0xe9, 0x21, 0x34, 0x44, + 0x8e, 0xae, 0x65, 0x31, 0xf6, 0x17, 0x08, 0x04, 0x34, 0x72, 0x5b, 0x4f, 0xc9, 0x0d, 0xf9, 0x02, + 0xd8, 0x71, 0x1e, 0x2d, 0x71, 0x5a, 0xe4, 0x2c, 0x31, 0xda, 0x02, 0x4f, 0x8c, 0xcd, 0x44, 0xa7, + 0x45, 0xd4, 0x42, 0x05, 0xfb, 0xb0, 0xb7, 0xfa, 0x84, 0x9b, 0xea, 0xf4, 0x95, 0x40, 0xb5, 0x6f, + 0x87, 0xf4, 0x1e, 0x60, 0xed, 0x07, 0x1f, 0x85, 0x3f, 0x3e, 0x45, 0x58, 0x4a, 0xd6, 0x3e, 0xfe, + 0x4b, 0xd5, 0x2a, 0xff, 0x2d, 0x78, 0x45, 0x3c, 0x7f, 0xa3, 0xaf, 0xa7, 0x64, 0xbb, 0xf3, 0x5b, + 0x85, 0xeb, 0xda, 0xbb, 0x78, 0x9b, 0x73, 0x32, 0x9b, 0x73, 0xf2, 0x31, 0xe7, 0xe4, 0x79, 0xc1, + 0x2b, 0xb3, 0x05, 0xaf, 0xbc, 0x2f, 0x78, 0xe5, 0x8e, 0x3b, 0x67, 0x77, 0xda, 0xfd, 0xb6, 0x70, + 0x4f, 0x31, 0xda, 0x07, 0x2f, 0x5b, 0xba, 0xb3, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x4a, + 0x01, 0x9b, 0x8e, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -312,7 +312,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) NewAuction(ctx context.Context, in *MsgNewAuction, opts ...grpc.CallOption) (*MsgNewAuctionResponse, error) { out := new(MsgNewAuctionResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Msg/NewAuction", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Msg/NewAuction", in, out, opts...) if err != nil { return nil, err } @@ -321,7 +321,7 @@ func (c *msgClient) NewAuction(ctx context.Context, in *MsgNewAuction, opts ...g func (c *msgClient) NewBid(ctx context.Context, in *MsgNewBid, opts ...grpc.CallOption) (*MsgNewBidResponse, error) { out := new(MsgNewBidResponse) - err := c.cc.Invoke(ctx, "/colinear.colinear.Msg/NewBid", in, out, opts...) + err := c.cc.Invoke(ctx, "/colinear.colinearcore.Msg/NewBid", in, out, opts...) if err != nil { return nil, err } @@ -359,7 +359,7 @@ func _Msg_NewAuction_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Msg/NewAuction", + FullMethod: "/colinear.colinearcore.Msg/NewAuction", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).NewAuction(ctx, req.(*MsgNewAuction)) @@ -377,7 +377,7 @@ func _Msg_NewBid_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/colinear.colinear.Msg/NewBid", + FullMethod: "/colinear.colinearcore.Msg/NewBid", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).NewBid(ctx, req.(*MsgNewBid)) @@ -386,7 +386,7 @@ func _Msg_NewBid_Handler(srv interface{}, ctx context.Context, dec func(interfac } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "colinear.colinear.Msg", + ServiceName: "colinear.colinearcore.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -399,7 +399,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "colinear/tx.proto", + Metadata: "colinear-core/tx.proto", } func (m *MsgNewAuction) Marshal() (dAtA []byte, err error) {