Skip to content

Commit

Permalink
Added --altda.max-concurrent-da-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso committed Sep 24, 2024
1 parent d60d908 commit 062cc5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/op-batcher/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: op-batcher
apiVersion: v2
version: 0.2.0
version: 0.2.1
description: Celo implementation for op-batcher client (Optimism Rollup)
home: https://clabs.co
sources:
Expand Down
3 changes: 2 additions & 1 deletion charts/op-batcher/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# op-batcher

![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)

Celo implementation for op-batcher client (Optimism Rollup)

Expand All @@ -27,6 +27,7 @@ Celo implementation for op-batcher client (Optimism Rollup)
| config.altda.daServer | string | `""` | |
| config.altda.daService | bool | `true` | |
| config.altda.enabled | bool | `false` | |
| config.altda.maxConcurrentDaRequests | int | `2` | |
| config.altda.verifyOnRead | bool | `false` | |
| config.batchType | string | `""` | |
| config.blobTargetNumFrames | string | `""` | |
Expand Down
1 change: 1 addition & 0 deletions charts/op-batcher/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ spec:
--altda.da-server={{ .Values.config.altda.daServer }} \
--altda.da-service={{ .Values.config.altda.daService }} \
--altda.verify-on-read={{ .Values.config.altda.verifyOnRead }} \
--altda.max-concurrent-da-requests={{ .Values.config.altda.maxConcurrentDaRequests }} \
{{- else }}
--data-availability-type={{ .Values.config.dataAvailabilityType }} \
{{- with .Values.config.blobTargetNumFrames }}
Expand Down
1 change: 1 addition & 0 deletions charts/op-batcher/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ config:
daServer: "" # Data availability server URL
daService: true # Use DA service type where commitments are generated by altda server
verifyOnRead: false # verify input data matches the commitments from the DA storage service
maxConcurrentDaRequests: 2 # Maximum number of concurrent DA requests
metrics:
enabled: false
addr: 0.0.0.0
Expand Down

0 comments on commit 062cc5e

Please sign in to comment.