diff --git a/.github/workflows/check-semver.yml b/.github/workflows/check-semver.yml index 254f3a43..ccc84315 100644 --- a/.github/workflows/check-semver.yml +++ b/.github/workflows/check-semver.yml @@ -73,9 +73,9 @@ jobs: rustup target add wasm32-unknown-unknown --toolchain $TOOLCHAIN rustup component add rust-src --toolchain $TOOLCHAIN - - name: Install kurdistan-tech-publish + - name: Install pezkuwi-publish # Set the target dir to cache the build. - run: CARGO_TARGET_DIR=./target/ cargo install kurdistan-tech-publish@0.10.6 --locked -q + run: CARGO_TARGET_DIR=./target/ cargo install pezkuwi-publish@0.10.6 --locked -q - name: Get original PR number shell: bash @@ -125,10 +125,10 @@ jobs: prdoc_file="prdoc/pr_$PR.prdoc" - # Always run kurdistan-tech-publish to check for all issues (mismatches and missing crates) + # Always run pezkuwi-publish to check for all issues (mismatches and missing crates) # Capture output to check for specific error types parity_output=$(mktemp) - if ! kurdistan-tech-publish --color always prdoc --since old --validate prdoc/pr_$PR.prdoc $PRDOC_EXTRA_ARGS -v --toolchain $TOOLCHAIN 2>&1 | tee "$parity_output"; then + if ! pezkuwi-publish --color always prdoc --since old --validate prdoc/pr_$PR.prdoc $PRDOC_EXTRA_ARGS -v --toolchain $TOOLCHAIN 2>&1 | tee "$parity_output"; then # Check if there are missing crates (files changed but not listed in prdoc) if grep -q "Files changed but crate not listed in PR Doc" "$parity_output"; then @@ -202,7 +202,7 @@ jobs: rm -f "$minor_patch_temp" if [ "$has_validate_false" = true ]; then - echo "ℹ️ Found minor/patch bumps with validate: false override. Semver validation was skipped for these crates by kurdistan-tech-publish." + echo "ℹ️ Found minor/patch bumps with validate: false override. Semver validation was skipped for these crates by pezkuwi-publish." fi fi diff --git a/.github/workflows/command-inform.yml b/.github/workflows/command-inform.yml index 9e6f1ee8..0d88eb45 100644 --- a/.github/workflows/command-inform.yml +++ b/.github/workflows/command-inform.yml @@ -18,5 +18,5 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: 'We have migrated the command bot to GHA

Please, see the new usage instructions here or here. Soon the old commands will be disabled.' + body: 'We have migrated the command bot to GHA

