Skip to content

Commit

Permalink
release(cli): new release for dusk-10 (#1418)
Browse files Browse the repository at this point in the history
## Summary
Updates the cli with a new release which supports dusk-10 as default
network.
  • Loading branch information
joroshiba authored Aug 28, 2024
1 parent acf8c08 commit c348973
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/astria-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astria-cli"
version = "0.3.1"
version = "0.4.0"
edition = "2021"
rust-version = "1.74.1"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/astria-cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use color_eyre::eyre;

use crate::cli::sequencer::Command as SequencerCommand;

const DEFAULT_SEQUENCER_RPC: &str = "https://rpc.sequencer.dusk-7.devnet.astria.org";
const DEFAULT_SEQUENCER_CHAIN_ID: &str = "astria-dusk-7";
const DEFAULT_SEQUENCER_RPC: &str = "https://rpc.sequencer.dusk-10.devnet.astria.org";
const DEFAULT_SEQUENCER_CHAIN_ID: &str = "astria-dusk-10";

/// A CLI for deploying and managing Astria services and related infrastructure.
#[derive(Debug, Parser)]
Expand Down

0 comments on commit c348973

Please sign in to comment.