Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add solana rpc options to chainflip-engine ☀️ #63

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ maintainers:

type: application

version: 0.9.1
version: 0.10.0

appVersion: "0.9.0"
appVersion: "1.6.0"
6 changes: 5 additions & 1 deletion charts/node/templates/engine-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ data:
http_endpoint = "{{ required "Please provide a http_endpoint of an Arbitrum node" .Values.engine.settings.arb.http_endpoint }}"
ws_endpoint = "{{ required "Please provide a ws_endpoint of an Arbitrum node" .Values.engine.settings.arb.ws_endpoint }}"

[sol.rpc]
http_endpoint = "{{ required "Please provide a http_endpoint of a Solana RPC Node" .Values.engine.settings.sol.http_endpoint }}"
ws_endpoint = "{{ required "Please provide a ws_endpoint of a Solana RPC Node" .Values.engine.settings.sol.ws_endpoint }}"

{{ if .Values.engine.settings.arb_backup.enabled }}
[arb.backup_rpc]
http_endpoint = "{{ .Values.engine.settings.arb_backup.http_endpoint }}"
Expand All @@ -81,4 +85,4 @@ data:
hostname = "{{ .Values.engine.ports.metrics.hostname }}"
port = {{ .Values.engine.ports.metrics.port }}
{{- end }}
{{- end }}
{{- end }}
Loading