Skip to content

Commit

Permalink
feat: expose ENFORCE_FEES in helm chart (#10488)
Browse files Browse the repository at this point in the history
This PR exposes the `ENFORCE_FEES` setting in the sequencer to the helm
chart.
  • Loading branch information
alexghr authored Dec 18, 2024
1 parent 677c0f4 commit 607dc4b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spartan/aztec-network/templates/transaction-bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ spec:
value: "{{ .Values.bot.followChain }}"
- name: BOT_NO_START
value: "{{ .Values.bot.botNoStart }}"
- name: BOT_FEE_PAYMENT_METHOD
value: "{{ .Values.bot.feePaymentMethod }}"
- name: PXE_PROVER_ENABLED
value: "{{ .Values.aztec.realProofs }}"
- name: PROVER_REAL_PROOFS
Expand Down
2 changes: 2 additions & 0 deletions spartan/aztec-network/templates/validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ spec:
value: "{{ .Values.validator.sequencer.maxTxsPerBlock }}"
- name: SEQ_ENFORCE_TIME_TABLE
value: "{{ .Values.validator.sequencer.enforceTimeTable }}"
- name: ENFORCE_FEES
value: "{{ .Values.validator.sequencer.enforceFees }}"
- name: L1_CHAIN_ID
value: "{{ .Values.ethereum.chainId }}"
- name: OTEL_RESOURCE_ATTRIBUTES
Expand Down
2 changes: 2 additions & 0 deletions spartan/aztec-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ validator:
minTxsPerBlock: 1
maxTxsPerBlock: 4
enforceTimeTable: true
enforceFees: false
validator:
disabled: false
reexecute: true
Expand Down Expand Up @@ -168,6 +169,7 @@ bot:
# Do not wait for transactions
followChain: "NONE"
botNoStart: false
feePaymentMethod: "none"
maxErrors: 3
stopIfUnhealthy: true
service:
Expand Down
3 changes: 3 additions & 0 deletions spartan/aztec-network/values/release-devnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ telemetry:

validator:
replicas: 1
sequencer:
enforceFees: false # disabled until the bot can fund itself
validatorKeys:
- 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
validatorAddresses:
Expand All @@ -24,6 +26,7 @@ proverAgent:

bot:
followChain: "PENDING"
feePaymentMethod: "none" # disabled until the bot can fund itself
enabled: true
txIntervalSeconds: 200

Expand Down

0 comments on commit 607dc4b

Please sign in to comment.