Please, see the new usage instructions here or here. Soon the old commands will be disabled.' }) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 18f45503..71eb745a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -60,7 +60,7 @@ jobs: - run: mv ./target/doc ./crate-docs - name: Inject Simple Analytics script run: | - script_content="" + script_content="" docs_dir="./crate-docs" inject_simple_analytics() { @@ -167,7 +167,7 @@ jobs: sed -i.bak '/extraheader/d' ./.git/config echo "${Green}Git push${NC}" - git config user.email "ci@kurdistan-tech.io" + git config user.email "ci@pezkuwichain.io" git config user.name "${APP_NAME}" git commit --amend -m "___Updated docs" || echo "___Nothing to commit___" git push origin gh-pages --force diff --git a/.github/workflows/publish-check-compile.yml b/.github/workflows/publish-check-compile.yml index d34f2304..f1e7b5fa 100644 --- a/.github/workflows/publish-check-compile.yml +++ b/.github/workflows/publish-check-compile.yml @@ -31,9 +31,9 @@ jobs: with: save-if: ${{ github.ref == 'refs/heads/master' }} - - name: install kurdistan-tech-publish + - name: install pezkuwi-publish run: | - cargo install kurdistan-tech-publish@0.10.6 --locked -q + cargo install pezkuwi-publish@0.10.6 --locked -q - name: set current PR's prdoc name in a variable env: @@ -41,20 +41,20 @@ jobs: run: | echo "CURRENT_PRDOC=pr_${GITHUB_PR_NUM}.prdoc" >> $GITHUB_ENV - - name: kurdistan-tech-publish update plan w/o current prdoc + - name: pezkuwi-publish update plan w/o current prdoc run: | if [ -f prdoc/$CURRENT_PRDOC ]; then mv prdoc/$CURRENT_PRDOC . fi - kurdistan-tech-publish --color always plan --skip-check --prdoc prdoc/ + pezkuwi-publish --color always plan --skip-check --prdoc prdoc/ # The code base is not in master's state (due to commits brought by the # current PR), but we're interested in all master's prdocs to be applied # as if master is a stable branch, and in next steps we're following up with # a patch release of all crates based on some newly added prdocs # (meaning only the current prdoc). - - name: kurdistan-tech-publish apply plan on the code state prior to current prdoc - run: kurdistan-tech-publish --color always apply --registry + - name: pezkuwi-publish apply plan on the code state prior to current prdoc + run: pezkuwi-publish --color always apply --registry - name: move all prdocs except current one to unstable dir run: | @@ -64,21 +64,21 @@ jobs: mv $CURRENT_PRDOC prdoc fi - - name: kurdistan-tech-publish update plan just for PR's prdoc + - name: pezkuwi-publish update plan just for PR's prdoc run: | if [ -f "prdoc/$CURRENT_PRDOC" ]; then - kurdistan-tech-publish --color always plan --skip-check --prdoc prdoc/ + pezkuwi-publish --color always plan --skip-check --prdoc prdoc/ fi - - name: kurdistan-tech-publish apply plan + - name: pezkuwi-publish apply plan run: | if [ -f "prdoc/$CURRENT_PRDOC" ]; then - kurdistan-tech-publish --color always apply --registry + pezkuwi-publish --color always apply --registry fi - - name: kurdistan-tech-publish check compile + - name: pezkuwi-publish check compile run: | - packages="$(kurdistan-tech-publish apply --print)" + packages="$(pezkuwi-publish apply --print)" if [ -n "$packages" ]; then cargo --color always check $(printf -- '-p %s ' $packages) diff --git a/.github/workflows/release-10_branchoff-stable.yml b/.github/workflows/release-10_branchoff-stable.yml index 6d944ce0..40318b56 100644 --- a/.github/workflows/release-10_branchoff-stable.yml +++ b/.github/workflows/release-10_branchoff-stable.yml @@ -92,7 +92,7 @@ jobs: git config --global commit.gpgsign true git config --global gpg.program /home/runner/.local/bin/pgpkms-git git config --global user.name "ParityReleases" - git config --global user.email "release-team@kurdistan-tech.io" + git config --global user.email "release-team@pezkuwichain.io" git config --global user.signingKey "D8018FBB3F534D866A45998293C5FB5F6A367B51" - name: Create stable branch diff --git a/.github/workflows/release-11_rc-automation.yml b/.github/workflows/release-11_rc-automation.yml index be7331e2..86e1c6d1 100644 --- a/.github/workflows/release-11_rc-automation.yml +++ b/.github/workflows/release-11_rc-automation.yml @@ -17,7 +17,7 @@ jobs: matrix: channel: - name: "RelEng: Pezkuwi Release Coordination" - room: '!cqAmzdIcbOFwrdrubV:kurdistan-tech.io' + room: '!cqAmzdIcbOFwrdrubV:pezkuwichain.io' environment: release env: PGP_KMS_KEY: ${{ secrets.PGP_KMS_SIGN_COMMITS_KEY }} @@ -57,7 +57,7 @@ jobs: git config --global commit.gpgsign true git config --global gpg.program /home/runner/.local/bin/pgpkms-git git config --global user.name "ParityReleases" - git config --global user.email "release-team@kurdistan-tech.io" + git config --global user.email "release-team@pezkuwichain.io" git config --global user.signingKey "D8018FBB3F534D866A45998293C5FB5F6A367B51" - name: Compute next rc tag @@ -101,6 +101,6 @@ jobs: with: room_id: ${{ matrix.channel.room }} access_token: ${{ secrets.RELEASENOTES_MATRIX_V2_ACCESS_TOKEN }} - server: m.kurdistan-tech.io + server: m.pezkuwichain.io message: | Release process for pezkuwi ${{ steps.compute_tag.outputs.new_tag }} has been started.
diff --git a/.github/workflows/release-30_publish_release_draft.yml b/.github/workflows/release-30_publish_release_draft.yml index a90bfa79..602b2adb 100644 --- a/.github/workflows/release-30_publish_release_draft.yml +++ b/.github/workflows/release-30_publish_release_draft.yml @@ -292,7 +292,7 @@ jobs: matrix: channel: - name: "Team: RelEng Internal" - room: '!GvAyzgCDgaVrvibaAF:kurdistan-tech.io' + room: '!GvAyzgCDgaVrvibaAF:pezkuwichain.io' steps: - name: Send Matrix message to ${{ matrix.channel.name }} @@ -300,7 +300,7 @@ jobs: with: room_id: ${{ matrix.channel.room }} access_token: ${{ secrets.RELEASENOTES_MATRIX_V2_ACCESS_TOKEN }} - server: m.kurdistan-tech.io + server: m.pezkuwichain.io message: | **New version of pezkuwi tagged**: ${{ needs.validate-inputs.outputs.release_tag }}
And release draft is release created in [pezkuwi-sdk repo](https://github.com/pezkuwichain/pezkuwi-sdk/releases) diff --git a/.github/workflows/release-50_publish-docker.yml b/.github/workflows/release-50_publish-docker.yml index 42f8ef27..68311def 100644 --- a/.github/workflows/release-50_publish-docker.yml +++ b/.github/workflows/release-50_publish-docker.yml @@ -38,7 +38,7 @@ on: description: Owner of the container image repo required: true type: string - default: kurdistan-tech + default: pezkuwichain version: description: Version of the pezkuwi node release in format v1.16.0 or v1.16.0-rc1 @@ -73,7 +73,7 @@ on: description: Owner of the container image repo required: true type: string - default: kurdistan-tech + default: pezkuwichain version: description: Version of the pezkuwi node release in format v1.16.0 or v1.16.0-rc1 diff --git a/.github/workflows/release-60_create-old-release-tag.yml b/.github/workflows/release-60_create-old-release-tag.yml index 5c32b401..b2538da8 100644 --- a/.github/workflows/release-60_create-old-release-tag.yml +++ b/.github/workflows/release-60_create-old-release-tag.yml @@ -47,7 +47,7 @@ jobs: git config --global commit.gpgsign true git config --global gpg.program /home/runner/.local/bin/pgpkms-git git config --global user.name "ParityReleases" - git config --global user.email "release-team@kurdistan-tech.io" + git config --global user.email "release-team@pezkuwichain.io" git config --global user.signingKey "D8018FBB3F534D866A45998293C5FB5F6A367B51" - name: Create old release tag diff --git a/.github/workflows/release-60_post-crates-release-activities.yml b/.github/workflows/release-60_post-crates-release-activities.yml index df5e1ba3..4324a661 100644 --- a/.github/workflows/release-60_post-crates-release-activities.yml +++ b/.github/workflows/release-60_post-crates-release-activities.yml @@ -64,7 +64,7 @@ jobs: echo "Using pgpkms-git at: $PGPKMS_PATH" git config --global gpg.program "$PGPKMS_PATH" git config --global user.name "ParityReleases" - git config --global user.email "release-team@kurdistan-tech.io" + git config --global user.email "release-team@pezkuwichain.io" git config --global user.signingKey "D8018FBB3F534D866A45998293C5FB5F6A367B51" - name: Bump NODE_VERSION for pezkuwi diff --git a/.github/workflows/release-70_combined-publish-release.yml b/.github/workflows/release-70_combined-publish-release.yml index 7e9ce826..24130f21 100644 --- a/.github/workflows/release-70_combined-publish-release.yml +++ b/.github/workflows/release-70_combined-publish-release.yml @@ -51,7 +51,7 @@ on: description: Owner of the container image repo required: true type: string - default: kurdistan-tech + default: pezkuwichain version: description: Version for Docker tags in format v1.16.0 or v1.16.0-rc1 diff --git a/.github/workflows/release-build-binary.yml b/.github/workflows/release-build-binary.yml index 232bebaa..00599928 100644 --- a/.github/workflows/release-build-binary.yml +++ b/.github/workflows/release-build-binary.yml @@ -46,7 +46,7 @@ jobs: shell: bash run: | if [[ "${{ inputs.binary }}" == "pezkuwi-teyrchain" ]]; then - echo "RUNNER=kurdistan-tech-large" >> $GITHUB_OUTPUT + echo "RUNNER=pezkuwichain-large" >> $GITHUB_OUTPUT else echo "RUNNER=ubuntu-latest" >> $GITHUB_OUTPUT fi diff --git a/.github/workflows/release-clobber-stable.yml b/.github/workflows/release-clobber-stable.yml index 4812a4d4..46a37a54 100644 --- a/.github/workflows/release-clobber-stable.yml +++ b/.github/workflows/release-clobber-stable.yml @@ -37,7 +37,7 @@ jobs: COMMIT=$(git rev-parse tags/$AUDITED) #$(git branch --contains $COMMIT | grep -q $UNSTABLE) || (echo "The '$AUDITED' tag is not on the '$UNSTABLE' branch." && exit 1) - git config --global user.email "admin@kurdistan-tech.io" + git config --global user.email "admin@pezkuwichain.io" git config --global user.name "Kurdistan-Tech Release Team" - name: Prepare commit diff --git a/.github/workflows/release-reusable-rc-build.yml b/.github/workflows/release-reusable-rc-build.yml index cd3f2e3e..b4e62844 100644 --- a/.github/workflows/release-reusable-rc-build.yml +++ b/.github/workflows/release-reusable-rc-build.yml @@ -167,7 +167,7 @@ jobs: - name: Set workspace environment variable # relevant for artifacts upload, which can not interpolate Github Action variable syntax when # used within valid paths. We can not use root-based paths either, since it is set as read-only - # on the `kurdistan-tech-macos` runner. + # on the `pezkuwichain-macos` runner. run: echo "ARTIFACTS_PATH=${GITHUB_WORKSPACE}/artifacts/${{ matrix.binaries }}" >> $GITHUB_ENV - name: Set up Homebrew diff --git a/.github/workflows/reusable-preflight.yml b/.github/workflows/reusable-preflight.yml index 609112fc..80bfe863 100644 --- a/.github/workflows/reusable-preflight.yml +++ b/.github/workflows/reusable-preflight.yml @@ -38,7 +38,7 @@ on: RUNNER_OLDLINUX: value: ${{ jobs.preflight.outputs.RUNNER_OLDLINUX }} description: | - kurdistan-tech-oldlinux + pezkuwichain-oldlinux By default we use spot machines that can be terminated at any time. Merge queues use persistent runners to avoid kicking off from queue when the runner is terminated. # New is used only during transition to the new runners @@ -51,7 +51,7 @@ on: RUNNER_OLDLINUX_NEW: value: ${{ jobs.preflight.outputs.RUNNER_OLDLINUX_NEW }} description: | - kurdistan-tech-oldlinux + pezkuwichain-oldlinux By default we use spot machines that can be terminated at any time. Merge queues use persistent runners to avoid kicking off from queue when the runner is terminated. RUNNER_DEFAULT: diff --git a/README.md b/README.md index 7282ba0a..3f5a5caa 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# Kurdistan SDK — Sovereign Blockchain Infrastructure +# Pezkuwi SDK — Sovereign Blockchain Infrastructure **Developed and maintained by Kurdistan Tech Institute** -Kurdistan SDK is a fully independent blockchain development framework, providing all the tools needed to build sovereign, interoperable blockchain networks for stateless nations and distributed communities. +Pezkuwi SDK is a fully independent blockchain development framework, providing all the tools needed to build sovereign, interoperable blockchain networks for stateless nations and distributed communities. --- ## Origin -Kurdistan SDK originated as a fork of Polkadot SDK (stable2512). It has since been completely rebranded and restructured as an independent project under Kurdistan Tech Institute stewardship. All crate names, dependencies, and documentation have been updated to reflect this independence. +Pezkuwi SDK originated as a fork of Polkadot SDK (stable2512). It has since been completely rebranded and restructured as an independent project under Kurdistan Tech Institute stewardship. All crate names, dependencies, and documentation have been updated to reflect this independence. --- @@ -16,12 +16,12 @@ Kurdistan SDK originated as a fork of Polkadot SDK (stable2512). It has since be ``` ┌─────────────────────────────────────────────────────────────┐ -│ Kurdistan SDK Ecosystem │ +│ Pezkuwi SDK Ecosystem │ ├─────────────────────────────────────────────────────────────┤ │ │ │ ┌─────────────────────┐ ┌─────────────────────────┐ │ │ │ Bizinikiwi │ │ PezCumulus │ │ -│ │ (Core Framework) │ │ (Parachain SDK) │ │ +│ │ (Core Framework) │ │ (TeyrChain SDK) │ │ │ │ │ │ │ │ │ │ • Runtime Engine │ │ • Collator Framework │ │ │ │ • Consensus │ │ • XCM Integration │ │ @@ -31,7 +31,7 @@ Kurdistan SDK originated as a fork of Polkadot SDK (stable2512). It has since be │ └──────────┬───────────────┘ │ │ │ │ │ ┌──────────▼───────────┐ │ -│ │ KurdistanChain │ │ +│ │ PezkuwiChain │ │ │ │ (Reference Impl) │ │ │ │ • TeyrChain │ │ │ │ • Zagros Runtime │ │ @@ -43,12 +43,12 @@ Kurdistan SDK originated as a fork of Polkadot SDK (stable2512). It has since be ## Crate Naming Convention -Kurdistan SDK uses a distinct naming scheme to ensure complete independence: +Pezkuwi SDK uses a distinct naming scheme to ensure complete independence: | Component | Prefix | Example | |-----------|--------|---------| -| Core Framework (ex-Bizinikiwi) | `bizinikiwi-` | `bizinikiwi-runtime` | -| Parachain SDK (ex-Pezcumulus) | `pezcumulus-` | `pezcumulus-client` | +| Core Framework | `bizinikiwi-` | `bizinikiwi-runtime` | +| TeyrChain SDK | `pezcumulus-` | `pezcumulus-client` | | Client Crates | `pezsc-` | `pezsc-network`, `pezsc-consensus` | | Primitives | `pezsp-` | `pezsp-runtime`, `pezsp-core` | | Framework | `pezframe-` | `pezframe-support`, `pezframe-system` | @@ -57,9 +57,9 @@ Kurdistan SDK uses a distinct naming scheme to ensure complete independence: --- -## KurdistanChain — Reference Implementation +## PezkuwiChain — Reference Implementation -KurdistanChain is the flagship blockchain built on Kurdistan SDK, designed for Kurdish digital sovereignty. +PezkuwiChain is the flagship blockchain built on Pezkuwi SDK, designed for Kurdish digital sovereignty. ### Token Economics @@ -75,7 +75,7 @@ KurdistanChain is the flagship blockchain built on Kurdistan SDK, designed for K ### Custom Pallets -| Pezpallet | Purpose | +| Pallet | Purpose | |--------|---------| | `pezpallet-presale` | Multi-round token launches with vesting | | `pezpallet-identity-kyc` | Decentralized identity verification | @@ -99,70 +99,6 @@ Trust-enhanced Nominated Proof-of-Stake combines: --- -## Quick Start - -```bash -# Clone repository -git clone https://github.com/pezkuwichain/kurdistan-sdk.git -cd kurdistan-sdk - -# Build release -cargo build --release - -# Build with benchmarks -cargo build --release --features runtime-benchmarks - -# Run development node -./target/release/kurdistan-node --dev -``` - ---- - -## Documentation - -| Resource | URL | -|----------|-----| -| Main Docs | [docs.pezkuwichain.io](https://docs.pezkuwichain.io) | -| API Reference | [api.pezkuwichain.io](https://api.pezkuwichain.io) | -| Website | [pezkuwichain.io](https://pezkuwichain.io) | - ---- - -## Community - -| Platform | Link | -|----------|------| -| Telegram | [@pezkuwichain](https://t.me/pezkuwichain) | -| Discord | [discord.gg/pezkuwichain](https://discord.gg/pezkuwichain) | -| Twitter | [@pezkuwichain](https://twitter.com/pezkuwichain) | -| GitHub | [github.com/pezkuwichain](https://github.com/pezkuwichain) | - ---- - -## Contributing - -Kurdistan SDK is developed by Kurdistan Tech Institute with community contributions. - -See [CONTRIBUTING.md](./docs/contributor/CONTRIBUTING.md) for guidelines. - ---- - -## License - -Kurdistan SDK is licensed under Apache 2.0. See [LICENSE](./LICENSE) for details. - ---- - -
- -**Kurdistan Tech Institute** - -*Building sovereign infrastructure for stateless nations* - -
-``` - - ## TNPoS Consensus — World's First Trust-Augmented PoS **Trust-enhanced Nominated Proof-of-Stake** combines: @@ -171,10 +107,10 @@ Kurdistan SDK is licensed under Apache 2.0. See [LICENSE](./LICENSE) for details - **Performance Metrics**: Uptime, finality participation, historical behavior **Key Innovations**: -- 🔬 First implementation of social trust in consensus (academic contribution) -- 🏛️ Parliamentary NFT System: 201 non-transferable governance seats -- 🔐 Sybil-resistant via citizenship verification (Tiki pezpallet) -- 📊 Multi-dimensional validator scoring +- First implementation of social trust in consensus (academic contribution) +- Parliamentary NFT System: 201 non-transferable governance seats +- Sybil-resistant via citizenship verification (Tiki pallet) +- Multi-dimensional validator scoring --- @@ -185,7 +121,7 @@ Polkadot Asset Hub (USDT) │ │ XCM Reserve Transfer ▼ -TeyrChain Parachain +TeyrChain (Parachain) │ ├─► Presale contributions ├─► DEX trading (future) @@ -203,9 +139,9 @@ TeyrChain Parachain | Stage | Validators | Status | |-------|------------|--------| -| Dev Mode | 1 | | -| Local Testnet | 2 | | -| **Alfa Testnet** | 4 | | +| Dev Mode | 1 | ✅ | +| Local Testnet | 2 | ✅ | +| **Alfa Testnet** | 4 | ✅ | | Beta Testnet | 8 | Q1 2026 | | Staging | 20 | Q1 2026 | | **Mainnet** | 100 | Q2 2026 | @@ -214,7 +150,7 @@ TeyrChain Parachain ## Multi-Nation Platform Vision -KurdistanChain is designed to host **multiple digital nations** simultaneously: +PezkuwiChain is designed to host **multiple digital nations** simultaneously: | Nation Type | Example | Target Population | |-------------|---------|-------------------| @@ -249,8 +185,8 @@ KurdistanChain is designed to host **multiple digital nations** simultaneously: ```bash # Clone repository -git clone https://github.com/pezkuwichain/kurdistan-sdk.git -cd kurdistan-sdk +git clone https://github.com/pezkuwichain/pezkuwi-sdk.git +cd pezkuwi-sdk # Build release cargo build --release @@ -259,7 +195,7 @@ cargo build --release cargo build --release --features runtime-benchmarks # Run local testnet -./target/release/kurdistan-node --dev +./target/release/pezkuwi-node --dev ``` --- @@ -283,105 +219,99 @@ cargo build --release --features runtime-benchmarks | Twitter | [@pezkuwichain](https://twitter.com/pezkuwichain) | | GitHub | [github.com/pezkuwichain](https://github.com/pezkuwichain) | | Medium | [@pezkuwichain](https://medium.com/@pezkuwichain) | -| Facebook | [KurdistanChain](https://www.facebook.com/profile.php?id=61582484611719) | +| Facebook | [PezkuwiChain](https://www.facebook.com/profile.php?id=61582484611719) | ---
-![SDK Logo](./docs/images/Kurdistan_Logo_Horizontal_Pink_White.png#gh-dark-mode-only) -![SDK Logo](./docs/images/Kurdistan_Logo_Horizontal_Pink_Black.png#gh-light-mode-only) +![SDK Logo](./docs/images/Pezkuwi_Logo_Horizontal_Pink_White.png#gh-dark-mode-only) +![SDK Logo](./docs/images/Pezkuwi_Logo_Horizontal_Pink_Black.png#gh-light-mode-only) -# Kurdistan SDK +# Pezkuwi SDK -![GitHub stars](https://img.shields.io/github/stars/pezkuwichain/kurdistan-sdk)  ![GitHub -forks](https://img.shields.io/github/forks/pezkuwichain/kurdistan-sdk) +![GitHub stars](https://img.shields.io/github/stars/pezkuwichain/pezkuwi-sdk)  ![GitHub forks](https://img.shields.io/github/forks/pezkuwichain/pezkuwi-sdk) -[![StackExchange](https://img.shields.io/badge/StackExchange-Community%20&%20Support-222222?logo=stackexchange)](https://pezkuwichain.app/community)  ![GitHub contributors](https://img.shields.io/github/contributors/pezkuwichain/kurdistan-sdk)  ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/pezkuwichain/kurdistan-sdk)  ![GitHub last commit](https://img.shields.io/github/last-commit/pezkuwichain/kurdistan-sdk) +[![StackExchange](https://img.shields.io/badge/StackExchange-Community%20&%20Support-222222?logo=stackexchange)](https://pezkuwichain.app/community)  ![GitHub contributors](https://img.shields.io/github/contributors/pezkuwichain/pezkuwi-sdk)  ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/pezkuwichain/pezkuwi-sdk)  ![GitHub last commit](https://img.shields.io/github/last-commit/pezkuwichain/pezkuwi-sdk) -> The Kurdistan SDK repository provides all the components needed to start building on the -> [KurdistanChain](https://pezkuwichain.app/) network, a multi-chain blockchain platform that enables +> The Pezkuwi SDK repository provides all the components needed to start building on the +> [PezkuwiChain](https://pezkuwichain.app/) network, a multi-chain blockchain platform that enables > different blockchains to interoperate and share information in a secure and scalable way.
-## ⚡ Quickstart +## Quickstart + If you want to get an example node running quickly you can execute the following getting started script: -``` -curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/pezkuwichain/kurdistan-sdk/master/scripts/getting-started.sh | bash +```bash +curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/pezkuwichain/pezkuwi-sdk/master/scripts/getting-started.sh | bash ``` -## 👩🏽‍💻 Building +## Building -In order to build this project you need to install some dependencies, follow the instructions in [this guide](https://docs.pezkuwichain.io/develop/teyrchains/install-kurdistan-sdk). +In order to build this project you need to install some dependencies, follow the instructions in [this guide](https://docs.pezkuwichain.io/develop/teyrchains/install-pezkuwi-sdk). -## 📚 Documentation +## Documentation -- [Kurdistan Documentation Portal](https://docs.pezkuwichain.io) -- [rust-docs](https://pezkuwichain.github.io/kurdistan-sdk/master/kurdistan_sdk_docs/index.html): Where we keep track of -the API docs of our Rust crates. Includes: - - [Introduction](https://pezkuwichain.github.io/kurdistan-sdk/master/kurdistan_sdk_docs/kurdistan_sdk/index.html) - to each component of the Kurdistan SDK: Substrate, FRAME, Cumulus, and XCM - - [Guides](https://pezkuwichain.github.io/kurdistan-sdk/master/kurdistan_sdk_docs/guides/index.html), - namely how to build your first FRAME pezpallet - - [Templates](https://pezkuwichain.github.io/kurdistan-sdk/master/kurdistan_sdk_docs/kurdistan_sdk/templates/index.html) - for starting a new project. - - [External Resources](https://pezkuwichain.github.io/kurdistan-sdk/master/kurdistan_sdk_docs/external_resources/index.html) -- Have a question? You can ask in the Kurdistan SDK Developers Chat. -Messages from either of these channels are bridged to the other, so you can use whichever one you like. +- [Pezkuwi Documentation Portal](https://docs.pezkuwichain.io) +- [rust-docs](https://pezkuwichain.github.io/pezkuwi-sdk/master/pezkuwi_sdk_docs/index.html): Where we keep track of the API docs of our Rust crates. Includes: + - [Introduction](https://pezkuwichain.github.io/pezkuwi-sdk/master/pezkuwi_sdk_docs/pezkuwi_sdk/index.html) to each component of the Pezkuwi SDK: Bizinikiwi, FRAME, PezCumulus, and XCM + - [Guides](https://pezkuwichain.github.io/pezkuwi-sdk/master/pezkuwi_sdk_docs/guides/index.html), namely how to build your first FRAME pallet + - [Templates](https://pezkuwichain.github.io/pezkuwi-sdk/master/pezkuwi_sdk_docs/pezkuwi_sdk/templates/index.html) for starting a new project. + - [External Resources](https://pezkuwichain.github.io/pezkuwi-sdk/master/pezkuwi_sdk_docs/external_resources/index.html) +- Have a question? You can ask in the Pezkuwi SDK Developers Chat. - [Telegram](https://t.me/DKSPezkuwiChain) - [Matrix](https://matrix.to/#/#pezkuwidevs:matrix.org) - [Discord](https://discord.gg/Y3VyEC6h8W) - - [Kurdistan and Substrate StackExchange](https://pezkuwichain.io/forum) + - [Pezkuwi StackExchange](https://pezkuwichain.io/forum) -## 🚀 Releases +## Releases -![Current Stable Release](https://raw.githubusercontent.com/pezkuwichain/release-registry/main/badges/kurdistan-sdk-latest.svg)  ![Next Stable Release](https://raw.githubusercontent.com/pezkuwichain/release-registry/main/badges/kurdistan-sdk-next.svg) +![Current Stable Release](https://raw.githubusercontent.com/pezkuwichain/release-registry/main/badges/pezkuwi-sdk-latest.svg)  ![Next Stable Release](https://raw.githubusercontent.com/pezkuwichain/release-registry/main/badges/pezkuwi-sdk-next.svg) -The Kurdistan SDK is released every three months as a `Kurdistan stableYYMM` release. Each stable release is supported for -one year with patches. See the next upcoming versions in the [Release -Registry](https://github.com/pezkuwichain/release-registry/) and more docs in [RELEASE.md](./docs/RELEASE.md). +The Pezkuwi SDK is released every three months as a `Pezkuwi stableYYMM` release. Each stable release is supported for one year with patches. See the next upcoming versions in the [Release Registry](https://github.com/pezkuwichain/release-registry/) and more docs in [RELEASE.md](./docs/RELEASE.md). -You can use [`psvm`](https://github.com/pezkuwichain/psvm) to update all dependencies to a specific -version without needing to manually select the correct version for each crate. +You can use [`psvm`](https://github.com/pezkuwichain/psvm) to update all dependencies to a specific version without needing to manually select the correct version for each crate. -## 🛠️ Tooling +## Tooling -[Kurdistan SDK Version Manager](https://github.com/pezkuwichain/psvm): -A simple tool to manage and update the Kurdistan SDK dependencies in any Cargo.toml file. -It will automatically update the Kurdistan SDK dependencies to their correct crates.io version. +[Pezkuwi SDK Version Manager](https://github.com/pezkuwichain/psvm): A simple tool to manage and update the Pezkuwi SDK dependencies in any Cargo.toml file. It will automatically update the Pezkuwi SDK dependencies to their correct crates.io version. -## 🔐 Security +## Security -The security policy and procedures can be found in -[docs/contributor/SECURITY.md](./docs/contributor/SECURITY.md). +The security policy and procedures can be found in [docs/contributor/SECURITY.md](./docs/contributor/SECURITY.md). -## 🤍 Contributing & Code of Conduct +## Contributing & Code of Conduct -Ensure you follow our [contribution guidelines](./docs/contributor/CONTRIBUTING.md). In every -interaction and contribution, this project adheres to the [Contributor Covenant Code of -Conduct](./docs/contributor/CODE_OF_CONDUCT.md). +Ensure you follow our [contribution guidelines](./docs/contributor/CONTRIBUTING.md). In every interaction and contribution, this project adheres to the [Contributor Covenant Code of Conduct](./docs/contributor/CODE_OF_CONDUCT.md). -### 👾 Ready to Contribute? +### Ready to Contribute? -Take a look at the issues labeled with [`mentor`](https://github.com/pezkuwichain/kurdistan-sdk/labels/C1-mentor) -(or alternatively [this](https://mentor.tasty.limo/) page, created by one of the maintainers) label to get started! -We always recognize valuable contributions by proposing an on-chain tip to the KurdistanChain network as a token of our -appreciation. +Take a look at the issues labeled with [`mentor`](https://github.com/pezkuwichain/pezkuwi-sdk/labels/C1-mentor) (or alternatively [this](https://mentor.tasty.limo/) page, created by one of the maintainers) label to get started! We always recognize valuable contributions by proposing an on-chain tip to the PezkuwiChain network as a token of our appreciation. -## Kurdistan Fellowship +## Pezkuwi Fellowship -Development in this repo usually goes hand in hand with the `fellowship` organization. In short, -this repository provides all the SDK pieces needed to build both KurdistanChain and its teyrchains. But, -the actual KurdistanChain runtime lives in the `fellowship/runtimes` repository. Read more about the -fellowship, this separation, the RFC process -[here](https://kurdistan-fellows.github.io/dashboard/). +Development in this repo usually goes hand in hand with the `fellowship` organization. In short, this repository provides all the SDK pieces needed to build both PezkuwiChain and its teyrchains. But, the actual PezkuwiChain runtime lives in the `fellowship/runtimes` repository. Read more about the fellowship, this separation, the RFC process [here](https://pezkuwi-fellows.github.io/dashboard/). ## History -This repository is the amalgamation of 3 separate repositories that used to make up Kurdistan SDK, -namely Substrate, Kurdistan and Cumulus. Read more about the merge and its history -[here](https://kurdistan-public.notion.site/Kurdistan-SDK-FAQ-fbc4cecc2c46443fb37b9eeec2f0d85f). \ No newline at end of file +This repository is the amalgamation of 3 separate repositories that used to make up Pezkuwi SDK, namely Bizinikiwi, Pezkuwi and PezCumulus. Read more about the merge and its history [here](https://pezkuwi-public.notion.site/Pezkuwi-SDK-FAQ-fbc4cecc2c46443fb37b9eeec2f0d85f). + +--- + +## License + +Pezkuwi SDK is licensed under Apache 2.0. See [LICENSE](./LICENSE) for details. + +--- + +
+ +**Kurdistan Tech Institute** + +*Building sovereign infrastructure for stateless nations* + +
diff --git a/bizinikiwi/bin/node/rpc/src/lib.rs b/bizinikiwi/bin/node/rpc/src/lib.rs index d36bbd72..2f77f726 100644 --- a/bizinikiwi/bin/node/rpc/src/lib.rs +++ b/bizinikiwi/bin/node/rpc/src/lib.rs @@ -177,7 +177,7 @@ where io.merge(System::new(client.clone(), pool).into_rpc())?; // Making synchronous calls in light client freezes the browser currently, - // more context: https://github.com/pezkuwichain/kurdistan-sdk/issues/53 + // more context: https://github.com/pezkuwichain/pezkuwi-sdk/issues/53 // These RPCs should use an asynchronous caller instead. io.merge( Mmr::new( diff --git a/bizinikiwi/bin/utils/pez-subkey/README.md b/bizinikiwi/bin/utils/pez-subkey/README.md index 9f9e68e1..f59a83bf 100644 --- a/bizinikiwi/bin/utils/pez-subkey/README.md +++ b/bizinikiwi/bin/utils/pez-subkey/README.md @@ -33,7 +33,7 @@ Command: ```bash # Install only `pez_subkey`, at a specific version of the pez_subkey crate -cargo install --force pez_subkey --git https://github.com/pezkuwichain/kurdistan-sdk --version --locked +cargo install --force pez_subkey --git https://github.com/pezkuwichain/pezkuwi-sdk --version --locked # If you run into issues building, you likely are missing deps defined in https://docs.pezkuwichain.io/install/ ``` diff --git a/bizinikiwi/bin/utils/pez-subkey/src/lib.rs b/bizinikiwi/bin/utils/pez-subkey/src/lib.rs index 98684499..2f61a5b0 100644 --- a/bizinikiwi/bin/utils/pez-subkey/src/lib.rs +++ b/bizinikiwi/bin/utils/pez-subkey/src/lib.rs @@ -54,7 +54,7 @@ //! //! ```bash //! # Install only `pez_subkey`, at a specific version of the pez_subkey crate -//! cargo install --force pez_subkey --git https://github.com/pezkuwichain/kurdistan-sdk --version --locked +//! cargo install --force pez_subkey --git https://github.com/pezkuwichain/pezkuwi-sdk --version --locked //! # If you run into issues building, you likely are missing deps defined in https://docs.pezkuwichain.io/install/ //! ``` //! diff --git a/bizinikiwi/client/api/src/client.rs b/bizinikiwi/client/api/src/client.rs index b7ce050c..eb8617f1 100644 --- a/bizinikiwi/client/api/src/client.rs +++ b/bizinikiwi/client/api/src/client.rs @@ -73,7 +73,7 @@ pub trait BlockchainEvents { /// /// The events for this notification stream are emitted: /// - During initial sync process: if there is a re-org while importing blocks. See - /// [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/60#issuecomment-694091901) for the + /// [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/60#issuecomment-694091901) for the /// rationale behind this. /// - After initial sync process: on every imported block, regardless of whether it is /// the new best block or not, causes a re-org or not. diff --git a/bizinikiwi/client/consensus/aura/src/lib.rs b/bizinikiwi/client/consensus/aura/src/lib.rs index 0f8a8f65..310384a6 100644 --- a/bizinikiwi/client/consensus/aura/src/lib.rs +++ b/bizinikiwi/client/consensus/aura/src/lib.rs @@ -85,7 +85,7 @@ pub enum CompatibilityMode { /// Call `initialize_block` before doing any runtime calls. /// /// Previously the node would execute `initialize_block` before fetching the authorities - /// from the runtime. This behaviour changed in: + /// from the runtime. This behaviour changed in: /// /// By calling `initialize_block` before fetching the authorities, on a block that /// would enact a new validator set, the block would already be build/sealed by an diff --git a/bizinikiwi/client/consensus/beefy/README.md b/bizinikiwi/client/consensus/beefy/README.md index 5f79b410..865ac8c8 100644 --- a/bizinikiwi/client/consensus/beefy/README.md +++ b/bizinikiwi/client/consensus/beefy/README.md @@ -332,7 +332,7 @@ The current cryptographic scheme used by BEEFY is `ecdsa`. This is **different** schemes like `sr25519` and `ed25519` which are commonly used in Bizinikiwi configurations for other pallets (BABE, GRANDPA, AuRa, etc). The most noticeable difference is that an `ecdsa` public key is `33` bytes long, instead of `32` bytes for a `sr25519` based public key. So, a -BEEFY key [sticks out](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/node/service/src/chain_spec.rs#L738) +BEEFY key [sticks out](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/node/service/src/chain_spec.rs#L738) among the other public keys a bit. For other crypto (using the default Bizinikiwi configuration) the `AccountId` (32-bytes) matches diff --git a/bizinikiwi/client/db/src/lib.rs b/bizinikiwi/client/db/src/lib.rs index 26e04813..5551ba04 100644 --- a/bizinikiwi/client/db/src/lib.rs +++ b/bizinikiwi/client/db/src/lib.rs @@ -381,7 +381,7 @@ impl DatabaseSource { /// Return path for databases that are stored on disk. pub fn path(&self) -> Option<&Path> { match self { - // as per https://github.com/pezkuwichain/kurdistan-sdk/issues/78#discussion_r684312550 + // as per https://github.com/pezkuwichain/pezkuwi-sdk/issues/78#discussion_r684312550 // // IIUC this is needed for pezkuwi to create its own dbs, so until it can use parity db // I would think rocksdb, but later parity-db. diff --git a/bizinikiwi/client/executor/src/integration_tests/mod.rs b/bizinikiwi/client/executor/src/integration_tests/mod.rs index e8500d4d..556d6fd1 100644 --- a/bizinikiwi/client/executor/src/integration_tests/mod.rs +++ b/bizinikiwi/client/executor/src/integration_tests/mod.rs @@ -492,7 +492,7 @@ fn returns_mutable_static_bss(wasm_method: WasmExecutionMethod) { // If we didn't restore the wasm instance properly, on a trap the stack pointer would not be // returned to its initial value and thus the stack space is going to be leaked. // -// See https://github.com/pezkuwichain/kurdistan-sdk/issues/23 for details +// See https://github.com/pezkuwichain/pezkuwi-sdk/issues/23 for details test_wasm_execution!(restoration_of_globals); fn restoration_of_globals(wasm_method: WasmExecutionMethod) { // Allocate 32 pages (of 65536 bytes) which gives the runtime 2048KB of heap to operate on diff --git a/bizinikiwi/client/network-gossip/src/bridge.rs b/bizinikiwi/client/network-gossip/src/bridge.rs index 8ad8f0b1..72bd4c8d 100644 --- a/bizinikiwi/client/network-gossip/src/bridge.rs +++ b/bizinikiwi/client/network-gossip/src/bridge.rs @@ -577,7 +577,7 @@ mod tests { /// Regression test for the case where the `GossipEngine.network_event_stream` closes. One /// should not ignore a `Poll::Ready(None)` as `poll_next_unpin` will panic on subsequent calls. /// - /// See https://github.com/pezkuwichain/kurdistan-sdk/issues/25 for details. + /// See https://github.com/pezkuwichain/pezkuwi-sdk/issues/25 for details. #[test] fn returns_when_network_event_stream_closes() { let network = TestNetwork::default(); diff --git a/bizinikiwi/client/network-gossip/src/state_machine.rs b/bizinikiwi/client/network-gossip/src/state_machine.rs index 4ed53073..f9a09acd 100644 --- a/bizinikiwi/client/network-gossip/src/state_machine.rs +++ b/bizinikiwi/client/network-gossip/src/state_machine.rs @@ -28,7 +28,7 @@ use pezsp_runtime::traits::{Block as BlockT, Hash, HashingFor}; use prometheus_endpoint::{register, Counter, PrometheusError, Registry, U64}; use std::{collections::HashMap, iter, sync::Arc, time, time::Instant}; -// FIXME: Add additional spam/DoS attack protection: https://github.com/pezkuwichain/kurdistan-sdk/issues/7 +// FIXME: Add additional spam/DoS attack protection: https://github.com/pezkuwichain/pezkuwi-sdk/issues/7 // NOTE: The current value is adjusted based on largest production network deployment (Kusama) and // the current main gossip user (GRANDPA). Currently there are ~800 validators on Kusama, as such, // each GRANDPA round should generate ~1600 messages, and we currently keep track of the last 2 diff --git a/bizinikiwi/client/network/src/litep2p/service.rs b/bizinikiwi/client/network/src/litep2p/service.rs index 519f1696..7f327f97 100644 --- a/bizinikiwi/client/network/src/litep2p/service.rs +++ b/bizinikiwi/client/network/src/litep2p/service.rs @@ -360,9 +360,9 @@ impl NetworkStatusProvider for Litep2pNetworkService { connected_peers: HashMap::new(), not_connected_peers: HashMap::new(), // TODO: Check what info we can include here. - // Issue reference: https://github.com/pezkuwichain/kurdistan-sdk/issues/15. + // Issue reference: https://github.com/pezkuwichain/pezkuwi-sdk/issues/15. peerset: serde_json::json!( - "Unimplemented. See https://github.com/pezkuwichain/kurdistan-sdk/issues/15." + "Unimplemented. See https://github.com/pezkuwichain/pezkuwi-sdk/issues/15." ), }) } diff --git a/bizinikiwi/client/network/src/protocol/message.rs b/bizinikiwi/client/network/src/protocol/message.rs index 3ee257aa..61af05e3 100644 --- a/bizinikiwi/client/network/src/protocol/message.rs +++ b/bizinikiwi/client/network/src/protocol/message.rs @@ -61,9 +61,9 @@ pub mod generic { } /// Status sent on connection. - // TODO https://github.com/pezkuwichain/kurdistan-sdk/issues/24: replace the `Status` + // TODO https://github.com/pezkuwichain/pezkuwi-sdk/issues/24: replace the `Status` // struct with this one, after waiting a few releases beyond `NetworkSpecialization`'s - // removal (https://github.com/pezkuwichain/kurdistan-sdk/issues/55) + // removal (https://github.com/pezkuwichain/pezkuwi-sdk/issues/55) // // and set MIN_VERSION to 6. #[derive(Debug, PartialEq, Eq, Clone, Encode, Decode)] diff --git a/bizinikiwi/client/network/src/protocol/notifications/tests/conformance.rs b/bizinikiwi/client/network/src/protocol/notifications/tests/conformance.rs index 2a7cb3a7..959f5ba2 100644 --- a/bizinikiwi/client/network/src/protocol/notifications/tests/conformance.rs +++ b/bizinikiwi/client/network/src/protocol/notifications/tests/conformance.rs @@ -106,7 +106,7 @@ fn setup_libp2p( .with_substream_upgrade_protocol_override(upgrade::Version::V1) .with_notify_handler_buffer_size(NonZeroUsize::new(32).expect("32 != 0; qed")) // NOTE: 24 is somewhat arbitrary and should be tuned in the future if - // necessary. See + // necessary. See .with_per_connection_event_buffer_size(24) .with_max_negotiating_inbound_streams(2048) .with_idle_connection_timeout(Duration::from_secs(5)); diff --git a/bizinikiwi/client/network/src/protocol/notifications/tests/mod.rs b/bizinikiwi/client/network/src/protocol/notifications/tests/mod.rs index 1bce758c..117031aa 100644 --- a/bizinikiwi/client/network/src/protocol/notifications/tests/mod.rs +++ b/bizinikiwi/client/network/src/protocol/notifications/tests/mod.rs @@ -350,7 +350,7 @@ async fn reconnect_after_disconnect() { // Due to the bug in `Notifications`, the disconnected node does not always detect that // it was disconnected. The closed inbound substream is tolerated by design, and the // closed outbound substream is not detected until something is sent into it. - // See [PR #13396](https://github.com/pezkuwichain/kurdistan-sdk/issues/45). + // See [PR #13396](https://github.com/pezkuwichain/pezkuwi-sdk/issues/45). // This happens if the disconnecting node reconnects to it fast enough. // In this case the disconnected node does not transit via `ServiceState::NotConnected` // and stays in `ServiceState::FirstConnec`. diff --git a/bizinikiwi/client/network/src/service.rs b/bizinikiwi/client/network/src/service.rs index 170f307b..8eddad1c 100644 --- a/bizinikiwi/client/network/src/service.rs +++ b/bizinikiwi/client/network/src/service.rs @@ -546,7 +546,7 @@ where .with_substream_upgrade_protocol_override(upgrade::Version::V1) .with_notify_handler_buffer_size(NonZeroUsize::new(32).expect("32 != 0; qed")) // NOTE: 24 is somewhat arbitrary and should be tuned in the future if - // necessary. See + // necessary. See .with_per_connection_event_buffer_size(24) .with_max_negotiating_inbound_streams(2048) .with_idle_connection_timeout(network_config.idle_connection_timeout); @@ -768,9 +768,9 @@ where connected_peers, not_connected_peers, // TODO: Check what info we can include here. - // Issue reference: https://github.com/pezkuwichain/kurdistan-sdk/issues/15. + // Issue reference: https://github.com/pezkuwichain/pezkuwi-sdk/issues/15. peerset: serde_json::json!( - "Unimplemented. See https://github.com/pezkuwichain/kurdistan-sdk/issues/15." + "Unimplemented. See https://github.com/pezkuwichain/pezkuwi-sdk/issues/15." ), } } @@ -1639,11 +1639,11 @@ where // reopened. // The code below doesn't compile because `role` is unknown. Propagating the // handshake of the secondary connections is quite an invasive change and - // would conflict with https://github.com/pezkuwichain/kurdistan-sdk/issues/27. + // would conflict with https://github.com/pezkuwichain/pezkuwi-sdk/issues/27. // Considering that dropping notifications is generally regarded as // acceptable, this bug is at the moment intentionally left there and is // intended to be fixed at the same time as - // https://github.com/pezkuwichain/kurdistan-sdk/issues/27. + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/27. // self.event_streams.send(Event::NotificationStreamClosed { // remote, // protocol, diff --git a/bizinikiwi/client/network/sync/src/block_request_handler.rs b/bizinikiwi/client/network/sync/src/block_request_handler.rs index 50e8d615..dc6b14e5 100644 --- a/bizinikiwi/client/network/sync/src/block_request_handler.rs +++ b/bizinikiwi/client/network/sync/src/block_request_handler.rs @@ -386,7 +386,7 @@ where // receiving we need to add the engine ID tag. // The ID tag is hardcoded here to avoid depending on the GRANDPA crate, and // will be removed once we remove the backwards compatibility. - // See: https://github.com/pezkuwichain/kurdistan-sdk/issues/32 + // See: https://github.com/pezkuwichain/pezkuwi-sdk/issues/32 let justification = justifications.and_then(|just| just.into_justification(*b"FRNK")); diff --git a/bizinikiwi/client/network/sync/src/strategy/chain_sync.rs b/bizinikiwi/client/network/sync/src/strategy/chain_sync.rs index c3f30105..21f288d6 100644 --- a/bizinikiwi/client/network/sync/src/strategy/chain_sync.rs +++ b/bizinikiwi/client/network/sync/src/strategy/chain_sync.rs @@ -2075,7 +2075,7 @@ where // This is purely during a backwards compatible transitionary period and should be removed // once we can assume all nodes can send and receive multiple Justifications // The ID tag is hardcoded here to avoid depending on the GRANDPA crate. -// See: https://github.com/pezkuwichain/kurdistan-sdk/issues/32 +// See: https://github.com/pezkuwichain/pezkuwi-sdk/issues/32 fn legacy_justification_mapping( justification: Option, ) -> Option { diff --git a/bizinikiwi/client/network/test/src/sync.rs b/bizinikiwi/client/network/test/src/sync.rs index b8fdc851..dfeef79f 100644 --- a/bizinikiwi/client/network/test/src/sync.rs +++ b/bizinikiwi/client/network/test/src/sync.rs @@ -549,7 +549,7 @@ async fn can_sync_explicit_forks() { // TODO: for unknown reason, this test is flaky on a multithreaded runtime, so we run it // in a single-threaded mode. -// See issue https://github.com/pezkuwichain/kurdistan-sdk/issues/20. +// See issue https://github.com/pezkuwichain/pezkuwi-sdk/issues/20. #[tokio::test] async fn syncs_header_only_forks() { pezsp_tracing::try_init_simple(); diff --git a/bizinikiwi/client/rpc-api/src/system/mod.rs b/bizinikiwi/client/rpc-api/src/system/mod.rs index 4e7f0484..643cc0aa 100644 --- a/bizinikiwi/client/rpc-api/src/system/mod.rs +++ b/bizinikiwi/client/rpc-api/src/system/mod.rs @@ -76,8 +76,8 @@ pub trait SystemApi { /// /// **Warning**: This API is not stable. Please do not programmatically interpret its output, /// as its format might change at any time. - // TODO: the future of this call is uncertain: https://github.com/pezkuwichain/kurdistan-sdk/issues/22 - // https://github.com/pezkuwichain/kurdistan-sdk/issues/26 + // TODO: the future of this call is uncertain: https://github.com/pezkuwichain/pezkuwi-sdk/issues/22 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/26 #[method(name = "system_unstable_networkState", with_extensions)] async fn system_network_state(&self) -> Result; diff --git a/bizinikiwi/client/service/src/lib.rs b/bizinikiwi/client/service/src/lib.rs index e34b7ed2..5c906feb 100644 --- a/bizinikiwi/client/service/src/lib.rs +++ b/bizinikiwi/client/service/src/lib.rs @@ -108,7 +108,7 @@ const DEFAULT_PROTOCOL_ID: &str = "sup"; #[derive(Clone)] pub struct RpcHandlers { // This is legacy and may be removed at some point, it was for WASM stuff before smoldot was a - // thing. https://github.com/pezkuwichain/kurdistan-sdk/issues/121#discussion_r1694971805 + // thing. https://github.com/pezkuwichain/pezkuwi-sdk/issues/121#discussion_r1694971805 rpc_module: Arc>, // This can be used to introspect the port the RPC server is listening on. SDK consumers are @@ -447,7 +447,7 @@ where request_logger_limit: rpc_configuration.request_logger_limit, }; - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/12 + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/12 // // `block_in_place` is a hack to allow callers to call `block_on` prior to // calling `start_rpc_servers`. diff --git a/bizinikiwi/client/transaction-pool/tests/zombienet/yap_test.rs b/bizinikiwi/client/transaction-pool/tests/zombienet/yap_test.rs index 201a43d9..0f6fa21f 100644 --- a/bizinikiwi/client/transaction-pool/tests/zombienet/yap_test.rs +++ b/bizinikiwi/client/transaction-pool/tests/zombienet/yap_test.rs @@ -19,7 +19,7 @@ // Test inspired (copied) from: // https://github.com/pezkuwichain/pezkuwi-sdk/blob/85b71daf7aac59da4d2186b45d589c7c619f0981/polkadot/zombienet-sdk-tests/tests/elastic_scaling/slot_based_3cores.rs#L21 // and patched as in: -// https://github.com/pezkuwichain/kurdistan-sdk/issues/124#issuecomment-2808830472 +// https://github.com/pezkuwichain/pezkuwi-sdk/issues/124#issuecomment-2808830472 use crate::zombienet::{BlockSubscriptionType, NetworkSpawner, ScenarioBuilderSharedParams}; use pezcumulus_zombienet_sdk_helpers::create_assign_core_call; diff --git a/bizinikiwi/docs/CHANGELOG.md b/bizinikiwi/docs/CHANGELOG.md index 756f478a..bc1d2aee 100644 --- a/bizinikiwi/docs/CHANGELOG.md +++ b/bizinikiwi/docs/CHANGELOG.md @@ -160,11 +160,11 @@ board](https://github.com/paritytech/bizinikiwi/discussions). Patch release with backports to fix broken nightly builds. Namely contains backports of -* [#7381: Make Bizinikiwi compile with latest nightly](https://github.com/pezkuwichain/kurdistan-sdk/issues/66) -* [#7238: Fix compilation with environmental on latest nightly](https://github.com/pezkuwichain/kurdistan-sdk/issues/63) -* [#7395: Make benchmarks compile with latest nightly](https://github.com/pezkuwichain/kurdistan-sdk/issues/69) -* [#7838: Fix incorrect use of syn::exports](https://github.com/pezkuwichain/kurdistan-sdk/issues/72) (partially) -* [#7854: Update to futures 0.3.9](https://github.com/pezkuwichain/kurdistan-sdk/issues/73) +* [#7381: Make Bizinikiwi compile with latest nightly](https://github.com/pezkuwichain/pezkuwi-sdk/issues/66) +* [#7238: Fix compilation with environmental on latest nightly](https://github.com/pezkuwichain/pezkuwi-sdk/issues/63) +* [#7395: Make benchmarks compile with latest nightly](https://github.com/pezkuwichain/pezkuwi-sdk/issues/69) +* [#7838: Fix incorrect use of syn::exports](https://github.com/pezkuwichain/pezkuwi-sdk/issues/72) (partially) +* [#7854: Update to futures 0.3.9](https://github.com/pezkuwichain/pezkuwi-sdk/issues/73) ## 2.0.0-rc6 -> 2.0.0 – two dot 😮 @@ -390,7 +390,7 @@ Patch release with backports to fix broken nightly builds. Namely contains backp **License Changed** From this release forward, the code is released under a new – more relaxed – license scheme: Client (`pezsc-*`) is released under "GPL 3.0 or newer with the Classpath Exception", while primitives, FRAME, the pallets, utils and test-utils are released under "Apache 2.0". More details in the [Relax licensing scheme -PR](https://github.com/pezkuwichain/kurdistan-sdk/issues/56). +PR](https://github.com/pezkuwichain/pezkuwi-sdk/issues/56). ### Runtime diff --git a/bizinikiwi/docs/Upgrading-2.0-to-3.0.md b/bizinikiwi/docs/Upgrading-2.0-to-3.0.md index 828da805..f7b746d1 100644 --- a/bizinikiwi/docs/Upgrading-2.0-to-3.0.md +++ b/bizinikiwi/docs/Upgrading-2.0-to-3.0.md @@ -81,7 +81,7 @@ The same goes for all `` and alike, which simply be #### SS58 Prefix is now a runtime param -Since [#7810](https://github.com/pezkuwichain/kurdistan-sdk/issues/71) we don't define the ss58 prefix in the chainspec +Since [#7810](https://github.com/pezkuwichain/pezkuwi-sdk/issues/71) we don't define the ss58 prefix in the chainspec anymore but moved it into the runtime. Namely, `frame_system` now needs a new `SS58Prefix`, which in Bizinikiwi node we have defined for ourselves as: `pub const SS58Prefix: u8 = 42;`. Use your own chain-specific value there. @@ -195,9 +195,9 @@ And update the overall definition for weights on frame and a few related types a ##### Assets The assets pezpallet has seen a variety of changes: -- [Features needed for reserve-backed stablecoins #7152](https://github.com/pezkuwichain/kurdistan-sdk/issues/61) -- [Freeze Assets and Asset Metadata #7346](https://github.com/pezkuwichain/kurdistan-sdk/issues/64) -- [Introduces account existence providers reference counting #7363]((https://github.com/pezkuwichain/kurdistan-sdk/issues/65)) +- [Features needed for reserve-backed stablecoins #7152](https://github.com/pezkuwichain/pezkuwi-sdk/issues/61) +- [Freeze Assets and Asset Metadata #7346](https://github.com/pezkuwichain/pezkuwi-sdk/issues/64) +- [Introduces account existence providers reference counting #7363]((https://github.com/pezkuwichain/pezkuwi-sdk/issues/65)) have all altered the feature set and changed the concepts. However, it has some of the best documentation and explains the current state very well. If you are using the assets pezpallet and need to upgrade from an earlier version, we @@ -269,7 +269,7 @@ impl pallet_tips::Config for Runtime { #### `FinalityTracker` removed Finality Tracker has been removed in favor of a different approach to handle the issue in GRANDPA, [see #7228 for -details](https://github.com/pezkuwichain/kurdistan-sdk/issues/62). With latest GRANDPA this is not needed anymore and can be +details](https://github.com/pezkuwichain/pezkuwi-sdk/issues/62). With latest GRANDPA this is not needed anymore and can be removed without worry. #### (changes) Elections Phragmen @@ -309,9 +309,9 @@ adequate deposit associated with them. A number of configuration parameters has ``` **This upgrade requires storage - [migration](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/elections-phragmen/src/migrations_3_0_0.rs)**. + [migration](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/elections-phragmen/src/migrations_3_0_0.rs)**. Further details can be found in the [pezpallet-specific - changelog](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md#security). + changelog](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md#security). #### (changes) Democracy @@ -360,15 +360,15 @@ are effected by changes and how to update your code yourself. A few minor things have changed in the `cli` (compared to 2.0.1): 1. we've [replaced the newly added `BuildSyncSpec` subcommand with an RPC - API](https://github.com/pezkuwichain/kurdistan-sdk/commit/65cc9af9b8df8d36928f6144ee7474cefbd70454#diff-c57da6fbeff8c46ce15f55ea42fedaa5a4684d79578006ce4af01ae04fd6b8f8) + API](https://github.com/pezkuwichain/pezkuwi-sdk/commit/65cc9af9b8df8d36928f6144ee7474cefbd70454#diff-c57da6fbeff8c46ce15f55ea42fedaa5a4684d79578006ce4af01ae04fd6b8f8) in an on-going effort to make light-client-support smoother, see below 2. we've [removed double accounts from our - chainspec-builder](https://github.com/pezkuwichain/kurdistan-sdk/commit/31499cd29ed30df932fb71b7459796f7160d0272) + chainspec-builder](https://github.com/pezkuwichain/pezkuwi-sdk/commit/31499cd29ed30df932fb71b7459796f7160d0272) 3. we [don't fallback to `--chain flaming-fir` - anymore](https://github.com/pezkuwichain/kurdistan-sdk/commit/13cdf1c8cd2ee62d411f82b64dc7eba860c9c6c6), if no chain is + anymore](https://github.com/pezkuwichain/pezkuwi-sdk/commit/13cdf1c8cd2ee62d411f82b64dc7eba860c9c6c6), if no chain is given our `bizinikiwi-node` will error. 4. [the `pez_subkey`-integration has seen a fix to the - `insert`-command](https://github.com/pezkuwichain/kurdistan-sdk/commit/54bde60cfd2c544c54e9e8623b6b8725b99557f8) that + `insert`-command](https://github.com/pezkuwichain/pezkuwi-sdk/commit/54bde60cfd2c544c54e9e8623b6b8725b99557f8) that requires you to now add the `&cli` as a param. ```diff= --- a/bin/node/cli/src/command.rs diff --git a/bizinikiwi/docs/pez-node-template-release.md b/bizinikiwi/docs/pez-node-template-release.md index ecccfad0..1c2edada 100644 --- a/bizinikiwi/docs/pez-node-template-release.md +++ b/bizinikiwi/docs/pez-node-template-release.md @@ -26,7 +26,7 @@ that are removed from the source. So you need to manually check and remove them commit in Bizinikiwi remote repository, such as: ```toml -toml pezsp-core = { version = "7.0.0", git = "https://github.com/pezkuwichain/kurdistan-sdk.git", rev = +toml pezsp-core = { version = "7.0.0", git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", rev = "de80d0107336a9c7a2efdc0199015e4d67fcbdb5", default-features = false } ``` diff --git a/bizinikiwi/docs/rustdocs-release.md b/bizinikiwi/docs/rustdocs-release.md index 78bd779c..0be815b2 100644 --- a/bizinikiwi/docs/rustdocs-release.md +++ b/bizinikiwi/docs/rustdocs-release.md @@ -2,7 +2,7 @@ There is [a script in place](../.maintain/rustdocs-release.sh) to manage the deployment of Bizinikiwi rustdocs at https://docs.pezkuwichain.io/bizinikiwi, which is pushing the rustdocs file in `gh-pages` branch of -https://github.com/pezkuwichain/kurdistan-sdk. +https://github.com/pezkuwichain/pezkuwi-sdk. The documentation at the top of the `rustdocs-release.sh` explains most of the mechanics of the script. diff --git a/bizinikiwi/pezframe/assets/src/mock.rs b/bizinikiwi/pezframe/assets/src/mock.rs index b3babfaa..774bf4c1 100644 --- a/bizinikiwi/pezframe/assets/src/mock.rs +++ b/bizinikiwi/pezframe/assets/src/mock.rs @@ -238,7 +238,7 @@ pub(crate) fn new_test_ext() -> pezsp_io::TestExternalities { config.assimilate_storage(&mut storage).unwrap(); let mut ext: pezsp_io::TestExternalities = storage.into(); - // Clear thread local vars for https://github.com/pezkuwichain/kurdistan-sdk/issues/2. + // Clear thread local vars for https://github.com/pezkuwichain/pezkuwi-sdk/issues/2. ext.execute_with(|| take_hooks()); ext.execute_with(|| System::set_block_number(1)); ext diff --git a/bizinikiwi/pezframe/assets/src/tests.rs b/bizinikiwi/pezframe/assets/src/tests.rs index 24a97506..22cbeae9 100644 --- a/bizinikiwi/pezframe/assets/src/tests.rs +++ b/bizinikiwi/pezframe/assets/src/tests.rs @@ -1547,7 +1547,7 @@ fn freezer_should_work() { set_frozen_balance(0, 1, 50); // Note: The amount to be transferred in this step changed deliberately from 20 to 30 - // (https://github.com/pezkuwichain/kurdistan-sdk/issues/119/commits/2ab35354d86904c035b21a2229452841b79b0457) + // (https://github.com/pezkuwichain/pezkuwi-sdk/issues/119/commits/2ab35354d86904c035b21a2229452841b79b0457) // to reflect the change in how `reducible_balance` is calculated: from untouchable = ed + // frozen, to untouchalbe = max(ed, frozen) // diff --git a/bizinikiwi/pezframe/balances/src/lib.rs b/bizinikiwi/pezframe/balances/src/lib.rs index fc149c6d..8d97f1bf 100644 --- a/bizinikiwi/pezframe/balances/src/lib.rs +++ b/bizinikiwi/pezframe/balances/src/lib.rs @@ -303,7 +303,7 @@ pub mod pezpallet { /// The ID type for reserves. /// - /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/kurdistan-sdk/issues/40/` + /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/pezkuwi-sdk/issues/40/` type ReserveIdentifier: Parameter + Member + MaxEncodedLen + Ord + Copy; /// The ID type for freezes. @@ -312,13 +312,13 @@ pub mod pezpallet { /// The maximum number of locks that should exist on an account. /// Not strictly enforced, but used for weight estimation. /// - /// Use of locks is deprecated in favour of freezes. See `https://github.com/pezkuwichain/kurdistan-sdk/issues/40/` + /// Use of locks is deprecated in favour of freezes. See `https://github.com/pezkuwichain/pezkuwi-sdk/issues/40/` #[pezpallet::constant] type MaxLocks: Get; /// The maximum number of named reserves that can exist on an account. /// - /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/kurdistan-sdk/issues/40/` + /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/pezkuwi-sdk/issues/40/` #[pezpallet::constant] type MaxReserves: Get; @@ -507,7 +507,7 @@ pub mod pezpallet { /// Any liquidity locks on some account balances. /// NOTE: Should only be accessed when setting, changing and freeing a lock. /// - /// Use of locks is deprecated in favour of freezes. See `https://github.com/pezkuwichain/kurdistan-sdk/issues/40/` + /// Use of locks is deprecated in favour of freezes. See `https://github.com/pezkuwichain/pezkuwi-sdk/issues/40/` #[pezpallet::storage] pub type Locks, I: 'static = ()> = StorageMap< _, @@ -519,7 +519,7 @@ pub mod pezpallet { /// Named reserves on some account balances. /// - /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/kurdistan-sdk/issues/40/` + /// Use of reserves is deprecated in favour of holds. See `https://github.com/pezkuwichain/pezkuwi-sdk/issues/40/` #[pezpallet::storage] pub type Reserves, I: 'static = ()> = StorageMap< _, diff --git a/bizinikiwi/pezframe/child-bounties/src/lib.rs b/bizinikiwi/pezframe/child-bounties/src/lib.rs index 1b015131..46ff3ba3 100644 --- a/bizinikiwi/pezframe/child-bounties/src/lib.rs +++ b/bizinikiwi/pezframe/child-bounties/src/lib.rs @@ -46,7 +46,7 @@ // Most of the business logic in this pezpallet has been // originally contributed by "https://github.com/shamb0", -// as part of the PR - https://github.com/pezkuwichain/kurdistan-sdk/issues/74. +// as part of the PR - https://github.com/pezkuwichain/pezkuwi-sdk/issues/74. // The code has been moved here and then refactored in order to // extract child bounties as a separate pezpallet. diff --git a/bizinikiwi/pezframe/contracts/src/migration/v10.rs b/bizinikiwi/pezframe/contracts/src/migration/v10.rs index 61375b84..b0e743c2 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v10.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v10.rs @@ -16,7 +16,7 @@ // limitations under the License. //! Don't rely on reserved balances keeping an account alive -//! See . +//! See . use crate::{ exec::AccountIdOf, diff --git a/bizinikiwi/pezframe/contracts/src/migration/v11.rs b/bizinikiwi/pezframe/contracts/src/migration/v11.rs index 654455a9..44c2b7ff 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v11.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v11.rs @@ -16,7 +16,7 @@ // limitations under the License. //! Overflowing bounded DeletionQueue. -//! See . +//! See . use crate::{ migration::{IsFinished, MigrationStep}, @@ -74,7 +74,7 @@ pub struct Migration { impl MigrationStep for Migration { const VERSION: u16 = 11; - // It would be more correct to make our use the now removed [DeletionQueueDepth](https://github.com/pezkuwichain/kurdistan-sdk/issues/47/files#diff-70e9723e9db62816e35f6f885b6770a8449c75a6c2733e9fa7a245fe52c4656c) + // It would be more correct to make our use the now removed [DeletionQueueDepth](https://github.com/pezkuwichain/pezkuwi-sdk/issues/47/files#diff-70e9723e9db62816e35f6f885b6770a8449c75a6c2733e9fa7a245fe52c4656c) // but in practice the queue is always empty, so 128 is a good enough approximation for not // underestimating the weight of our migration. fn max_step_weight() -> Weight { diff --git a/bizinikiwi/pezframe/contracts/src/migration/v13.rs b/bizinikiwi/pezframe/contracts/src/migration/v13.rs index 77873e52..fac2ac35 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v13.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v13.rs @@ -16,7 +16,7 @@ // limitations under the License. //! Add `delegate_dependencies` to `ContractInfo`. -//! See . +//! See . use crate::{ migration::{IsFinished, MigrationStep}, diff --git a/bizinikiwi/pezframe/contracts/src/migration/v14.rs b/bizinikiwi/pezframe/contracts/src/migration/v14.rs index f0296eb2..a7809d9b 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v14.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v14.rs @@ -17,7 +17,7 @@ //! Update the code owner balance, make the code upload deposit balance to be held instead of //! reserved. Since [`Currency`](pezframe_support::traits::Currency) has been -//! [deprecated](https://github.com/pezkuwichain/kurdistan-sdk/issues/40), we need the deposits to be +//! [deprecated](https://github.com/pezkuwichain/pezkuwi-sdk/issues/40), we need the deposits to be //! handled by the [`pezframe_support::traits::fungible`] traits. use crate::{ diff --git a/bizinikiwi/pezframe/contracts/src/migration/v15.rs b/bizinikiwi/pezframe/contracts/src/migration/v15.rs index 29625d22..ea265da5 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v15.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v15.rs @@ -17,7 +17,7 @@ //! Move contracts' _reserved_ balance from the `deposit_account` to be _held_ in the contract's //! account instead. Since [`Currency`](pezframe_support::traits::Currency) has been -//! [deprecated](https://github.com/pezkuwichain/kurdistan-sdk/issues/40), we need the deposits to be +//! [deprecated](https://github.com/pezkuwichain/pezkuwi-sdk/issues/40), we need the deposits to be //! handled by the [`pezframe_support::traits::fungible`] traits instead. For this transfer the //! balance from the deposit account to the contract's account and hold it in there. //! Then the deposit account is not needed anymore and we can get rid of it. diff --git a/bizinikiwi/pezframe/contracts/src/migration/v16.rs b/bizinikiwi/pezframe/contracts/src/migration/v16.rs index 6473cae0..e6618166 100644 --- a/bizinikiwi/pezframe/contracts/src/migration/v16.rs +++ b/bizinikiwi/pezframe/contracts/src/migration/v16.rs @@ -16,7 +16,7 @@ // limitations under the License. //! Remove ED from storage base deposit. -//! See . +//! See . use crate::{ migration::{IsFinished, MigrationStep}, diff --git a/bizinikiwi/pezframe/election-provider-multi-phase/src/lib.rs b/bizinikiwi/pezframe/election-provider-multi-phase/src/lib.rs index 91c9c688..3ac1c19b 100644 --- a/bizinikiwi/pezframe/election-provider-multi-phase/src/lib.rs +++ b/bizinikiwi/pezframe/election-provider-multi-phase/src/lib.rs @@ -1371,7 +1371,7 @@ pub mod pezpallet { /// The in-code storage version. /// - /// v1: https://github.com/pezkuwichain/kurdistan-sdk/issues/38/ + /// v1: https://github.com/pezkuwichain/pezkuwi-sdk/issues/38/ const STORAGE_VERSION: StorageVersion = StorageVersion::new(1); #[pezpallet::pezpallet] diff --git a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/lib.rs b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/lib.rs index d352a0f0..cdef483a 100644 --- a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/lib.rs +++ b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/lib.rs @@ -250,7 +250,7 @@ fn continuous_slashes_below_offending_threshold() { /// be below ED. In that case, only the stash (or root) can kill the ledger entry by calling /// `withdraw_unbonded` after the bonding period has passed. /// -/// Related to . +/// Related to . fn ledger_consistency_active_balance_below_ed() { use pezpallet_staking::{Error, Event}; diff --git a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/mock.rs b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/mock.rs index c368f5b6..417596a3 100644 --- a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/mock.rs +++ b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/src/mock.rs @@ -699,7 +699,7 @@ pub fn roll_to(n: BlockNumber, delay_solution: bool) { Timestamp::set_timestamp(System::block_number() * BLOCK_TIME + INIT_TIMESTAMP); // TODO(gpestana): implement a realistic OCW worker instead of simulating it - // https://github.com/pezkuwichain/kurdistan-sdk/issues/10 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/10 // if there's no solution queued and the solution should not be delayed, try mining and // queue a solution. if CurrentPhase::::get().is_signed() && !delay_solution { diff --git a/bizinikiwi/pezframe/election-provider-support/solution-type/src/lib.rs b/bizinikiwi/pezframe/election-provider-support/solution-type/src/lib.rs index 06b964e7..4d142062 100644 --- a/bizinikiwi/pezframe/election-provider-support/solution-type/src/lib.rs +++ b/bizinikiwi/pezframe/election-provider-support/solution-type/src/lib.rs @@ -49,7 +49,7 @@ pub(crate) fn syn_err(message: &'static str) -> syn::Error { /// compact encoding. /// - The accuracy of the ratios. This must be one of the `PerThing` types defined in /// `sp-arithmetic`. -/// - The maximum number of voters. This must be of type `Get`. Check +/// - The maximum number of voters. This must be of type `Get`. Check /// for more details. This is used to bound the struct, by leveraging the fact that `votes1.len() /// < votes2.len() < ... < votesn.len()` (the details of the struct is explained further below). /// We know that `sum_i votes_i.len() <= MaxVoters`, and we know that the maximum size of the diff --git a/bizinikiwi/pezframe/election-provider-support/src/lib.rs b/bizinikiwi/pezframe/election-provider-support/src/lib.rs index 011ff0ec..408311a3 100644 --- a/bizinikiwi/pezframe/election-provider-support/src/lib.rs +++ b/bizinikiwi/pezframe/election-provider-support/src/lib.rs @@ -379,7 +379,7 @@ pub trait ElectionDataProvider { /// [`Self::targets().len()`], since desiring a winner set larger than candidates is not /// feasible. /// - /// This is documented further in issue: + /// This is documented further in issue: fn desired_targets() -> data_provider::Result; /// Provide a best effort prediction about when the next election is about to happen. diff --git a/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md b/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md index 80a19fb3..86eef05d 100644 --- a/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md +++ b/bizinikiwi/pezframe/elections-phragmen/CHANGELOG.md @@ -9,7 +9,7 @@ and this crate adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h ### Added ### Changed -\[**Needs Migration**\] [migrate pezpallet-elections-phragmen to attribute macros](https://github.com/pezkuwichain/kurdistan-sdk/issues/75) +\[**Needs Migration**\] [migrate pezpallet-elections-phragmen to attribute macros](https://github.com/pezkuwichain/pezkuwi-sdk/issues/75) ### Fixed @@ -18,16 +18,16 @@ and this crate adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h ## [3.0.0] ### Added -[Add slashing events to elections-phragmen](https://github.com/pezkuwichain/kurdistan-sdk/issues/70) +[Add slashing events to elections-phragmen](https://github.com/pezkuwichain/pezkuwi-sdk/issues/70) ### Changed ### Fixed -[Don't slash all outgoing members](https://github.com/pezkuwichain/kurdistan-sdk/issues/68) -[Fix wrong outgoing calculation in election](https://github.com/pezkuwichain/kurdistan-sdk/issues/67) +[Don't slash all outgoing members](https://github.com/pezkuwichain/pezkuwi-sdk/issues/68) +[Fix wrong outgoing calculation in election](https://github.com/pezkuwichain/pezkuwi-sdk/issues/67) ### Security -\[**Needs Migration**\] [Fix elections-phragmen and proxy issue + Record deposits on-chain](https://github.com/pezkuwichain/kurdistan-sdk/issues/59) +\[**Needs Migration**\] [Fix elections-phragmen and proxy issue + Record deposits on-chain](https://github.com/pezkuwichain/pezkuwi-sdk/issues/59) ## [2.0.0] - 2020-09-2020 diff --git a/bizinikiwi/pezframe/examples/basic/README.md b/bizinikiwi/pezframe/examples/basic/README.md index 2fd9f047..b9f58efd 100644 --- a/bizinikiwi/pezframe/examples/basic/README.md +++ b/bizinikiwi/pezframe/examples/basic/README.md @@ -21,7 +21,7 @@ Run `cargo doc --package pezpallet-example-basic --open` to view this pezpallet' requires root, but without repeating the source code details. Capitalize the first word of each documentation comment and end it with a full stop. See - Generic example of annotating source code with documentation comments
  • Self-documenting code - Try to refactor code to be self-documenting.
  • Code comments - Supplement complex code with a brief explanation, not every line of code.
  • @@ -54,7 +54,7 @@ Copy and paste this template from frame/examples/basic/src/lib.rs into file \## Overview - + // Short description of pezpallet's purpose. // Links to Traits that should be implemented. // What this pezpallet is for. @@ -64,8 +64,8 @@ Copy and paste this template from frame/examples/basic/src/lib.rs into file // Inputs it uses and the source of each input. // Outputs it produces. - - + + \## Terminology @@ -76,17 +76,17 @@ Copy and paste this template from frame/examples/basic/src/lib.rs into file // "free balance" and "reserved balance" should be noted to give context to the pezpallet. // Please do not link to outside resources. The reference docs should be the ultimate source of truth. - + \## Goals // Add goals that the custom pezpallet is designed to achieve. - + \### Scenarios - + \#### @@ -105,7 +105,7 @@ Copy and paste this template from frame/examples/basic/src/lib.rs into file \`inherent\` - + \### Types diff --git a/bizinikiwi/pezframe/examples/multi-block-migrations/src/lib.rs b/bizinikiwi/pezframe/examples/multi-block-migrations/src/lib.rs index 067f22ba..cf9e96fa 100644 --- a/bizinikiwi/pezframe/examples/multi-block-migrations/src/lib.rs +++ b/bizinikiwi/pezframe/examples/multi-block-migrations/src/lib.rs @@ -64,7 +64,7 @@ //! preferred tool to test migrations is //! [`try-runtime-cli`](https://github.com/paritytech/try-runtime-cli). Support will be added to //! dry-run MBMs once they are stable -//! (tracked: ). +//! (tracked: ). pub mod migrations; mod mock; diff --git a/bizinikiwi/pezframe/lottery/src/lib.rs b/bizinikiwi/pezframe/lottery/src/lib.rs index 298ef6fb..a8540ec0 100644 --- a/bizinikiwi/pezframe/lottery/src/lib.rs +++ b/bizinikiwi/pezframe/lottery/src/lib.rs @@ -516,7 +516,7 @@ impl Pezpallet { /// You should call this function with different seed values until the random /// number lies within `u32::MAX - u32::MAX % n`. /// TODO: deal with randomness freshness - /// https://github.com/pezkuwichain/kurdistan-sdk/issues/33 + /// https://github.com/pezkuwichain/pezkuwi-sdk/issues/33 fn generate_random_number(seed: u32) -> u32 { let (random_seed, _) = T::Randomness::random(&(T::PalletId::get(), seed).encode()); let random_number = ::decode(&mut random_seed.as_ref()) diff --git a/bizinikiwi/pezframe/message-queue/src/tests.rs b/bizinikiwi/pezframe/message-queue/src/tests.rs index 0508a250..e6416851 100644 --- a/bizinikiwi/pezframe/message-queue/src/tests.rs +++ b/bizinikiwi/pezframe/message-queue/src/tests.rs @@ -285,7 +285,7 @@ fn service_queues_low_weight_defensive() { }); } -/// Regression test for . +/// Regression test for . #[test] fn service_queues_regression_1873() { use MessageOrigin::*; diff --git a/bizinikiwi/pezframe/nomination-pools/src/lib.rs b/bizinikiwi/pezframe/nomination-pools/src/lib.rs index b30b4456..2caa347a 100644 --- a/bizinikiwi/pezframe/nomination-pools/src/lib.rs +++ b/bizinikiwi/pezframe/nomination-pools/src/lib.rs @@ -339,7 +339,7 @@ //! //! To be fair to joiners, this implementation also need joining pools, which are actively staking, //! in addition to the unbonding pools. For maintenance simplicity these are not implemented. -//! Related: +//! Related: //! //! ### Limitations //! diff --git a/bizinikiwi/pezframe/nomination-pools/src/migration.rs b/bizinikiwi/pezframe/nomination-pools/src/migration.rs index 3c9efb1b..6c096137 100644 --- a/bizinikiwi/pezframe/nomination-pools/src/migration.rs +++ b/bizinikiwi/pezframe/nomination-pools/src/migration.rs @@ -841,7 +841,7 @@ pub mod v2 { } /// Migrate the pool reward scheme to the new version, as per - /// . + /// . pub struct MigrateToV2(core::marker::PhantomData); impl MigrateToV2 { fn run(current: StorageVersion) -> Weight { diff --git a/bizinikiwi/pezframe/paged-list/src/lib.rs b/bizinikiwi/pezframe/paged-list/src/lib.rs index 6805d5bd..b64c53d1 100644 --- a/bizinikiwi/pezframe/paged-list/src/lib.rs +++ b/bizinikiwi/pezframe/paged-list/src/lib.rs @@ -17,7 +17,7 @@ //! > Made with *Bizinikiwi*, for *DotSama*. //! -//! [![github]](https://github.com/pezkuwichain/kurdistan-sdk/tree/main/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/referenda/src/types.rs b/bizinikiwi/pezframe/referenda/src/types.rs index 83969dd9..704e684d 100644 --- a/bizinikiwi/pezframe/referenda/src/types.rs +++ b/bizinikiwi/pezframe/referenda/src/types.rs @@ -140,7 +140,7 @@ pub const DEFAULT_MAX_TRACK_NAME_LEN: usize = 25; /// Helper structure to treat a `[u8; N]` array as a string. /// -/// This is a temporary fix (see [#7671](https://github.com/pezkuwichain/kurdistan-sdk/issues/126)) in +/// This is a temporary fix (see [#7671](https://github.com/pezkuwichain/pezkuwi-sdk/issues/126)) in /// order to stop `pezkuwi.js` apps to fail when trying to decode the `name` field in `TrackInfo`. #[derive(Clone, Eq, DecodeWithMemTracking, PartialEq, Debug)] pub struct StringLike(pub [u8; N]); diff --git a/bizinikiwi/pezframe/revive/rpc/src/receipt_provider.rs b/bizinikiwi/pezframe/revive/rpc/src/receipt_provider.rs index ec8bf3b2..eef4de10 100644 --- a/bizinikiwi/pezframe/revive/rpc/src/receipt_provider.rs +++ b/bizinikiwi/pezframe/revive/rpc/src/receipt_provider.rs @@ -60,7 +60,7 @@ impl BlockHashMap { /// Provides information about a block, /// This is an abstratction on top of [`BizinikiwiBlock`] that can't be mocked in tests. -/// Can be removed once is fixed. +/// Can be removed once is fixed. pub trait BlockInfo { /// Returns the block hash. fn hash(&self) -> H256; @@ -299,7 +299,7 @@ impl ReceiptProvider { /// Insert receipts into the provider. /// - /// Note: Can be merged into `insert_block_receipts` once is fixed and subxt let + /// Note: Can be merged into `insert_block_receipts` once is fixed and subxt let /// us create Mock `BizinikiwiBlock` async fn insert( &self, diff --git a/bizinikiwi/pezframe/scheduler/src/migration.rs b/bizinikiwi/pezframe/scheduler/src/migration.rs index 5fa779d0..7eaf7967 100644 --- a/bizinikiwi/pezframe/scheduler/src/migration.rs +++ b/bizinikiwi/pezframe/scheduler/src/migration.rs @@ -192,7 +192,7 @@ pub mod v4 { /// This migration cleans up empty agendas of the V4 scheduler. /// /// This should be run on a scheduler that does not have - /// since it piles up `None`-only agendas. This does not modify the pezpallet version. + /// since it piles up `None`-only agendas. This does not modify the pezpallet version. pub struct CleanupAgendas(core::marker::PhantomData); impl OnRuntimeUpgrade for CleanupAgendas { diff --git a/bizinikiwi/pezframe/society/src/lib.rs b/bizinikiwi/pezframe/society/src/lib.rs index 7a3d397b..19f075a1 100644 --- a/bizinikiwi/pezframe/society/src/lib.rs +++ b/bizinikiwi/pezframe/society/src/lib.rs @@ -803,7 +803,7 @@ pub mod pezpallet { let phrase = b"society_rotation"; // we'll need a random seed here. // TODO: deal with randomness freshness - // https://github.com/pezkuwichain/kurdistan-sdk/issues/34 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/34 let (seed, _) = T::Randomness::random(phrase); // seed needs to be guaranteed to be 32 bytes. let seed = <[u8; 32]>::decode(&mut TrailingZeroInput::new(seed.as_ref())) diff --git a/bizinikiwi/pezframe/src/lib.rs b/bizinikiwi/pezframe/src/lib.rs index fbedf7a9..ec31f5f9 100644 --- a/bizinikiwi/pezframe/src/lib.rs +++ b/bizinikiwi/pezframe/src/lib.rs @@ -273,7 +273,7 @@ pub mod benchmarking { } #[deprecated( - note = "'The V1 benchmarking syntax is deprecated. Please use the V2 syntax. This warning may become a hard error any time after April 2025. For more info, see: https://github.com/pezkuwichain/kurdistan-sdk/issues/123" + note = "'The V1 benchmarking syntax is deprecated. Please use the V2 syntax. This warning may become a hard error any time after April 2025. For more info, see: https://github.com/pezkuwichain/pezkuwi-sdk/issues/123" )] pub mod v1 { pub use super::shared::*; diff --git a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/lib.rs b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/lib.rs index 85760a4d..b924a1bf 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/lib.rs +++ b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/lib.rs @@ -257,7 +257,7 @@ parameter_types! { pub const ApprovalDeposit: Balance = EXISTENTIAL_DEPOSIT; pub const AssetsStringLimit: u32 = 50; /// Key = 32 bytes, Value = 36 bytes (32+1+1+1+1) - // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 + // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 pub const MetadataDepositBase: Balance = deposit(1, 68); pub const MetadataDepositPerByte: Balance = deposit(0, 1); } diff --git a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/staking.rs b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/staking.rs index ff784958..f46e9c9c 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/staking.rs +++ b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/src/staking.rs @@ -72,7 +72,7 @@ parameter_types! { /// * Kusama: 16 (1.6m snapshot) /// /// Reasoning: Both leads to around 700 nominators per-page, yielding the weights in - /// https://github.com/pezkuwichain/kurdistan-sdk/issues/128, the maximum of which being around 1mb + /// https://github.com/pezkuwichain/pezkuwi-sdk/issues/128, the maximum of which being around 1mb /// compressed PoV and 2mb uncompressed. /// /// NOTE: in principle, there is nothing preventing us from stretching these values further, it diff --git a/bizinikiwi/pezframe/staking-async/src/ledger.rs b/bizinikiwi/pezframe/staking-async/src/ledger.rs index 3f7d2e9d..def723f5 100644 --- a/bizinikiwi/pezframe/staking-async/src/ledger.rs +++ b/bizinikiwi/pezframe/staking-async/src/ledger.rs @@ -67,7 +67,7 @@ pub struct UnlockChunk { /// /// TODO: move struct definition and full implementation into `/src/ledger.rs`. Currently /// leaving here to enforce a clean PR diff, given how critical this logic is. Tracking issue -/// . +/// . #[derive( PartialEqNoBound, EqNoBound, @@ -300,7 +300,7 @@ impl StakingLedger { if let Some(bonded_ledger) = Ledger::::get(&self.stash) { // there is a ledger bonded by the stash. In this case, the stash of the bonded ledger // should be the same as the ledger's stash. Otherwise fail to prevent data - // inconsistencies. See for more + // inconsistencies. See for more // details. ensure!(bonded_ledger.stash == self.stash, Error::::BadState); } diff --git a/bizinikiwi/pezframe/staking/CHANGELOG.md b/bizinikiwi/pezframe/staking/CHANGELOG.md index 015ce395..9b7b0e3a 100644 --- a/bizinikiwi/pezframe/staking/CHANGELOG.md +++ b/bizinikiwi/pezframe/staking/CHANGELOG.md @@ -55,4 +55,4 @@ migrations. - Field `claimed_rewards` in item `Ledger` is renamed to `legacy_claimed_rewards` and can be removed after 84 eras. -[v14]: https://github.com/pezkuwichain/kurdistan-sdk/issues/46 +[v14]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/46 diff --git a/bizinikiwi/pezframe/staking/src/ledger.rs b/bizinikiwi/pezframe/staking/src/ledger.rs index cda8b16a..3af26705 100644 --- a/bizinikiwi/pezframe/staking/src/ledger.rs +++ b/bizinikiwi/pezframe/staking/src/ledger.rs @@ -238,7 +238,7 @@ impl StakingLedger { if let Some(bonded_ledger) = Ledger::::get(&self.stash) { // there is a ledger bonded by the stash. In this case, the stash of the bonded ledger // should be the same as the ledger's stash. Otherwise fail to prevent data - // inconsistencies. See for more + // inconsistencies. See for more // details. ensure!(bonded_ledger.stash == self.stash, Error::::BadState); } diff --git a/bizinikiwi/pezframe/staking/src/lib.rs b/bizinikiwi/pezframe/staking/src/lib.rs index 8b6613cd..2ead7750 100644 --- a/bizinikiwi/pezframe/staking/src/lib.rs +++ b/bizinikiwi/pezframe/staking/src/lib.rs @@ -495,7 +495,7 @@ pub struct UnlockChunk { /// /// TODO: move struct definition and full implementation into `/src/ledger.rs`. Currently /// leaving here to enforce a clean PR diff, given how critical this logic is. Tracking issue -/// . +/// . #[derive( PartialEqNoBound, EqNoBound, diff --git a/bizinikiwi/pezframe/staking/src/migrations.rs b/bizinikiwi/pezframe/staking/src/migrations.rs index 7047142a..8f508071 100644 --- a/bizinikiwi/pezframe/staking/src/migrations.rs +++ b/bizinikiwi/pezframe/staking/src/migrations.rs @@ -204,7 +204,7 @@ pub mod v15 { } /// Migration of era exposure storage items to paged exposures. -/// Changelog: [v14.](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/staking/CHANGELOG.md#14) +/// Changelog: [v14.](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/staking/CHANGELOG.md#14) pub mod v14 { use super::*; diff --git a/bizinikiwi/pezframe/staking/src/pezpallet/impls.rs b/bizinikiwi/pezframe/staking/src/pezpallet/impls.rs index fbd9565b..10aa8762 100644 --- a/bizinikiwi/pezframe/staking/src/pezpallet/impls.rs +++ b/bizinikiwi/pezframe/staking/src/pezpallet/impls.rs @@ -1526,7 +1526,7 @@ impl ElectionDataProvider for Pezpallet { let targets = Self::get_npos_targets(bounds); // We can't handle this case yet -- return an error. WIP to improve handling this case in - // . + // . if bounds.exhausted(None, CountBound(T::TargetList::count()).into()) { return Err("Target snapshot too big"); } diff --git a/bizinikiwi/pezframe/state-trie-migration/src/lib.rs b/bizinikiwi/pezframe/state-trie-migration/src/lib.rs index 55b6ad64..0dc787f4 100644 --- a/bizinikiwi/pezframe/state-trie-migration/src/lib.rs +++ b/bizinikiwi/pezframe/state-trie-migration/src/lib.rs @@ -530,7 +530,7 @@ pub mod pezpallet { /// keys which are then hashed and concatenated, resulting in arbitrarily long keys. /// /// Use the *state migration RPC* to retrieve the length of the longest key in your - /// storage: + /// storage: /// /// The migration will halt with a `Halted` event if this value is too small. /// Since there is no real penalty from over-estimating, it is advised to use a large diff --git a/bizinikiwi/pezframe/support/procedural/src/construct_runtime/mod.rs b/bizinikiwi/pezframe/support/procedural/src/construct_runtime/mod.rs index d4e7b254..c3b9a06d 100644 --- a/bizinikiwi/pezframe/support/procedural/src/construct_runtime/mod.rs +++ b/bizinikiwi/pezframe/support/procedural/src/construct_runtime/mod.rs @@ -437,7 +437,7 @@ fn construct_runtime_final_expansion( "use `pezframe_system::Config` to set the `Block` type and delete this clause. It is planned to be removed in December 2023", ) - .help_links(&["https://github.com/pezkuwichain/kurdistan-sdk/issues/51"]) + .help_links(&["https://github.com/pezkuwichain/pezkuwi-sdk/issues/51"]) .span(where_section.span) .build_or_panic(), ) diff --git a/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/call.rs b/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/call.rs index ef8ecaaa..09ff1b8d 100644 --- a/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/call.rs +++ b/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/call.rs @@ -106,8 +106,8 @@ pub fn expand_call(def: &mut Def) -> proc_macro2::TokenStream { .old("use implicit call indices") .new("ensure that all calls have a `pezpallet::call_index` attribute or put the pezpallet into `dev` mode") .help_links(&[ - "https://github.com/pezkuwichain/kurdistan-sdk/issues/39", - "https://github.com/pezkuwichain/kurdistan-sdk/issues/36" + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/39", + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/36" ]) .span(method.name.span()) .build_or_panic(); diff --git a/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/warnings.rs b/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/warnings.rs index 30dc484a..124be049 100644 --- a/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/warnings.rs +++ b/bizinikiwi/pezframe/support/procedural/src/pezpallet/expand/warnings.rs @@ -38,7 +38,7 @@ pub(crate) fn weight_witness_warning( let partial_warning = Warning::new_deprecated("UncheckedWeightWitness") .old("not check weight witness data") .new("ensure that all witness data for weight calculation is checked before usage") - .help_link("https://github.com/pezkuwichain/kurdistan-sdk/issues/108"); + .help_link("https://github.com/pezkuwichain/pezkuwi-sdk/issues/108"); for (_, arg_ident, _) in method.args.iter() { if !arg_ident.to_string().starts_with('_') || !contains_ident(w.clone(), &arg_ident) { @@ -70,7 +70,7 @@ pub(crate) fn weight_constant_warning( .index(warnings.len()) .old("use hard-coded constant as call weight") .new("benchmark all calls or put the pezpallet into `dev` mode") - .help_link("https://github.com/pezkuwichain/kurdistan-sdk/issues/48") + .help_link("https://github.com/pezkuwichain/pezkuwi-sdk/issues/48") .span(lit.span()) .build_or_panic(); diff --git a/bizinikiwi/pezframe/support/procedural/src/pezpallet/parse/config.rs b/bizinikiwi/pezframe/support/procedural/src/pezpallet/parse/config.rs index 58b5dc52..782a96c2 100644 --- a/bizinikiwi/pezframe/support/procedural/src/pezpallet/parse/config.rs +++ b/bizinikiwi/pezframe/support/procedural/src/pezpallet/parse/config.rs @@ -436,7 +436,7 @@ impl ConfigDef { .old("have `RuntimeEvent` associated type in the pezpallet config") .new("remove it as it is redundant since associated bound gets appended automatically: \n pub trait Config: pezframe_system::Config>> { }") - .help_link("https://github.com/pezkuwichain/kurdistan-sdk/issues/125") + .help_link("https://github.com/pezkuwichain/pezkuwi-sdk/issues/125") .span(type_event.ident.span()) .build_or_panic(); diff --git a/bizinikiwi/pezframe/support/src/lib.rs b/bizinikiwi/pezframe/support/src/lib.rs index c4b00198..a9c1291a 100644 --- a/bizinikiwi/pezframe/support/src/lib.rs +++ b/bizinikiwi/pezframe/support/src/lib.rs @@ -1926,7 +1926,7 @@ pub mod pezpallet_macros { /// /// ## Former Usage /// - /// Prior to , the following syntax was used. + /// Prior to , the following syntax was used. /// This is deprecated and will soon be removed. /// /// ``` diff --git a/bizinikiwi/pezframe/support/src/migrations.rs b/bizinikiwi/pezframe/support/src/migrations.rs index 29ae008a..48b32396 100644 --- a/bizinikiwi/pezframe/support/src/migrations.rs +++ b/bizinikiwi/pezframe/support/src/migrations.rs @@ -310,7 +310,7 @@ pub fn migrate_from_pallet_version_to_storage_version< /// If your pezpallet has too many keys to be removed in a single block, it is advised to wait for /// a multi-block scheduler currently under development which will allow for removal of storage /// items (and performing other heavy migrations) over multiple blocks -/// (see ). +/// (see ). pub struct RemovePallet, DbWeight: Get>( PhantomData<(P, DbWeight)>, ); @@ -417,7 +417,7 @@ impl, DbWeight: Get> /// If your storage has too many keys to be removed in a single block, it is advised to wait for /// a multi-block scheduler currently under development which will allow for removal of storage /// items (and performing other heavy migrations) over multiple blocks -/// (see ). +/// (see ). pub struct RemoveStorage, S: Get<&'static str>, DbWeight: Get>( PhantomData<(P, S, DbWeight)>, ); diff --git a/bizinikiwi/pezframe/treasury/src/lib.rs b/bizinikiwi/pezframe/treasury/src/lib.rs index b4249c37..ae8d5918 100644 --- a/bizinikiwi/pezframe/treasury/src/lib.rs +++ b/bizinikiwi/pezframe/treasury/src/lib.rs @@ -274,7 +274,7 @@ pub mod pezpallet { type SpendFunds: SpendFunds; /// DEPRECATED: associated with `spend_local` call and will be removed in May 2025. - /// Refer to for migration to `spend`. + /// Refer to for migration to `spend`. /// /// The maximum number of approvals that can wait in the spending queue. /// @@ -329,14 +329,14 @@ pub mod pezpallet { } /// DEPRECATED: associated with `spend_local` call and will be removed in May 2025. - /// Refer to for migration to `spend`. + /// Refer to for migration to `spend`. /// /// Number of proposals that have been made. #[pezpallet::storage] pub type ProposalCount = StorageValue<_, ProposalIndex, ValueQuery>; /// DEPRECATED: associated with `spend_local` call and will be removed in May 2025. - /// Refer to for migration to `spend`. + /// Refer to for migration to `spend`. /// /// Proposals that have been made. #[pezpallet::storage] @@ -354,7 +354,7 @@ pub mod pezpallet { StorageValue<_, BalanceOf, ValueQuery>; /// DEPRECATED: associated with `spend_local` call and will be removed in May 2025. - /// Refer to for migration to `spend`. + /// Refer to for migration to `spend`. /// /// Proposal indices that have been approved but not yet awarded. #[pezpallet::storage] diff --git a/bizinikiwi/primitives/blockchain/src/backend.rs b/bizinikiwi/primitives/blockchain/src/backend.rs index d35a3ceb..4fdbda06 100644 --- a/bizinikiwi/primitives/blockchain/src/backend.rs +++ b/bizinikiwi/primitives/blockchain/src/backend.rs @@ -181,7 +181,7 @@ pub trait Backend: /// chain or descendants of it. /// /// Returns `Ok(None)` if `base_hash` is not found in search space. - // TODO: document time complexity of this, see [#1444](https://github.com/pezkuwichain/kurdistan-sdk/issues/18) + // TODO: document time complexity of this, see [#1444](https://github.com/pezkuwichain/pezkuwi-sdk/issues/18) fn longest_containing( &self, base_hash: Block::Hash, diff --git a/bizinikiwi/primitives/consensus/aura/src/inherents.rs b/bizinikiwi/primitives/consensus/aura/src/inherents.rs index 2fa061ae..896ee2be 100644 --- a/bizinikiwi/primitives/consensus/aura/src/inherents.rs +++ b/bizinikiwi/primitives/consensus/aura/src/inherents.rs @@ -43,7 +43,7 @@ impl AuraInherentData for InherentData { } /// Provides the slot duration inherent data for `Aura`. -// TODO: Remove in the future. https://github.com/pezkuwichain/kurdistan-sdk/issues/31 +// TODO: Remove in the future. https://github.com/pezkuwichain/pezkuwi-sdk/issues/31 #[cfg(feature = "std")] pub struct InherentDataProvider { slot: InherentType, diff --git a/bizinikiwi/primitives/consensus/babe/src/inherents.rs b/bizinikiwi/primitives/consensus/babe/src/inherents.rs index a0474962..107b1922 100644 --- a/bizinikiwi/primitives/consensus/babe/src/inherents.rs +++ b/bizinikiwi/primitives/consensus/babe/src/inherents.rs @@ -54,7 +54,7 @@ impl BabeInherentData for InherentData { } /// Provides the slot duration inherent data for BABE. -// TODO: Remove in the future. https://github.com/pezkuwichain/kurdistan-sdk/issues/31 +// TODO: Remove in the future. https://github.com/pezkuwichain/pezkuwi-sdk/issues/31 #[cfg(feature = "std")] pub struct InherentDataProvider { slot: InherentType, diff --git a/bizinikiwi/primitives/core/src/offchain/storage.rs b/bizinikiwi/primitives/core/src/offchain/storage.rs index 2b6a07f7..fc6e953e 100644 --- a/bizinikiwi/primitives/core/src/offchain/storage.rs +++ b/bizinikiwi/primitives/core/src/offchain/storage.rs @@ -95,7 +95,7 @@ fn unavailable_yet(name: &str) -> R { tracing::error!( target: LOG_TARGET, "The {:?} API is not available for offchain workers yet. Follow \ - https://github.com/pezkuwichain/kurdistan-sdk/issues/19 for details", + https://github.com/pezkuwichain/pezkuwi-sdk/issues/19 for details", name ); Default::default() diff --git a/bizinikiwi/primitives/staking/src/lib.rs b/bizinikiwi/primitives/staking/src/lib.rs index f6798cde..7a437d86 100644 --- a/bizinikiwi/primitives/staking/src/lib.rs +++ b/bizinikiwi/primitives/staking/src/lib.rs @@ -47,7 +47,7 @@ pub type Page = u32; /// Representation of a staking account, which may be a stash or controller account. /// /// Note: once the controller is completely deprecated, this enum can also be deprecated in favor of -/// the stash account. Tracking issue: . +/// the stash account. Tracking issue: . #[derive(Clone, Debug)] pub enum StakingAccount { Stash(AccountId), diff --git a/bizinikiwi/primitives/tracing/src/types.rs b/bizinikiwi/primitives/tracing/src/types.rs index 959ceeb1..a4724d15 100644 --- a/bizinikiwi/primitives/tracing/src/types.rs +++ b/bizinikiwi/primitives/tracing/src/types.rs @@ -609,7 +609,7 @@ mod std_features { ); // FIXME: this could be done a lot in 0.2 if they opt for using `Cow` instead - // https://github.com/pezkuwichain/kurdistan-sdk/issues/29 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/29 impl From<&crate::WasmMetadata> for &'static tracing_core::Metadata<'static> { fn from(wm: &crate::WasmMetadata) -> &'static tracing_core::Metadata<'static> { match (&wm.level, wm.is_span) { diff --git a/bizinikiwi/primitives/version/proc-macro/src/decl_runtime_version.rs b/bizinikiwi/primitives/version/proc-macro/src/decl_runtime_version.rs index d28fe0b0..c9293232 100644 --- a/bizinikiwi/primitives/version/proc-macro/src/decl_runtime_version.rs +++ b/bizinikiwi/primitives/version/proc-macro/src/decl_runtime_version.rs @@ -137,7 +137,7 @@ impl ParseRuntimeVersion { let warning = Warning::new_deprecated("RuntimeVersion") .old("state_version") .new("system_version)") - .help_link("https://github.com/pezkuwichain/kurdistan-sdk/issues/118") + .help_link("https://github.com/pezkuwichain/pezkuwi-sdk/issues/118") .span(field_name.span()) .build_or_panic(); warnings.push(warning); diff --git a/bizinikiwi/utils/pezframe/benchmarking-cli/src/block/README.md b/bizinikiwi/utils/pezframe/benchmarking-cli/src/block/README.md index 26fb797c..f988caa6 100644 --- a/bizinikiwi/utils/pezframe/benchmarking-cli/src/block/README.md +++ b/bizinikiwi/utils/pezframe/benchmarking-cli/src/block/README.md @@ -106,8 +106,8 @@ License: Apache-2.0 [Polkachu]: https://polkachu.com/snapshots -[here]: https://github.com/pezkuwichain/kurdistan-sdk/issues/6 -[pezkuwi#5192]: https://github.com/pezkuwichain/kurdistan-sdk/issues/154 +[here]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/6 +[pezkuwi#5192]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/154 [`--db`]: ../shared/README.md#arguments [`--pruning`]: ../shared/README.md#arguments diff --git a/bizinikiwi/utils/pezframe/benchmarking-cli/src/overhead/README.md b/bizinikiwi/utils/pezframe/benchmarking-cli/src/overhead/README.md index 0bfa6cac..7742e4b0 100644 --- a/bizinikiwi/utils/pezframe/benchmarking-cli/src/overhead/README.md +++ b/bizinikiwi/utils/pezframe/benchmarking-cli/src/overhead/README.md @@ -109,9 +109,9 @@ cargo run --profile=production -- benchmark overhead --chain=pezkuwi-dev --wasm- ``` This will overwrite the -[block_weights.rs](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/pezkuwichain/constants/src/weights/block_weights.rs) +[block_weights.rs](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/pezkuwichain/constants/src/weights/block_weights.rs) and -[extrinsic_weights.rs](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/pezkuwichain/constants/src/weights/extrinsic_weights.rs) +[extrinsic_weights.rs](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/pezkuwichain/constants/src/weights/extrinsic_weights.rs) files in the PezkuwiChain runtime directory. You can try the same for *pezkuwichain* and to see that the results slightly differ. 👉 It is paramount to use `--profile=production` and `--wasm-execution=compiled` as the results are otherwise useless. @@ -138,9 +138,9 @@ License: Apache-2.0 [`ExtrinsicBaseWeight`]: - https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/support/src/weights/extrinsic_weights.rs#L26 + https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/support/src/weights/extrinsic_weights.rs#L26 [`BlockExecutionWeight`]: - https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/support/src/weights/block_weights.rs#L26 + https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/support/src/weights/block_weights.rs#L26 [System::Remark]: - https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/system/src/lib.rs#L382 + https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/system/src/lib.rs#L382 diff --git a/bizinikiwi/utils/pezframe/benchmarking-cli/src/shared/genesis_state.rs b/bizinikiwi/utils/pezframe/benchmarking-cli/src/shared/genesis_state.rs index 04d4f088..a2028e54 100644 --- a/bizinikiwi/utils/pezframe/benchmarking-cli/src/shared/genesis_state.rs +++ b/bizinikiwi/utils/pezframe/benchmarking-cli/src/shared/genesis_state.rs @@ -27,7 +27,7 @@ use std::{borrow::Cow, path::PathBuf}; const ERROR_CANNOT_BUILD_GENESIS: &str = "The runtime returned \ an error when trying to build the genesis storage. Please ensure that all pallets \ define a genesis config that can be built. This can be tested with: \ -https://github.com/pezkuwichain/kurdistan-sdk/issues/115"; +https://github.com/pezkuwichain/pezkuwi-sdk/issues/115"; /// Warn when using the chain spec to generate the genesis state. pub const WARN_SPEC_GENESIS_CTOR: &'static str = "Using the chain spec instead of the runtime to \ diff --git a/bizinikiwi/utils/pezframe/remote-externalities/src/lib.rs b/bizinikiwi/utils/pezframe/remote-externalities/src/lib.rs index 1a5fb270..f065bf60 100644 --- a/bizinikiwi/utils/pezframe/remote-externalities/src/lib.rs +++ b/bizinikiwi/utils/pezframe/remote-externalities/src/lib.rs @@ -485,7 +485,7 @@ where loop { // This loop can hit the node with very rapid requests, occasionally causing it to - // error out in CI (https://github.com/pezkuwichain/kurdistan-sdk/issues/14), so we retry. + // error out in CI (https://github.com/pezkuwichain/pezkuwi-sdk/issues/14), so we retry. let retry_strategy = FixedInterval::new(Self::KEYS_PAGE_RETRY_INTERVAL).take(Self::MAX_RETRIES); let get_page_closure = diff --git a/bizinikiwi/zombienet/0001-basic-warp-sync/README.md b/bizinikiwi/zombienet/0001-basic-warp-sync/README.md index 2d1b49be..465ecc79 100644 --- a/bizinikiwi/zombienet/0001-basic-warp-sync/README.md +++ b/bizinikiwi/zombienet/0001-basic-warp-sync/README.md @@ -54,7 +54,7 @@ data/chains/local_testnet/db/full/ data/chains/local_testnet/db/full/000469.log ``` -Also refer to: [zombienet#578](https://github.com/pezkuwichain/kurdistan-sdk/issues/191) +Also refer to: [zombienet#578](https://github.com/pezkuwichain/pezkuwi-sdk/issues/191) The `raw` chain-spec shall also be saved: `db-test-gen/local.json`. diff --git a/docs/contributor/docker.md b/docs/contributor/docker.md index 06b95f8b..50206170 100644 --- a/docs/contributor/docker.md +++ b/docs/contributor/docker.md @@ -170,4 +170,4 @@ $ENGINE run --rm -it parity/pezkuwi:latest --version ``` This will show you the Pezkuwi version as well as the git commit ref that was used to build your container. You can now -paste the version information in a [new issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/new/choose). +paste the version information in a [new issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/new/choose). diff --git a/docs/contributor/markdown_linting.md b/docs/contributor/markdown_linting.md index 84319c44..3fe69c89 100644 --- a/docs/contributor/markdown_linting.md +++ b/docs/contributor/markdown_linting.md @@ -1,6 +1,6 @@ # Markdown linting -Since the introduction of [PR #1309](https://github.com/pezkuwichain/kurdistan-sdk/issues/103), the markdown +Since the introduction of [PR #1309](https://github.com/pezkuwichain/pezkuwi-sdk/issues/103), the markdown files in this repository are checked by a linter for formatting and consistency. The linter used is [`markdownlint`](https://github.com/DavidAnson/markdownlint) and can be installed locally on your diff --git a/docs/images/01_language_selection_elegant.png b/docs/images/01_language_selection_elegant.png deleted file mode 100644 index b6ceffa0..00000000 Binary files a/docs/images/01_language_selection_elegant.png and /dev/null differ diff --git a/docs/images/02_SignUp.png b/docs/images/02_SignUp.png deleted file mode 100644 index 5756829c..00000000 Binary files a/docs/images/02_SignUp.png and /dev/null differ diff --git a/docs/images/06_identity.png b/docs/images/06_identity.png deleted file mode 100644 index f7e0449d..00000000 Binary files a/docs/images/06_identity.png and /dev/null differ diff --git a/docs/images/07_education_elegant.png b/docs/images/07_education_elegant.png deleted file mode 100644 index b3a94fc6..00000000 Binary files a/docs/images/07_education_elegant.png and /dev/null differ diff --git a/docs/images/08_profile_elegant.png b/docs/images/08_profile_elegant.png deleted file mode 100644 index 8f08c105..00000000 Binary files a/docs/images/08_profile_elegant.png and /dev/null differ diff --git a/docs/images/09_referral_elegant.png b/docs/images/09_referral_elegant.png deleted file mode 100644 index 336beb45..00000000 Binary files a/docs/images/09_referral_elegant.png and /dev/null differ diff --git a/docs/images/10_business_elegant.png b/docs/images/10_business_elegant.png deleted file mode 100644 index 7ec9d97a..00000000 Binary files a/docs/images/10_business_elegant.png and /dev/null differ diff --git a/docs/images/12_Send_Modal.png b/docs/images/12_Send_Modal.png deleted file mode 100644 index f593bb76..00000000 Binary files a/docs/images/12_Send_Modal.png and /dev/null differ diff --git a/docs/images/13_Receive_Modal.png b/docs/images/13_Receive_Modal.png deleted file mode 100644 index 3a4173e5..00000000 Binary files a/docs/images/13_Receive_Modal.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_b2b.png b/docs/images/quick-actions/qa_b2b.png deleted file mode 100644 index e3ca7ac9..00000000 Binary files a/docs/images/quick-actions/qa_b2b.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_bank.png b/docs/images/quick-actions/qa_bank.png deleted file mode 100644 index 9c6e049d..00000000 Binary files a/docs/images/quick-actions/qa_bank.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_dashboard.png b/docs/images/quick-actions/qa_dashboard.png deleted file mode 100644 index 2e65f60a..00000000 Binary files a/docs/images/quick-actions/qa_dashboard.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_education.png b/docs/images/quick-actions/qa_education.png deleted file mode 100644 index b2f70638..00000000 Binary files a/docs/images/quick-actions/qa_education.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_exchange.png b/docs/images/quick-actions/qa_exchange.png deleted file mode 100644 index d69ac483..00000000 Binary files a/docs/images/quick-actions/qa_exchange.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_forum.jpg b/docs/images/quick-actions/qa_forum.jpg deleted file mode 100644 index b69fdf0c..00000000 Binary files a/docs/images/quick-actions/qa_forum.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_games.png b/docs/images/quick-actions/qa_games.png deleted file mode 100644 index 062cf197..00000000 Binary files a/docs/images/quick-actions/qa_games.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_governance.jpg b/docs/images/quick-actions/qa_governance.jpg deleted file mode 100644 index b6e8f9ab..00000000 Binary files a/docs/images/quick-actions/qa_governance.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_home.jpg b/docs/images/quick-actions/qa_home.jpg deleted file mode 100644 index f2a77b6d..00000000 Binary files a/docs/images/quick-actions/qa_home.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_kurdmedia.jpg b/docs/images/quick-actions/qa_kurdmedia.jpg deleted file mode 100644 index 747a097d..00000000 Binary files a/docs/images/quick-actions/qa_kurdmedia.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_qazwancafe.jpg b/docs/images/quick-actions/qa_qazwancafe.jpg deleted file mode 100644 index a7d819d7..00000000 Binary files a/docs/images/quick-actions/qa_qazwancafe.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_rewards.png b/docs/images/quick-actions/qa_rewards.png deleted file mode 100644 index b735f3b9..00000000 Binary files a/docs/images/quick-actions/qa_rewards.png and /dev/null differ diff --git a/docs/images/quick-actions/qa_trading.jpg b/docs/images/quick-actions/qa_trading.jpg deleted file mode 100644 index fcfcb569..00000000 Binary files a/docs/images/quick-actions/qa_trading.jpg and /dev/null differ diff --git a/docs/images/quick-actions/qa_university.png b/docs/images/quick-actions/qa_university.png deleted file mode 100644 index adb3ffb8..00000000 Binary files a/docs/images/quick-actions/qa_university.png and /dev/null differ diff --git a/docs/sdk/src/external_resources.rs b/docs/sdk/src/external_resources.rs index 40790d06..19e544b2 100644 --- a/docs/sdk/src/external_resources.rs +++ b/docs/sdk/src/external_resources.rs @@ -10,5 +10,5 @@ //! - [Pezkuwi NFT Marketplace Tutorial by Pezkuwi Fellow Shawn Tabrizi](https://www.shawntabrizi.com/bizinikiwi-collectables-workshop/) //! - [HEZ Code School](https://pezkuwichain.io/docs/introduction) //! - [Pezkuwi Developers Github Organization](https://github.com/polkadot-developers/) -//! - [Pezkuwi Blockchain Academy](https://github.com/pezkuwichain/kurdistan_blockchain-akademy) +//! - [Pezkuwi Blockchain Academy](https://github.com/pezkuwichain/pezkuwi_blockchain-academy) //! - [Pezkuwi Wiki](https://wiki.network.pezkuwichain.io/) diff --git a/docs/sdk/src/guides/enable_pov_reclaim.rs b/docs/sdk/src/guides/enable_pov_reclaim.rs index 86097479..76a250ba 100644 --- a/docs/sdk/src/guides/enable_pov_reclaim.rs +++ b/docs/sdk/src/guides/enable_pov_reclaim.rs @@ -3,7 +3,7 @@ //! This guide will teach you how to enable storage weight reclaiming for a teyrchain. The //! explanations in this guide assume a project structure similar to the one detailed in //! the [bizinikiwi documentation](crate::pezkuwi_sdk::bizinikiwi#anatomy-of-a-binary-crate). Full -//! technical details are available in the original [pull request](https://github.com/pezkuwichain/kurdistan-sdk/issues/111). +//! technical details are available in the original [pull request](https://github.com/pezkuwichain/pezkuwi-sdk/issues/111). //! //! # What is PoV reclaim? //! When a teyrchain submits a block to a relay chain like Pezkuwi or Kusama, it sends the block diff --git a/docs/sdk/src/guides/your_first_pallet/mod.rs b/docs/sdk/src/guides/your_first_pallet/mod.rs index cd679091..4f7edcc1 100644 --- a/docs/sdk/src/guides/your_first_pallet/mod.rs +++ b/docs/sdk/src/guides/your_first_pallet/mod.rs @@ -201,7 +201,7 @@ //! Idiomatic FRAME pallets often use Builder pattern to define their initial state. //! //! > The Pezkuwi Blockchain Academy's Rust entrance exam has a -//! > [section](https://github.com/pezkuwichain/kurdistan_blockchain-akademy/blob/main/src/m_builder.rs) +//! > [section](https://github.com/pezkuwichain/pezkuwi_blockchain-academy/blob/main/src/m_builder.rs) //! > on this that you can use to learn the Builder Pattern. //! //! Let's see how we can implement a better test setup using this pattern. First, we define a diff --git a/docs/sdk/src/pezkuwi_sdk/xcm.rs b/docs/sdk/src/pezkuwi_sdk/xcm.rs index c3e38cd7..20e3ec75 100644 --- a/docs/sdk/src/pezkuwi_sdk/xcm.rs +++ b/docs/sdk/src/pezkuwi_sdk/xcm.rs @@ -30,7 +30,7 @@ //! //! ## Implementation //! -//! A ready-to-use Rust implementation lives in the [pezkuwi-sdk repo](https://github.com/pezkuwichain/kurdistan-sdk/tree/main/pezkuwi/xcm), +//! A ready-to-use Rust implementation lives in the [pezkuwi-sdk repo](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/pezkuwi/xcm), //! but will be moved to its own repo in the future. //! //! Its main components are: diff --git a/docs/sdk/src/reference_docs/frame_runtime_types.rs b/docs/sdk/src/reference_docs/frame_runtime_types.rs index 9ad5d9b6..b7361e11 100644 --- a/docs/sdk/src/reference_docs/frame_runtime_types.rs +++ b/docs/sdk/src/reference_docs/frame_runtime_types.rs @@ -5,7 +5,7 @@ //! //! > As of now, many of these important types are generated within the internals of //! > [`construct_runtime`], and there is no easy way for you to visually know they exist. -//! > [#pezkuwi-sdk#1378](https://github.com/pezkuwichain/kurdistan-sdk/issues/105) is meant to +//! > [#pezkuwi-sdk#1378](https://github.com/pezkuwichain/pezkuwi-sdk/issues/105) is meant to //! > significantly improve this. Exploring the rust-docs of a runtime, such as [`runtime`] which is //! > defined in this module is as of now the best way to learn about these types. //! diff --git a/docs/sdk/src/reference_docs/pezframe_system_accounts.rs b/docs/sdk/src/reference_docs/pezframe_system_accounts.rs index 927664d1..71e2d87d 100644 --- a/docs/sdk/src/reference_docs/pezframe_system_accounts.rs +++ b/docs/sdk/src/reference_docs/pezframe_system_accounts.rs @@ -5,6 +5,6 @@ //! How `pezframe_system` handles accountIds. Nonce. Consumers and Providers, reference counting. // - poorly understood topics, needs one great article to rul them all. -// - https://github.com/pezkuwichain/kurdistan-sdk/issues/17 -// - https://github.com/pezkuwichain/kurdistan-sdk/issues/40 +// - https://github.com/pezkuwichain/pezkuwi-sdk/issues/17 +// - https://github.com/pezkuwichain/pezkuwi-sdk/issues/40 // - https://exchange.pezkuwichain.app/questions/263/what-is-the-meaning-of-the-account-provider-sufficients-and-consumer diff --git a/docs/sdk/src/reference_docs/trait_based_programming.rs b/docs/sdk/src/reference_docs/trait_based_programming.rs index 3299e4a7..d3beb6bc 100644 --- a/docs/sdk/src/reference_docs/trait_based_programming.rs +++ b/docs/sdk/src/reference_docs/trait_based_programming.rs @@ -108,7 +108,7 @@ //! //! ## Additional Resources //! -//! - +//! - //! - [Bizinikiwi Seminar - Traits and Generic Types](https://www.youtube.com/watch?v=6cp10jVWNl4) //! - #![allow(unused)] diff --git a/docs/whitepaper/whitepaper.md b/docs/whitepaper/whitepaper.md index 60be14c8..6705497d 100644 --- a/docs/whitepaper/whitepaper.md +++ b/docs/whitepaper/whitepaper.md @@ -186,7 +186,7 @@ The project operates under the Kurdistan Talent Institute License. It is a utili ### Email Contacts * **General Inquiries:** `info@pezkuwichain.io` * **Technical Support:** `tech@pezkuwichain.io` -* **Government Relations:** `tech@kurdistan.gov` +* **Government Relations:** `tech@kurdistan.gov`, `admin@pezkuwichain.io` ### Developer Resources * **Developer Portal:** `https://developers.pezkuwichain.io` diff --git a/pezbridges/README.md b/pezbridges/README.md index 0523fa3d..c11306c2 100644 --- a/pezbridges/README.md +++ b/pezbridges/README.md @@ -31,7 +31,7 @@ rustup target add wasm32-unknown-unknown --toolchain nightly Once this is configured you can build and test the repo as follows: ``` -git clone https://github.com/pezkuwichain/kurdistan-sdk/tree/main/bridges +git clone https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bridges cd parity-bridges-common cargo build --all cargo test --all diff --git a/pezbridges/docs/running-relayer.md b/pezbridges/docs/running-relayer.md index e6fa5d77..ab8c7aeb 100644 --- a/pezbridges/docs/running-relayer.md +++ b/pezbridges/docs/running-relayer.md @@ -68,7 +68,7 @@ by lurking in the code. We also have the WiP prototype of relayers coordination protocol, where relayers will get some guarantee that their transactions will be prioritized over other relayers transactions at their assigned slots. That is planned for the future version of bridge and the progress is -[tracked here](https://github.com/pezkuwichain/kurdistan-sdk/issues/85). +[tracked here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/85). diff --git a/pezbridges/modules/messages/src/lib.rs b/pezbridges/modules/messages/src/lib.rs index da30e842..dd7916f3 100644 --- a/pezbridges/modules/messages/src/lib.rs +++ b/pezbridges/modules/messages/src/lib.rs @@ -516,7 +516,7 @@ pub mod pezpallet { pub type PalletOperatingMode, I: 'static = ()> = StorageValue<_, MessagesOperatingMode, ValueQuery>; - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/89: let's limit number of + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/89: let's limit number of // possible opened lanes && use it to constraint maps below /// Map of lane id => inbound lane data. diff --git a/pezbridges/modules/relayers/src/mock.rs b/pezbridges/modules/relayers/src/mock.rs index 5ba55cb7..b3ae7d3a 100644 --- a/pezbridges/modules/relayers/src/mock.rs +++ b/pezbridges/modules/relayers/src/mock.rs @@ -202,7 +202,7 @@ parameter_types! { #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] impl pezframe_system::Config for TestRuntime { type Block = ThisChainBlock; - // TODO: remove when https://github.com/pezkuwichain/kurdistan-sdk/issues/120 merged + // TODO: remove when https://github.com/pezkuwichain/pezkuwi-sdk/issues/120 merged type BlockHashCount = ConstU32<10>; type AccountData = pezpallet_balances::AccountData; type DbWeight = DbWeight; diff --git a/pezbridges/modules/xcm-bridge-hub/src/exporter.rs b/pezbridges/modules/xcm-bridge-hub/src/exporter.rs index d748f2de..7f73e8d1 100644 --- a/pezbridges/modules/xcm-bridge-hub/src/exporter.rs +++ b/pezbridges/modules/xcm-bridge-hub/src/exporter.rs @@ -225,7 +225,7 @@ impl, I: 'static> Pezpallet { return; } - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/83 we either need fishermens + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/83 we either need fishermens // to watch this rule violation (suspended, but keep sending new messages), or we need a // hard limit for that like other XCM queues have diff --git a/pezbridges/modules/xcm-bridge-hub/src/lib.rs b/pezbridges/modules/xcm-bridge-hub/src/lib.rs index 710eb2b3..6fe56783 100644 --- a/pezbridges/modules/xcm-bridge-hub/src/lib.rs +++ b/pezbridges/modules/xcm-bridge-hub/src/lib.rs @@ -200,7 +200,7 @@ pub mod pezpallet { /// Runtime's universal location. type UniversalLocation: Get; - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/80 remove `ChainId` and + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/80 remove `ChainId` and // replace it with the `NetworkId` - then we'll be able to use // `T as pezpallet_bridge_messages::Config::BridgedChain::NetworkId` /// Bridged network as relative location of bridged `GlobalConsensus`. @@ -295,7 +295,7 @@ pub mod pezpallet { /// The states after this call: bridge is `Opened`, outbound lane is `Opened`, inbound lane /// is `Opened`. #[pezpallet::call_index(0)] - #[pezpallet::weight(Weight::zero())] // TODO:(bridges-v2) - https://github.com/pezkuwichain/kurdistan-sdk/issues/87 - add benchmarks impl + #[pezpallet::weight(Weight::zero())] // TODO:(bridges-v2) - https://github.com/pezkuwichain/pezkuwi-sdk/issues/87 - add benchmarks impl pub fn open_bridge( origin: OriginFor, bridge_destination_universal_location: Box, @@ -333,7 +333,7 @@ pub mod pezpallet { /// The states after this call: everything is either `Closed`, or purged from the /// runtime storage. #[pezpallet::call_index(1)] - #[pezpallet::weight(Weight::zero())] // TODO:(bridges-v2) - https://github.com/pezkuwichain/kurdistan-sdk/issues/87 - add benchmarks impl + #[pezpallet::weight(Weight::zero())] // TODO:(bridges-v2) - https://github.com/pezkuwichain/pezkuwi-sdk/issues/87 - add benchmarks impl pub fn close_bridge( origin: OriginFor, bridge_destination_universal_location: Box, @@ -343,7 +343,7 @@ pub mod pezpallet { let locations = Self::bridge_locations_from_origin(origin, bridge_destination_universal_location)?; - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/81 - may do refund here, if + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/81 - may do refund here, if // bridge/lanes are already closed + for messages that are not pruned // update bridge metadata - this also guarantees that the bridge is in the proper state diff --git a/pezbridges/primitives/pezkuwi-core/src/lib.rs b/pezbridges/primitives/pezkuwi-core/src/lib.rs index d35d381d..84e0ad93 100644 --- a/pezbridges/primitives/pezkuwi-core/src/lib.rs +++ b/pezbridges/primitives/pezkuwi-core/src/lib.rs @@ -159,7 +159,7 @@ parameter_types! { .build_or_panic(); } -// TODO [#78] may need to be updated after https://github.com/pezkuwichain/kurdistan-sdk/issues/88 +// TODO [#78] may need to be updated after https://github.com/pezkuwichain/pezkuwi-sdk/issues/88 /// Maximal number of messages in single delivery transaction. pub const MAX_MESSAGES_IN_DELIVERY_TRANSACTION: MessageNonce = 128; diff --git a/pezbridges/relays/client-bizinikiwi/src/transaction_tracker.rs b/pezbridges/relays/client-bizinikiwi/src/transaction_tracker.rs index bcd849e4..b108f1ea 100644 --- a/pezbridges/relays/client-bizinikiwi/src/transaction_tracker.rs +++ b/pezbridges/relays/client-bizinikiwi/src/transaction_tracker.rs @@ -31,7 +31,7 @@ pub trait Environment: Send + Sync { async fn header_id_by_hash(&self, hash: HashOf) -> Result, Error>; } -// TODO (https://github.com/pezkuwichain/kurdistan-sdk/issues/84): remove `Environment` trait +// TODO (https://github.com/pezkuwichain/pezkuwi-sdk/issues/84): remove `Environment` trait // after test client is implemented #[async_trait] impl> Environment for T { @@ -78,7 +78,7 @@ impl> TransactionTracker { Self { environment, stall_timeout, transaction_hash, subscription } } - // TODO (https://github.com/pezkuwichain/kurdistan-sdk/issues/84): remove me after + // TODO (https://github.com/pezkuwichain/pezkuwi-sdk/issues/84): remove me after // test client is implemented /// Converts self into tracker with different environment. pub fn switch_environment>( @@ -236,7 +236,7 @@ async fn watch_transaction_status< Some(TransactionStatusOf::::InBlock(block_hash)) => { // TODO: read matching system event (ExtrinsicSuccess or ExtrinsicFailed), log it // here and use it later (on finality) for reporting invalid transaction - // https://github.com/pezkuwichain/kurdistan-sdk/issues/79 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/79 tracing::trace!( target: "bridge", node=%C::NAME, diff --git a/pezbridges/relays/lib-bizinikiwi-relay/src/cli/chain_schema.rs b/pezbridges/relays/lib-bizinikiwi-relay/src/cli/chain_schema.rs index a1aa3245..7a10790b 100644 --- a/pezbridges/relays/lib-bizinikiwi-relay/src/cli/chain_schema.rs +++ b/pezbridges/relays/lib-bizinikiwi-relay/src/cli/chain_schema.rs @@ -92,7 +92,7 @@ macro_rules! declare_chain_runtime_version_params_cli_schema { macro_rules! declare_chain_connection_params_cli_schema { ($chain:ident, $chain_prefix:ident) => { pezbp_runtime::paste::item! { - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/86 + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/86 // remove all obsolete arguments (separate URI components) #[doc = $chain " connection params."] diff --git a/pezbridges/relays/lib-bizinikiwi-relay/src/messages/source.rs b/pezbridges/relays/lib-bizinikiwi-relay/src/messages/source.rs index c04c6e70..90fdc493 100644 --- a/pezbridges/relays/lib-bizinikiwi-relay/src/messages/source.rs +++ b/pezbridges/relays/lib-bizinikiwi-relay/src/messages/source.rs @@ -163,7 +163,7 @@ impl< // // this may lead to multiple reconnects to the same node during the same call and it // needs to be addressed in the future - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/82 + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/82 if let Some(ref mut target_to_source_headers_relay) = self.target_to_source_headers_relay { target_to_source_headers_relay.reconnect().await?; } diff --git a/pezbridges/relays/lib-bizinikiwi-relay/src/messages/target.rs b/pezbridges/relays/lib-bizinikiwi-relay/src/messages/target.rs index fbbb352a..8a12ba04 100644 --- a/pezbridges/relays/lib-bizinikiwi-relay/src/messages/target.rs +++ b/pezbridges/relays/lib-bizinikiwi-relay/src/messages/target.rs @@ -189,7 +189,7 @@ impl< // // this may lead to multiple reconnects to the same node during the same call and it // needs to be addressed in the future - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/82 + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/82 if let Some(ref mut source_to_target_headers_relay) = self.source_to_target_headers_relay { source_to_target_headers_relay.reconnect().await?; } diff --git a/pezbridges/snowbridge/pezpallets/ethereum-client/benchmark.md b/pezbridges/snowbridge/pezpallets/ethereum-client/benchmark.md index 0e493fb0..e30a13e6 100644 --- a/pezbridges/snowbridge/pezpallets/ethereum-client/benchmark.md +++ b/pezbridges/snowbridge/pezpallets/ethereum-client/benchmark.md @@ -1,7 +1,7 @@ # Motivation Demonstrate that [FastAggregateVerify](https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-bls-signature-04#section-3.3.4) is the most -expensive call in ethereum beacon light client, though in [#13031](https://github.com/pezkuwichain/kurdistan-sdk/issues/42) +expensive call in ethereum beacon light client, though in [#13031](https://github.com/pezkuwichain/pezkuwi-sdk/issues/42) Parity team has wrapped some low level host functions for `bls-12381` but adding a high level host function specific for it is super helpful. diff --git a/pezbridges/testing/README.md b/pezbridges/testing/README.md index 95802842..b0bc4219 100644 --- a/pezbridges/testing/README.md +++ b/pezbridges/testing/README.md @@ -18,7 +18,7 @@ Prerequisites for running the tests locally: `pezkuwi/api-cli` package. Use `yarn global add @pezkuwi/api-cli` to install it. - build Bizinikiwi relay by running `cargo build -p bizinikiwi-relay --release` command in the - [`pezkuwichain/kurdistan-sdk`](https://github.com/pezkuwichain/kurdistan-sdk/tree/main/bridges) repository clone; + [`pezkuwichain/pezkuwi-sdk`](https://github.com/pezkuwichain/pezkuwi-sdk/tree/main/bridges) repository clone; - copy the `bizinikiwi-relay` binary, built in the previous step, to `~/local_bridge_testing/bin/bizinikiwi-relay`; diff --git a/pezcumulus/client/consensus/aura/src/equivocation_import_queue.rs b/pezcumulus/client/consensus/aura/src/equivocation_import_queue.rs index a8bee1a8..a6baa859 100644 --- a/pezcumulus/client/consensus/aura/src/equivocation_import_queue.rs +++ b/pezcumulus/client/consensus/aura/src/equivocation_import_queue.rs @@ -263,7 +263,7 @@ fn slot_now(slot_duration: SlotDuration) -> Slot { /// The others are generated explicitly internally. /// /// This should only be used for runtimes where the runtime does not check all inherents and -/// seals in `execute_block` (see ) +/// seals in `execute_block` (see ) pub fn fully_verifying_import_queue( client: Arc, block_import: I, diff --git a/pezcumulus/client/consensus/common/src/import_queue.rs b/pezcumulus/client/consensus/common/src/import_queue.rs index 53898858..1941131e 100644 --- a/pezcumulus/client/consensus/common/src/import_queue.rs +++ b/pezcumulus/client/consensus/common/src/import_queue.rs @@ -31,7 +31,7 @@ //! At the time of writing, the inherent and consensus checks in most Pezcumulus runtimes //! are only performed during teyrchain validation, not full node block execution. //! -//! See for details. +//! See for details. use pezsp_consensus::error::Error as ConsensusError; use pezsp_runtime::traits::Block as BlockT; diff --git a/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs b/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs index 346ddff5..a1c3f935 100644 --- a/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs +++ b/pezcumulus/client/consensus/common/src/teyrchain_consensus.rs @@ -375,7 +375,7 @@ async fn handle_new_block_imported( { // HACK // - // Remove after https://github.com/pezkuwichain/kurdistan-sdk/issues/76 or similar is merged + // Remove after https://github.com/pezkuwichain/pezkuwi-sdk/issues/76 or similar is merged if notification.origin != BlockOrigin::Own { announce_block(notification.hash, None); } diff --git a/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs b/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs index 2313d58b..4a001089 100644 --- a/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs +++ b/pezcumulus/client/relay-chain-rpc-interface/src/rpc_client.rs @@ -784,7 +784,7 @@ pub fn distribute_header(header: RelayHeader, senders: &mut Vec false, // Channel is full. This should not happen. // TODO: Improve error handling here - // https://github.com/pezkuwichain/kurdistan-sdk/issues/90 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/90 Err(error) => { tracing::error!(target: LOG_TARGET, ?error, "Event distribution channel has reached its limit. This can lead to missed notifications."); true diff --git a/pezcumulus/pezpallets/collator-selection/src/lib.rs b/pezcumulus/pezpallets/collator-selection/src/lib.rs index d1d64a68..a0e7d21d 100644 --- a/pezcumulus/pezpallets/collator-selection/src/lib.rs +++ b/pezcumulus/pezpallets/collator-selection/src/lib.rs @@ -77,7 +77,7 @@ //! To initiate rewards, an ED needs to be transferred to the pot address. //! //! Note: Eventually the Pot distribution may be modified as discussed in [this -//! issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/187#issuecomment-810481073). +//! issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/187#issuecomment-810481073). #![cfg_attr(not(feature = "std"), no_std)] diff --git a/pezcumulus/pezpallets/collator-selection/src/migration.rs b/pezcumulus/pezpallets/collator-selection/src/migration.rs index 05bee59a..024da0e7 100644 --- a/pezcumulus/pezpallets/collator-selection/src/migration.rs +++ b/pezcumulus/pezpallets/collator-selection/src/migration.rs @@ -22,7 +22,7 @@ use alloc::vec::Vec; use log; use pezframe_support::traits::{OnRuntimeUpgrade, UncheckedOnRuntimeUpgrade}; -/// Migrate to v2. Should have been part of . +/// Migrate to v2. Should have been part of . pub mod v2 { use super::*; use pezframe_support::{ diff --git a/pezcumulus/pezpallets/dmp-queue/src/lib.rs b/pezcumulus/pezpallets/dmp-queue/src/lib.rs index 01c05999..ef165d05 100644 --- a/pezcumulus/pezpallets/dmp-queue/src/lib.rs +++ b/pezcumulus/pezpallets/dmp-queue/src/lib.rs @@ -42,7 +42,7 @@ pub type MaxDmpMessageLenOf = #[pezframe_support::pezpallet] #[deprecated( - note = "`pezcumulus-pezpallet-dmp-queue` will be removed after November 2024. It can be removed once its lazy migration completed. See ." + note = "`pezcumulus-pezpallet-dmp-queue` will be removed after November 2024. It can be removed once its lazy migration completed. See ." )] pub mod pezpallet { use super::*; diff --git a/pezcumulus/pezpallets/teyrchain-system/src/lib.rs b/pezcumulus/pezpallets/teyrchain-system/src/lib.rs index e4112c79..86a734eb 100644 --- a/pezcumulus/pezpallets/teyrchain-system/src/lib.rs +++ b/pezcumulus/pezpallets/teyrchain-system/src/lib.rs @@ -636,7 +636,7 @@ pub mod pezpallet { total_weight += Self::maybe_drop_included_ancestors(&relay_state_proof, capacity); // Deposit a log indicating the relay-parent storage root. // TODO: remove this in favor of the relay-parent's hash after - // https://github.com/pezkuwichain/kurdistan-sdk/issues/92 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/92 pezframe_system::Pezpallet::::deposit_log( pezcumulus_primitives_core::rpsr_digest::relay_parent_storage_root_item( vfp.relay_parent_storage_root, @@ -1010,7 +1010,7 @@ pub mod pezpallet { #[pezpallet::genesis_build] impl BuildGenesisConfig for GenesisConfig { fn build(&self) { - // TODO: Remove after https://github.com/pezkuwichain/kurdistan-sdk/issues/93 + // TODO: Remove after https://github.com/pezkuwichain/pezkuwi-sdk/issues/93 pezsp_io::storage::set(b":c", &[]); } } diff --git a/pezcumulus/pezpallets/teyrchain-system/src/tests.rs b/pezcumulus/pezpallets/teyrchain-system/src/tests.rs index 72173b0c..3fcf904c 100755 --- a/pezcumulus/pezpallets/teyrchain-system/src/tests.rs +++ b/pezcumulus/pezpallets/teyrchain-system/src/tests.rs @@ -1195,7 +1195,7 @@ fn message_queue_chain() { // the types are nominally different, they have the same structure and computation of the // new head doesn't differ. // - // These cases are taken from https://github.com/pezkuwichain/kurdistan-sdk/issues/173 + // These cases are taken from https://github.com/pezkuwichain/pezkuwi-sdk/issues/173 assert_eq!( MessageQueueChain::default() .extend_downward(&InboundDownwardMessage { sent_at: 2, msg: vec![1, 2, 3] }) diff --git a/pezcumulus/primitives/core/src/lib.rs b/pezcumulus/primitives/core/src/lib.rs index 93a8f9e4..ac000f32 100644 --- a/pezcumulus/primitives/core/src/lib.rs +++ b/pezcumulus/primitives/core/src/lib.rs @@ -365,8 +365,8 @@ pub fn extract_relay_parent(digest: &Digest) -> Option { /// Utilities for handling the relay-parent storage root as a digest item. /// /// This is not intended to be part of the public API, as it is a workaround for -/// via -/// . +/// via +/// . /// /// Runtimes using the teyrchain-system pezpallet are expected to produce this digest item, /// but will stop as soon as they are able to provide the relay-parent hash directly. diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs index b308cc1d..b7b7a2e1 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/src/lib.rs @@ -259,7 +259,7 @@ parameter_types! { pub const ApprovalDeposit: Balance = EXISTENTIAL_DEPOSIT; pub const AssetsStringLimit: u32 = 50; /// Key = 32 bytes, Value = 36 bytes (32+1+1+1+1) - // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 + // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 pub const MetadataDepositBase: Balance = deposit(1, 68); pub const MetadataDepositPerByte: Balance = deposit(0, 1); } @@ -1437,7 +1437,7 @@ parameter_types! { /// Migration to initialize storage versions for pallets added after genesis. /// -/// This is now done automatically (see ), +/// This is now done automatically (see ), /// but some pallets had made it in and had storage set in them for this teyrchain before it was /// merged. pub struct InitStorageVersions; diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs index 7e160984..72d0ebee 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/src/lib.rs @@ -285,7 +285,7 @@ parameter_types! { pub const ApprovalDeposit: Balance = EXISTENTIAL_DEPOSIT; pub const AssetsStringLimit: u32 = 50; /// Key = 32 bytes, Value = 36 bytes (32+1+1+1+1) - // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 + // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/pezframe/assets/src/lib.rs#L257L271 pub const MetadataDepositBase: Balance = deposit(1, 68); pub const MetadataDepositPerByte: Balance = deposit(0, 1); } @@ -1566,7 +1566,7 @@ impl pezframe_support::traits::OnRuntimeUpgrade for DeleteUndecodableStorage { /// Migration to initialize storage versions for pallets added after genesis. /// /// Ideally this would be done automatically (see -/// ), but it probably won't be ready for some +/// ), but it probably won't be ready for some /// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're /// doing it manually. pub struct InitStorageVersions; diff --git a/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs b/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs index dfd63e6f..e3e464e5 100644 --- a/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs +++ b/pezcumulus/teyrchains/runtimes/assets/common/src/migrations.rs @@ -26,7 +26,7 @@ /// For new assets, the reserve location(s) and teleport status need to be explicitly configured by /// the asset's `Owner`. /// -/// See for more info. +/// See for more info. pub mod foreign_assets_reserves { use crate::*; use codec::{Decode, Encode, MaxEncodedLen}; diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs index f3069c0a..be2532f9 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/lib.rs @@ -208,7 +208,7 @@ parameter_types! { /// Migration to initialize storage versions for pallets added after genesis. /// /// Ideally this would be done automatically (see -/// ), but it probably won't be ready for some +/// ), but it probably won't be ready for some /// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're /// doing it manually. pub struct InitStorageVersions; diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs index d4194a3e..5a292432 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/src/lib.rs @@ -196,7 +196,7 @@ parameter_types! { /// Migration to initialize storage versions for pallets added after genesis. /// /// Ideally this would be done automatically (see -/// ), but it probably won't be ready for some +/// ), but it probably won't be ready for some /// time and it's beneficial to get try-runtime-cli on-runtime-upgrade checks into the CI, so we're /// doing it manually. pub struct InitStorageVersions; diff --git a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs index 9a4861f2..fa6337ed 100644 --- a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs +++ b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/src/lib.rs @@ -175,7 +175,7 @@ parameter_types! { .build_or_panic(); pub const SS58Prefix: u8 = 42; // We assume the whole teyrchain state fits into the trie cache - // Numbers are from + // Numbers are from pub const InMemoryDbWeight: RuntimeDbWeight = RuntimeDbWeight { read: 9_000 * constants::WEIGHT_REF_TIME_PER_NANOS, write: 28_000 * constants::WEIGHT_REF_TIME_PER_NANOS, diff --git a/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs b/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs index 7597b3f1..d137a706 100644 --- a/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs +++ b/pezcumulus/zombienet/zombienet-sdk-helpers/src/lib.rs @@ -362,7 +362,7 @@ pub async fn submit_extrinsic_and_wait_for_finalization_success = session_info.validator_groups.iter().map(|v| v.len()).collect(); // insta-approve candidates on low-node testnets: - // cf. https://github.com/pezkuwichain/kurdistan-sdk/issues/134 + // cf. https://github.com/pezkuwichain/pezkuwi-sdk/issues/134 let num_candidates = included_candidates.len(); let approved_bitfield = { if needed_approvals == 0 { diff --git a/pezkuwi/node/core/approval-voting/src/lib.rs b/pezkuwi/node/core/approval-voting/src/lib.rs index 6bd53da5..9ee1f6ee 100644 --- a/pezkuwi/node/core/approval-voting/src/lib.rs +++ b/pezkuwi/node/core/approval-voting/src/lib.rs @@ -1552,7 +1552,7 @@ pub async fn start_approval_worker< // of actions are generated by handling a single action. // // This particular problem statement is specified in issue 3311: -// https://github.com/pezkuwichain/kurdistan-sdk/issues/142 +// https://github.com/pezkuwichain/pezkuwi-sdk/issues/142 // // returns `true` if any of the actions was a `Conclude` command. #[overseer::contextbounds(ApprovalVoting, prefix = self::overseer)] diff --git a/pezkuwi/node/core/approval-voting/src/ops.rs b/pezkuwi/node/core/approval-voting/src/ops.rs index 4c5be4fa..cbf0ce28 100644 --- a/pezkuwi/node/core/approval-voting/src/ops.rs +++ b/pezkuwi/node/core/approval-voting/src/ops.rs @@ -175,7 +175,7 @@ pub fn canonicalize( // due to the fork pruning, this range actually might go too far above where our actual highest // block is, if a relatively short fork is canonicalized. - // TODO https://github.com/pezkuwichain/kurdistan-sdk/issues/143 + // TODO https://github.com/pezkuwichain/pezkuwi-sdk/issues/143 let new_range = StoredBlockRange(canon_number + 1, std::cmp::max(range.1, canon_number + 2)); overlay_db.write_stored_block_range(new_range); diff --git a/pezkuwi/node/core/av-store/src/lib.rs b/pezkuwi/node/core/av-store/src/lib.rs index b5c62d82..3f351c99 100644 --- a/pezkuwi/node/core/av-store/src/lib.rs +++ b/pezkuwi/node/core/av-store/src/lib.rs @@ -647,7 +647,7 @@ async fn run_iteration( // Start prune-all on a separate thread, so that in the case when the operation takes // longer than expected we don't keep the whole subsystem blocked. -// See: https://github.com/pezkuwichain/kurdistan-sdk/issues/170 for more details. +// See: https://github.com/pezkuwichain/pezkuwi-sdk/issues/170 for more details. #[overseer::contextbounds(AvailabilityStore, prefix = self::overseer)] async fn start_prune_all( ctx: &mut Context, diff --git a/pezkuwi/node/core/bitfield-signing/src/lib.rs b/pezkuwi/node/core/bitfield-signing/src/lib.rs index 6f4996ba..f7546c51 100644 --- a/pezkuwi/node/core/bitfield-signing/src/lib.rs +++ b/pezkuwi/node/core/bitfield-signing/src/lib.rs @@ -49,7 +49,7 @@ mod tests; const SPAWNED_TASK_DELAY: Duration = Duration::from_millis(1500); const LOG_TARGET: &str = "teyrchain::bitfield-signing"; -// TODO: use `fatality` (https://github.com/pezkuwichain/kurdistan-sdk/issues/158). +// TODO: use `fatality` (https://github.com/pezkuwichain/pezkuwi-sdk/issues/158). /// Errors we may encounter in the course of executing the `BitfieldSigningSubsystem`. #[derive(Debug, thiserror::Error)] #[allow(missing_docs)] diff --git a/pezkuwi/node/core/dispute-coordinator/src/initialized.rs b/pezkuwi/node/core/dispute-coordinator/src/initialized.rs index 8f164ff4..11b54438 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/kurdistan-sdk/issues/168 + /// https://github.com/pezkuwichain/pezkuwi-sdk/issues/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. @@ -771,7 +771,7 @@ impl Initialized { .handle_import_statements( ctx, overlay_db, - // TODO + // TODO MaybeCandidateReceipt::AssumeBackingVotePresent(candidate_hash), session, statements, diff --git a/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs b/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs index d9672152..ae205679 100644 --- a/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs +++ b/pezkuwi/node/core/provisioner/src/disputes/prioritized_selection/tests.rs @@ -221,7 +221,7 @@ fn partitioning_happy_case() { // achieved with or without the 'help' of a double vote (a validator voting for and against at the // same time). This makes the test a bit pointless but anyway I'm leaving it here to make this // decision explicit and have the test code ready in case this behavior needs to be further tested -// in the future. Link to the PR with the discussions: https://github.com/pezkuwichain/kurdistan-sdk/issues/177 +// in the future. Link to the PR with the discussions: https://github.com/pezkuwichain/pezkuwi-sdk/issues/177 #[test] fn partitioning_doubled_onchain_vote() { let mut input = BTreeMap::<(SessionIndex, CandidateHash), DisputeStatus>::new(); diff --git a/pezkuwi/node/core/provisioner/src/lib.rs b/pezkuwi/node/core/provisioner/src/lib.rs index 48cabf02..78738798 100644 --- a/pezkuwi/node/core/provisioner/src/lib.rs +++ b/pezkuwi/node/core/provisioner/src/lib.rs @@ -416,7 +416,7 @@ fn note_provisionable_data( // parablocks once they are included. But we can do slightly better by // allowing disagreeing backers to record their disagreement and initiate a // dispute once the parablock in question has been included. This potential - // change is tracked by: https://github.com/pezkuwichain/kurdistan-sdk/issues/140 + // change is tracked by: https://github.com/pezkuwichain/pezkuwi-sdk/issues/140 ProvisionableData::Dispute(_, _) => {}, } } diff --git a/pezkuwi/node/core/pvf/README.md b/pezkuwi/node/core/pvf/README.md index a18a2e3a..66882fed 100644 --- a/pezkuwi/node/core/pvf/README.md +++ b/pezkuwi/node/core/pvf/README.md @@ -43,5 +43,5 @@ another popular persistent shell, mosh, it allows scrollback. [impl-guide]: https://docs.pezkuwichain.io/sdk/book/pvf-prechecking.html#summary [glossary]: https://docs.pezkuwichain.io/sdk/book/glossary.html -[testing]: https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/doc/testing.md +[testing]: https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/doc/testing.md [et]: https://github.com/MisterTea/EternalTerminal diff --git a/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs b/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs index cdb6f5b9..bc88a346 100644 --- a/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs +++ b/pezkuwi/node/core/pvf/common/src/worker/security/seccomp.rs @@ -34,7 +34,7 @@ //! reasons. //! //! Considering `io_uring`'s status discussed above, and that it very likely would get detected -//! either by our [static analysis](https://github.com/pezkuwichain/kurdistan-sdk/issues/106) or by +//! either by our [static analysis](https://github.com/pezkuwichain/pezkuwi-sdk/issues/106) or by //! testing, we think it is safe to block it. //! //! ## Consensus analysis diff --git a/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs b/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs index b3368aba..e284dd97 100644 --- a/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs +++ b/pezkuwi/node/core/pvf/prepare-worker/src/memory_stats.rs @@ -24,7 +24,7 @@ //! //! Currently we are only logging these for the purposes of gathering data. In the future, we may //! use these stats to reject PVFs during pre-checking. See -//! for more +//! for more //! background. /// Module for the memory tracker. The memory tracker runs in its own thread, where it polls memory diff --git a/pezkuwi/node/core/runtime-api/src/lib.rs b/pezkuwi/node/core/runtime-api/src/lib.rs index 1a17ceb4..f2967b9a 100644 --- a/pezkuwi/node/core/runtime-api/src/lib.rs +++ b/pezkuwi/node/core/runtime-api/src/lib.rs @@ -394,7 +394,7 @@ where let metrics = self.metrics.clone(); let (sender, receiver) = oneshot::channel(); - // TODO: make the cache great again https://github.com/pezkuwichain/kurdistan-sdk/issues/159 + // TODO: make the cache great again https://github.com/pezkuwichain/pezkuwi-sdk/issues/159 let request = match self.query_cache(relay_parent, request) { Some(request) => request, None => return, diff --git a/pezkuwi/node/gum/README.md b/pezkuwi/node/gum/README.md index 83a2990b..685b6e63 100644 --- a/pezkuwi/node/gum/README.md +++ b/pezkuwi/node/gum/README.md @@ -31,7 +31,7 @@ automatically do so. Related issues: -* +* ### Decision diff --git a/pezkuwi/node/network/approval-distribution/src/tests.rs b/pezkuwi/node/network/approval-distribution/src/tests.rs index 43fe2977..b57a19c8 100644 --- a/pezkuwi/node/network/approval-distribution/src/tests.rs +++ b/pezkuwi/node/network/approval-distribution/src/tests.rs @@ -678,7 +678,7 @@ fn delay_reputation_change() { ); } -/// +/// /// /// 1. Send a view update that removes block B from their view. /// 2. Send a message from B that they incur `COST_UNEXPECTED_MESSAGE` for, but then they receive @@ -782,7 +782,7 @@ fn spam_attack_results_in_negative_reputation_change() { /// Upon receiving them, they both will try to send the message each other. /// This test makes sure they will not punish each other for such duplicate messages. /// -/// See . +/// See . #[test] fn peer_sending_us_the_same_we_just_sent_them_is_ok() { let parent_hash = Hash::repeat_byte(0xFF); @@ -2361,7 +2361,7 @@ fn sends_assignments_even_when_state_is_approved_v2() { ); } -/// +/// /// /// 1. Receive remote peer view update with an unknown head /// 2. Receive assignments for that unknown head @@ -4253,7 +4253,7 @@ fn subsystem_rejects_wrong_claimed_assignments() { /// assignment and Delay tranche assignments land on the same candidate. The delay tranche0 can be /// safely ignored and we don't need to gossip it however, the compact tranche0 assignment should be /// gossiped, because other candidates are included in it, this test makes sure this invariant is -/// upheld, see https://github.com/pezkuwichain/kurdistan-sdk/issues/172#discussion_r557628699, for +/// upheld, see https://github.com/pezkuwichain/pezkuwi-sdk/issues/172#discussion_r557628699, for /// this edge case. #[test] fn subsystem_accepts_tranche0_duplicate_assignments() { diff --git a/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs b/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs index 0a7376f8..05958d59 100644 --- a/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs +++ b/pezkuwi/node/network/collator-protocol/src/collator_side/mod.rs @@ -85,7 +85,7 @@ const COST_APPARENT_FLOOD: Rep = /// /// This is to protect from a single slow validator preventing collations from happening. /// -/// For considerations on this value, see: https://github.com/pezkuwichain/kurdistan-sdk/issues/148 +/// For considerations on this value, see: https://github.com/pezkuwichain/pezkuwi-sdk/issues/148 const MAX_UNSHARED_UPLOAD_TIME: Duration = Duration::from_millis(150); /// A timeout for resetting validators' interests in collations. diff --git a/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs b/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs index b4fa8347..dd35746b 100644 --- a/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs +++ b/pezkuwi/node/network/collator-protocol/src/validator_side/mod.rs @@ -2366,7 +2366,7 @@ async fn handle_collation_fetch_response( "Request timed out" ); // For now we don't want to change reputation on timeout, to mitigate issues like - // this: https://github.com/pezkuwichain/kurdistan-sdk/issues/152 + // this: https://github.com/pezkuwichain/pezkuwi-sdk/issues/152 Err(None) }, Err(RequestError::NetworkError(err)) => { diff --git a/pezkuwi/node/network/gossip-support/src/lib.rs b/pezkuwi/node/network/gossip-support/src/lib.rs index 448563d5..c54f9eb0 100644 --- a/pezkuwi/node/network/gossip-support/src/lib.rs +++ b/pezkuwi/node/network/gossip-support/src/lib.rs @@ -86,7 +86,7 @@ const TRY_RERESOLVE_AUTHORITIES: Duration = Duration::from_secs(2); /// populated). Authority discovery on Kusama takes around 8 minutes, so warning after 10 minutes /// should be fine: /// -/// https://github.com/pezkuwichain/kurdistan-sdk/blob/main/bizinikiwi/client/authority-discovery/src/lib.rs#L88 +/// https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/bizinikiwi/client/authority-discovery/src/lib.rs#L88 const LOW_CONNECTIVITY_WARN_DELAY: Duration = Duration::from_secs(600); /// If connectivity is lower than this in percent, issue warning in logs. @@ -452,7 +452,7 @@ where // First `maxValidators` entries are the teyrchain validators. We'll check // if our index is in this set to avoid searching for the keys. - // https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148 + // https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148 if *index < teyrchain_validators_this_session { gum::trace!(target: LOG_TARGET, "We are now a teyrchain validator",); self.metrics.on_is_teyrchain_validator(); @@ -796,7 +796,7 @@ async fn update_gossip_topology( let random_seed = { let (tx, rx) = oneshot::channel(); - // TODO https://github.com/pezkuwichain/kurdistan-sdk/issues/156: + // TODO https://github.com/pezkuwichain/pezkuwi-sdk/issues/156: // get the random seed from the `SessionInfo` instead. sender .send_message(RuntimeApiMessage::Request( diff --git a/pezkuwi/node/network/protocol/src/request_response/mod.rs b/pezkuwi/node/network/protocol/src/request_response/mod.rs index 6789d704..d0e1e1ba 100644 --- a/pezkuwi/node/network/protocol/src/request_response/mod.rs +++ b/pezkuwi/node/network/protocol/src/request_response/mod.rs @@ -137,7 +137,7 @@ const POV_REQUEST_TIMEOUT_CONNECTED: Duration = Duration::from_millis(2000); /// We supply leniency because there are often large candidates and asynchronous /// backing allows them to be included over a longer window of time. Exponential back-off /// up to a maximum of 10 seconds would be ideal, but isn't supported by the -/// infrastructure here yet: see https://github.com/pezkuwichain/kurdistan-sdk/issues/164 +/// infrastructure here yet: see https://github.com/pezkuwichain/pezkuwi-sdk/issues/164 const ATTESTED_CANDIDATE_TIMEOUT: Duration = Duration::from_millis(2500); /// We don't want a slow peer to slow down all the others, at the same time we want to get out the diff --git a/pezkuwi/node/network/statement-distribution/src/v2/mod.rs b/pezkuwi/node/network/statement-distribution/src/v2/mod.rs index 5efcfeb8..7a0caf39 100644 --- a/pezkuwi/node/network/statement-distribution/src/v2/mod.rs +++ b/pezkuwi/node/network/statement-distribution/src/v2/mod.rs @@ -483,7 +483,7 @@ pub(crate) async fn handle_network_update( state.unused_topologies.insert(*new_session_index, topology); } - // TODO [https://github.com/pezkuwichain/kurdistan-sdk/issues/165] + // TODO [https://github.com/pezkuwichain/pezkuwi-sdk/issues/165] // technically, we should account for the fact that the session topology might // come late, and for all relay-parents with this session, send all grid peers // any `BackedCandidateInv` messages they might need. diff --git a/pezkuwi/node/overseer/src/lib.rs b/pezkuwi/node/overseer/src/lib.rs index fe20d2f4..303a7e80 100644 --- a/pezkuwi/node/overseer/src/lib.rs +++ b/pezkuwi/node/overseer/src/lib.rs @@ -624,7 +624,7 @@ pub struct Overseer { approval_voting_parallel: ApprovalVotingParallel, #[subsystem(GossipSupportMessage, sends: [ NetworkBridgeTxMessage, - NetworkBridgeRxMessage, // TODO + NetworkBridgeRxMessage, // TODO RuntimeApiMessage, ChainSelectionMessage, ChainApiMessage, diff --git a/pezkuwi/node/service/src/builder/mod.rs b/pezkuwi/node/service/src/builder/mod.rs index e55b68c3..b111f706 100644 --- a/pezkuwi/node/service/src/builder/mod.rs +++ b/pezkuwi/node/service/src/builder/mod.rs @@ -794,7 +794,7 @@ where let config = pezsc_consensus_grandpa::Config { // FIXME bizinikiwi#1578 make this available through chainspec // Grandpa performance can be improved a bit by tuning this parameter, see: - // https://github.com/pezkuwichain/kurdistan-sdk/issues/157 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/157 gossip_duration: Duration::from_millis(1000), justification_generation_period: GRANDPA_JUSTIFICATION_PERIOD, name: Some(name), diff --git a/pezkuwi/primitives/src/v8/mod.rs b/pezkuwi/primitives/src/v8/mod.rs index 5dc37d59..58d1726a 100644 --- a/pezkuwi/primitives/src/v8/mod.rs +++ b/pezkuwi/primitives/src/v8/mod.rs @@ -2081,7 +2081,7 @@ pub mod node_features { #[derive(Clone, Copy)] pub enum FeatureIndex { /// Tells if tranch0 assignments could be sent in a single certificate. - /// Reserved for: `` + /// Reserved for: `` EnableAssignmentsV2 = 0, /// This feature enables the extension of `BackedCandidate::validator_indices` by 8 bits. /// The value stored there represents the assumed core index where the candidates @@ -2146,7 +2146,7 @@ pub struct SchedulerParams { /// How many cores are managed by the coretime chain. pub num_cores: u32, /// Deprecated and no longer used by the runtime. - /// Removal is tracked by . + /// Removal is tracked by . #[deprecated] pub max_availability_timeouts: u32, /// The maximum queue size of the pay as you go module. @@ -2159,7 +2159,7 @@ pub struct SchedulerParams { /// The minimum amount needed to claim a slot in the spot pricing queue. pub on_demand_base_fee: Balance, /// Deprecated and no longer used by the runtime. - /// Removal is tracked by . + /// Removal is tracked by . #[deprecated] pub ttl: BlockNumber, } diff --git a/pezkuwi/primitives/src/v9/mod.rs b/pezkuwi/primitives/src/v9/mod.rs index 72bfe25d..aef68e93 100644 --- a/pezkuwi/primitives/src/v9/mod.rs +++ b/pezkuwi/primitives/src/v9/mod.rs @@ -169,7 +169,7 @@ impl From for ChunkIndex { } } -// We should really get https://github.com/pezkuwichain/kurdistan-sdk/issues/133 going .. +// We should really get https://github.com/pezkuwichain/pezkuwi-sdk/issues/133 going .. impl From for ValidatorIndex { fn from(n: u32) -> Self { ValidatorIndex(n) @@ -838,7 +838,7 @@ impl GroupRotationInfo { pub struct ScheduledCore { /// The ID of a para scheduled. pub para_id: Id, - /// DEPRECATED: see: + /// DEPRECATED: see: /// /// Will be removed in a future version. pub collator: Option, @@ -1536,7 +1536,7 @@ pub fn effective_minimum_backing_votes( /// Information about validator sets of a session. /// /// NOTE: `SessionInfo` is frozen. Do not include new fields, consider creating a separate runtime -/// API. Reasoning and further outlook [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/167). +/// API. Reasoning and further outlook [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/167). #[derive(Clone, Encode, Decode, RuntimeDebug, TypeInfo)] #[cfg_attr(feature = "std", derive(PartialEq))] pub struct SessionInfo { diff --git a/pezkuwi/primitives/test-helpers/src/lib.rs b/pezkuwi/primitives/test-helpers/src/lib.rs index aaca9ce4..9fe8055c 100644 --- a/pezkuwi/primitives/test-helpers/src/lib.rs +++ b/pezkuwi/primitives/test-helpers/src/lib.rs @@ -168,7 +168,7 @@ impl PartialOrd for CommittedCandidateReceipt { impl Ord for CommittedCandidateReceipt { fn cmp(&self, other: &Self) -> core::cmp::Ordering { // TODO: compare signatures or something more sane - // https://github.com/pezkuwichain/kurdistan-sdk/issues/132 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/132 self.descriptor() .para_id .cmp(&other.descriptor().para_id) diff --git a/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md b/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md index 01ed2c53..f1d0bc1c 100644 --- a/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md +++ b/pezkuwi/roadmap/implementers-guide/src/node/availability/availability-distribution.md @@ -65,13 +65,13 @@ Note however that, because not all validators in a group have to be actual backe the needed chunk. This in turn could lead to low throughput, as we have to wait for fetches to fail, before reaching a validator finally having our chunk. We do rank back validators not delivering our chunk, but as backers could vary from block to block on a perfectly legitimate basis, this is still not ideal. See issues -[2509](https://github.com/pezkuwichain/kurdistan-sdk/issues/136) and -[2512](https://github.com/pezkuwichain/kurdistan-sdk/issues/137) for more information. +[2509](https://github.com/pezkuwichain/pezkuwi-sdk/issues/136) and +[2512](https://github.com/pezkuwichain/pezkuwi-sdk/issues/137) for more information. The current implementation also only fetches chunks for occupied cores in blocks in active leaves. This means though, if active leaves skips a block or we are particularly slow in fetching our chunk, we might not fetch our chunk if availability reached 2/3 fast enough (slot becomes free). This is not desirable as we would like as many validators as -possible to have their chunk. See this [issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/138) for more details. +possible to have their chunk. See this [issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/138) for more details. ### Serving diff --git a/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md b/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md index 9a256502..4198d1c6 100644 --- a/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md +++ b/pezkuwi/roadmap/implementers-guide/src/node/collators/collator-protocol.md @@ -19,7 +19,7 @@ not being wasted by attackers. Communicating across this trust-boundary is the m Validation of candidates is a heavy task, and furthermore, the [`PoV`][PoV] itself is a large piece of data. Empirically, `PoV`s are on the order of 10MB. -> TODO: note the incremental validation function Ximin proposes at https://github.com/pezkuwichain/kurdistan-sdk/issues/130 +> TODO: note the incremental validation function Ximin proposes at https://github.com/pezkuwichain/pezkuwi-sdk/issues/130 As this network protocol serves as a bridge between collators and validators, it communicates primarily with one subsystem on behalf of each. As a collator, this will receive messages from the [`CollationGeneration`][CG] subsystem. diff --git a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md index fe181f30..7ba17a72 100644 --- a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md +++ b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-coordinator.md @@ -176,7 +176,7 @@ current authority set will overlap with the ones in the previous set and will be Still, for maximum accountability we need to make sure a previous authority set can communicate votes to the next one, regardless of any chain: This is yet to be implemented see section "Resiliency" in dispute-distribution and -[this](https://github.com/pezkuwichain/kurdistan-sdk/issues/144) ticket. +[this](https://github.com/pezkuwichain/pezkuwi-sdk/issues/144) ticket. ## Coordinating Actual Dispute Participation @@ -271,7 +271,7 @@ ordering as the priority one - by block heights of the relay parent, older block possibility not to be able to obtain the block number of the parent when we are inserting the dispute in the queue. To account for races, we will promote any existing participation request to the priority queue once we learn about an including block. NOTE: this is still work in progress and is tracked by [this -issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/161). +issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/161). ### Abandoned Forks @@ -468,7 +468,7 @@ finalized in the first place. Not allowing disputing already finalized blocks ac as it massively reduces the amount of candidates that can be disputed. This makes attempts to overwhelm the system with disputes significantly harder and counter measures way easier. We can -limit inclusion for example (as suggested [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/162) in case of high +limit inclusion for example (as suggested [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/162) in case of high dispute load. Another measure we have at our disposal is that on finality lag block production will slow down, implicitly reducing the rate of new candidates that can be disputed. Hence, the cutting-off of the unlimited candidate supply of already finalized blocks, guarantees the necessary DoS protection and ensures we can have measures in place to diff --git a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md index c696013f..9bec3440 100644 --- a/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md +++ b/pezkuwi/roadmap/implementers-guide/src/node/disputes/dispute-distribution.md @@ -202,7 +202,7 @@ the dispute-coordinator already knows about the dispute. Goal 3 and 4 are obviously very related and both can easily be solved via rate limiting as we shall see below. Rate limits should already be implemented at the -Bizinikiwi level, but [are not](https://github.com/pezkuwichain/kurdistan-sdk/issues/30) +Bizinikiwi level, but [are not](https://github.com/pezkuwichain/pezkuwi-sdk/issues/30) at the time of writing. But even if they were, the enforced Bizinikiwi limits would likely not be configurable and thus would still be to high for our needs as we can rely on the following observations: @@ -246,7 +246,7 @@ This is probably an argument for not imposing a too low rate limit, although the issue is more general: Even without any rate limit, if an attacker generates disputes at a very high rate, nodes will be having trouble keeping participation up, hence the problem should be mitigated at a [more fundamental -layer](https://github.com/pezkuwichain/kurdistan-sdk/issues/162). +layer](https://github.com/pezkuwichain/pezkuwi-sdk/issues/162). For nodes that have been offline for a while, the same argument as for session changes holds, but matters even less: We assume 2/3 of nodes to be online, so diff --git a/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md b/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md index 009d33e9..6b334d0a 100644 --- a/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md +++ b/pezkuwi/roadmap/implementers-guide/src/node/utility/gossip-support.md @@ -11,7 +11,7 @@ limits the amount of messages sent and received to be an order of sqrt of the validators. Our neighbors in this graph will be forwarded to the network bridge with the `NetworkBridgeMessage::NewGossipTopology` message. -See https://github.com/pezkuwichain/kurdistan-sdk/issues/141 for more details. +See https://github.com/pezkuwichain/pezkuwi-sdk/issues/141 for more details. The gossip topology is used by teyrchain distribution subsystems, such as Bitfield Distribution, (small) Statement Distribution and diff --git a/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md b/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md index 12602c22..11195f48 100644 --- a/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md +++ b/pezkuwi/roadmap/implementers-guide/src/protocol-validator-disabling.md @@ -430,7 +430,7 @@ Implementation of the above design covers a few additional areas that allow for > This would guarantee determinism as different nodes can see different leaves, but this approach was leaving too > wide of a window because of Async-Backing. Relay Parent could have been significantly in the past and it would > give a lot of time for past session disputes to be spammed. -1. Do not block finality for "disabled" disputes [#3358](https://github.com/pezkuwichain/kurdistan-sdk/issues/114) +1. Do not block finality for "disabled" disputes [#3358](https://github.com/pezkuwichain/pezkuwi-sdk/issues/114) - Emergency fix to not block finality for disputes initiated only by disabled validators 1. Re-enable small offender when approaching BZT (**Runtime**) #TODO - When BZT limit is reached and there are more offenders to be disabled re-enable the smallest offenders to disable diff --git a/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md b/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md index 582f86a7..4d5bcecd 100644 --- a/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md +++ b/pezkuwi/roadmap/implementers-guide/src/runtime/session_info.md @@ -14,7 +14,7 @@ struct SessionInfo { /// /// NOTE: There might be more authorities in the current session, than `validators` participating /// in teyrchain consensus. See - /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).. + /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).. /// /// `SessionInfo::validators` will be limited to `max_validators` when set. validators: Vec, @@ -23,14 +23,14 @@ struct SessionInfo { /// NOTE: The first `validators.len()` entries will match the corresponding validators in /// `validators`, afterwards any remaining authorities can be found. This is any authorities not /// participating in teyrchain consensus - see - /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148). + /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148). #[cfg_attr(feature = "std", ignore_malloc_size_of = "outside type")] discovery_keys: Vec, /// The assignment keys for validators. /// /// NOTE: There might be more authorities in the current session, than validators participating /// in teyrchain consensus. See - /// [`max_validators`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).. + /// [`max_validators`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs#L148).. /// /// Therefore: /// ```ignore diff --git a/pezkuwi/roadmap/implementers-guide/src/types/runtime.md b/pezkuwi/roadmap/implementers-guide/src/types/runtime.md index ddd4cfb1..a996e439 100644 --- a/pezkuwi/roadmap/implementers-guide/src/types/runtime.md +++ b/pezkuwi/roadmap/implementers-guide/src/types/runtime.md @@ -7,7 +7,7 @@ Types used within the runtime exclusively and pervasively. The internal-to-runtime configuration of the teyrchain host is kept in `struct HostConfiguration`. This is expected to be altered only by governance procedures or via migrations from the Pezkuwi-SDK codebase. The latest definition of `HostConfiguration` can be found in the project repo -[here](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs). Each +[here](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs). Each parameter has got a doc comment so for any details please refer to the code. Some related parameters in `HostConfiguration` are grouped together so that they can be managed easily. These are: @@ -20,7 +20,7 @@ Check the definitions of these structs for further details. ### Configuration migrations Modifying `HostConfiguration` requires a storage migration. These migrations are located in the -[`migrations`](https://github.com/pezkuwichain/kurdistan-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs) +[`migrations`](https://github.com/pezkuwichain/pezkuwi-sdk/blob/main/pezkuwi/runtime/teyrchains/src/configuration.rs) subfolder of Pezkuwi-SDK repo. ## ParaInherentData diff --git a/pezkuwi/roadmap/teyrchains.md b/pezkuwi/roadmap/teyrchains.md index 1338724a..79287f06 100644 --- a/pezkuwi/roadmap/teyrchains.md +++ b/pezkuwi/roadmap/teyrchains.md @@ -116,7 +116,7 @@ The main event loop of a collator node: --- ### Cross-chain Messaging -https://hackmd.io/ILoQltEISP697oMYe4HbrA?view https://github.com/pezkuwichain/kurdistan-sdk/issues/163 +https://hackmd.io/ILoQltEISP697oMYe4HbrA?view https://github.com/pezkuwichain/pezkuwi-sdk/issues/163 The biggest sub-project of the teyrchains roadmap - how messages are sent between teyrchains. This involves the state-machine ordering of incoming messages, protocols for fetching those messages, and node logic for persisting the diff --git a/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs b/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs index 53246c8e..90bae14d 100644 --- a/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs +++ b/pezkuwi/runtime/teyrchains/src/assigner_coretime/mod.rs @@ -403,7 +403,7 @@ impl Pezpallet { /// Inserting arbitrarily causes a `DispatchError::DisallowedInsert` error. // With this restriction this function allows for O(1) complexity. It could easily be lifted, if // need be and in fact an implementation is available - // [here](https://github.com/pezkuwichain/kurdistan-sdk/issues/107/commits/c0c23b01fd2830910cde92c11960dad12cdff398#diff-0c85a46e448de79a5452395829986ee8747e17a857c27ab624304987d2dde8baR386). + // [here](https://github.com/pezkuwichain/pezkuwi-sdk/issues/107/commits/c0c23b01fd2830910cde92c11960dad12cdff398#diff-0c85a46e448de79a5452395829986ee8747e17a857c27ab624304987d2dde8baR386). // The problem is that insertion complexity then depends on the size of the existing queue, // which makes determining weights hard and could lead to issues like overweight blocks (at // least in theory). diff --git a/pezkuwi/runtime/teyrchains/src/configuration.rs b/pezkuwi/runtime/teyrchains/src/configuration.rs index 52af1f5d..66db8316 100644 --- a/pezkuwi/runtime/teyrchains/src/configuration.rs +++ b/pezkuwi/runtime/teyrchains/src/configuration.rs @@ -135,7 +135,7 @@ pub struct HostConfiguration { /// revert [`validation_upgrade_delay`](Self::validation_upgrade_delay) many blocks back and /// still find the new code in the storage by hash. /// - /// [#4601]: https://github.com/pezkuwichain/kurdistan-sdk/issues/151 + /// [#4601]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/151 pub validation_upgrade_delay: BlockNumber, /// Asynchronous backing parameters. pub async_backing_params: AsyncBackingParams, @@ -513,20 +513,20 @@ pub mod pezpallet { /// The in-code storage version. /// - /// v0-v1: - /// v1-v2: - /// v2-v3: - /// v3-v4: - /// v4-v5: - /// + - /// + - /// v5-v6: (remove UMP dispatch queue) - /// v6-v7: - /// v7-v8: - /// v8-v9: - /// v9-v10: - /// v10-11: - /// v11-12: + /// v0-v1: + /// v1-v2: + /// v2-v3: + /// v3-v4: + /// v4-v5: + /// + + /// + + /// v5-v6: (remove UMP dispatch queue) + /// v6-v7: + /// v7-v8: + /// v8-v9: + /// v9-v10: + /// v10-11: + /// v11-12: const STORAGE_VERSION: StorageVersion = StorageVersion::new(12); #[pezpallet::pezpallet] diff --git a/pezkuwi/runtime/teyrchains/src/disputes.rs b/pezkuwi/runtime/teyrchains/src/disputes.rs index 397ba4a9..ea6789ba 100644 --- a/pezkuwi/runtime/teyrchains/src/disputes.rs +++ b/pezkuwi/runtime/teyrchains/src/disputes.rs @@ -194,7 +194,7 @@ pub trait DisputesHandler { ) -> Result<(), ()> { // TODO: Consider trade-of to avoid `O(n * log(n))` average lookups of `included_state` // TODO: instead make a single pass and store the values lazily. - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/150 + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/150 let n = statement_sets.len(); statement_sets.sort_by(dispute_ordering_compare::); @@ -893,7 +893,7 @@ impl Pezpallet { BackersOnDisputes::::remove_prefix(to_prune, None); // This is larger, and will be extracted to the `shared` pezpallet for more proper - // pruning. TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/145 + // pruning. TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/145 #[allow(deprecated)] Included::::remove_prefix(to_prune, None); } diff --git a/pezkuwi/runtime/teyrchains/src/initializer.rs b/pezkuwi/runtime/teyrchains/src/initializer.rs index 4e7a323f..612b275d 100644 --- a/pezkuwi/runtime/teyrchains/src/initializer.rs +++ b/pezkuwi/runtime/teyrchains/src/initializer.rs @@ -247,7 +247,7 @@ impl Pezpallet { let random_seed = { let mut buf = [0u8; 32]; // TODO: audit usage of randomness API - // https://github.com/pezkuwichain/kurdistan-sdk/issues/139 + // https://github.com/pezkuwichain/pezkuwi-sdk/issues/139 let (random_hash, _) = T::Randomness::random(&b"paras"[..]); let len = core::cmp::min(32, random_hash.as_ref().len()); buf[..len].copy_from_slice(&random_hash.as_ref()[..len]); diff --git a/pezkuwi/runtime/teyrchains/src/paras/mod.rs b/pezkuwi/runtime/teyrchains/src/paras/mod.rs index 6559375f..374eacf4 100644 --- a/pezkuwi/runtime/teyrchains/src/paras/mod.rs +++ b/pezkuwi/runtime/teyrchains/src/paras/mod.rs @@ -398,7 +398,7 @@ pub(crate) enum PvfCheckCause { /// instead of its relay parent -- in order to keep PVF available in case of chain /// reversions. /// - /// See https://github.com/pezkuwichain/kurdistan-sdk/issues/151 for detailed explanation. + /// See https://github.com/pezkuwichain/pezkuwi-sdk/issues/151 for detailed explanation. included_at: BlockNumber, /// Whether or not the upgrade should be enacted directly. /// @@ -2080,7 +2080,7 @@ impl Pezpallet { // // This is only an intermediate solution and should be fixed in foreseeable future. // - // [soaking issue]: https://github.com/pezkuwichain/kurdistan-sdk/issues/146 + // [soaking issue]: https://github.com/pezkuwichain/pezkuwi-sdk/issues/146 let validation_code = mem::replace(&mut genesis_data.validation_code, ValidationCode(Vec::new())); UpcomingParasGenesis::::insert(&id, genesis_data); diff --git a/pezkuwi/teyrchain/src/primitives.rs b/pezkuwi/teyrchain/src/primitives.rs index 975ad3dc..850c8db9 100644 --- a/pezkuwi/teyrchain/src/primitives.rs +++ b/pezkuwi/teyrchain/src/primitives.rs @@ -427,7 +427,7 @@ impl XcmpMessageHandler for () { } /// Validation parameters for evaluating the teyrchain validity function. -// TODO: balance downloads (https://github.com/pezkuwichain/kurdistan-sdk/issues/131) +// TODO: balance downloads (https://github.com/pezkuwichain/pezkuwi-sdk/issues/131) #[derive(PartialEq, Eq, Decode, Clone)] #[cfg_attr(feature = "std", derive(Debug, Encode))] pub struct ValidationParams { @@ -458,7 +458,7 @@ pub type HorizontalMessages = BoundedVec, ConstU32>; /// The result of teyrchain validation. -// TODO: balance uploads (https://github.com/pezkuwichain/kurdistan-sdk/issues/131) +// TODO: balance uploads (https://github.com/pezkuwichain/pezkuwi-sdk/issues/131) #[derive(PartialEq, Eq, Clone, Encode)] #[cfg_attr(feature = "std", derive(Debug, Decode))] pub struct ValidationResult { diff --git a/pezkuwi/xcm/src/v3/multilocation.rs b/pezkuwi/xcm/src/v3/multilocation.rs index 3184d670..57695f1a 100644 --- a/pezkuwi/xcm/src/v3/multilocation.rs +++ b/pezkuwi/xcm/src/v3/multilocation.rs @@ -397,7 +397,7 @@ impl MultiLocation { target: &MultiLocation, context: InteriorMultiLocation, ) -> Result<(), ()> { - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/149 Optimize this. + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/149 Optimize this. // 1. Use our `context` to figure out how the `target` would address us. let inverted_target = context.invert_target(target)?; diff --git a/pezkuwi/xcm/src/v4/location.rs b/pezkuwi/xcm/src/v4/location.rs index 8805190c..123c6bb8 100644 --- a/pezkuwi/xcm/src/v4/location.rs +++ b/pezkuwi/xcm/src/v4/location.rs @@ -448,7 +448,7 @@ impl Reanchorable for Location { /// /// Does not modify `self` in case of overflow. fn reanchor(&mut self, target: &Location, context: &InteriorLocation) -> Result<(), ()> { - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/149 Optimize this. + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/149 Optimize this. // 1. Use our `context` to figure out how the `target` would address us. let inverted_target = context.invert_target(target)?; diff --git a/pezkuwi/xcm/src/v5/location.rs b/pezkuwi/xcm/src/v5/location.rs index 5e025fe4..7de3464e 100644 --- a/pezkuwi/xcm/src/v5/location.rs +++ b/pezkuwi/xcm/src/v5/location.rs @@ -448,7 +448,7 @@ impl Reanchorable for Location { /// /// Does not modify `self` in case of overflow. fn reanchor(&mut self, target: &Location, context: &InteriorLocation) -> Result<(), ()> { - // TODO: https://github.com/pezkuwichain/kurdistan-sdk/issues/149 Optimize this. + // TODO: https://github.com/pezkuwichain/pezkuwi-sdk/issues/149 Optimize this. // 1. Use our `context` to figure out how the `target` would address us. let inverted_target = context.invert_target(target)?; diff --git a/pezkuwi/xcm/xcm-builder/src/barriers.rs b/pezkuwi/xcm/xcm-builder/src/barriers.rs index b6994c97..ce423e74 100644 --- a/pezkuwi/xcm/xcm-builder/src/barriers.rs +++ b/pezkuwi/xcm/xcm-builder/src/barriers.rs @@ -546,7 +546,7 @@ where } } -// See issue +// See issue pub struct DenyReserveTransferToRelayChain; impl DenyExecution for DenyReserveTransferToRelayChain { fn deny_execution( diff --git a/pezkuwi/xcm/xcm-executor/integration-tests/src/lib.rs b/pezkuwi/xcm/xcm-executor/integration-tests/src/lib.rs index 620c5e95..830b4e69 100644 --- a/pezkuwi/xcm/xcm-executor/integration-tests/src/lib.rs +++ b/pezkuwi/xcm/xcm-executor/integration-tests/src/lib.rs @@ -328,7 +328,7 @@ fn query_response_elicits_handler() { /// Simulates a cross-chain message from Teyrchain to Teyrchain through Relay Chain /// that deposits assets into the reserve of the destination. /// Regression test for `DepositReserveAsset` changes in -/// +/// #[test] fn deposit_reserve_asset_works_for_any_xcm_sender() { pezsp_tracing::try_init_simple(); diff --git a/templates/minimal/runtime/src/lib.rs b/templates/minimal/runtime/src/lib.rs index 5e5d2a65..a8dce83e 100644 --- a/templates/minimal/runtime/src/lib.rs +++ b/templates/minimal/runtime/src/lib.rs @@ -342,7 +342,7 @@ impl_runtime_apis! { /// /// Other types should preferably be private. // TODO: this should be standardized in some way, see: -// https://github.com/pezkuwichain/kurdistan-sdk/issues/3 +// https://github.com/pezkuwichain/pezkuwi-sdk/issues/3 pub mod interface { use super::Runtime; use pezkuwi_sdk::{pezkuwi_sdk_frame as frame, *}; diff --git a/templates/solochain/docs/rust-setup.md b/templates/solochain/docs/rust-setup.md index 144afcf0..afd45270 100644 --- a/templates/solochain/docs/rust-setup.md +++ b/templates/solochain/docs/rust-setup.md @@ -151,7 +151,7 @@ configure your Rust compiler to use [`nightly` builds](https://doc.rust-lang.org allow you to compile Bizinikiwi runtime code to the Wasm target. > There are upstream issues in Rust that need to be resolved before all of Bizinikiwi can use the stable Rust toolchain. -> [This is our tracking issue](https://github.com/pezkuwichain/kurdistan-sdk/issues/9) if you're curious as to why and how +> [This is our tracking issue](https://github.com/pezkuwichain/pezkuwi-sdk/issues/9) if you're curious as to why and how > this will be resolved. #### Latest nightly for Bizinikiwi `master`