Skip to content

Commit 64cd409

Browse files
committed
v1.11.0
1 parent 8e57722 commit 64cd409

File tree

10 files changed

+222
-233
lines changed

10 files changed

+222
-233
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.12.0-SNAPSHOT
1+
7.13.0-SNAPSHOT

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
77

88
- API version: 1.0
99
- Package version: 1.0.0
10-
- Generator version: 7.12.0-SNAPSHOT
10+
- Generator version: 7.13.0-SNAPSHOT
1111
- Build package: org.openapitools.codegen.languages.GoClientCodegen
1212
For more information, please visit [https://discord.gg/3k83Przqk8](https://discord.gg/3k83Przqk8)
1313

@@ -103,6 +103,7 @@ Class | Method | HTTP request | Description
103103
*BlockAPI* | [**ListBlock**](docs/BlockAPI.md#listblock) | **Get** /block | List blocks info
104104
*GasAPI* | [**GasEstimateForPfb**](docs/GasAPI.md#gasestimateforpfb) | **Get** /gas/estimate_for_pfb | Get estimated gas for pay for blob
105105
*GasAPI* | [**GasPrice**](docs/GasAPI.md#gasprice) | **Get** /gas/price | Get estimated gas price
106+
*GasAPI* | [**GasPricePriority**](docs/GasAPI.md#gaspricepriority) | **Get** /gas/price/{priority} | Get estimated gas price with priority filter
106107
*GeneralAPI* | [**GetConstants**](docs/GeneralAPI.md#getconstants) | **Get** /constants | Get network constants
107108
*GeneralAPI* | [**GetEnums**](docs/GeneralAPI.md#getenums) | **Get** /enums | Get celenium enumerators
108109
*GeneralAPI* | [**Head**](docs/GeneralAPI.md#head) | **Get** /head | Get current indexer head
@@ -112,7 +113,6 @@ Class | Method | HTTP request | Description
112113
*NamespaceAPI* | [**GetBlobProof**](docs/NamespaceAPI.md#getblobproof) | **Get** /blob/proofs | Get blob inclusion proofs
113114
*NamespaceAPI* | [**GetBlobs**](docs/NamespaceAPI.md#getblobs) | **Get** /blob | List all blobs with filters
114115
*NamespaceAPI* | [**GetNamespace**](docs/NamespaceAPI.md#getnamespace) | **Get** /namespace/{id} | Get namespace info
115-
*NamespaceAPI* | [**GetNamespaceActive**](docs/NamespaceAPI.md#getnamespaceactive) | **Get** /namespace/active | Get last used namespace
116116
*NamespaceAPI* | [**GetNamespaceBase64**](docs/NamespaceAPI.md#getnamespacebase64) | **Get** /namespace_by_hash/{hash} | Get namespace info by base64
117117
*NamespaceAPI* | [**GetNamespaceBlobs**](docs/NamespaceAPI.md#getnamespaceblobs) | **Get** /namespace_by_hash/{hash}/{height} | Get namespace blobs on height
118118
*NamespaceAPI* | [**GetNamespaceByVersionAndId**](docs/NamespaceAPI.md#getnamespacebyversionandid) | **Get** /namespace/{id}/{version} | Get namespace info by id and version

api/openapi.yaml

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1734,6 +1734,32 @@ paths:
17341734
summary: Get estimated gas price
17351735
tags:
17361736
- gas
1737+
/gas/price/{priority}:
1738+
get:
1739+
description: Get estimated gas price with priority filter based on historical
1740+
data
1741+
operationId: gas-price-priority
1742+
parameters:
1743+
- description: Priority
1744+
in: path
1745+
name: priority
1746+
required: true
1747+
schema:
1748+
enum:
1749+
- slow
1750+
- median
1751+
- fast
1752+
type: string
1753+
responses:
1754+
"200":
1755+
content:
1756+
application/json:
1757+
schema:
1758+
type: string
1759+
description: OK
1760+
summary: Get estimated gas price with priority filter
1761+
tags:
1762+
- gas
17371763
/head:
17381764
get:
17391765
description: Get current indexer head
@@ -1820,38 +1846,6 @@ paths:
18201846
summary: List namespace info
18211847
tags:
18221848
- namespace
1823-
/namespace/active:
1824-
get:
1825-
description: Get last used namespace
1826-
operationId: get-namespace-active
1827-
parameters:
1828-
- description: "Sort field. Default: time"
1829-
in: query
1830-
name: sort
1831-
schema:
1832-
enum:
1833-
- time
1834-
- pfb_count
1835-
- size
1836-
type: string
1837-
responses:
1838-
"200":
1839-
content:
1840-
application/json:
1841-
schema:
1842-
items:
1843-
$ref: '#/components/schemas/responses.Namespace'
1844-
type: array
1845-
description: OK
1846-
"500":
1847-
content:
1848-
application/json:
1849-
schema:
1850-
$ref: '#/components/schemas/handler.Error'
1851-
description: Internal Server Error
1852-
summary: Get last used namespace
1853-
tags:
1854-
- namespace
18551849
/namespace/count:
18561850
get:
18571851
description: Get count of namespaces in network

api_gas.go

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

api_namespace.go

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

client.go

Lines changed: 4 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)