Skip to content

Commit 572e385

Browse files
committed
v1.10.3
1 parent 0536966 commit 572e385

13 files changed

+1388
-52
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ docs/GasAPI.md
2222
docs/GeneralAPI.md
2323
docs/GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus.md
2424
docs/HandlerError.md
25+
docs/HandlerPostBlobRequest.md
2526
docs/NamespaceAPI.md
2627
docs/ResponsesAddress.md
2728
docs/ResponsesBalance.md
@@ -87,6 +88,7 @@ go.mod
8788
go.sum
8889
model_github_com_celenium_io_celestia_indexer_internal_storage_types_status.go
8990
model_handler_error.go
91+
model_handler_post_blob_request.go
9092
model_responses_address.go
9193
model_responses_balance.go
9294
model_responses_blob.go

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ Class | Method | HTTP request | Description
164164

165165
- [GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus](docs/GithubComCeleniumIoCelestiaIndexerInternalStorageTypesStatus.md)
166166
- [HandlerError](docs/HandlerError.md)
167+
- [HandlerPostBlobRequest](docs/HandlerPostBlobRequest.md)
167168
- [ResponsesAddress](docs/ResponsesAddress.md)
168169
- [ResponsesBalance](docs/ResponsesBalance.md)
169170
- [ResponsesBlob](docs/ResponsesBlob.md)

api/openapi.yaml

