Skip to content

Commit

Permalink
v1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 25, 2024
1 parent 0536966 commit 572e385
Show file tree
Hide file tree
Showing 13 changed files with 1,388 additions and 52 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ docs/GasAPI.md
docs/GeneralAPI.md
docs/GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus.md
docs/HandlerError.md
docs/HandlerPostBlobRequest.md
docs/NamespaceAPI.md
docs/ResponsesAddress.md
docs/ResponsesBalance.md
Expand Down Expand Up @@ -87,6 +88,7 @@ go.mod
go.sum
model_github_com_celenium_io_celestia_indexer_internal_storage_types_status.go
model_handler_error.go
model_handler_post_blob_request.go
model_responses_address.go
model_responses_balance.go
model_responses_blob.go
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ Class | Method | HTTP request | Description

- [GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus](docs/GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus.md)
- [HandlerError](docs/HandlerError.md)
- [HandlerPostBlobRequest](docs/HandlerPostBlobRequest.md)
- [ResponsesAddress](docs/ResponsesAddress.md)
- [ResponsesBalance](docs/ResponsesBalance.md)
- [ResponsesBlob](docs/ResponsesBlob.md)
Expand Down
152 changes: 123 additions & 29 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -971,15 +971,15 @@ paths:
- namespace
post:
description: |-
Returns blob
Returns blob.
To authorize your requests you have to select the required tariff on our site. Then you receive api key to authorize. Api key should be passed via request header `apikey`.
operationId: get-blob
requestBody:
content:
application/json:
schema:
type: string
description: Blob commitment
$ref: '#/components/schemas/handler.postBlobRequest'
description: "Request body containing height, commitment and namespace hash"
required: true
responses:
"200":
Expand All @@ -997,17 +997,19 @@ paths:
summary: Get namespace blob by commitment on height
tags:
- namespace
x-codegen-request-body-name: commitment
x-codegen-request-body-name: request
/blob/metadata:
post:
description: Returns blob metadata
description: |-
Returns blob metadata
To authorize your requests you have to select the required tariff on our site. Then you receive api key to authorize. Api key should be passed via request header `apikey`.
operationId: get-blob-metadata
requestBody:
content:
application/json:
schema:
type: string
description: Blob commitment
$ref: '#/components/schemas/handler.postBlobRequest'
description: "Request body containing height, commitment and namespace hash"
required: true
responses:
"200":
Expand All @@ -1025,7 +1027,7 @@ paths:
summary: Get blob metadata by commitment on height
tags:
- namespace
x-codegen-request-body-name: commitment
x-codegen-request-body-name: request
/block:
get:
description: List blocks info
Expand Down Expand Up @@ -4360,6 +4362,23 @@ components:
message:
type: string
type: object
handler.postBlobRequest:
properties:
commitment:
example: vbGakK59+Non81TE3ULg5Ve5ufT9SFm/bCyY+WLR3gg=
type: string
hash:
example: AAAAAAAAAAAAAAAAAAAAAAAAAAAAs2bWWU6FOB0=
type: string
height:
example: 123456
minimum: 1
type: integer
required:
- commitment
- hash
- height
type: object
responses.Address:
description: Celestia address information
example:
Expand Down Expand Up @@ -5474,8 +5493,11 @@ components:
stack: op_stack
website: https://website.com
description: Long rollup description
type: settled
twitter: https://x.com/account
l2_beat: https://github.com/account
provider: name
vm: evm
explorer: https://explorer.karak.network/
name: Rollup name
logo: https://some_link.com/image.png
Expand All @@ -5484,12 +5506,22 @@ components:
- links
bridge: https://github.com/account
id: 321
category: nft
compression: zip
slug: rollup_slug
properties:
bridge:
example: https://github.com/account
format: string
type: string
category:
example: nft
format: string
type: string
compression:
example: zip
format: string
type: string
description:
example: Long rollup description
format: string
Expand Down Expand Up @@ -5522,6 +5554,10 @@ components:
example: Rollup name
format: string
type: string
provider:
example: name
format: string
type: string
slug:
example: rollup_slug
format: string
Expand All @@ -5534,6 +5570,14 @@ components:
example: https://x.com/account
format: string
type: string
type:
example: settled
format: string
type: string
vm:
example: evm
format: string
type: string
website:
example: https://website.com
format: string
Expand Down Expand Up @@ -5609,28 +5653,33 @@ components:
type: object
responses.RollupWithDayStats:
example:
mb_price: "100"
namespace_count: 100
github: https://github.com/account
stack: op_stack
website: https://website.com
total_size: 100
description: Long rollup description
avg_size: 100
type: settled
blobs_count: 100
pfb_count: 100
twitter: https://x.com/account
l2_beat: https://l2beat.com/scaling/projects/karak
blobs_per_pfb: 100.0
provider: name
total_fee: "100"
explorer: https://explorer.karak.network/
name: Rollup name
logo: https://some_link.com/image.png
bridge: https://github.com/account
id: 321
throughput: 100
fee_per_pfb: "100"
slug: rollup_slug
mb_price: "100"
github: https://github.com/account
website: https://website.com
total_size: 100
avg_size: 100
pfb_count: 100
blobs_per_pfb: 100.0
vm: evm
explorer: https://explorer.karak.network/
name: Rollup name
bridge: https://github.com/account
category: nft
compression: zip
fee_per_pfb: "100"
properties:
avg_size:
example: 100
Expand All @@ -5648,6 +5697,14 @@ components:
example: https://github.com/account
format: string
type: string
category:
example: nft
format: string
type: string
compression:
example: zip
format: string
type: string
description:
example: Long rollup description
format: string
Expand Down Expand Up @@ -5692,6 +5749,10 @@ components:
example: 100
format: integer
type: integer
provider:
example: name
format: string
type: string
slug:
example: rollup_slug
format: string
Expand All @@ -5716,36 +5777,49 @@ components:
example: https://x.com/account
format: string
type: string
type:
example: settled
format: string
type: string
vm:
example: evm
format: string
type: string
website:
example: https://website.com
format: string
type: string
type: object
responses.RollupWithStats:
example:
github: https://github.com/account
stack: op_stack
website: https://website.com
size_pct: 0.9876
fee: "123.456789"
description: Long rollup description
type: settled
blobs_count: 2
twitter: https://x.com/account
l2_beat: https://l2beat.com/scaling/projects/karak
size: 1000
explorer: https://explorer.karak.network/
last_message_time: 2023-07-04T03:10:57Z
name: Rollup name
fee_pct: 0.9876
provider: name
logo: https://some_link.com/image.png
links:
- links
- links
bridge: https://github.com/account
id: 321
first_message_time: 2023-07-04T03:10:57Z
blobs_count_pct: 0.9876
slug: rollup_slug
github: https://github.com/account
website: https://website.com
size_pct: 0.9876
size: 1000
vm: evm
explorer: https://explorer.karak.network/
last_message_time: 2023-07-04T03:10:57Z
name: Rollup name
fee_pct: 0.9876
bridge: https://github.com/account
category: nft
compression: zip
first_message_time: 2023-07-04T03:10:57Z
properties:
blobs_count:
example: 2
Expand All @@ -5759,6 +5833,14 @@ components:
example: https://github.com/account
format: string
type: string
category:
example: nft
format: string
type: string
compression:
example: zip
format: string
type: string
description:
example: Long rollup description
format: string
Expand Down Expand Up @@ -5807,6 +5889,10 @@ components:
example: Rollup name
format: string
type: string
provider:
example: name
format: string
type: string
size:
example: 1000
format: integer
Expand All @@ -5827,6 +5913,14 @@ components:
example: https://x.com/account
format: string
type: string
type:
example: settled
format: string
type: string
vm:
example: evm
format: string
type: string
website:
example: https://website.com
format: string
Expand Down
Loading

0 comments on commit 572e385

Please sign in to comment.