Skip to content

Commit ad512a8

Browse files
committed
v1.18.2
1 parent 229ae9b commit ad512a8

File tree

5 files changed

+274
-4
lines changed

5 files changed

+274
-4
lines changed

api/openapi.yaml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7241,6 +7241,9 @@ components:
72417241
tags:
72427242
- tags
72437243
- tags
7244+
upgrade_status:
7245+
- upgrade_status
7246+
- upgrade_status
72447247
ibc_channel_status:
72457248
- ibc_channel_status
72467249
- ibc_channel_status
@@ -7314,6 +7317,10 @@ components:
73147317
items:
73157318
type: string
73167319
type: array
7320+
upgrade_status:
7321+
items:
7322+
type: string
7323+
type: array
73177324
vote_option:
73187325
items:
73197326
type: string
@@ -10301,14 +10308,17 @@ components:
1030110308
type: object
1030210309
responses.Upgrade:
1030310310
example:
10304-
signals_count: 2
10305-
end_height: 100
10311+
applied_at: 2025-07-04T03:10:57Z
1030610312
voted_power: "9348"
1030710313
end_time: 2025-07-04T03:10:57Z
1030810314
tx_hash: 652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF
10315+
version: 1
10316+
voting_power: "9348"
10317+
signals_count: 2
10318+
end_height: 100
10319+
applied_at_level: 100
1030910320
time: 2025-07-04T03:10:57Z
1031010321
msg_id: 2
10311-
version: 1
1031210322
height: 100
1031310323
signer:
1031410324
celestials:
@@ -10317,8 +10327,16 @@ components:
1031710327
primary: true
1031810328
status: VERIFIED
1031910329
hash: celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
10320-
voting_power: "9348"
10330+
status: applied
1032110331
properties:
10332+
applied_at:
10333+
example: 2025-07-04T03:10:57Z
10334+
format: date-time
10335+
type: string
10336+
applied_at_level:
10337+
example: 100
10338+
format: int64
10339+
type: integer
1032210340
end_height:
1032310341
example: 100
1032410342
format: int64
@@ -10341,6 +10359,10 @@ components:
1034110359
type: integer
1034210360
signer:
1034310361
$ref: "#/components/schemas/responses.ShortAddress"
10362+
status:
10363+
example: applied
10364+
format: string
10365+
type: string
1034410366
time:
1034510367
example: 2025-07-04T03:10:57Z
1034610368
format: date-time

docs/ResponsesEnums.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
1616
**RollupType** | Pointer to **[]string** | | [optional]
1717
**Status** | Pointer to **[]string** | | [optional]
1818
**Tags** | Pointer to **[]string** | | [optional]
19+
**UpgradeStatus** | Pointer to **[]string** | | [optional]
1920
**VoteOption** | Pointer to **[]string** | | [optional]
2021
**VoteType** | Pointer to **[]string** | | [optional]
2122

@@ -338,6 +339,31 @@ SetTags sets Tags field to given value.
338339

339340
HasTags returns a boolean if a field has been set.
340341

342+
### GetUpgradeStatus
343+
344+
`func (o *ResponsesEnums) GetUpgradeStatus() []string`
345+
346+
GetUpgradeStatus returns the UpgradeStatus field if non-nil, zero value otherwise.
347+
348+
### GetUpgradeStatusOk
349+
350+
`func (o *ResponsesEnums) GetUpgradeStatusOk() (*[]string, bool)`
351+
352+
GetUpgradeStatusOk returns a tuple with the UpgradeStatus field if it's non-nil, zero value otherwise
353+
and a boolean to check if the value has been set.
354+
355+
### SetUpgradeStatus
356+
357+
`func (o *ResponsesEnums) SetUpgradeStatus(v []string)`
358+
359+
SetUpgradeStatus sets UpgradeStatus field to given value.
360+
361+
### HasUpgradeStatus
362+
363+
`func (o *ResponsesEnums) HasUpgradeStatus() bool`
364+
365+
HasUpgradeStatus returns a boolean if a field has been set.
366+
341367
### GetVoteOption
342368

343369
`func (o *ResponsesEnums) GetVoteOption() []string`

