diff --git a/charts/evm-rollup/Chart.yaml b/charts/evm-rollup/Chart.yaml index d977b65fe9..5cc1e55191 100644 --- a/charts/evm-rollup/Chart.yaml +++ b/charts/evm-rollup/Chart.yaml @@ -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 diff --git a/charts/evm-rollup/files/genesis/geth-genesis.json b/charts/evm-rollup/files/genesis/geth-genesis.json index 464474edbb..e72f7e8134 100644 --- a/charts/evm-rollup/files/genesis/geth-genesis.json +++ b/charts/evm-rollup/files/genesis/geth-genesis.json @@ -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", diff --git a/charts/evm-rollup/values.yaml b/charts/evm-rollup/values.yaml index 5972209a0c..086752ac6a 100644 --- a/charts/evm-rollup/values.yaml +++ b/charts/evm-rollup/values.yaml @@ -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" @@ -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: []