Complete rebrand: Polkadot→Pezkuwi, Substrate→Bizinikiwi

- Replace PolkadotConfig with PezkuwiConfig
- Replace SubstrateConfig with BizinikiwConfig
- Rename config module files (polkadot.rs→pezkuwi.rs, substrate.rs→bizinikiwi.rs)
- Update all documentation and examples
- All 165 files updated, cargo check passes
This commit is contained in:
2025-12-21 21:42:34 +03:00
parent 99e4ee3ab8
commit 7af0bcd262
166 changed files with 2395 additions and 2395 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
use pezkuwi_subxt::{
PolkadotConfig,
PezkuwiConfig,
utils::{AccountId32, MultiAddress},
OnlineClient,
};
@@ -8,9 +8,9 @@ use pezkuwi_subxt_signer::sr25519::dev::{self};
#[pezkuwi_subxt::subxt(runtime_metadata_path = "statemint_metadata.scale")]
pub mod statemint {}
// PolkadotConfig or SubstrateConfig will suffice for this example at the moment,
// but PolkadotConfig is a little more correct, having the right `Address` type.
type StatemintConfig = PolkadotConfig;
// PezkuwiConfig or BizinikiwConfig will suffice for this example at the moment,
// but PezkuwiConfig is a little more correct, having the right `Address` type.
type StatemintConfig = PezkuwiConfig;
#[tokio::main]
pub async fn main() {