Skip to content

Commit

Permalink
add missing proto files
Browse files Browse the repository at this point in the history
  • Loading branch information
tkxkd0159 committed Apr 24, 2024
1 parent a25a71f commit 1e6e34e
Show file tree
Hide file tree
Showing 8 changed files with 4,678 additions and 1,015 deletions.
5 changes: 4 additions & 1 deletion client/docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,10 @@
"operationIds": {
"rename": {
"Params": "FBridgeParams",
"Commitments": "FBridgeCommitments"
"Commitments": "FBridgeCommitments",
"Guardians": "FBridgeGuardians",
"Operators": "FBridgeOperators",
"Judges": "FBridgeJudges"
}
}
}
Expand Down
135 changes: 135 additions & 0 deletions client/docs/swagger-ui/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29970,6 +29970,82 @@ paths:
type: string
tags:
- Query
/lbm/fbridge/v1/guardians:
get:
summary: Get a list of Guardians registered on the bridge
operationId: FBridgeGuardians
responses:
'200':
description: A successful response.
schema:
type: object
properties:
guardians:
type: array
items:
type: string
default:
description: An unexpected error response
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
tags:
- Query
/lbm/fbridge/v1/judges:
get:
summary: Get a list of Judges registered on the bridge
operationId: FBridgeJudges
responses:
'200':
description: A successful response.
schema:
type: object
properties:
judges:
type: array
items:
type: string
default:
description: An unexpected error response
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
tags:
- Query
/lbm/fbridge/v1/next_seq_to_confirm:
get:
summary: Get a next sequence number to be confirmed by n-of-m operators
Expand Down Expand Up @@ -30007,6 +30083,44 @@ paths:
format: byte
tags:
- Query
/lbm/fbridge/v1/operators:
get:
summary: Get a list of Operators registered on the bridge
operationId: FBridgeOperators
responses:
'200':
description: A successful response.
schema:
type: object
properties:
operators:
type: array
items:
type: string
default:
description: An unexpected error response
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
tags:
- Query
/lbm/fbridge/v1/params:
get:
summary: Params queries the parameters of x/fbridge module.
Expand Down Expand Up @@ -49788,12 +49902,33 @@ definitions:
seq:
type: string
format: uint64
lbm.fbridge.v1.GuardiansResponse:
type: object
properties:
guardians:
type: array
items:
type: string
lbm.fbridge.v1.JudgesResponse:
type: object
properties:
judges:
type: array
items:
type: string
lbm.fbridge.v1.NextSeqToConfirmResponse:
type: object
properties:
seq:
type: string
format: uint64
lbm.fbridge.v1.OperatorsResponse:
type: object
properties:
operators:
type: array
items:
type: string
lbm.fbridge.v1.Params:
type: object
properties:
Expand Down
Loading

0 comments on commit 1e6e34e

Please sign in to comment.