Skip to content
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
2 changes: 1 addition & 1 deletion charts/evm-rollup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.20.0
version: 0.20.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 3 additions & 1 deletion charts/evm-rollup/files/genesis/geth-genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
"astriaFeeCollectors": {{ toPrettyJson .Values.config.rollup.genesis.feeCollectors | indent 8 | trim }},
"astriaEIP1559Params": {{ toPrettyJson .Values.config.rollup.genesis.eip1559Params | indent 8 | trim }}
{{- if not .Values.global.dev }}
{{- else }}
{{- else }},
"astriaBridgeSenderAddress": "{{ .Values.config.rollup.genesis.bridgeSenderAddress }}",
"astriaSequencerHrpPrefix": "{{ .Values.config.sequencer.addressPrefixes.base }}"
{{- end }}
},
"difficulty": "0",
Expand Down
5 changes: 4 additions & 1 deletion charts/evm-rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ images:
geth:
repo: ghcr.io/astriaorg/astria-geth
tag: 0.11.0
devTag: latest
devTag: pr-30
conductor:
repo: ghcr.io/astriaorg/conductor
tag: "0.17.0"
Expand Down Expand Up @@ -78,6 +78,9 @@ config:
extraDataOverride: ""
# If set to true the genesis block will contain extra data
overrideGenesisExtraData: true
# When using an erc20 canonical bridge, the address from which tokens will
# be sent via the bridge contract
bridgeSenderAddress: "0x0000000000000000000000000000000000000000"
# Configure the sequencer bridge addresses and allowed assets if using
# the astria canonical bridge. Recommend removing alloc values if so.
bridgeAddresses: []
Expand Down