diff --git a/charts/rollup/Chart.yaml b/charts/rollup/Chart.yaml index 0bf0097f..863728dd 100644 --- a/charts/rollup/Chart.yaml +++ b/charts/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.4.3 +version: 0.4.4 # 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/rollup/files/scripts/start-geth.sh b/charts/rollup/files/scripts/start-geth.sh index 3905eec9..90e94ddf 100755 --- a/charts/rollup/files/scripts/start-geth.sh +++ b/charts/rollup/files/scripts/start-geth.sh @@ -3,6 +3,6 @@ set -o errexit -o nounset geth --datadir $data_dir/ --networkid=$evm_network_id \ - --http --http.addr "0.0.0.0" --http.port $executor_host_http_port --http.corsdomain='*' --http.vhosts "*" --http.api eth,net,web3,debug \ + --http --http.addr "0.0.0.0" --http.port $executor_host_http_port --http.corsdomain='*' --http.vhosts "*" --http.api eth,net,web3,debug,txpool \ --ws --ws.addr "0.0.0.0" --ws.port $executor_host_ws_port --ws.origins='*' \ --grpc --grpc.addr "0.0.0.0" --grpc.port $executor_host_grpc_port diff --git a/charts/rollup/values.yaml b/charts/rollup/values.yaml index b519e87d..1ff85354 100644 --- a/charts/rollup/values.yaml +++ b/charts/rollup/values.yaml @@ -8,7 +8,7 @@ config: # The level at which core astria components will log out # Options are: error, warn, info, and debug - logLevel: "info" + logLevel: "debug" rollup: # Default name for the rollup chain @@ -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.3--composer" + composer: "ghcr.io/astriaorg/composer:0.2.4--composer" # Rollup faucet faucet: "ghcr.io/astriaorg/ria-faucet:0.0.1"