Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Update composer version, fix sequencer validator (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
joroshiba authored Oct 17, 2023
1 parent c3c7017 commit 32f9e03
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/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.4.1
version: 0.4.2

# 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
2 changes: 1 addition & 1 deletion charts/rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ images:
# Core images for the rollup, developed for Astria
geth: "ghcr.io/astriaorg/go-ethereum:0.3.0"
conductor: "ghcr.io/astriaorg/conductor:0.7.0--conductor"
composer: "ghcr.io/astriaorg/composer:0.2.2--composer"
composer: "ghcr.io/astriaorg/composer:0.2.3--composer"

# Rollup faucet
faucet: "ghcr.io/astriaorg/ria-faucet:0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer/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.4.0
version: 0.5.0

# 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
6 changes: 3 additions & 3 deletions charts/sequencer/files/cometbft/config/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"app_hash": "",
"app_state": {
"accounts": {{ toPrettyJson .Values.genesisAccounts | indent 4 | trim }},
"authority_sudo_key": "1c0c490f1b5528d8173c5de46d131160e4b2c0c3"
"authority_sudo_key": "{{ .Values.sudoAuthorityKey }}"
},
"chain_id": "{{ .Values.CometBFT.chainId }}",
"consensus_params": {
Expand All @@ -28,12 +28,12 @@
"initial_height": "0",
"validators": [
{
"address": "091E47761C58C474534F4D414AF104A6CAF90C22",
"address": "{{ .Values.CometBFT.privValidatorKey.address }}",
"name": "",
"power": "10",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "lV57+rGs2vac7mvkGHP1oBFGHPJM3a+WoAzeFDCJDNU="
"value": "{{ .Values.CometBFT.privValidatorKey.pubKey }}"
}
}
]
Expand Down
2 changes: 2 additions & 0 deletions charts/sequencer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ cometBFTImage: docker.io/cometbft/cometbft:v0.37.x
sequencerImage: ghcr.io/astriaorg/sequencer:0.4.1--sequencer
sequencerRelayerImage: ghcr.io/astriaorg/sequencer-relayer:0.5.1--sequencer-relayer

sudoAuthorityKey: 1c0c490f1b5528d8173c5de46d131160e4b2c0c3

genesisAccounts:
- address: 1c0c490f1b5528d8173c5de46d131160e4b2c0c3
balance: 1000000000000000000
Expand Down

0 comments on commit 32f9e03

Please sign in to comment.