fix: correct domain from pezkuwi.io to pezkuwichain.io

The pezkuwi.io domain does not exist. All references have been
updated to the correct pezkuwichain.io domain.

Fixed files:
- subxt examples (rpc.pezkuwichain.io)
- subxt lib.rs documentation
- contracts fixtures (homepage, authors email)
- CHANGELOG.md (zagros-rpc.pezkuwichain.io)
This commit is contained in:
2026-01-25 05:34:37 +03:00
parent d74f77be4b
commit 5c91d077a5
6 changed files with 11 additions and 11 deletions
@@ -4,7 +4,7 @@ use pezkuwi_subxt::{OnlineClient, PezkuwiConfig};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create a client that subscribes to blocks of the Pezkuwi network.
let api = OnlineClient::<PezkuwiConfig>::from_url("wss://rpc.pezkuwi.io:443").await?;
let api = OnlineClient::<PezkuwiConfig>::from_url("wss://rpc.pezkuwichain.io:443").await?;
// Subscribe to all finalized blocks:
let mut blocks_sub = api.blocks().subscribe_finalized().await?;
@@ -16,7 +16,7 @@ use pezkuwi::runtime_types::sp_runtime::multiaddress::MultiAddress;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create a client that subscribes to blocks of the Pezkuwi network.
let api = OnlineClient::<PezkuwiConfig>::from_url("wss://rpc.pezkuwi.io:443").await?;
let api = OnlineClient::<PezkuwiConfig>::from_url("wss://rpc.pezkuwichain.io:443").await?;
// Subscribe to all finalized blocks:
let mut blocks_sub = api.blocks().subscribe_finalized().await?;
+2 -2
View File
@@ -198,7 +198,7 @@ pub mod ext {
///
/// ```rust,ignore
/// #[pezkuwi_subxt::subxt(
/// runtime_metadata_insecure_url = "wss://rpc.pezkuwi.io:443"
/// runtime_metadata_insecure_url = "wss://rpc.pezkuwichain.io:443"
/// )]
/// mod pezkuwi {}
/// ```
@@ -374,7 +374,7 @@ pub mod ext {
///
/// ```rust,ignore
/// #[pezkuwi_subxt::subxt(
/// runtime_metadata_insecure_url = "wss://rpc.pezkuwi.io:443",
/// runtime_metadata_insecure_url = "wss://rpc.pezkuwichain.io:443",
/// unstable_metadata
/// )]
/// mod pezkuwi {}