Lines changed: 123 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -971,15 +971,15 @@ paths:
971971
- namespace
972972
post:
973973
description: |-
974-
Returns blob
974+
Returns blob.
975975
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`.
976976
operationId: get-blob
977977
requestBody:
978978
content:
979979
application/json:
980980
schema:
981-
type: string
982-
description: Blob commitment
981+
$ref: '#/components/schemas/handler.postBlobRequest'
982+
description: "Request body containing height, commitment and namespace hash"
983983
required: true
984984
responses:
985985
"200":
@@ -997,17 +997,19 @@ paths:
997997
summary: Get namespace blob by commitment on height
998998
tags:
999999
- namespace
1000-
x-codegen-request-body-name: commitment
1000+
x-codegen-request-body-name: request
10011001
/blob/metadata:
10021002
post:
1003-
description: Returns blob metadata
1003+
description: |-
1004+
Returns blob metadata
1005+
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`.
10041006
operationId: get-blob-metadata
10051007
requestBody:
10061008
content:
10071009
application/json:
10081010
schema:
1009-
type: string
1010-
description: Blob commitment
1011+
$ref: '#/components/schemas/handler.postBlobRequest'
1012+
description: "Request body containing height, commitment and namespace hash"
10111013
required: true
10121014
responses:
10131015
"200":
@@ -1025,7 +1027,7 @@ paths:
10251027
summary: Get blob metadata by commitment on height
10261028
tags:
10271029
- namespace
1028-
x-codegen-request-body-name: commitment
1030+
x-codegen-request-body-name: request
10291031
/block:
10301032
get:
10311033
description: List blocks info
@@ -4360,6 +4362,23 @@ components:
43604362
message:
43614363
type: string
43624364
type: object
4365+
handler.postBlobRequest:
4366+
properties:
4367+
commitment:
4368+
example: vbGakK59+Non81TE3ULg5Ve5ufT9SFm/bCyY+WLR3gg=
4369+
type: string
4370+
hash:
4371+
example: AAAAAAAAAAAAAAAAAAAAAAAAAAAAs2bWWU6FOB0=
4372+
type: string
4373+
height:
4374+
example: 123456
4375+
minimum: 1
4376+
type: integer
4377+
required:
4378+
- commitment
4379+
- hash
4380+
- height
4381+
type: object
43634382
responses.Address:
43644383
description: Celestia address information
43654384
example:
@@ -5474,8 +5493,11 @@ components:
54745493
stack: op_stack
54755494
website: https://website.com
54765495
description: Long rollup description
5496+
type: settled
54775497
twitter: https://x.com/account
54785498
l2_beat: https://github.com/account
5499+
provider: name
5500+
vm: evm
54795501
explorer: https://explorer.karak.network/
54805502
name: Rollup name
54815503
logo: https://some_link.com/image.png
@@ -5484,12 +5506,22 @@ components:
54845506
- links
54855507
bridge: https://github.com/account
54865508
id: 321
5509+
category: nft
5510+
compression: zip
54875511
slug: rollup_slug
54885512
properties:
54895513
bridge:
54905514
example: https://github.com/account
54915515
format: string
54925516
type: string
5517+
category:
5518+
example: nft
5519+
format: string
5520+
type: string
5521+
compression:
5522+
example: zip
5523+
format: string
5524+
type: string
54935525
description:
54945526
example: Long rollup description
54955527
format: string
@@ -5522,6 +5554,10 @@ components:
55225554
example: Rollup name
55235555
format: string
55245556
type: string
5557+
provider:
5558+
example: name
5559+
format: string
5560+
type: string
55255561
slug:
55265562
example: rollup_slug
55275563
format: string
@@ -5534,6 +5570,14 @@ components:
55345570
example: https://x.com/account
55355571
format: string
55365572
type: string
5573+
type:
5574+
example: settled
5575+
format: string
5576+
type: string
5577+
vm:
5578+
example: evm
5579+
format: string
5580+
type: string
55375581
website:
55385582
example: https://website.com
55395583
format: string
@@ -5609,28 +5653,33 @@ components:
56095653
type: object
56105654
responses.RollupWithDayStats:
56115655
example:
5612-
mb_price: "100"
56135656
namespace_count: 100
5614-
github: https://github.com/account
56155657
stack: op_stack
5616-
website: https://website.com
5617-
total_size: 100
56185658
description: Long rollup description
5619-
avg_size: 100
5659+
type: settled
56205660
blobs_count: 100
5621-
pfb_count: 100
56225661
twitter: https://x.com/account
56235662
l2_beat: https://l2beat.com/scaling/projects/karak
5624-
blobs_per_pfb: 100.0
5663+
provider: name
56255664
total_fee: "100"
5626-
explorer: https://explorer.karak.network/
5627-
name: Rollup name
56285665
logo: https://some_link.com/image.png
5629-
bridge: https://github.com/account
56305666
id: 321
56315667
throughput: 100
5632-
fee_per_pfb: "100"
56335668
slug: rollup_slug
5669+
mb_price: "100"
5670+
github: https://github.com/account
5671+
website: https://website.com
5672+
total_size: 100
5673+
avg_size: 100
5674+
pfb_count: 100
5675+
blobs_per_pfb: 100.0
5676+
vm: evm
5677+
explorer: https://explorer.karak.network/
5678+
name: Rollup name
5679+
bridge: https://github.com/account
5680+
category: nft
5681+
compression: zip
5682+
fee_per_pfb: "100"
56345683
properties:
56355684
avg_size:
56365685
example: 100
@@ -5648,6 +5697,14 @@ components:
56485697
example: https://github.com/account
56495698
format: string
56505699
type: string
5700+
category:
5701+
example: nft
5702+
format: string
5703+
type: string
5704+
compression:
5705+
example: zip
5706+
format: string
5707+
type: string
56515708
description:
56525709
example: Long rollup description
56535710
format: string
@@ -5692,6 +5749,10 @@ components:
56925749
example: 100
56935750
format: integer
56945751
type: integer
5752+
provider:
5753+
example: name
5754+
format: string
5755+
type: string
56955756
slug:
56965757
example: rollup_slug
56975758
format: string
@@ -5716,36 +5777,49 @@ components:
57165777
example: https://x.com/account
57175778
format: string
57185779
type: string
5780+
type:
5781+
example: settled
5782+
format: string
5783+
type: string
5784+
vm:
5785+
example: evm
5786+
format: string
5787+
type: string
57195788
website:
57205789
example: https://website.com
57215790
format: string
57225791
type: string
57235792
type: object
57245793
responses.RollupWithStats:
57255794
example:
5726-
github: https://github.com/account
57275795
stack: op_stack
5728-
website: https://website.com
5729-
size_pct: 0.9876
57305796
fee: "123.456789"
57315797
description: Long rollup description
5798+
type: settled
57325799
blobs_count: 2
57335800
twitter: https://x.com/account
57345801
l2_beat: https://l2beat.com/scaling/projects/karak
5735-
size: 1000
5736-
explorer: https://explorer.karak.network/
5737-
last_message_time: 2023-07-04T03:10:57Z
5738-
name: Rollup name
5739-
fee_pct: 0.9876
5802+
provider: name
57405803
logo: https://some_link.com/image.png
57415804
links:
57425805
- links
57435806
- links
5744-
bridge: https://github.com/account
57455807
id: 321
5746-
first_message_time: 2023-07-04T03:10:57Z
57475808
blobs_count_pct: 0.9876
57485809
slug: rollup_slug
5810+
github: https://github.com/account
5811+
website: https://website.com
5812+
size_pct: 0.9876
5813+
size: 1000
5814+
vm: evm
5815+
explorer: https://explorer.karak.network/
5816+
last_message_time: 2023-07-04T03:10:57Z
5817+
name: Rollup name
5818+
fee_pct: 0.9876
5819+
bridge: https://github.com/account
5820+
category: nft
5821+
compression: zip
5822+
first_message_time: 2023-07-04T03:10:57Z
57495823
properties:
57505824
blobs_count:
57515825
example: 2
@@ -5759,6 +5833,14 @@ components:
57595833
example: https://github.com/account
57605834
format: string
57615835
type: string
5836+
category:
5837+
example: nft
5838+
format: string
5839+
type: string
5840+
compression:
5841+
example: zip
5842+
format: string
5843+
type: string
57625844
description:
57635845
example: Long rollup description
57645846
format: string
@@ -5807,6 +5889,10 @@ components:
58075889
example: Rollup name
58085890
format: string
58095891
type: string
5892+
provider:
5893+
example: name
5894+
format: string
5895+
type: string
58105896
size:
58115897
example: 1000
58125898
format: integer
@@ -5827,6 +5913,14 @@ components:
58275913
example: https://x.com/account
58285914
format: string
58295915
type: string
5916+
type:
5917+
example: settled
5918+
format: string
5919+
type: string
5920+
vm:
5921+
example: evm
5922+
format: string
5923+
type: string
58305924
website:
58315925
example: https://website.com
58325926
format: string

0 commit comments

Comments
 (0)