docs/ResponsesUpgrade.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**AppliedAt** | Pointer to **time.Time** | | [optional]
8+
**AppliedAtLevel** | Pointer to **int64** | | [optional]
79
**EndHeight** | Pointer to **int64** | | [optional]
810
**EndTime** | Pointer to **time.Time** | | [optional]
911
**Height** | Pointer to **int64** | | [optional]
1012
**MsgId** | Pointer to **int64** | | [optional]
1113
**SignalsCount** | Pointer to **int64** | | [optional]
1214
**Signer** | Pointer to [**ResponsesShortAddress**](ResponsesShortAddress.md) | | [optional]
15+
**Status** | Pointer to **string** | | [optional]
1316
**Time** | Pointer to **time.Time** | | [optional]
1417
**TxHash** | Pointer to ***os.File** | | [optional]
1518
**Version** | Pointer to **int64** | | [optional]
@@ -35,6 +38,56 @@ NewResponsesUpgradeWithDefaults instantiates a new ResponsesUpgrade object
3538
This constructor will only assign default values to properties that have it defined,
3639
but it doesn't guarantee that properties required by API are set
3740

41+
### GetAppliedAt
42+
43+
`func (o *ResponsesUpgrade) GetAppliedAt() time.Time`
44+
45+
GetAppliedAt returns the AppliedAt field if non-nil, zero value otherwise.
46+
47+
### GetAppliedAtOk
48+
49+
`func (o *ResponsesUpgrade) GetAppliedAtOk() (*time.Time, bool)`
50+
51+
GetAppliedAtOk returns a tuple with the AppliedAt field if it's non-nil, zero value otherwise
52+
and a boolean to check if the value has been set.
53+
54+
### SetAppliedAt
55+
56+
`func (o *ResponsesUpgrade) SetAppliedAt(v time.Time)`
57+
58+
SetAppliedAt sets AppliedAt field to given value.
59+
60+
### HasAppliedAt
61+
62+
`func (o *ResponsesUpgrade) HasAppliedAt() bool`
63+
64+
HasAppliedAt returns a boolean if a field has been set.
65+
66+
### GetAppliedAtLevel
67+
68+
`func (o *ResponsesUpgrade) GetAppliedAtLevel() int64`
69+
70+
GetAppliedAtLevel returns the AppliedAtLevel field if non-nil, zero value otherwise.
71+
72+
### GetAppliedAtLevelOk
73+
74+
`func (o *ResponsesUpgrade) GetAppliedAtLevelOk() (*int64, bool)`
75+
76+
GetAppliedAtLevelOk returns a tuple with the AppliedAtLevel field if it's non-nil, zero value otherwise
77+
and a boolean to check if the value has been set.
78+
79+
### SetAppliedAtLevel
80+
81+
`func (o *ResponsesUpgrade) SetAppliedAtLevel(v int64)`
82+
83+
SetAppliedAtLevel sets AppliedAtLevel field to given value.
84+
85+
### HasAppliedAtLevel
86+
87+
`func (o *ResponsesUpgrade) HasAppliedAtLevel() bool`
88+
89+
HasAppliedAtLevel returns a boolean if a field has been set.
90+
3891
### GetEndHeight
3992

4093
`func (o *ResponsesUpgrade) GetEndHeight() int64`
@@ -185,6 +238,31 @@ SetSigner sets Signer field to given value.
185238

186239
HasSigner returns a boolean if a field has been set.
187240

241+
### GetStatus
242+
243+
`func (o *ResponsesUpgrade) GetStatus() string`
244+
245+
GetStatus returns the Status field if non-nil, zero value otherwise.
246+
247+
### GetStatusOk
248+
249+
`func (o *ResponsesUpgrade) GetStatusOk() (*string, bool)`
250+
251+
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
252+
and a boolean to check if the value has been set.
253+
254+
### SetStatus
255+
256+
`func (o *ResponsesUpgrade) SetStatus(v string)`
257+
258+
SetStatus sets Status field to given value.
259+
260+
### HasStatus
261+
262+
`func (o *ResponsesUpgrade) HasStatus() bool`
263+
264+
HasStatus returns a boolean if a field has been set.
265+
188266
### GetTime
189267

190268
`func (o *ResponsesUpgrade) GetTime() time.Time`

model_responses_enums.go

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)