Skip to content

Commit 8e57722

Browse files
committed
v1.10.19
1 parent 4b6dcc8 commit 8e57722

File tree

9 files changed

+348
-12
lines changed

9 files changed

+348
-12
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ docs/ResponsesPrice.md
5656
docs/ResponsesRedelegation.md
5757
docs/ResponsesRollup.md
5858
docs/ResponsesRollupAllSeriesItem.md
59+
docs/ResponsesRollupAllSeriesResponse.md
5960
docs/ResponsesRollupGroupedStats.md
6061
docs/ResponsesRollupStats24h.md
6162
docs/ResponsesRollupWithDayStats.md
@@ -124,6 +125,7 @@ model_responses_price.go
124125
model_responses_redelegation.go
125126
model_responses_rollup.go
126127
model_responses_rollup_all_series_item.go
128+
model_responses_rollup_all_series_response.go
127129
model_responses_rollup_grouped_stats.go
128130
model_responses_rollup_stats24h.go
129131
model_responses_rollup_with_day_stats.go

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ Class | Method | HTTP request | Description
200200
- [ResponsesRedelegation](docs/ResponsesRedelegation.md)
201201
- [ResponsesRollup](docs/ResponsesRollup.md)
202202
- [ResponsesRollupAllSeriesItem](docs/ResponsesRollupAllSeriesItem.md)
203+
- [ResponsesRollupAllSeriesResponse](docs/ResponsesRollupAllSeriesResponse.md)
203204
- [ResponsesRollupGroupedStats](docs/ResponsesRollupGroupedStats.md)
204205
- [ResponsesRollupStats24h](docs/ResponsesRollupStats24h.md)
205206
- [ResponsesRollupWithDayStats](docs/ResponsesRollupWithDayStats.md)

api/openapi.yaml

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2502,11 +2502,7 @@ paths:
25022502
application/json:
25032503
schema:
25042504
items:
2505-
additionalProperties:
2506-
items:
2507-
$ref: '#/components/schemas/responses.RollupAllSeriesItem'
2508-
type: array
2509-
type: object
2505+
$ref: '#/components/schemas/responses.RollupAllSeriesResponse'
25102506
type: array
25112507
description: OK
25122508
"400":
@@ -5879,6 +5875,30 @@ components:
58795875
format: integer
58805876
type: integer
58815877
type: object
5878+
responses.RollupAllSeriesResponse:
5879+
example:
5880+
time: 2023-07-04T03:10:57Z
5881+
items:
5882+
- blobs_count: 123
5883+
size: 123
5884+
fee: "123"
5885+
name: Rollup name
5886+
logo: https://some_link.com/image.png
5887+
- blobs_count: 123
5888+
size: 123
5889+
fee: "123"
5890+
name: Rollup name
5891+
logo: https://some_link.com/image.png
5892+
properties:
5893+
items:
5894+
items:
5895+
$ref: '#/components/schemas/responses.RollupAllSeriesItem'
5896+
type: array
5897+
time:
5898+
example: 2023-07-04T03:10:57Z
5899+
format: date-time
5900+
type: string
5901+
type: object
58825902
responses.RollupGroupedStats:
58835903
example:
58845904
blobs_count: 2
@@ -6349,6 +6369,7 @@ components:
63496369
example:
63506370
synced: true
63516371
chain_id: mocha-4
6372+
total_namespaces: 312
63526373
total_supply: "312"
63536374
total_tx: 23456
63546375
total_stake: "312"
@@ -6403,6 +6424,10 @@ components:
64036424
example: "312"
64046425
format: string
64056426
type: string
6427+
total_namespaces:
6428+
example: 312
6429+
format: string
6430+
type: integer
64066431
total_stake:
64076432
example: "312"
64086433
format: string

