Skip to content

Commit

Permalink
update binary versions and env vars to match latest releases (#141)
Browse files Browse the repository at this point in the history
* update binary versions and env vars to match latest releases

* reorder to match monorepo

* bump dusknum to 9
  • Loading branch information
jbowen93 authored Jul 30, 2024
1 parent 9c858af commit 5ccc8d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion modules/cli/cmd/devrunner/config/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/spf13/viper"
)

const duskNum = "8"
const duskNum = "9"
const dawnNum = "0"

type BaseConfig struct {
Expand Down Expand Up @@ -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"`
Expand Down Expand Up @@ -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: "",

Expand Down
6 changes: 3 additions & 3 deletions modules/cli/cmd/devrunner/config/service_versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit 5ccc8d5

Please sign in to comment.