From 5a1fd2ea22fd9e282b599fb2612cee85373895a9 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Tue, 27 Jan 2026 20:30:20 +0300 Subject: [PATCH] fix: update GitHub URLs from master to main branch - Replace tree/master with tree/main in all documentation and code comments - Fix issues/168 -> pull/168 reference (issue was converted to PR) --- bizinikiwi/client/consensus/beefy/README.md | 2 +- bizinikiwi/pezframe/bags-list/src/lib.rs | 2 +- bizinikiwi/pezframe/contracts/proc-macro/src/lib.rs | 2 +- bizinikiwi/pezframe/examples/basic/src/lib.rs | 4 ++-- bizinikiwi/pezframe/fast-unstake/src/lib.rs | 2 +- bizinikiwi/pezframe/multi-asset-bounties/src/lib.rs | 2 +- bizinikiwi/pezframe/revive/proc-macro/src/lib.rs | 2 +- bizinikiwi/pezframe/scheduler/src/lib.rs | 2 +- bizinikiwi/pezframe/sudo/src/lib.rs | 2 +- docs/contributor/DOCUMENTATION_GUIDELINES.md | 2 +- docs/sdk/src/guides/async_backing_guide.rs | 2 +- docs/sdk/src/reference_docs/frame_offchain_workers.rs | 2 +- pezbridges/README.md | 2 +- pezkuwi/node/core/dispute-coordinator/src/initialized.rs | 2 +- pezkuwi/node/service/src/lib.rs | 2 +- templates/minimal/README.md | 2 +- templates/solochain/README.md | 6 +++--- templates/teyrchain/README.docify.md | 2 +- templates/teyrchain/README.md | 2 +- 19 files changed, 22 insertions(+), 22 deletions(-) diff --git a/bizinikiwi/client/consensus/beefy/README.md b/bizinikiwi/client/consensus/beefy/README.md index 865ac8c8..7ccc6640 100644 --- a/bizinikiwi/client/consensus/beefy/README.md +++ b/bizinikiwi/client/consensus/beefy/README.md @@ -159,7 +159,7 @@ ambiguity despite using block number instead of a hash. A collection of **votes* a Commitment and a collection of signatures is going to be called **Signed Commitment**. A valid (see later for the rules) Signed Commitment is also called a **BEEFY Justification** or **BEEFY Finality Proof**. For more details on the actual data structures please see -[BEEFY primitives definitions](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/primitives/consensus/beefy/src). +[BEEFY primitives definitions](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/primitives/consensus/beefy/src). A **round** is an attempt by BEEFY validators to produce a BEEFY Justification. **Round number** is simply defined as a block number the validators are voting for, or to be more precise, the diff --git a/bizinikiwi/pezframe/bags-list/src/lib.rs b/bizinikiwi/pezframe/bags-list/src/lib.rs index db3f4259..2a266ad5 100644 --- a/bizinikiwi/pezframe/bags-list/src/lib.rs +++ b/bizinikiwi/pezframe/bags-list/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/bags-list) - +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/bags-list) - //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: diff --git a/bizinikiwi/pezframe/contracts/proc-macro/src/lib.rs b/bizinikiwi/pezframe/contracts/proc-macro/src/lib.rs index d404dd89..c4b1abeb 100644 --- a/bizinikiwi/pezframe/contracts/proc-macro/src/lib.rs +++ b/bizinikiwi/pezframe/contracts/proc-macro/src/lib.rs @@ -632,7 +632,7 @@ fn expand_functions(def: &EnvDef, expand_mode: ExpandMode) -> TokenStream2 { let not_deprecated = f.not_deprecated; // wrapped host function body call with host function traces - // see https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/contracts#host-function-tracing + // see https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/contracts#host-function-tracing let wrapped_body_with_trace = { let trace_fmt_args = params.clone().filter_map(|arg| match arg { syn::FnArg::Receiver(_) => None, diff --git a/bizinikiwi/pezframe/examples/basic/src/lib.rs b/bizinikiwi/pezframe/examples/basic/src/lib.rs index 21922e23..4c0acf3f 100644 --- a/bizinikiwi/pezframe/examples/basic/src/lib.rs +++ b/bizinikiwi/pezframe/examples/basic/src/lib.rs @@ -29,7 +29,7 @@ //! //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/examples/basic) +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/examples/basic) //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white @@ -460,7 +460,7 @@ impl Pezpallet { // Note that a transaction extension can also indicate that a particular data must be present in the // _signing payload_ of a transaction by providing an implementation for the `implicit` method. This // example will not cover this type of extension. See `CheckSpecVersion` in [FRAME -// System](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/system#signed-extensions) +// System](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/system#signed-extensions) // for an example. // // Using the extension, you can add some hooks to the life cycle of each transaction. Note that by diff --git a/bizinikiwi/pezframe/fast-unstake/src/lib.rs b/bizinikiwi/pezframe/fast-unstake/src/lib.rs index 9cfb3169..fc9ec148 100644 --- a/bizinikiwi/pezframe/fast-unstake/src/lib.rs +++ b/bizinikiwi/pezframe/fast-unstake/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/fast-unstake) - +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/fast-unstake) - //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white diff --git a/bizinikiwi/pezframe/multi-asset-bounties/src/lib.rs b/bizinikiwi/pezframe/multi-asset-bounties/src/lib.rs index c2675e47..4c0135b0 100644 --- a/bizinikiwi/pezframe/multi-asset-bounties/src/lib.rs +++ b/bizinikiwi/pezframe/multi-asset-bounties/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/multi-asset-bounties) - +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/multi-asset-bounties) - //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white diff --git a/bizinikiwi/pezframe/revive/proc-macro/src/lib.rs b/bizinikiwi/pezframe/revive/proc-macro/src/lib.rs index 5cd123f0..33a1870c 100644 --- a/bizinikiwi/pezframe/revive/proc-macro/src/lib.rs +++ b/bizinikiwi/pezframe/revive/proc-macro/src/lib.rs @@ -407,7 +407,7 @@ fn expand_functions(def: &EnvDef) -> TokenStream2 { let output = &f.item.sig.output; // wrapped host function body call with host function traces - // see https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/contracts#host-function-tracing + // see https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/contracts#host-function-tracing let wrapped_body_with_trace = { let trace_fmt_args = params.clone().filter_map(|arg| match arg { syn::FnArg::Receiver(_) => None, diff --git a/bizinikiwi/pezframe/scheduler/src/lib.rs b/bizinikiwi/pezframe/scheduler/src/lib.rs index 4e7e05ed..019f9195 100644 --- a/bizinikiwi/pezframe/scheduler/src/lib.rs +++ b/bizinikiwi/pezframe/scheduler/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/scheduler) - +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/scheduler) - //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white diff --git a/bizinikiwi/pezframe/sudo/src/lib.rs b/bizinikiwi/pezframe/sudo/src/lib.rs index 62577665..5c8fa4fb 100644 --- a/bizinikiwi/pezframe/sudo/src/lib.rs +++ b/bizinikiwi/pezframe/sudo/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/sudo) +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/sudo) //! [![pezkuwi]](https://pezkuwichain.io) //! //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github diff --git a/docs/contributor/DOCUMENTATION_GUIDELINES.md b/docs/contributor/DOCUMENTATION_GUIDELINES.md index d06ba1e3..356d2c24 100644 --- a/docs/contributor/DOCUMENTATION_GUIDELINES.md +++ b/docs/contributor/DOCUMENTATION_GUIDELINES.md @@ -290,7 +290,7 @@ Optionally, in order to demonstrate the relation between the two, you can start ``` //! > Made with *Bizinikiwi*, for *Pezkuwi*. //! -//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/fast-unstake) - +//! [![github]](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/fast-unstake) - //! [![pezkuwi]](https://pezkuwichain.io) //! //! [pezkuwi]: https://img.shields.io/badge/polkadot-E6007A?style=for-the-badge&logo=polkadot&logoColor=white diff --git a/docs/sdk/src/guides/async_backing_guide.rs b/docs/sdk/src/guides/async_backing_guide.rs index 31f2f3d4..70b71283 100644 --- a/docs/sdk/src/guides/async_backing_guide.rs +++ b/docs/sdk/src/guides/async_backing_guide.rs @@ -9,7 +9,7 @@ //! //! > If starting a new teyrchain project, please use an async backing compatible template such as //! > the -//! > [teyrchain template](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/templates/teyrchain). +//! > [teyrchain template](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/templates/teyrchain). //! The rollout process for Async Backing has three phases. Phases 1 and 2 below put new //! infrastructure in place. Then we can simply turn on async backing in phase 3. //! diff --git a/docs/sdk/src/reference_docs/frame_offchain_workers.rs b/docs/sdk/src/reference_docs/frame_offchain_workers.rs index 8667aa6d..69875b38 100644 --- a/docs/sdk/src/reference_docs/frame_offchain_workers.rs +++ b/docs/sdk/src/reference_docs/frame_offchain_workers.rs @@ -111,6 +111,6 @@ //! //! - //! - -//! - [Offchain worker example](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/pezframe/examples/offchain-worker) +//! - [Offchain worker example](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/pezframe/examples/offchain-worker) //! //! [`frame`]: crate::pezkuwi_sdk::frame_runtime diff --git a/pezbridges/README.md b/pezbridges/README.md index c11306c2..fb9e0678 100644 --- a/pezbridges/README.md +++ b/pezbridges/README.md @@ -113,4 +113,4 @@ messages between chains. Apart from live pezkuwichain <> zagros bridge, you may spin up local networks and test see how it works locally. More details may be found in -[this document](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master//pezcumulus/parachains/runtimes/bridge-hubs/README.md). +[this document](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main//pezcumulus/parachains/runtimes/bridge-hubs/README.md). diff --git a/pezkuwi/node/core/dispute-coordinator/src/initialized.rs b/pezkuwi/node/core/dispute-coordinator/src/initialized.rs index d482a104..142590a3 100644 --- a/pezkuwi/node/core/dispute-coordinator/src/initialized.rs +++ b/pezkuwi/node/core/dispute-coordinator/src/initialized.rs @@ -114,7 +114,7 @@ pub(crate) struct Initialized { /// blocks) we will be too slow importing all votes from unfinalized chains on startup /// (dispute-coordinator gets killed because of unresponsiveness). /// - /// https://github.com/pezkuwichain/pezkuwi-sdk/issues/168 + /// https://github.com/pezkuwichain/pezkuwi-sdk/pull/168 /// /// To resolve this, we limit the amount of votes imported at once to /// `CHAIN_IMPORT_MAX_BATCH_SIZE` and put the rest here for later processing. diff --git a/pezkuwi/node/service/src/lib.rs b/pezkuwi/node/service/src/lib.rs index b7a7e92f..f4a7a149 100644 --- a/pezkuwi/node/service/src/lib.rs +++ b/pezkuwi/node/service/src/lib.rs @@ -228,7 +228,7 @@ pub enum Error { InvalidWorkerBinaries { prep_worker_path: PathBuf, exec_worker_path: PathBuf }, #[cfg(feature = "full-node")] - #[error("Worker binaries could not be found, make sure pezkuwi was built and installed correctly. Please see the readme for the latest instructions (https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/pezkuwi). If you ran with `cargo run`, please run `cargo build` first. Searched given workers path ({given_workers_path:?}), pezkuwi binary path ({current_exe_path:?}), and lib path (/usr/lib/pezkuwi), workers names: {workers_names:?}")] + #[error("Worker binaries could not be found, make sure pezkuwi was built and installed correctly. Please see the readme for the latest instructions (https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/pezkuwi). If you ran with `cargo run`, please run `cargo build` first. Searched given workers path ({given_workers_path:?}), pezkuwi binary path ({current_exe_path:?}), and lib path (/usr/lib/pezkuwi), workers names: {workers_names:?}")] MissingWorkerBinaries { given_workers_path: Option, current_exe_path: PathBuf, diff --git a/templates/minimal/README.md b/templates/minimal/README.md index a4e49db8..c3b8917c 100644 --- a/templates/minimal/README.md +++ b/templates/minimal/README.md @@ -130,7 +130,7 @@ Previously minimal template's development chains: - 🔄 This template is automatically updated after releases in the main [Pezkuwi SDK monorepo](https://github.com/pezkuwichain/pezkuwi-sdk). -- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/templates/minimal). +- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/templates/minimal). - 😇 Please refer to the monorepo's [contribution guidelines](https://github.com/pezkuwichain/pezkuwi-sdk/blob/master/docs/contributor/CONTRIBUTING.md) and diff --git a/templates/solochain/README.md b/templates/solochain/README.md index 41b4dd46..ff58261c 100644 --- a/templates/solochain/README.md +++ b/templates/solochain/README.md @@ -7,12 +7,12 @@ in the [Bizinikiwi Developer Hub Teyrchain Template](https://github.com/bizinikiwi-developer-hub/bizinikiwi-node-template/) repository. The teyrchain template is generated directly at each PezkuwiChain release branch from the [Solochain Template in -Bizinikiwi](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/templates/solochain) +Bizinikiwi](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/templates/solochain) upstream It is usually best to use the stand-alone version to start a new project. All bugs, suggestions, and feature requests should be made upstream in the -[Bizinikiwi](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi) +[Bizinikiwi](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi) repository. ## Getting Started @@ -193,7 +193,7 @@ template and note the following: The runtime in this project is constructed using many FRAME pallets that ship with [the Bizinikiwi -repository](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi/frame) and a +repository](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bizinikiwi/frame) and a template pezpallet that is [defined in the `pallets`](./pallets/template/src/lib.rs) directory. diff --git a/templates/teyrchain/README.docify.md b/templates/teyrchain/README.docify.md index 4920b366..f0eea6df 100644 --- a/templates/teyrchain/README.docify.md +++ b/templates/teyrchain/README.docify.md @@ -249,7 +249,7 @@ relay chain network (see [Teyrchain Template node](#teyrchain-template-node) set - 🔄 This template is automatically updated after releases in the main [Pezkuwi SDK monorepo](https://github.com/pezkuwichain/pezkuwi-sdk). -- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/templates/teyrchain). +- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/templates/teyrchain). - 😇 Please refer to the monorepo's [contribution guidelines](https://github.com/pezkuwichain/pezkuwi-sdk/blob/master/docs/contributor/CONTRIBUTING.md) and diff --git a/templates/teyrchain/README.md b/templates/teyrchain/README.md index 5bdaa211..b2dc4333 100644 --- a/templates/teyrchain/README.md +++ b/templates/teyrchain/README.md @@ -251,7 +251,7 @@ relay chain network (see [Teyrchain Template node](#teyrchain-template-node) set - 🔄 This template is automatically updated after releases in the main [Pezkuwi SDK monorepo](https://github.com/pezkuwichain/pezkuwi-sdk). -- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/templates/teyrchain). +- ➡️ Any pull requests should be directed to this [source](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/templates/teyrchain). - 😇 Please refer to the monorepo's [contribution guidelines](https://github.com/pezkuwichain/pezkuwi-sdk/blob/master/docs/contributor/CONTRIBUTING.md) and