api_rollup.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# ResponsesRollupAllSeriesResponse
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Items** | Pointer to [**[]ResponsesRollupAllSeriesItem**](ResponsesRollupAllSeriesItem.md) | | [optional]
8+
**Time** | Pointer to **time.Time** | | [optional]
9+
10+
## Methods
11+
12+
### NewResponsesRollupAllSeriesResponse
13+
14+
`func NewResponsesRollupAllSeriesResponse() *ResponsesRollupAllSeriesResponse`
15+
16+
NewResponsesRollupAllSeriesResponse instantiates a new ResponsesRollupAllSeriesResponse object
17+
This constructor will assign default values to properties that have it defined,
18+
and makes sure properties required by API are set, but the set of arguments
19+
will change when the set of required properties is changed
20+
21+
### NewResponsesRollupAllSeriesResponseWithDefaults
22+
23+
`func NewResponsesRollupAllSeriesResponseWithDefaults() *ResponsesRollupAllSeriesResponse`
24+
25+
NewResponsesRollupAllSeriesResponseWithDefaults instantiates a new ResponsesRollupAllSeriesResponse object
26+
This constructor will only assign default values to properties that have it defined,
27+
but it doesn't guarantee that properties required by API are set
28+
29+
### GetItems
30+
31+
`func (o *ResponsesRollupAllSeriesResponse) GetItems() []ResponsesRollupAllSeriesItem`
32+
33+
GetItems returns the Items field if non-nil, zero value otherwise.
34+
35+
### GetItemsOk
36+
37+
`func (o *ResponsesRollupAllSeriesResponse) GetItemsOk() (*[]ResponsesRollupAllSeriesItem, bool)`
38+
39+
GetItemsOk returns a tuple with the Items field if it's non-nil, zero value otherwise
40+
and a boolean to check if the value has been set.
41+
42+
### SetItems
43+
44+
`func (o *ResponsesRollupAllSeriesResponse) SetItems(v []ResponsesRollupAllSeriesItem)`
45+
46+
SetItems sets Items field to given value.
47+
48+
### HasItems
49+
50+
`func (o *ResponsesRollupAllSeriesResponse) HasItems() bool`
51+
52+
HasItems returns a boolean if a field has been set.
53+
54+
### GetTime
55+
56+
`func (o *ResponsesRollupAllSeriesResponse) GetTime() time.Time`
57+
58+
GetTime returns the Time field if non-nil, zero value otherwise.
59+
60+
### GetTimeOk
61+
62+
`func (o *ResponsesRollupAllSeriesResponse) GetTimeOk() (*time.Time, bool)`
63+
64+
GetTimeOk returns a tuple with the Time field if it's non-nil, zero value otherwise
65+
and a boolean to check if the value has been set.
66+
67+
### SetTime
68+
69+
`func (o *ResponsesRollupAllSeriesResponse) SetTime(v time.Time)`
70+
71+
SetTime sets Time field to given value.
72+
73+
### HasTime
74+
75+
`func (o *ResponsesRollupAllSeriesResponse) HasTime() bool`
76+
77+
HasTime returns a boolean if a field has been set.
78+
79+
80+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
81+
82+

docs/ResponsesState.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**TotalAccounts** | Pointer to **int64** | | [optional]
1515
**TotalBlobsSize** | Pointer to **int64** | | [optional]
1616
**TotalFee** | Pointer to **string** | | [optional]
17+
**TotalNamespaces** | Pointer to **int32** | | [optional]
1718
**TotalStake** | Pointer to **string** | | [optional]
1819
**TotalSupply** | Pointer to **string** | | [optional]
1920
**TotalTx** | Pointer to **int64** | | [optional]
@@ -289,6 +290,31 @@ SetTotalFee sets TotalFee field to given value.
289290

290291
HasTotalFee returns a boolean if a field has been set.
291292

293+
### GetTotalNamespaces
294+
295+
`func (o *ResponsesState) GetTotalNamespaces() int32`
296+
297+
GetTotalNamespaces returns the TotalNamespaces field if non-nil, zero value otherwise.
298+
299+
### GetTotalNamespacesOk
300+
301+
`func (o *ResponsesState) GetTotalNamespacesOk() (*int32, bool)`
302+
303+
GetTotalNamespacesOk returns a tuple with the TotalNamespaces field if it's non-nil, zero value otherwise
304+
and a boolean to check if the value has been set.
305+
306+
### SetTotalNamespaces
307+
308+
`func (o *ResponsesState) SetTotalNamespaces(v int32)`
309+
310+
SetTotalNamespaces sets TotalNamespaces field to given value.
311+
312+
### HasTotalNamespaces
313+
314+
`func (o *ResponsesState) HasTotalNamespaces() bool`
315+
316+
HasTotalNamespaces returns a boolean if a field has been set.
317+
292318
### GetTotalStake
293319

294320
`func (o *ResponsesState) GetTotalStake() string`

docs/RollupAPI.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ No authorization required
9191

9292
## GetRollupAllSeries
9393

94-
> []map[string][]ResponsesRollupAllSeriesItem GetRollupAllSeries(ctx, timeframe).Execute()
94+
> []ResponsesRollupAllSeriesResponse GetRollupAllSeries(ctx, timeframe).Execute()
9595
9696
Get series for all rollups
9797

@@ -119,7 +119,7 @@ func main() {
119119
fmt.Fprintf(os.Stderr, "Error when calling `RollupAPI.GetRollupAllSeries``: %v\n", err)
120120
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
121121
}
122-
// response from `GetRollupAllSeries`: []map[string][]ResponsesRollupAllSeriesItem
122+
// response from `GetRollupAllSeries`: []ResponsesRollupAllSeriesResponse
123123
fmt.Fprintf(os.Stdout, "Response from `RollupAPI.GetRollupAllSeries`: %v\n", resp)
124124
}
125125
```
@@ -143,7 +143,7 @@ Name | Type | Description | Notes
143143

144144
### Return type
145145

146-
[**[]map[string][]ResponsesRollupAllSeriesItem**](map.md)
146+
[**[]ResponsesRollupAllSeriesResponse**](ResponsesRollupAllSeriesResponse.md)
147147

148148
### Authorization
149149

0 commit comments

Comments
 (0)