diff --git a/sugondat-chain/node/src/command.rs b/sugondat-chain/node/src/command.rs index b27420ee..8c36f02c 100644 --- a/sugondat-chain/node/src/command.rs +++ b/sugondat-chain/node/src/command.rs @@ -56,7 +56,7 @@ impl SubstrateCli for Cli { } fn support_url() -> String { - "https://github.com/thrumdev/sugondat".into() + "https://github.com/thrumdev/blobs".into() } fn copyright_start_year() -> i32 { @@ -92,7 +92,7 @@ impl SubstrateCli for RelayChainCli { } fn support_url() -> String { - "https://github.com/thrumdev/sugondat".into() + "https://github.com/thrumdev/blobs".into() } fn copyright_start_year() -> i32 { diff --git a/sugondat-chain/pallets/blobs/src/mock.rs b/sugondat-chain/pallets/blobs/src/mock.rs index 27cbd11c..42f4ee3e 100644 --- a/sugondat-chain/pallets/blobs/src/mock.rs +++ b/sugondat-chain/pallets/blobs/src/mock.rs @@ -59,7 +59,7 @@ impl pallet_blobs::Config for Test { } // Build genesis storage according to the mock runtime. -// TODO: https://github.com/thrumdev/sugondat/issues/28 +// TODO: https://github.com/thrumdev/blobs/issues/28 #[allow(unused)] pub fn new_test_ext() -> sp_io::TestExternalities { frame_system::GenesisConfig::::default() diff --git a/sugondat-chain/runtimes/sugondat-kusama/Cargo.toml b/sugondat-chain/runtimes/sugondat-kusama/Cargo.toml index 6e9cc997..c88d115b 100644 --- a/sugondat-chain/runtimes/sugondat-kusama/Cargo.toml +++ b/sugondat-chain/runtimes/sugondat-kusama/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Anonymous"] description = "Sugondat Kusama Runtime" license = "MIT OR Apache-2.0" -repository = "https://github.com/thrumdev/sugondat" +repository = "https://github.com/thrumdev/blobs" edition = "2021" [package.metadata.docs.rs] diff --git a/sugondat-shim/src/cli.rs b/sugondat-shim/src/cli.rs index 507a8e29..bbb15922 100644 --- a/sugondat-shim/src/cli.rs +++ b/sugondat-shim/src/cli.rs @@ -136,7 +136,7 @@ pub mod query { // TODO: I envision several subcommands here. For example: // - query block — returns the information about a block and header. // - query blob - returns the blob for a given key. The key here is the same sense as - // described here https://github.com/thrumdev/sugondat/issues/9#issuecomment-1814005570. + // described here https://github.com/thrumdev/blobs/issues/9#issuecomment-1814005570. use super::{KeyManagementParams, SugondatRpcParams, ENV_SUGONDAT_NAMESPACE}; use clap::{Args, Subcommand}; diff --git a/sugondat-shim/src/sugondat_rpc/conn.rs b/sugondat-shim/src/sugondat_rpc/conn.rs index 38efa766..4ceed487 100644 --- a/sugondat-shim/src/sugondat_rpc/conn.rs +++ b/sugondat-shim/src/sugondat_rpc/conn.rs @@ -24,7 +24,7 @@ impl Conn { let subxt = sugondat_subxt::Client::from_rpc_client(raw.clone()).await?; check_if_compatible(&subxt)?; if !is_codegen_valid_for(&subxt.metadata()) { - const WARN_WRONG_VERSION: &str = "connected to a sugondat node with a newer runtime than the one this shim was compiled against. Update the shim lest you run into problems. https://github.com/thrumdev/sugondat"; + const WARN_WRONG_VERSION: &str = "connected to a sugondat node with a newer runtime than the one this shim was compiled against. Update the shim lest you run into problems. https://github.com/thrumdev/blobs"; tracing::warn!(WARN_WRONG_VERSION); } let finalized = FinalizedHeadWatcher::spawn(subxt.clone()).await;