Skip to content

Commit

Permalink
fix ci err
Browse files Browse the repository at this point in the history
  • Loading branch information
trestinlsd committed Feb 19, 2025
1 parent 19bd925 commit 2cdab58
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions client/docs/swagger-ui/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -21247,7 +21247,7 @@
},
"/exocore/avs/v1/avs_info": {
"get": {
"summary": "Query avs info by avs address.",
"summary": "Query avs info by avs address",
"operationId": "QueryAVSInfo",
"responses": {
"200": {
Expand Down Expand Up @@ -21423,7 +21423,7 @@
"name": "avs_address",
"description": "avs_address is the address of avs.",
"in": "query",
"required": true,
"required": false,
"type": "string"
}
],
Expand All @@ -21434,7 +21434,7 @@
},
"/exocore/avs/v1/avs_task_info/{task_address}/{task_id}": {
"get": {
"summary": "TaskInfo queries the task information.",
"summary": "Query the task info by task address and task id.",
"operationId": "QueryAVSTaskInfo",
"responses": {
"200": {
Expand Down Expand Up @@ -21624,7 +21624,7 @@
},
"/exocore/avs/v1/challenge_info/{task_address}/{task_id}": {
"get": {
"summary": "Query the challenge info by task address and task id.",
"summary": "Query the challenge info by task address and task id",
"operationId": "QueryChallengeInfo",
"responses": {
"200": {
Expand Down Expand Up @@ -21697,7 +21697,7 @@
},
"/exocore/avs/v1/submit_task_result/{task_address}/{task_id}/{operator_address}": {
"get": {
"summary": "Submit task result for the specified task and operator.",
"summary": "Submit task result for the specified task and operator",
"operationId": "QuerySubmitTaskResult",
"responses": {
"200": {
Expand Down
10 changes: 5 additions & 5 deletions proto/exocore/avs/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -72,23 +72,23 @@ message QueryChallengeInfoResponse {

// Query defines the gRPC querier service.
service Query {
// Parameters queries the parameters of the module.
// Query avs info by avs address
rpc QueryAVSInfo(QueryAVSInfoReq) returns (QueryAVSInfoResponse) {
option (google.api.http).get = "/exocore/avs/v1/avs_info";
}
// TaskInfo queries the task information.
// Query the task info by task address and task id.
rpc QueryAVSTaskInfo(QueryAVSTaskInfoReq) returns (TaskInfo) {
option (google.api.http).get = "/exocore/avs/v1/avs_task_info/{task_address}/{task_id}";
}
// QueryAVSAddressByChainID queries the avs address by chain id
// Query the avs address by chain id
rpc QueryAVSAddressByChainID(QueryAVSAddressByChainIDReq) returns (QueryAVSAddressByChainIDResponse) {
option (google.api.http).get = "/exocore/avs/v1/avs_address/{chain}";
}
// Parameters queries the parameters of the module.
// Submit task result for the specified task and operator
rpc QuerySubmitTaskResult(QuerySubmitTaskResultReq) returns (QuerySubmitTaskResultResponse) {
option (google.api.http).get = "/exocore/avs/v1/submit_task_result/{task_address}/{task_id}/{operator_address}";
}
// Parameters queries the parameters of the module.
// Query the challenge info by task address and task id
rpc QueryChallengeInfo(QueryChallengeInfoReq) returns (QueryChallengeInfoResponse) {
option (google.api.http).get = "/exocore/avs/v1/challenge_info/{task_address}/{task_id}";
}
Expand Down
20 changes: 10 additions & 10 deletions x/avs/types/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2cdab58

Please sign in to comment.