Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

Commit

Permalink
Switch app gateway across all commands
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Kundt <[email protected]>
  • Loading branch information
erak authored and cloudhead committed Oct 20, 2022
1 parent e45aa56 commit bc96def
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See the [getting started guide](https://radicle.xyz/get-started.html) for setup

## Contributing

The Radicle CLI is still under development. Contributions are always welcome! Please check the [contributing page](https://app.radicle.network/seeds/seed.alt-clients.radicle.xyz/rad:git:hnrkmg77m8tfzj4gi4pa4mbhgysfgzwntjpao/tree/cc80d84ea5be6466647777224c1131b2e0ad11c8/CONTRIBUTING.md) if you want to help.
The Radicle CLI is still under development. Contributions are always welcome! Please check the [contributing page](https://app.radicle.xyz/seeds/clients.radicle.xyz/rad:git:hnrkmg77m8tfzj4gi4pa4mbhgysfgzwntjpao/tree/cc80d84ea5be6466647777224c1131b2e0ad11c8/CONTRIBUTING.md) if you want to help.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions common/src/ethereum/walletconnect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ impl WalletConnect {
"radicle-cli",
Metadata {
description: "Interact with Radicle".into(),
url: "https://radicle.network".parse()?,
icons: vec!["https://app.radicle.network/logo.png".parse()?],
url: "https://radicle.xyz".parse()?,
icons: vec!["https://app.radicle.xyz/logo.png".parse()?],
name: "Radicle CLI".into(),
},
)?;
Expand Down
4 changes: 2 additions & 2 deletions ens/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async fn setup(
return Err(Error::WithHint {
err: err.into(),
hint: if radicle_name {
"The name must be registered with ENS to continue. Go to https://app.radicle.network/register to register."
"The name must be registered with ENS to continue. Go to https://app.radicle.xyz/register to register."
} else {
"The name must be registered with ENS to continue. Go to https://app.ens.domains to register."
}
Expand Down Expand Up @@ -316,7 +316,7 @@ async fn setup(
term::blank();
term::tip!("To view your profile, visit:");
term::indented(&term::format::secondary(format!(
"https://app.radicle.network/{}",
"https://app.radicle.xyz/{}",
name
)));

Expand Down
2 changes: 1 addition & 1 deletion sync/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use radicle_terminal as term;
use anyhow::anyhow;
use url::Url;

pub const GATEWAY_HOST: &str = "app.radicle.network";
pub const GATEWAY_HOST: &str = "app.radicle.xyz";
pub const HELP: Help = Help {
name: "sync",
description: env!("CARGO_PKG_DESCRIPTION"),
Expand Down

0 comments on commit bc96def

Please sign in to comment.