Skip to content

Commit 00bc407

Browse files
committed
chore: include latest queries in swagger file
1 parent 0e35b35 commit 00bc407

3 files changed

Lines changed: 91 additions & 1 deletion

File tree

api/config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
{
9191
"name": "Orbiter",
9292
"tags": [
93+
"Orbiter",
9394
"Orbiter Adapter",
9495
"Orbiter Dispatcher",
9596
"Orbiter Executor",
@@ -574,6 +575,14 @@
574575
}
575576
}
576577
},
578+
{
579+
"url": "./api/tmp-swagger-gen/noble/orbiter/v1/query.swagger.json",
580+
"tags": {
581+
"rename": {
582+
"Query": "Orbiter"
583+
}
584+
}
585+
},
577586
{
578587
"url": "./api/tmp-swagger-gen/noble/orbiter/component/adapter/v1/query.swagger.json",
579588
"tags": {

api/gen/swagger.yaml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ x-tagGroups:
6060
- Aura Blocklist
6161
- name: Orbiter
6262
tags:
63+
- Orbiter
6364
- Orbiter Adapter
6465
- Orbiter Dispatcher
6566
- Orbiter Executor
@@ -49396,6 +49397,72 @@ paths:
4939649397
additionalProperties: {}
4939749398
tags:
4939849399
- Globalfee
49400+
/noble/orbiter/v1/identifiers/actions:
49401+
get:
49402+
operationId: ActionIDs
49403+
responses:
49404+
'200':
49405+
description: A successful response.
49406+
schema:
49407+
type: object
49408+
properties:
49409+
action_ids:
49410+
type: object
49411+
additionalProperties:
49412+
type: string
49413+
default:
49414+
description: An unexpected error response.
49415+
schema:
49416+
type: object
49417+
properties:
49418+
code:
49419+
type: integer
49420+
format: int32
49421+
message:
49422+
type: string
49423+
details:
49424+
type: array
49425+
items:
49426+
type: object
49427+
properties:
49428+
'@type':
49429+
type: string
49430+
additionalProperties: {}
49431+
tags:
49432+
- Orbiter
49433+
/noble/orbiter/v1/identifiers/protocols:
49434+
get:
49435+
operationId: ProtocolIDs
49436+
responses:
49437+
'200':
49438+
description: A successful response.
49439+
schema:
49440+
type: object
49441+
properties:
49442+
protocol_ids:
49443+
type: object
49444+
additionalProperties:
49445+
type: string
49446+
default:
49447+
description: An unexpected error response.
49448+
schema:
49449+
type: object
49450+
properties:
49451+
code:
49452+
type: integer
49453+
format: int32
49454+
message:
49455+
type: string
49456+
details:
49457+
type: array
49458+
items:
49459+
type: object
49460+
properties:
49461+
'@type':
49462+
type: string
49463+
additionalProperties: {}
49464+
tags:
49465+
- Orbiter
4939949466
/noble/orbiter/adapter/v1/params:
4940049467
get:
4940149468
summary: Params retrieves the adapter component parameters.
@@ -80278,6 +80345,20 @@ definitions:
8027880345

8027980346
NOTE: The amount field is an Dec which implements the custom method
8028080347
signatures required by gogoproto.
80348+
noble.orbiter.v1.QueryActionIDsResponse:
80349+
type: object
80350+
properties:
80351+
action_ids:
80352+
type: object
80353+
additionalProperties:
80354+
type: string
80355+
noble.orbiter.v1.QueryProtocolIDsResponse:
80356+
type: object
80357+
properties:
80358+
protocol_ids:
80359+
type: object
80360+
additionalProperties:
80361+
type: string
8028180362
noble.orbiter.component.adapter.v1.Params:
8028280363
type: object
8028380364
properties:

upgrade/upgrade.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func CreateUpgradeHandler(
7979
// of this software upgrade.
8080
err = clientKeeper.RecoverClient(sdkCtx, "07-tendermint-136", "07-tendermint-192")
8181
if err != nil {
82-
logger.Error("unabled to recover router_9600-1 light client", "err", err)
82+
logger.Error("unable to recover router_9600-1 light client", "err", err)
8383
}
8484
err = clientKeeper.RecoverClient(sdkCtx, "07-tendermint-106", "07-tendermint-186")
8585
if err != nil {

0 commit comments

Comments
 (0)