From 5ccc8d5a42e069690c849aa6cc681bfd031e9828 Mon Sep 17 00:00:00 2001 From: Josh Bowen Date: Tue, 30 Jul 2024 15:24:00 -0600 Subject: [PATCH] update binary versions and env vars to match latest releases (#141) * update binary versions and env vars to match latest releases * reorder to match monorepo * bump dusknum to 9 --- modules/cli/cmd/devrunner/config/networks.go | 6 +++++- modules/cli/cmd/devrunner/config/service_versions.go | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/cli/cmd/devrunner/config/networks.go b/modules/cli/cmd/devrunner/config/networks.go index 42e445d..af3577d 100644 --- a/modules/cli/cmd/devrunner/config/networks.go +++ b/modules/cli/cmd/devrunner/config/networks.go @@ -14,7 +14,7 @@ import ( "github.com/spf13/viper" ) -const duskNum = "8" +const duskNum = "9" const dawnNum = "0" type BaseConfig struct { @@ -57,12 +57,14 @@ type BaseConfig struct { Astria_composer_sequencer_chain_id string `mapstructure:"astria_composer_sequencer_chain_id" toml:"astria_composer_sequencer_chain_id"` Astria_composer_rollups string `mapstructure:"astria_composer_rollups" toml:"astria_composer_rollups"` Astria_composer_private_key_file string `mapstructure:"astria_composer_private_key_file" toml:"astria_composer_private_key_file"` + Astria_composer_sequencer_address_prefix string `mapstructure:"astria_composer_sequencer_address_prefix" toml:"astria_composer_sequencer_address_prefix"` Astria_composer_max_submit_interval_ms int `mapstructure:"astria_composer_max_submit_interval_ms" toml:"astria_composer_max_submit_interval_ms"` Astria_composer_max_bytes_per_bundle int `mapstructure:"astria_composer_max_bytes_per_bundle" toml:"astria_composer_max_bytes_per_bundle"` Astria_composer_bundle_queue_capacity int `mapstructure:"astria_composer_bundle_queue_capacity" toml:"astria_composer_bundle_queue_capacity"` Astria_composer_no_metrics bool `mapstructure:"astria_composer_no_metrics" toml:"astria_composer_no_metrics"` Astria_composer_metrics_http_listener_addr string `mapstructure:"astria_composer_metrics_http_listener_addr" toml:"astria_composer_metrics_http_listener_addr"` Astria_composer_grpc_addr string `mapstructure:"astria_composer_grpc_addr" toml:"astria_composer_grpc_addr"` + Astria_composer_fee_asset string `mapstructure:"astria_composer_fee_asset" toml:"astria_composer_fee_asset"` // global No_color string `mapstructure:"no_color" toml:"no_color"` @@ -119,12 +121,14 @@ func NewBaseConfig(instanceName string) BaseConfig { Astria_composer_sequencer_chain_id: "astria-dusk-" + duskNum, Astria_composer_rollups: "astriachain::ws://127.0.0.1:8546", Astria_composer_private_key_file: filepath.Join(homePath, ".astria", instanceName, DefaultConfigDirName, "composer_dev_priv_key"), + Astria_composer_sequencer_address_prefix: "astria", Astria_composer_max_submit_interval_ms: 2000, Astria_composer_max_bytes_per_bundle: 200000, Astria_composer_bundle_queue_capacity: 40000, Astria_composer_no_metrics: true, Astria_composer_metrics_http_listener_addr: "127.0.0.1:9000", Astria_composer_grpc_addr: "0.0.0.0:0", + Astria_composer_fee_asset: "nria", No_color: "", diff --git a/modules/cli/cmd/devrunner/config/service_versions.go b/modules/cli/cmd/devrunner/config/service_versions.go index fcd8515..5513b8c 100644 --- a/modules/cli/cmd/devrunner/config/service_versions.go +++ b/modules/cli/cmd/devrunner/config/service_versions.go @@ -3,7 +3,7 @@ package config // NOTE - do not include the 'v' at the beginning of the version number const ( cometbft_version = "0.38.8" - astria_sequencer_version = "0.14.1" - astria_composer_version = "0.7.0" - astria_conductor_version = "0.17.0" + astria_sequencer_version = "0.15.0" + astria_composer_version = "0.8.1" + astria_conductor_version = "0.19.0" )