Skip to content

Commit

Permalink
adds tx-type
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyCharlesBlake committed Dec 17, 2024
1 parent a84d5be commit 8a26e5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/challenger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ A Helm chart for deploying the OpPoke Challenger Go Bot on Kubernetes
| serviceMonitor.tlsConfig | object | `{}` | ServiceMonitor TLS configuration |
| subscriptionUrl | string | `""` | If challenger-go, we can also provide a wss endpoint (OPTIONAL) |
| tolerations | list | `[]` | |
| transactionType | string | `"none"` | Transaction type definition, possible values are: legacy, eip1559 or none (default "none") |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
2 changes: 2 additions & 0 deletions charts/challenger/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ spec:
{{- end }}
- "--chain-id"
- "{{ .Values.ethChainId }}"
- "--tx-type"
- "{{ .Values.transactionType | default "none" }}"
{{- if .Values.subscriptionUrl }}
- "--subscription-url"
- "{{ .Values.subscriptionUrl }}"
Expand Down
3 changes: 3 additions & 0 deletions charts/challenger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ ethRpcUrl: ""
# -- If challenger-go, we can also provide a wss endpoint (OPTIONAL)
subscriptionUrl: ""

# -- Transaction type definition, possible values are: legacy, eip1559 or none (default "none")
transactionType: "none"

# -- Oracle Contract address to listen to.
contractAddresses: []
# - 0x46ef0071b1E2fF6B42d36e5A177EA43Ae5917f4E # Chronicle_ETH_USD_3
Expand Down

0 comments on commit 8a26e5a

Please sign in to comment.