Skip to content

Commit

Permalink
EigenDA options
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarof2 committed Jan 8, 2025
1 parent 49e617b commit 7e51a66
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/eigenda-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: eigenda-proxy
apiVersion: v2
version: 0.3.3
version: 0.3.4
description: Helm chart deploying Layr-Labs eigenda-proxy
home: https://clabs.co
sources:
Expand Down
13 changes: 5 additions & 8 deletions charts/eigenda-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,22 +101,19 @@ spec:
--addr=0.0.0.0 \
--port={{ .Values.services.api.port }} \
--eigenda.disperser-rpc={{ .Values.config.disperser.rpc }} \
--eigenda.eth-confirmation-depth={{ .Values.config.eth.confirmationDepth }} \
--eigenda.confirmation-depth={{ .Values.config.eth.confirmationDepth }} \
--eigenda.eth-rpc={{ .Values.config.eth.rpc }} \
--eigenda.svc-manager-addr={{ .Values.config.eth.serviceManagerAddr }} \
--eigenda.status-query-timeout=45m \
--eigenda.g1-path=$kzg_folder/g1.point \
--eigenda.g2-power-of-2-path=$kzg_folder/g2.point.powerOf2 \
--eigenda.max-blob-length={{ .Values.config.maxBlobLength }} \
--eigenda.disable-tls=false \
{{- if .Values.config.routing.cacheTargets }}
--routing.cache-targets={{ .Values.config.routing.cacheTargets }} \
{{- if .Values.config.storage.cacheTargets }}
--storage.cache-targets={{ .Values.config.storage.cacheTargets }} \
{{- end }}
{{- if .Values.config.routing.writeOnMiss }}
--routing.write-on-miss \
{{- end }}
{{- if and (hasKey .Values.config.s3 "backup") (not (empty .Values.config.s3.backup)) }}
--s3.backup={{ .Values.config.s3.backup }} \
{{- if .Values.config.storage.writeOnMiss }}
--storage.write-on-miss \
{{- end }}
{{- if .Values.config.s3.bucket }}
--s3.bucket={{ .Values.config.s3.bucket }} \
Expand Down
2 changes: 1 addition & 1 deletion charts/eigenda-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ config:
confirmationDepth: 1
rpc: https://ethereum-holesky-rpc.publicnode.com
serviceManagerAddr: 0xD4A7E1Bd8015057293f0D0A557088c286942e84b
routing:
storage:
cacheTargets: ""
writeOnMiss: false
privateKey:
Expand Down

0 comments on commit 7e51a66

Please sign in to comment.