Skip to content

Commit 100c068

Browse files
committed
v1.16.0
1 parent b7e738b commit 100c068

13 files changed

+630
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ Class | Method | HTTP request | Description
186186
*ValidatorAPI* | [**ValidatorCount**](docs/ValidatorAPI.md#validatorcount) | **Get** /validators/count | Get validator's count by status
187187
*ValidatorAPI* | [**ValidatorDelegators**](docs/ValidatorAPI.md#validatordelegators) | **Get** /validators/{id}/delegators | Get validator's delegators
188188
*ValidatorAPI* | [**ValidatorJails**](docs/ValidatorAPI.md#validatorjails) | **Get** /validators/{id}/jails | Get validator's jails
189+
*ValidatorAPI* | [**ValidatorMessages**](docs/ValidatorAPI.md#validatormessages) | **Get** /validators/{id}/messages | Get validator messages
189190
*ValidatorAPI* | [**ValidatorVotes**](docs/ValidatorAPI.md#validatorvotes) | **Get** /validators/{id}/votes | Get list of votes for validator
190191
*VestingAPI* | [**GetVestingPeriods**](docs/VestingAPI.md#getvestingperiods) | **Get** /vesting/{id}/periods | Periods vesting periods by id
191192

api/openapi.yaml

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,13 @@ paths:
557557
- MsgSetRoutingIsmDomain
558558
- MsgRemoveRoutingIsmDomain
559559
- MsgUpdateRoutingIsmOwner
560+
- MsgUpdateBlobParams
561+
- MsgPruneExpiredGrants
562+
- MsgSetSendEnabled
563+
- MsgAuthorizeCircuitBreaker
564+
- MsgResetCircuitBreaker
565+
- MsgTripCircuitBreaker
566+
- MsgModuleQuerySafe
560567
type: string
561568
responses:
562569
"200":
@@ -851,6 +858,13 @@ paths:
851858
- MsgSetRoutingIsmDomain
852859
- MsgRemoveRoutingIsmDomain
853860
- MsgUpdateRoutingIsmOwner
861+
- MsgUpdateBlobParams
862+
- MsgPruneExpiredGrants
863+
- MsgSetSendEnabled
864+
- MsgAuthorizeCircuitBreaker
865+
- MsgResetCircuitBreaker
866+
- MsgTripCircuitBreaker
867+
- MsgModuleQuerySafe
854868
type: string
855869
- description: Time from in unix timestamp
856870
in: query
@@ -1607,6 +1621,13 @@ paths:
16071621
- MsgSetRoutingIsmDomain
16081622
- MsgRemoveRoutingIsmDomain
16091623
- MsgUpdateRoutingIsmOwner
1624+
- MsgUpdateBlobParams
1625+
- MsgPruneExpiredGrants
1626+
- MsgSetSendEnabled
1627+
- MsgAuthorizeCircuitBreaker
1628+
- MsgResetCircuitBreaker
1629+
- MsgTripCircuitBreaker
1630+
- MsgModuleQuerySafe
16101631
type: string
16111632
- description: Comma-separated message types which should be excluded from list
16121633
in: query
@@ -1717,6 +1738,13 @@ paths:
17171738
- MsgSetRoutingIsmDomain
17181739
- MsgRemoveRoutingIsmDomain
17191740
- MsgUpdateRoutingIsmOwner
1741+
- MsgUpdateBlobParams
1742+
- MsgPruneExpiredGrants
1743+
- MsgSetSendEnabled
1744+
- MsgAuthorizeCircuitBreaker
1745+
- MsgResetCircuitBreaker
1746+
- MsgTripCircuitBreaker
1747+
- MsgModuleQuerySafe
17201748
type: string
17211749
responses:
17221750
"200":
@@ -4882,6 +4910,11 @@ paths:
48824910
- rewards
48834911
- commissions
48844912
- flow
4913+
- delegations
4914+
- unbondings
4915+
- delegations_count
4916+
- unbondings_count
4917+
- cumulative_flow
48854918
type: string
48864919
- description: Time from in unix timestamp
48874920
in: query
@@ -5204,6 +5237,13 @@ paths:
52045237
- MsgSetRoutingIsmDomain
52055238
- MsgRemoveRoutingIsmDomain
52065239
- MsgUpdateRoutingIsmOwner
5240+
- MsgUpdateBlobParams
5241+
- MsgPruneExpiredGrants
5242+
- MsgSetSendEnabled
5243+
- MsgAuthorizeCircuitBreaker
5244+
- MsgResetCircuitBreaker
5245+
- MsgTripCircuitBreaker
5246+
- MsgModuleQuerySafe
52075247
type: string
52085248
- description: Comma-separated message types list which should be excluded
52095249
in: query
@@ -5314,6 +5354,13 @@ paths:
53145354
- MsgSetRoutingIsmDomain
53155355
- MsgRemoveRoutingIsmDomain
53165356
- MsgUpdateRoutingIsmOwner
5357+
- MsgUpdateBlobParams
5358+
- MsgPruneExpiredGrants
5359+
- MsgSetSendEnabled
5360+
- MsgAuthorizeCircuitBreaker
5361+
- MsgResetCircuitBreaker
5362+
- MsgTripCircuitBreaker
5363+
- MsgModuleQuerySafe
53175364
type: string
53185365
- description: Time from in unix timestamp
53195366
in: query
@@ -5912,6 +5959,72 @@ paths:
59125959
summary: Get validator's jails
59135960
tags:
59145961
- validator
5962+
/validators/{id}/messages:
5963+
get:
5964+
description: Get validator messages
5965+
operationId: validator-messages
5966+
parameters:
5967+
- description: Internal validator id
5968+
in: path
5969+
name: id
5970+
required: true
5971+
schema:
5972+
type: integer
5973+
- description: Count of requested entities
5974+
in: query
5975+
name: limit
5976+
schema:
5977+
maximum: 100
5978+
minimum: 1
5979+
type: integer
5980+
- description: Offset
5981+
in: query
5982+
name: offset
5983+
schema:
5984+
minimum: 1
5985+
type: integer
5986+
- description: Sort order
5987+
in: query
5988+
name: sort
5989+
schema:
5990+
enum:
5991+
- asc
5992+
- desc
5993+
type: string
5994+
- description: Time from in unix timestamp
5995+
in: query
5996+
name: from
5997+
schema:
5998+
type: integer
5999+
- description: Time to in unix timestamp
6000+
in: query
6001+
name: to
6002+
schema:
6003+
type: integer
6004+
responses:
6005+
"200":
6006+
content:
6007+
application/json:
6008+
schema:
6009+
items:
6010+
$ref: "#/components/schemas/responses.Message"
6011+
type: array
6012+
description: OK
6013+
"400":
6014+
content:
6015+
application/json:
6016+
schema:
6017+
$ref: "#/components/schemas/handler.Error"
6018+
description: Bad Request
6019+
"500":
6020+
content:
6021+
application/json:
6022+
schema:
6023+
$ref: "#/components/schemas/handler.Error"
6024+
description: Internal Server Error
6025+
summary: Get validator messages
6026+
tags:
6027+
- validator
59156028
/validators/{id}/uptime:
59166029
get:
59176030
description: Get validator's uptime and history of signed block
@@ -9272,6 +9385,7 @@ components:
92729385
total_supply: "312"
92739386
total_tx: 23456
92749387
total_validators: 100
9388+
version: 5
92759389
last_height: 100
92769390
total_accounts: 43
92779391
last_time: 2023-07-04T03:10:57Z
@@ -9351,6 +9465,10 @@ components:
93519465
example: "312"
93529466
format: string
93539467
type: string
9468+
version:
9469+
example: 5
9470+
format: int64
9471+
type: integer
93549472
type: object
93559473
responses.TPS:
93569474
properties:
@@ -9646,9 +9764,11 @@ components:
96469764
hash: celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
96479765
max_rate: "0.1"
96489766
moniker: Easy 2 Stake
9767+
version: 5
96499768
voting_power: "1"
96509769
jailed: false
96519770
stake: "1"
9771+
messages_count: 1
96529772
rate: "0.03"
96539773
commissions: "1"
96549774
cons_address: E641C7A2C964833E556AEF934FBF166B712874B6
@@ -9691,6 +9811,9 @@ components:
96919811
max_rate:
96929812
example: "0.1"
96939813
type: string
9814+
messages_count:
9815+
example: 1
9816+
type: integer
96949817
min_self_delegation:
96959818
example: "1"
96969819
type: string
@@ -9706,6 +9829,9 @@ components:
97069829
stake:
97079830
example: "1"
97089831
type: string
9832+
version:
9833+
example: 5
9834+
type: integer
97099835
voting_power:
97109836
example: "1"
97119837
type: string
@@ -9947,6 +10073,7 @@ components:
994710073
- hyperlane.core.interchain_security.v1.EventSetRoutingIsmDomain
994810074
- hyperlane.core.interchain_security.v1.EventSetRoutingIsm
994910075
- hyperlane.core.interchain_security.v1.EventCreateRoutingIsm
10076+
- signal_version
995010077
type: string
995110078
x-enum-varnames:
995210079
- EventTypeUnknown
@@ -10032,6 +10159,7 @@ components:
1003210159
- EventTypeHyperlanecoreinterchainSecurityv1EventSetRoutingIsmDomain
1003310160
- EventTypeHyperlanecoreinterchainSecurityv1EventSetRoutingIsm
1003410161
- EventTypeHyperlanecoreinterchainSecurityv1EventCreateRoutingIsm
10162+
- EventTypeSignalVersion
1003510163
types.MsgAddressType:
1003610164
enum:
1003710165
- validator
@@ -10196,6 +10324,13 @@ components:
1019610324
- MsgSetRoutingIsmDomain
1019710325
- MsgRemoveRoutingIsmDomain
1019810326
- MsgUpdateRoutingIsmOwner
10327+
- MsgUpdateBlobParams
10328+
- MsgPruneExpiredGrants
10329+
- MsgSetSendEnabled
10330+
- MsgAuthorizeCircuitBreaker
10331+
- MsgResetCircuitBreaker
10332+
- MsgTripCircuitBreaker
10333+
- MsgModuleQuerySafe
1019910334
type: string
1020010335
x-enum-varnames:
1020110336
- MsgUnknown
@@ -10302,6 +10437,13 @@ components:
1030210437
- MsgSetRoutingIsmDomain
1030310438
- MsgRemoveRoutingIsmDomain
1030410439
- MsgUpdateRoutingIsmOwner
10440+
- MsgUpdateBlobParams
10441+
- MsgPruneExpiredGrants
10442+
- MsgSetSendEnabled
10443+
- MsgAuthorizeCircuitBreaker
10444+
- MsgResetCircuitBreaker
10445+
- MsgTripCircuitBreaker
10446+
- MsgModuleQuerySafe
1030510447
securitySchemes:
1030610448
ApiKeyAuth:
1030710449
description: To authorize your requests you have to select the required tariff

0 commit comments

Comments
 (0)