Skip to content

Commit

Permalink
Merge pull request #41 from chainflip-io/fix/arb
Browse files Browse the repository at this point in the history
fix: add arb private key file settings
  • Loading branch information
tomjohnburton authored Mar 11, 2024
2 parents 04b3824 + 888daab commit 231f11c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 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.6.0
version: 0.6.1

appVersion: "0.9.0"
3 changes: 3 additions & 0 deletions charts/node/templates/engine-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ data:
rpc_password = "{{ .Values.engine.settings.btc_backup.rpc_password }}"
{{- end }}
[arb]
private_key_file = "{{ .Values.common.keys.keysPath }}/{{ .Values.common.keys.arbitrumKeyFileName }}"
[arb.rpc]
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 }}"
Expand Down
6 changes: 6 additions & 0 deletions charts/node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ common:
# -- ethereum key; recommended to leave empty and provide through a secret
ethereumKey: ""

# -- arbitrum key file name
arbitrumKeyFileName: arbitrum_key_file

# -- arbitrum key; recommended to leave empty and provide through a secret
arbitrumKey: ""

# -- exiting secret with keys
existingSecret: ""

Expand Down

0 comments on commit 231f11c

Please sign in to comment.