From 9bd688a742e69ae3ac0f0aab149139331388ef9b Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Sat, 17 Jan 2026 23:19:40 +0300 Subject: [PATCH] Update documentation and templates for Pezkuwi branding --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .../ISSUE_TEMPLATE/core_implementation.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/dependabot.yml | 16 +- .github/pull_request_template.md | 2 +- docs/Ai_RULES.md => Ai_RULES.md | 16 +- CONTRIBUTING.md | 22 +- README.md | 16 +- ...REBRAND_PROGRESS.md => REBRAND_PROGRESS.md | 114 +- docs/TERMINOLOGY.md => TERMINOLOGY.md | 138 +- comprehensive_rebrand.py | 90 + docs/antora.yml | 4 +- docs/modules/ROOT/nav.adoc | 14 +- docs/modules/ROOT/pages/glossary.adoc | 2 +- .../ROOT/pages/guides/async_backing.adoc | 6 +- .../ROOT/pages/guides/contract_migration.adoc | 2 +- .../ROOT/pages/guides/hrmp_channels.adoc | 64 +- .../ROOT/pages/guides/pay_dot_as_a_fee.adoc | 10 +- .../pages/guides/pezpallet_abstractions.adoc | 54 +- .../pages/guides/predeployed_contracts.adoc | 2 +- .../ROOT/pages/guides/quick_start.adoc | 44 +- .../ROOT/pages/guides/rpc_differences.adoc | 2 +- .../pages/guides/testing_with_zombienet.adoc | 44 +- .../ROOT/pages/guides/weights_fees.adoc | 14 +- docs/modules/ROOT/pages/index.adoc | 8 +- .../ROOT/pages/misc/multisig-accounts.adoc | 2 +- .../modules/ROOT/pages/pezpallets/assets.adoc | 8 +- .../ROOT/pages/pezpallets/aura_ext.adoc | 22 +- .../ROOT/pages/pezpallets/balances.adoc | 10 +- .../pages/pezpallets/collator-selection.adoc | 6 +- .../ROOT/pages/pezpallets/message-queue.adoc | 12 +- .../ROOT/pages/pezpallets/multisig.adoc | 8 +- docs/modules/ROOT/pages/pezpallets/proxy.adoc | 6 +- .../pages/pezpallets/teyrchain-system.adoc | 28 +- .../pages/pezpallets/transaction_payment.adoc | 18 +- .../ROOT/pages/pezpallets/treasury.adoc | 16 +- docs/modules/ROOT/pages/pezpallets/xcm.adoc | 28 +- .../ROOT/pages/pezpallets/xcmp-queue.adoc | 18 +- .../ROOT/pages/runtime/xcm_executor.adoc | 6 +- docs/modules/ROOT/pages/runtimes/evm.adoc | 40 +- docs/modules/ROOT/pages/runtimes/generic.adoc | 34 +- docs/templates/pezpallet.adoc | 6 +- docs/templates/runtime.adoc | 2 +- ...repositories.md => domains_repositories.md | 20 +- evm-template/Cargo.lock | 8241 +++++++++++------ evm-template/Cargo.toml | 228 +- evm-template/node/Cargo.toml | 84 +- evm-template/node/src/chain_spec.rs | 22 +- evm-template/node/src/cli.rs | 28 +- evm-template/node/src/command.rs | 42 +- evm-template/node/src/contracts/defaults.rs | 2 +- evm-template/node/src/contracts/mod.rs | 2 +- evm-template/node/src/eth.rs | 18 +- evm-template/node/src/main.rs | 2 +- evm-template/node/src/rpc/eth.rs | 24 +- evm-template/node/src/rpc/mod.rs | 24 +- evm-template/node/src/service.rs | 118 +- evm-template/node/src/tanssi_rpc/eth.rs | 34 +- evm-template/node/src/tanssi_rpc/mod.rs | 20 +- evm-template/pezkuwi-launch/config.json | 6 +- evm-template/runtime/Cargo.toml | 130 +- evm-template/runtime/src/benchmark.rs | 8 +- .../runtime/src/configs/asset_config.rs | 10 +- .../runtime/src/configs/governance/origins.rs | 15 +- .../runtime/src/configs/governance/tracks.rs | 10 +- evm-template/runtime/src/configs/mod.rs | 36 +- evm-template/runtime/src/configs/weight.rs | 4 +- .../runtime/src/configs/xcm_config.rs | 38 +- evm-template/runtime/src/constants.rs | 8 +- .../runtime/src/genesis_config_presets.rs | 24 +- evm-template/runtime/src/lib.rs | 61 +- evm-template/runtime/src/precompiles.rs | 2 +- evm-template/runtime/src/types.rs | 16 +- evm-template/runtime/src/weights/mod.rs | 4 +- ... pezcumulus_pezpallet_teyrchain_system.rs} | 12 +- ....rs => pezcumulus_pezpallet_xcmp_queue.rs} | 12 +- .../src/weights/pezpallet_asset_manager.rs | 2 +- .../runtime/src/weights/pezpallet_assets.rs | 2 +- .../runtime/src/weights/pezpallet_balances.rs | 2 +- .../weights/pezpallet_collator_selection.rs | 2 +- .../weights/pezpallet_conviction_voting.rs | 2 +- .../runtime/src/weights/pezpallet_evm.rs | 2 +- .../src/weights/pezpallet_message_queue.rs | 2 +- .../runtime/src/weights/pezpallet_multisig.rs | 2 +- .../runtime/src/weights/pezpallet_preimage.rs | 2 +- .../runtime/src/weights/pezpallet_proxy.rs | 2 +- .../src/weights/pezpallet_referenda.rs | 2 +- .../src/weights/pezpallet_scheduler.rs | 2 +- .../runtime/src/weights/pezpallet_session.rs | 2 +- .../runtime/src/weights/pezpallet_sudo.rs | 2 +- .../src/weights/pezpallet_timestamp.rs | 2 +- .../runtime/src/weights/pezpallet_treasury.rs | 2 +- .../runtime/src/weights/pezpallet_utility.rs | 2 +- .../src/weights/pezpallet_whitelist.rs | 2 +- .../runtime/src/weights/pezpallet_xcm.rs | 2 +- .../src/weights/pezpallet_xcm_transactor.rs | 2 +- .../weights/pezpallet_xcm_weight_trader.rs | 2 +- evm-template/runtime/tests/common/mod.rs | 2 +- evm-template/runtime/tests/constants_test.rs | 22 +- evm-template/runtime/tests/multiplier.rs | 4 +- evm-template/runtime/tests/storage.rs | 8 +- evm-template/runtime/tests/xcm_mock/mod.rs | 26 +- .../runtime/tests/xcm_mock/relay_chain/mod.rs | 6 +- .../runtime/tests/xcm_mock/teyrchain/mod.rs | 6 +- evm-template/scripts/generate-benchmarks.sh | 2 +- evm-template/scripts/zombienet.sh | 38 +- evm-template/template-fuzzer/Cargo.toml | 20 +- evm-template/template-fuzzer/src/main.rs | 20 +- evm-template/zombienet-config/README.md | 6 +- evm-template/zombienet-config/devnet.toml | 12 +- final_rebrand.py | 147 + generic-template/CHANGELOG.md | 30 +- generic-template/Cargo.lock | 7740 +++++++++++----- generic-template/Cargo.toml | 214 +- generic-template/node/Cargo.toml | 76 +- generic-template/node/src/chain_spec.rs | 20 +- generic-template/node/src/cli.rs | 24 +- generic-template/node/src/command.rs | 40 +- generic-template/node/src/main.rs | 2 +- generic-template/node/src/rpc.rs | 12 +- generic-template/node/src/service.rs | 104 +- generic-template/runtime/Cargo.toml | 132 +- generic-template/runtime/src/apis.rs | 14 +- generic-template/runtime/src/benchmark.rs | 8 +- .../runtime/src/configs/asset_config.rs | 16 +- .../runtime/src/configs/governance/origins.rs | 15 +- .../runtime/src/configs/governance/tracks.rs | 10 +- generic-template/runtime/src/configs/mod.rs | 16 +- .../runtime/src/configs/weight.rs | 4 +- .../runtime/src/configs/xcm_config.rs | 32 +- generic-template/runtime/src/constants.rs | 8 +- .../runtime/src/genesis_config_presets.rs | 22 +- generic-template/runtime/src/lib.rs | 19 +- generic-template/runtime/src/types.rs | 18 +- generic-template/runtime/src/weights/mod.rs | 4 +- ... pezcumulus_pezpallet_teyrchain_system.rs} | 12 +- ....rs => pezcumulus_pezpallet_xcmp_queue.rs} | 12 +- .../src/weights/pezpallet_asset_manager.rs | 2 +- .../runtime/src/weights/pezpallet_assets.rs | 2 +- .../runtime/src/weights/pezpallet_balances.rs | 2 +- .../weights/pezpallet_collator_selection.rs | 2 +- .../weights/pezpallet_conviction_voting.rs | 2 +- .../src/weights/pezpallet_message_queue.rs | 2 +- .../runtime/src/weights/pezpallet_multisig.rs | 2 +- .../runtime/src/weights/pezpallet_preimage.rs | 2 +- .../runtime/src/weights/pezpallet_proxy.rs | 2 +- .../src/weights/pezpallet_referenda.rs | 2 +- .../src/weights/pezpallet_scheduler.rs | 2 +- .../runtime/src/weights/pezpallet_session.rs | 2 +- .../runtime/src/weights/pezpallet_sudo.rs | 2 +- .../src/weights/pezpallet_timestamp.rs | 2 +- .../weights/pezpallet_transaction_payment.rs | 2 +- .../runtime/src/weights/pezpallet_treasury.rs | 2 +- .../runtime/src/weights/pezpallet_utility.rs | 2 +- .../src/weights/pezpallet_whitelist.rs | 2 +- .../runtime/src/weights/pezpallet_xcm.rs | 2 +- .../src/weights/pezpallet_xcm_transactor.rs | 2 +- .../weights/pezpallet_xcm_weight_trader.rs | 2 +- generic-template/runtime/tests/common/mod.rs | 2 +- .../runtime/tests/constants_test.rs | 22 +- generic-template/runtime/tests/multiplier.rs | 4 +- generic-template/runtime/tests/storage.rs | 8 +- .../runtime/tests/xcm_mock/mod.rs | 26 +- .../runtime/tests/xcm_mock/relay_chain/mod.rs | 6 +- .../runtime/tests/xcm_mock/teyrchain/mod.rs | 6 +- .../scripts/generate-benchmarks.sh | 2 +- generic-template/scripts/zombienet.sh | 52 +- generic-template/template-fuzzer/Cargo.toml | 20 +- generic-template/template-fuzzer/src/main.rs | 20 +- generic-template/zombienet-config/README.md | 6 +- generic-template/zombienet-config/devnet.toml | 10 +- rename_files.py | 51 + 172 files changed, 12903 insertions(+), 6604 deletions(-) rename docs/Ai_RULES.md => Ai_RULES.md (87%) rename docs/REBRAND_PROGRESS.md => REBRAND_PROGRESS.md (56%) rename docs/TERMINOLOGY.md => TERMINOLOGY.md (50%) create mode 100644 comprehensive_rebrand.py rename docs/domains_repositories.md => domains_repositories.md (88%) rename evm-template/runtime/src/weights/{cumulus_pezpallet_teyrchain_system.rs => pezcumulus_pezpallet_teyrchain_system.rs} (84%) rename evm-template/runtime/src/weights/{cumulus_pezpallet_xcmp_queue.rs => pezcumulus_pezpallet_xcmp_queue.rs} (95%) create mode 100644 final_rebrand.py rename generic-template/runtime/src/weights/{cumulus_pezpallet_teyrchain_system.rs => pezcumulus_pezpallet_teyrchain_system.rs} (84%) rename generic-template/runtime/src/weights/{cumulus_pezpallet_xcmp_queue.rs => pezcumulus_pezpallet_xcmp_queue.rs} (95%) create mode 100644 rename_files.py diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index fb2b2f7..a641642 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -33,7 +33,7 @@ body: id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/substrate-runtime-template/blob/main/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/blob/main/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/.github/ISSUE_TEMPLATE/core_implementation.yml b/.github/ISSUE_TEMPLATE/core_implementation.yml index e19ef55..78d152f 100644 --- a/.github/ISSUE_TEMPLATE/core_implementation.yml +++ b/.github/ISSUE_TEMPLATE/core_implementation.yml @@ -23,7 +23,7 @@ body: id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/substrate-runtime-template/blob/main/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/blob/main/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 36c468c..03a0478 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -28,7 +28,7 @@ body: id: terms attributes: label: Contribution Guidelines - description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/substrate-runtime-template/blob/main/CONTRIBUTING.md) + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/blob/main/CONTRIBUTING.md) options: - label: I agree to follow this project's Contribution Guidelines required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 16c2cf4..439ee31 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,15 +7,15 @@ updates: interval: daily - package-ecosystem: cargo directory: '/' - # Handle updates for crates from https://github.com/paritytech/polkadot-sdk manually. + # Handle updates for crates from https://github.com/pezkuwichain/pezkuwi-sdk manually. ignore: - - dependency-name: 'sc-*' - - dependency-name: 'sp-*' - - dependency-name: 'frame-*' - - dependency-name: 'pallet-*' - - dependency-name: 'substrate-*' - - dependency-name: 'polkadot-*' - - dependency-name: 'cumulus-*' + - dependency-name: 'pezsc-*' + - dependency-name: 'pezsp-*' + - dependency-name: 'pezframe-*' + - dependency-name: 'pezpallet-*' + - dependency-name: 'bizinikiwi-*' + - dependency-name: 'pezkuwi-*' + - dependency-name: 'pezcumulus-*' - dependency-name: 'assets-*' - dependency-name: 'xcm-*' schedule: diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 03758a0..0db3229 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -16,4 +16,4 @@ Fixes #??? - [ ] Tests - [ ] Documentation -- [ ] Pallets, that require benchmarks, are added to `scripts/assets/pallets.txt` (Pallet require benchmark if it has WeightInfo config type) +- [ ] Pezpallets, that require benchmarks, are added to `scripts/assets/pezpallets.txt` (Pezpallet require benchmark if it has WeightInfo config type) diff --git a/docs/Ai_RULES.md b/Ai_RULES.md similarity index 87% rename from docs/Ai_RULES.md rename to Ai_RULES.md index 6214c79..2c97c1e 100644 --- a/docs/Ai_RULES.md +++ b/Ai_RULES.md @@ -1,6 +1,6 @@ -# Claude Kuralları - Pezkuwi SDK +# ai Kuralları - Pezkuwi SDK -Bu dosya her oturumda Claude tarafından okunmalı ve kurallara kesinlikle uyulmalıdır. +Bu dosya her oturumda ai tarafından okunmalı ve kurallara kesinlikle uyulmalıdır. --- @@ -22,7 +22,7 @@ Bu hedef iki parçadan oluşur: - **ASLA** rebrand edilmiş kodu eski haline döndürme - **ASLA** cargo check hataları için isim değişikliklerini geri alma - **ASLA** "çalışsın diye" terminolojiyi bozma -- **ASLA** pezkuwi → polkadot, bizinikiwi → substrate gibi geri dönüşüm yapma +- **ASLA** pezkuwi → pezkuwi, bizinikiwi → bizinikiwi gibi geri dönüşüm yapma ### 2. Terminoloji Koruma Aşağıdaki dönüşümler kalıcıdır ve geri alınamaz: @@ -42,8 +42,8 @@ Aşağıdaki dönüşümler kalıcıdır ve geri alınamaz: | parachain | teyrchain | | Parachain | Teyrchain | | paritytech | pezkuwichain | -| pezframe- | pezframe- | -| pezpallet- | pezpallet- | +| frame- | pezframe- | +| pallet- | pezpallet- | | sp- | pezsp- | | sc- | pezsc- | @@ -56,7 +56,7 @@ Cargo check hatası aldığında: ``` Hata: pezsp_runtime bulunamadı DOĞRU: pezsp_runtime modülünü/import'unu düzelt -YANLIŞ: sp_runtime'a geri dön +YANLIŞ: pezsp_runtime'a geri dön ``` --- @@ -84,7 +84,7 @@ YANLIŞ: sp_runtime'a geri dön 1. Kullanıcının talimatı olmadan rebrand'i geri alma 2. "Derleme için gerekli" bahanesiyle terminolojiyi bozma 3. Uzun süren hatalar için "kolay çözüm" olarak geri dönüş yapma -4. Commit mesajına Claude imzası ekleme +4. Commit mesajına ai imzası ekleme 5. Test etmeden commit/push yapma --- @@ -105,7 +105,7 @@ Eğer cargo check 100+ hata veriyorsa: ## REFERANS: REBRAND_MAP Tam crate isim değişiklikleri için `/home/mamostehp/pezkuwi-sdk/REBRAND_PROGRESS.md` dosyasına bak. -Terminoloji kılavuzu için `.claude/TERMINOLOGY.md` dosyasına bak. +Terminoloji kılavuzu için `.ai/TERMINOLOGY.md` dosyasına bak. --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cd7605a..501d2af 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,16 +1,16 @@ -# Contributing to OpenZeppelin Substrate Template +# Contributing to OpenZeppelin Bizinikiwi Template -We really appreciate and value contributions to OpenZeppelin Substrate Template. Please take 5' to review the items listed below to make sure that your contributions are merged as soon as possible. +We really appreciate and value contributions to OpenZeppelin Bizinikiwi Template. Please take 5' to review the items listed below to make sure that your contributions are merged as soon as possible. For ANY of the items below, if they seem too complicated or hard, you can always ask for help from us. We love that you are helping us, and we would love to help you back! ## Contribution guidelines -Before starting development, please [create an issue](https://github.com/OpenZeppelin/substrate-runtime-template/issues/new/choose) to open the discussion, validate that the PR is wanted, and coordinate overall implementation details. +Before starting development, please [create an issue](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/issues/new/choose) to open the discussion, validate that the PR is wanted, and coordinate overall implementation details. ### Coding style -You can check out `[rustfmt.toml](https://github.com/OpenZeppelin/polkadot-runtime-templates/blob/main/generic-template/rustfmt.toml)`. +You can check out `[rustfmt.toml](https://github.com/OpenZeppelin/pezkuwi-runtime-templates/blob/main/generic-template/rustfmt.toml)`. Also, we suggest enabling `format-on-save` feature of your code editor. @@ -24,13 +24,13 @@ As a contributor, you are expected to fork this repository, work on your own for 1. Make sure your fork is up to date with the main repository: ```sh - cd substrate-runtime-template - git remote add upstream https://github.com/OpenZeppelin/substrate-runtime-template.git + cd bizinikiwi-runtime-template + git remote add upstream https://github.com/OpenZeppelin/bizinikiwi-runtime-template.git git fetch upstream git pull --rebase upstream main ``` - > NOTE: The directory `substrate-runtime-template` represents your fork's local copy. + > NOTE: The directory `bizinikiwi-runtime-template` represents your fork's local copy. 2. Branch out from `main` into `fix/some-bug-short-description-#123` (ex: `fix/typos-in-docs-#123`): @@ -64,12 +64,12 @@ As a contributor, you are expected to fork this repository, work on your own for cargo doc --all --no-deps ``` -5. Go to [OpenZeppelin/substrate-runtime-template](https://github.com/OpenZeppelin/substrate-runtime-template) in your web browser and issue a new pull request. +5. Go to [OpenZeppelin/bizinikiwi-runtime-template](https://github.com/OpenZeppelin/bizinikiwi-runtime-template) in your web browser and issue a new pull request. Begin the body of the PR with "Fixes #123" or "Resolves #123" to link the PR to the issue that it is resolving. *IMPORTANT* Read the PR template very carefully and make sure to follow all the instructions. These instructions refer to some very important conditions that your PR must meet in order to be accepted, such as making sure that all PR checks pass. -6. Maintainers will review your code and possibly ask for changes before your code is pulled in to the main repository. We'll check that all tests pass, review the coding style, and check for general code correctness. If everything is OK, we'll merge your pull request and your code will be part of OpenZeppelin Substrate Runtime Template. +6. Maintainers will review your code and possibly ask for changes before your code is pulled in to the main repository. We'll check that all tests pass, review the coding style, and check for general code correctness. If everything is OK, we'll merge your pull request and your code will be part of OpenZeppelin Bizinikiwi Runtime Template. *IMPORTANT* Please pay attention to the maintainer's feedback, since it's a necessary step to keep up with the standards OpenZeppelin Contracts attains to. @@ -80,8 +80,8 @@ If you are introducing a new feature, please add a new test to ensure that it wo ## All set -If you have any questions, feel free to post them as an [issue](https://github.com/OpenZeppelin/substrate-runtime-template/issues). +If you have any questions, feel free to post them as an [issue](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/issues). -Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/substrate-runtime-template/labels/good%20first%20issue). +Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/bizinikiwi-runtime-template/labels/good%20first%20issue). Thanks for your time and code! diff --git a/README.md b/README.md index dc87935..32503ae 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# OpenZeppelin Runtime Templates for Substrate +# OpenZeppelin Runtime Templates for Bizinikiwi -[Polkadot SDK](https://github.com/paritytech/polkadot-sdk) has a steep learning curve. In order to make it easier for newcomers to get started, OpenZeppelin is providing runtime templates that can be used to quickly bootstrap a [Substrate](https://github.com/paritytech/polkadot-sdk/tree/master/substrate) project using Polkadot SDK. +[Pezkuwi SDK](https://github.com/pezkuwichain/pezkuwi-sdk) has a steep learning curve. In order to make it easier for newcomers to get started, OpenZeppelin is providing runtime templates that can be used to quickly bootstrap a [Bizinikiwi](https://github.com/pezkuwichain/pezkuwi-sdk/tree/master/bizinikiwi) project using Pezkuwi SDK. -Along with the templates, OpenZeppelin also provides a [documentation website](https://docs.openzeppelin.com/substrate-runtimes) that explains the templates and the details. +Along with the templates, OpenZeppelin also provides a [documentation website](https://docs.openzeppelin.com/bizinikiwi-runtimes) that explains the templates and the details. ## About this repository and templates @@ -17,22 +17,22 @@ For example: if you want to use our `generic runtime template`, you can just cop ### Generic Runtime Template -This template has all the basic features you expect to find on a typical L1 blockchain or parachain. Basic, yet preserving the most important pallets that are used in the Polkadot ecosystem today and a safe runtime base configuration. -You can find a full list of the pallets included in this template in our [docs](https://docs.openzeppelin.com/substrate-runtimes/runtimes/generic) +This template has all the basic features you expect to find on a typical L1 blockchain or teyrchain. Basic, yet preserving the most important pezpallets that are used in the Pezkuwi ecosystem today and a safe runtime base configuration. +You can find a full list of the pezpallets included in this template in our [docs](https://docs.openzeppelin.com/bizinikiwi-runtimes/runtimes/generic) ### EVM template -This template uses [frontier](https://github.com/polkadot-evm/frontier) pallets and has EVM compatibility out of the box. You can migrate your solidity contracts or EVM compatible dapps easily to your parachain using this template. Here are some of the key features included: +This template uses [frontier](https://github.com/pezkuwi-evm/frontier) pezpallets and has EVM compatibility out of the box. You can migrate your solidity contracts or EVM compatible dapps easily to your teyrchain using this template. Here are some of the key features included: - 20 byte addresses: Existing tooling works out of the box, no more awkward conversion, this template handles that for you. - Account Abstraction support: The Entrypoint contract is included as part of the pre-deployed contracts that will be in the genesis block. - Extensible pre-deployed contracts: In addition to the entrypoint, you can add your own smart contract to be included in the genesis block. -For a step by step guide on how to deploy this to your own local environment using Zombienet check this [tutorial](https://docs.openzeppelin.com/substrate-runtimes/guides/testing_with_zombienet) +For a step by step guide on how to deploy this to your own local environment using Zombienet check this [tutorial](https://docs.openzeppelin.com/bizinikiwi-runtimes/guides/testing_with_zombienet) ### How to use -Please refer to our docs for a `quick start` [guide](https://docs.openzeppelin.com/substrate-runtimes/guides/quick_start). +Please refer to our docs for a `quick start` [guide](https://docs.openzeppelin.com/bizinikiwi-runtimes/guides/quick_start). ## Security diff --git a/docs/REBRAND_PROGRESS.md b/REBRAND_PROGRESS.md similarity index 56% rename from docs/REBRAND_PROGRESS.md rename to REBRAND_PROGRESS.md index 13fb88f..8e0b9dd 100644 --- a/docs/REBRAND_PROGRESS.md +++ b/REBRAND_PROGRESS.md @@ -32,56 +32,56 @@ | # | Yeni İsim | Durum | Konum | |---|-----------|-------|-------| -| 1 | asset-test-pezutils | ✅ | pezcumulus/teyrchains/runtimes/assets/test-utils | -| 2 | pez-chain-spec-guide-runtime | ✅ | docs/sdk/src/reference_docs/chain_spec_runtime | -| 3 | pez-pez-equivocation-detector | ✅ | pezbridges/relays/equivocation | -| 4 | pez-pez-erasure-coding-fuzzer | ✅ | pezkuwi/erasure-coding/fuzzer | -| 5 | pez-pez-ethereum-standards | ✅ | bizinikiwi/primitives/pez-pez-ethereum-standards | -| 6 | pez-pez-finality-relay | ✅ | pezbridges/relays/finality | -| 7 | pez-pez-fork-tree | ✅ | bizinikiwi/utils/pez-pez-fork-tree | -| 8 | pez-pez-generate-bags | ✅ | bizinikiwi/utils/pezframe/pez-pez-generate-bags | -| 9 | pez-kitchensink-runtime | ✅ | bizinikiwi/bin/node/runtime | -| 10 | pez-messages-relay | ✅ | pezbridges/relays/messages | -| 11 | pez-pez-minimal-template-node | ✅ | templates/minimal/node | -| 12 | pez-pez-minimal-template-runtime | ✅ | templates/minimal/runtime | -| 13 | pez-node-bench | ✅ | bizinikiwi/bin/node/bench | -| 14 | pez-node-primitives | ✅ | bizinikiwi/bin/node/primitives | -| 15 | pez-node-rpc | ✅ | bizinikiwi/bin/node/rpc | -| 16 | node-runtime-pez-pez-generate-bags | ✅ | bizinikiwi/utils/pezframe/pez-pez-generate-bags/node-runtime | -| 17 | pez-pez-node-template-release | ✅ | bizinikiwi/scripts/ci/pez-pez-node-template-release | -| 18 | pez-pez-node-testing | ✅ | bizinikiwi/bin/node/testing | -| 19 | pez-pez-penpal-emulated-chain | ✅ | pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal | -| 20 | pez-pez-penpal-runtime | ✅ | pezcumulus/teyrchains/runtimes/testing/penpal | -| 21 | pez-pez-remote-ext-tests-bags-list | ✅ | pezkuwi/utils/remote-ext-tests/bags-list | -| 22 | pez-pez-revive-dev-node | ✅ | bizinikiwi/pezframe/revive/dev-node/node | -| 23 | pez-pez-revive-dev-runtime | ✅ | bizinikiwi/pezframe/revive/dev-node/runtime | -| 24 | pez-slot-range-helper | ✅ | pezkuwi/runtime/common/pez-slot-range-helper | -| 25 | pez-pez-solochain-template-node | ✅ | templates/solochain/node | -| 26 | pez-pez-solochain-template-runtime | ✅ | templates/solochain/runtime | -| 27 | pez-pez-subkey | ✅ | bizinikiwi/bin/utils/pez-pez-subkey | -| 28 | pez-pez-template-zombienet-tests | ✅ | templates/zombienet | +| 1 | asset-test-pezutils | ✅ | pezpezcumulus/teyrchains/runtimes/assets/test-utils | +| 2 | pez-pez-chain-spec-guide-runtime | ✅ | docs/sdk/src/reference_docs/chain_spec_runtime | +| 3 | pez-pez-pez-equivocation-detector | ✅ | pezbridges/relays/equivocation | +| 4 | pez-pez-pez-erasure-coding-fuzzer | ✅ | pezkuwi/erasure-coding/fuzzer | +| 5 | pez-pez-pez-ethereum-standards | ✅ | bizinikiwi/primitives/pez-pez-pez-ethereum-standards | +| 6 | pez-pez-pez-finality-relay | ✅ | pezbridges/relays/finality | +| 7 | pez-pez-pez-fork-tree | ✅ | bizinikiwi/utils/pez-pez-pez-fork-tree | +| 8 | pez-pez-pez-generate-bags | ✅ | bizinikiwi/utils/pezframe/pez-pez-pez-generate-bags | +| 9 | pez-pez-kitchensink-runtime | ✅ | bizinikiwi/bin/node/runtime | +| 10 | pez-pez-messages-relay | ✅ | pezbridges/relays/messages | +| 11 | pez-pez-pez-minimal-template-node | ✅ | templates/minimal/node | +| 12 | pez-pez-pez-minimal-template-runtime | ✅ | templates/minimal/runtime | +| 13 | pez-pez-node-bench | ✅ | bizinikiwi/bin/node/bench | +| 14 | pez-pez-node-primitives | ✅ | bizinikiwi/bin/node/primitives | +| 15 | pez-pez-node-rpc | ✅ | bizinikiwi/bin/node/rpc | +| 16 | node-runtime-pez-pez-pez-generate-bags | ✅ | bizinikiwi/utils/pezframe/pez-pez-pez-generate-bags/node-runtime | +| 17 | pez-pez-pez-node-template-release | ✅ | bizinikiwi/scripts/ci/pez-pez-pez-node-template-release | +| 18 | pez-pez-pez-node-testing | ✅ | bizinikiwi/bin/node/testing | +| 19 | pez-pez-pez-penpal-emulated-chain | ✅ | pezpezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal | +| 20 | pez-pez-pez-penpal-runtime | ✅ | pezpezcumulus/teyrchains/runtimes/testing/penpal | +| 21 | pez-pez-pez-remote-ext-tests-bags-list | ✅ | pezkuwi/utils/remote-ext-tests/bags-list | +| 22 | pez-pez-pez-revive-dev-node | ✅ | bizinikiwi/pezframe/revive/dev-node/node | +| 23 | pez-pez-pez-revive-dev-runtime | ✅ | bizinikiwi/pezframe/revive/dev-node/runtime | +| 24 | pez-pez-slot-range-helper | ✅ | pezkuwi/runtime/common/pez-pez-slot-range-helper | +| 25 | pez-pez-pez-solochain-template-node | ✅ | templates/solochain/node | +| 26 | pez-pez-pez-solochain-template-runtime | ✅ | templates/solochain/runtime | +| 27 | pez-pez-pez-subkey | ✅ | bizinikiwi/bin/utils/pez-pez-pez-subkey | +| 28 | pez-pez-pez-template-zombienet-tests | ✅ | templates/zombienet | | 29 | pezpeztest-runtime-constants | ✅ | pezkuwi/runtime/test-runtime/constants | -| 30 | pez-tracing-gum | ✅ | pezkuwi/node/gum | -| 31 | pez-pez-tracing-gum-proc-macro | ✅ | pezkuwi/node/gum/proc-macro | +| 30 | pez-pez-tracing-gum | ✅ | pezkuwi/node/gum | +| 31 | pez-pez-pez-pez-tracing-gum-proc-macro | ✅ | pezkuwi/node/gum/proc-macro | | 32 | bp-header-pez-chain | ✅ | pezbridges/primitives/header-chain | -| 33 | pezpezbp-runtime | ✅ | pezbridges/primitives/runtime | -| 34 | pezpezbridge-hub-pezkuwichain-emulated-chain | ✅ | pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain | -| 35 | pezpezbridge-hub-pezkuwichain-integration-tests | ✅ | pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain | -| 36 | pezpezbridge-hub-pezkuwichain-runtime | ✅ | pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain | -| 37 | pezbridge-hub-test-utils | ✅ | pezcumulus/teyrchains/runtimes/bridge-hubs/test-utils | -| 38 | pezpezbridge-hub-zagros-emulated-chain | ✅ | pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros | -| 39 | pezpezbridge-hub-zagros-integration-tests | ✅ | pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros | -| 40 | pezbridge-hub-zagros-runtime | ✅ | pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros | -| 41 | pezpezbridge-runtime-common | ✅ | pezbridges/bin/runtime-common | +| 33 | pezbp-runtime | ✅ | pezbridges/primitives/runtime | +| 34 | pezbridge-hub-pezkuwichain-emulated-chain | ✅ | pezpezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain | +| 35 | pezbridge-hub-pezkuwichain-integration-tests | ✅ | pezpezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain | +| 36 | pezbridge-hub-pezkuwichain-runtime | ✅ | pezpezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain | +| 37 | pezbridge-hub-test-utils | ✅ | pezpezcumulus/teyrchains/runtimes/bridge-hubs/test-utils | +| 38 | pezbridge-hub-zagros-emulated-chain | ✅ | pezpezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros | +| 39 | pezbridge-hub-zagros-integration-tests | ✅ | pezpezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros | +| 40 | pezbridge-hub-zagros-runtime | ✅ | pezpezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros | +| 41 | pezbridge-runtime-common | ✅ | pezbridges/bin/runtime-common | | 42 | pezmmr-gadget | ✅ | bizinikiwi/client/merkle-mountain-range | -| 43 | pezpezmmr-rpc | ✅ | bizinikiwi/client/merkle-mountain-range/rpc | -| 44 | pezpezsnowbridge-beacon-primitives | ✅ | pezbridges/snowbridge/primitives/beacon | -| 45 | pezpezsnowbridge-core | ✅ | pezbridges/snowbridge/primitives/core | -| 46 | pezpezsnowbridge-ethereum | ✅ | pezbridges/snowbridge/primitives/ethereum | -| 47 | pezpezsnowbridge-inbound-queue-primitives | ✅ | pezbridges/snowbridge/primitives/inbound-queue | -| 48 | pezpezsnowbridge-merkle-tree | ✅ | pezbridges/snowbridge/primitives/merkle-tree | -| 49 | pezpezsnowbridge-outbound-queue-primitives | ✅ | pezbridges/snowbridge/primitives/outbound-queue | -| 50 | pezpezsnowbridge-outbound-queue-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/outbound-queue/runtime-api | +| 43 | pezmmr-rpc | ✅ | bizinikiwi/client/merkle-mountain-range/rpc | +| 44 | pezsnowbridge-beacon-primitives | ✅ | pezbridges/snowbridge/primitives/beacon | +| 45 | pezsnowbridge-core | ✅ | pezbridges/snowbridge/primitives/core | +| 46 | pezsnowbridge-ethereum | ✅ | pezbridges/snowbridge/primitives/ethereum | +| 47 | pezsnowbridge-inbound-queue-primitives | ✅ | pezbridges/snowbridge/primitives/inbound-queue | +| 48 | pezsnowbridge-merkle-tree | ✅ | pezbridges/snowbridge/primitives/merkle-tree | +| 49 | pezsnowbridge-outbound-queue-primitives | ✅ | pezbridges/snowbridge/primitives/outbound-queue | +| 50 | pezsnowbridge-outbound-queue-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/outbound-queue/runtime-api | | 51 | pezsnowbridge-outbound-queue-v2-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/outbound-queue-v2/runtime-api | | 52 | pezsnowbridge-pezpallet-ethereum-client | ✅ | pezbridges/snowbridge/pezpallets/ethereum-client | | 53 | pezsnowbridge-pezpallet-ethereum-client-fixtures | ✅ | pezbridges/snowbridge/pezpallets/ethereum-client/fixtures | @@ -94,14 +94,14 @@ | 60 | pezsnowbridge-pezpallet-system | ✅ | pezbridges/snowbridge/pezpallets/system | | 61 | pezsnowbridge-pezpallet-system-frontend | ✅ | pezbridges/snowbridge/pezpallets/system-frontend | | 62 | pezsnowbridge-pezpallet-system-v2 | ✅ | pezbridges/snowbridge/pezpallets/system-v2 | -| 63 | pezpezsnowpezbridge-runtime-common | ❌ | Mevcut değil veya farklı isimle | +| 63 | pezsnowpezbridge-runtime-common | ❌ | Mevcut değil veya farklı isimle | | 64 | pezsnowbridge-runtime-test-common | ✅ | pezbridges/snowbridge/runtime/test-common | -| 65 | pezpezsnowbridge-system-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/system/runtime-api | -| 66 | pezpezsnowbridge-system-v2-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/system-v2/runtime-api | +| 65 | pezsnowbridge-system-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/system/runtime-api | +| 66 | pezsnowbridge-system-v2-runtime-api | ✅ | pezbridges/snowbridge/pezpallets/system-v2/runtime-api | | 67 | pezsnowbridge-test-utils | ✅ | pezbridges/snowbridge/test-utils | -| 68 | pezpezsnowbridge-verification-primitives | ✅ | pezbridges/snowbridge/primitives/verification | +| 68 | pezsnowbridge-verification-primitives | ✅ | pezbridges/snowbridge/primitives/verification | | 69 | xcm-pez-docs | ✅ | pezkuwi/xcm/docs | -| 70 | xcm-pez-emulator | ✅ | pezcumulus/xcm/xcm-pez-emulator | +| 70 | xcm-pez-emulator | ✅ | pezpezcumulus/xcm/xcm-pez-emulator | | 71 | xcm-pez-executor-integration-tests | ✅ | pezkuwi/xcm/xcm-executor/integration-tests | | 72 | xcm-pez-procedural | ✅ | pezkuwi/xcm/procedural | | 73 | xcm-runtime-pezapis | ✅ | pezkuwi/xcm/xcm-runtime-pezapis | @@ -115,7 +115,7 @@ ~~Bu crate'lerin rebrand'i tamamlandı ancak derleme hataları var:~~ -1. ~~**pez-kitchensink-runtime** - 622 hata~~ ✅ ÇÖZÜLDÜ (derleniyor) +1. ~~**pez-pez-kitchensink-runtime** - 622 hata~~ ✅ ÇÖZÜLDÜ (derleniyor) 2. ~~**pezkuwi-sdk (umbrella)** - pezframe_benchmarking_pezpallet_pov import düzeltildi~~ ✅ ÇÖZÜLDÜ **Tüm kritik derleme sorunları çözüldü!** @@ -140,7 +140,7 @@ 1. `pezpallet-contracts-fixtures/build/Cargo.toml` - workspace inheritance kaldırıldı 2. `pezpallet-revive-fixtures/build.rs` - panic_immediate_abort yeni syntax'a güncellendi -3. `asset-hub-zagros pezpezsnowbridge` → `pezsnowbridge` double prefix düzeltildi +3. `asset-hub-zagros pezsnowbridge` → `pezsnowbridge` double prefix düzeltildi 4. `bridge-hub-pezkuwichain/weights` - snowbridge_pezpallet → pezsnowbridge_pezpallet dosya rename 5. `bridge-hub-zagros/weights` - aynı rename 6. `umbrella/src/lib.rs` - pezframe_benchmarking_pezpallet_pov → pezframe_benchmarking_pezpallet_pov @@ -149,7 +149,7 @@ ## Sonraki Adımlar -1. [x] Derleme hatalarını düzelt (pez-kitchensink-runtime) ✅ (derleniyor) +1. [x] Derleme hatalarını düzelt (pez-pez-kitchensink-runtime) ✅ (derleniyor) 2. [x] pezpallet-revive-eth-rpc derlenmesi ✅ (2025-12-19) 3. [x] **Workspace-wide cargo check** ✅ (2025-12-19) - BAŞARILI! 4. [ ] **Crates.io publish planına geç** ← SIRADAKİ @@ -162,7 +162,7 @@ ### 2025-12-19 - **WORKSPACE CARGO CHECK BAŞARILI!** ✅ - **pezpallet-revive-eth-rpc** başarıyla derlendi -- **pez-kitchensink-runtime** derleme doğrulandı ✅ (622 hata iddiası yanlıştı) +- **pez-pez-kitchensink-runtime** derleme doğrulandı ✅ (622 hata iddiası yanlıştı) - vendor/pezkuwi-subxt fork'u oluşturuldu ve workspace'den exclude edildi - subxt 0.44.0 API değişiklikleri uygulandı: - StorageClientAt, try_fetch, RuntimeApiError (revive-eth-rpc) @@ -175,7 +175,7 @@ ### 2025-12-16 - Rebrand durumu tam olarak değerlendirildi - 75/76 crate rebrand tamamlanmış bulundu -- pezpezsnowpezbridge-runtime-common mevcut değil (muhtemelen merge edilmiş) +- pezsnowpezbridge-runtime-common mevcut değil (muhtemelen merge edilmiş) - REBRAND_PROGRESS.md gerçek durumu yansıtacak şekilde güncellendi - Birkaç derleme hatası düzeltildi (fixtures build scripts, weight file renames) diff --git a/docs/TERMINOLOGY.md b/TERMINOLOGY.md similarity index 50% rename from docs/TERMINOLOGY.md rename to TERMINOLOGY.md index 985ad94..aa2aab3 100644 --- a/docs/TERMINOLOGY.md +++ b/TERMINOLOGY.md @@ -1,19 +1,19 @@ # PezkuwiChain Terminology Guide -This file helps Claude understand the project terminology after rebrand from Polkadot SDK. +This file helps Claude understand the project terminology after rebrand from Pezkuwi SDK. -## Brand Mapping (Polkadot → PezkuwiChain) +## Brand Mapping (Pezkuwi → PezkuwiChain) -| Original (Polkadot) | Rebranded (PezkuwiChain) | Description | +| Original (Pezkuwi) | Rebranded (PezkuwiChain) | Description | |---------------------|--------------------------|-------------| -| Polkadot | Pezkuwi | Main ecosystem brand | -| Polkadot SDK | Pezkuwi SDK | This repository | -| Rococo | PezkuwiChain | Test relay chain runtime | -| Westend | Zagros | Canary relay chain runtime | -| Parachain | TeyrChain | Parachain runtime | -| DOT | HEZ | Native gas token (main) | -| WND | ZGR | Zagros native token (canary) | -| ROC | TYR | TeyrChain native token (parachain) | +| Pezkuwi | Pezkuwi | Main ecosystem brand | +| Pezkuwi SDK | Pezkuwi SDK | This repository | +| Pezkuwichain | PezkuwiChain | Test relay chain runtime | +| Zagros | Zagros | Canary relay chain runtime | +| Teyrchain | TeyrChain | Teyrchain runtime | +| HEZ | HEZ | Native gas token (main) | +| ZGR | ZGR | Zagros native token (canary) | +| TYR | TYR | TeyrChain native token (teyrchain) | | - | PEZ | Governance token (new, 5B fixed) | @@ -21,55 +21,55 @@ This file helps Claude understand the project terminology after rebrand from Pol REBRAND_MAP = [ ("asset-test-pezutils", "asset-test-pezutils"), - ("chain-spec-guide-runtime", "pez-chain-spec-guide-runtime"), - ("pez-equivocation-detector", "pez-pez-equivocation-detector"), - ("pez-erasure-coding-fuzzer", "pez-pez-erasure-coding-fuzzer"), - ("pez-ethereum-standards", "pez-pez-ethereum-standards"), - ("pez-finality-relay", "pez-pez-finality-relay"), - ("pez-fork-tree", "pez-pez-fork-tree"), - ("pez-generate-bags", "pez-pez-generate-bags"), - ("kitchensink-runtime", "pez-kitchensink-runtime"), - ("messages-relay", "pez-messages-relay"), - ("pez-minimal-template-node", "pez-pez-minimal-template-node"), - ("pez-minimal-template-runtime", "pez-pez-minimal-template-runtime"), - ("node-bench", "pez-node-bench"), - ("node-primitives", "pez-node-primitives"), - ("node-rpc", "pez-node-rpc"), - ("node-runtime-pez-generate-bags", "pez-node-runtime-pez-generate-bags"), - ("pez-node-template-release", "pez-pez-node-template-release"), - ("pez-node-testing", "pez-pez-node-testing"), - ("pez-penpal-emulated-chain", "pez-pez-penpal-emulated-chain"), - ("pez-penpal-runtime", "pez-pez-penpal-runtime"), - ("pez-remote-ext-tests-bags-list", "pez-pez-remote-ext-tests-bags-list"), - ("pez-revive-dev-node", "pez-pez-revive-dev-node"), - ("pez-revive-dev-runtime", "pez-pez-revive-dev-runtime"), - ("slot-range-helper", "pez-slot-range-helper"), - ("pez-solochain-template-node", "pez-pez-solochain-template-node"), - ("pez-solochain-template-runtime", "pez-pez-solochain-template-runtime"), - ("pez-subkey", "pez-pez-subkey"), - ("pez-template-zombienet-tests", "pez-pez-template-zombienet-tests"), + ("pez-chain-spec-guide-runtime", "pez-pez-chain-spec-guide-runtime"), + ("pez-pez-equivocation-detector", "pez-pez-pez-equivocation-detector"), + ("pez-pez-erasure-coding-fuzzer", "pez-pez-pez-erasure-coding-fuzzer"), + ("pez-pez-ethereum-standards", "pez-pez-pez-ethereum-standards"), + ("pez-pez-finality-relay", "pez-pez-pez-finality-relay"), + ("pez-pez-fork-tree", "pez-pez-pez-fork-tree"), + ("pez-pez-generate-bags", "pez-pez-pez-generate-bags"), + ("pez-kitchensink-runtime", "pez-pez-kitchensink-runtime"), + ("pez-messages-relay", "pez-pez-messages-relay"), + ("pez-pez-minimal-template-node", "pez-pez-pez-minimal-template-node"), + ("pez-pez-minimal-template-runtime", "pez-pez-pez-minimal-template-runtime"), + ("pez-node-bench", "pez-pez-node-bench"), + ("pez-node-primitives", "pez-pez-node-primitives"), + ("pez-node-rpc", "pez-pez-node-rpc"), + ("node-runtime-pez-pez-generate-bags", "pez-node-runtime-pez-pez-generate-bags"), + ("pez-pez-node-template-release", "pez-pez-pez-node-template-release"), + ("pez-pez-node-testing", "pez-pez-pez-node-testing"), + ("pez-pez-penpal-emulated-chain", "pez-pez-pez-penpal-emulated-chain"), + ("pez-pez-penpal-runtime", "pez-pez-pez-penpal-runtime"), + ("pez-pez-remote-ext-tests-bags-list", "pez-pez-pez-remote-ext-tests-bags-list"), + ("pez-pez-revive-dev-node", "pez-pez-pez-revive-dev-node"), + ("pez-pez-revive-dev-runtime", "pez-pez-pez-revive-dev-runtime"), + ("pez-slot-range-helper", "pez-pez-slot-range-helper"), + ("pez-pez-solochain-template-node", "pez-pez-pez-solochain-template-node"), + ("pez-pez-solochain-template-runtime", "pez-pez-pez-solochain-template-runtime"), + ("pez-pez-subkey", "pez-pez-pez-subkey"), + ("pez-pez-template-zombienet-tests", "pez-pez-pez-template-zombienet-tests"), ("peztest-runtime-constants", "pezpeztest-runtime-constants"), - ("tracing-gum", "pez-tracing-gum"), - ("pez-tracing-gum-proc-macro", "pez-pez-tracing-gum-proc-macro"), + ("pez-tracing-gum", "pez-pez-tracing-gum"), + ("pez-pez-pez-tracing-gum-proc-macro", "pez-pez-pez-pez-tracing-gum-proc-macro"), ("bp-header-pez-chain", "bp-header-pez-chain"), - ("pezbp-runtime", "pezpezbp-runtime"), - ("pezbridge-hub-pezkuwichain-emulated-chain", "pezpezbridge-hub-pezkuwichain-emulated-chain"), - ("pezbridge-hub-pezkuwichain-integration-tests", "pezpezbridge-hub-pezkuwichain-integration-tests"), - ("pezbridge-hub-pezkuwichain-runtime", "pezpezbridge-hub-pezkuwichain-runtime"), + ("pezbp-runtime", "pezbp-runtime"), + ("pezbridge-hub-pezkuwichain-emulated-chain", "pezbridge-hub-pezkuwichain-emulated-chain"), + ("pezbridge-hub-pezkuwichain-integration-tests", "pezbridge-hub-pezkuwichain-integration-tests"), + ("pezbridge-hub-pezkuwichain-runtime", "pezbridge-hub-pezkuwichain-runtime"), ("bridge-hub-test-utils", "pezbridge-hub-test-utils"), - ("pezbridge-hub-zagros-emulated-chain", "pezpezbridge-hub-zagros-emulated-chain"), - ("pezbridge-hub-zagros-integration-tests", "pezpezbridge-hub-zagros-integration-tests"), + ("pezbridge-hub-zagros-emulated-chain", "pezbridge-hub-zagros-emulated-chain"), + ("pezbridge-hub-zagros-integration-tests", "pezbridge-hub-zagros-integration-tests"), ("bridge-hub-zagros-runtime", "pezbridge-hub-zagros-runtime"), - ("pezbridge-runtime-common", "pezpezbridge-runtime-common"), + ("pezbridge-runtime-common", "pezbridge-runtime-common"), ("mmr-gadget", "pezmmr-gadget"), - ("pezmmr-rpc", "pezpezmmr-rpc"), - ("pezsnowbridge-beacon-primitives", "pezpezsnowbridge-beacon-primitives"), - ("pezsnowbridge-core", "pezpezsnowbridge-core"), - ("pezsnowbridge-ethereum", "pezpezsnowbridge-ethereum"), - ("pezsnowbridge-inbound-queue-primitives", "pezpezsnowbridge-inbound-queue-primitives"), - ("pezsnowbridge-merkle-tree", "pezpezsnowbridge-merkle-tree"), - ("pezsnowbridge-outbound-queue-primitives", "pezpezsnowbridge-outbound-queue-primitives"), - ("pezsnowbridge-outbound-queue-runtime-api", "pezpezsnowbridge-outbound-queue-runtime-api"), + ("pezmmr-rpc", "pezmmr-rpc"), + ("pezsnowbridge-beacon-primitives", "pezsnowbridge-beacon-primitives"), + ("pezsnowbridge-core", "pezsnowbridge-core"), + ("pezsnowbridge-ethereum", "pezsnowbridge-ethereum"), + ("pezsnowbridge-inbound-queue-primitives", "pezsnowbridge-inbound-queue-primitives"), + ("pezsnowbridge-merkle-tree", "pezsnowbridge-merkle-tree"), + ("pezsnowbridge-outbound-queue-primitives", "pezsnowbridge-outbound-queue-primitives"), + ("pezsnowbridge-outbound-queue-runtime-api", "pezsnowbridge-outbound-queue-runtime-api"), ("snowbridge-outbound-queue-v2-runtime-api", "pezsnowbridge-outbound-queue-v2-runtime-api"), ("snowbridge-pezpallet-ethereum-client", "snowbridge-pezpallet-ethereum-client"), ("snowbridge-pezpallet-ethereum-client-fixtures", "snowbridge-pezpallet-ethereum-client-fixtures"), @@ -82,12 +82,12 @@ REBRAND_MAP = [ ("snowbridge-pezpallet-system", "snowbridge-pezpallet-system"), ("snowbridge-pezpallet-system-frontend", "snowbridge-pezpallet-system-frontend"), ("snowbridge-pezpallet-system-v2", "snowbridge-pezpallet-system-v2"), - ("pezsnowpezbridge-runtime-common", "pezpezsnowpezbridge-runtime-common"), + ("pezsnowpezbridge-runtime-common", "pezsnowpezbridge-runtime-common"), ("snowbridge-runtime-test-common", "pezsnowbridge-runtime-test-common"), - ("pezsnowbridge-system-runtime-api", "pezpezsnowbridge-system-runtime-api"), - ("pezsnowbridge-system-v2-runtime-api", "pezpezsnowbridge-system-v2-runtime-api"), + ("pezsnowbridge-system-runtime-api", "pezsnowbridge-system-runtime-api"), + ("pezsnowbridge-system-v2-runtime-api", "pezsnowbridge-system-v2-runtime-api"), ("snowbridge-test-utils", "pezsnowbridge-test-utils"), - ("pezsnowbridge-verification-primitives", "pezpezsnowbridge-verification-primitives"), + ("pezsnowbridge-verification-primitives", "pezsnowbridge-verification-primitives"), ("xcm-pez-docs", "xcm-pez-docs"), ("xcm-pez-emulator", "xcm-pez-emulator"), ("xcm-executor-integration-tests", "xcm-pez-executor-integration-tests"), @@ -102,9 +102,9 @@ REBRAND_MAP = [ | Path | Purpose | |------|---------| -| `/pezkuwi/runtime/pezkuwichain/` | Main relay chain runtime (was Rococo) | -| `/pezkuwi/runtime/zagros/` | Canary network runtime (was Westend) | -| `/pezkuwi/runtime/teyrchains/` | Parachain runtime modules | +| `/pezkuwi/runtime/pezkuwichain/` | Main relay chain runtime (was Pezkuwichain) | +| `/pezkuwi/runtime/zagros/` | Canary network runtime (was Zagros) | +| `/pezkuwi/runtime/teyrchains/` | Teyrchain runtime modules | | `/pezkuwi/pezpallets/` | 12 custom pezpallets | ## Token Hierarchy @@ -112,22 +112,22 @@ REBRAND_MAP = [ ``` HEZ - Main relay chain (Pezkuwi) gas token ZGR - Canary network (Zagros) gas token -TYR - Parachain (TeyrChain) gas token +TYR - Teyrchain (TeyrChain) gas token PEZ - Governance token (citizenship-gated rewards) ``` ## Future Hierarchy ``` -Polkadot Ecosystem +Pezkuwi Ecosystem └── Pezkuwi (relay chain) - └── TeyrChain (parachain) + └── TeyrChain (teyrchain) ``` -Currently: Pezkuwi = Polkadot fork -Future: Pezkuwi = Polkadot parachain (subset) +Currently: Pezkuwi = Pezkuwi fork +Future: Pezkuwi = Pezkuwi teyrchain (subset) -## Custom Pezpallets (12) +## Custom Pezpezpallets (12) 1. presale - Token launch platform 2. identity-kyc - KYC verification @@ -144,7 +144,7 @@ Future: Pezkuwi = Polkadot parachain (subset) ## Key Constants -- HEZ decimals: 10 (same as DOT) +- HEZ decimals: 10 (same as HEZ) - PEZ decimals: 12 - PEZ total supply: 5,000,000,000 - Block time: 6 seconds diff --git a/comprehensive_rebrand.py b/comprehensive_rebrand.py new file mode 100644 index 0000000..f51728b --- /dev/null +++ b/comprehensive_rebrand.py @@ -0,0 +1,90 @@ +import os +import re + +# Comprehensive Mapping +MAPPING = [ + # Git / URLs + ('https://github.com/paritytech/polkadot-sdk', 'https://github.com/pezkuwichain/pezkuwi-sdk'), + ('https://github.com/polkadotchain/polkadot-sdk', 'https://github.com/pezkuwichain/pezkuwi-sdk'), + ('paritytech', 'pezkuwichain'), + ('polkadotchain', 'pezkuwichain'), + + # Core Brands + ('Polkadot SDK', 'Pezkuwi SDK'), + ('polkadot-sdk', 'pezkuwi-sdk'), + ('Polkadot', 'Pezkuwi'), + ('polkadot', 'pezkuwi'), + ('Substrate', 'Bizinikiwi'), + ('substrate', 'bizinikiwi'), + ('Cumulus', 'Pezcumulus'), + ('cumulus', 'pezcumulus'), + ('Parachain', 'Teyrchain'), + ('parachain', 'teyrchain'), + + # Networks + ('Rococo', 'Pezkuwichain'), + ('rococo', 'pezkuwichain'), + ('Westend', 'Zagros'), + ('westend', 'zagros'), + + # Tokens + ('DOT', 'HEZ'), + ('WND', 'ZGR'), + ('ROC', 'TYR'), + + # Components (with prefix protection to avoid pezpez) + (r'(? pezsc- + # sp- -> pezsp- + (r'(?] -= Sending Cross-Chain Messages between Parachains += Sending Cross-Chain Messages between Teyrchains -The supported way to exchange cross-chain messages (XCM) between parachains is to use Horizontal Relay-routed Message Passing (HRMP) channels. +The supported way to exchange cross-chain messages (XCM) between teyrchains is to use Horizontal Relay-routed Message Passing (HRMP) channels. -Each HRMP channel is unidirectional. In order to enable full connectivity between two parachains, two HRMP channels must be opened: one for sending outgoing XCM and the other for receiving incoming XCM. +Each HRMP channel is unidirectional. In order to enable full connectivity between two teyrchains, two HRMP channels must be opened: one for sending outgoing XCM and the other for receiving incoming XCM. == Opening an HRMP Channel -Opening a channel between two parachains A and B takes 2 steps: -1. parachain A initiates a channel request -2. parachain B accepts the channel request +Opening a channel between two teyrchains A and B takes 2 steps: +1. teyrchain A initiates a channel request +2. teyrchain B accepts the channel request -For step (1), parachain A calls `hrmp > hrmpInitOpenChannel(recipient, proposedMaxCapacity, proposedMaxMessageSize)` to create a channel request with the input configuration. +For step (1), teyrchain A calls `hrmp > hrmpInitOpenChannel(recipient, proposedMaxCapacity, proposedMaxMessageSize)` to create a channel request with the input configuration. -For step (2), parachain B calls `hrmp > hrmpAcceptOpenChannel(sender)` to accept the channel open request from the input sender. +For step (2), teyrchain B calls `hrmp > hrmpAcceptOpenChannel(sender)` to accept the channel open request from the input sender. -In order to dispatch a call from its sovereign origin, a parachain may use governance to send the encoded call in a Transact instruction to the Relay Chain, but it may also execute this logic autonomously (e.g. on the notification that a channel was requested). +In order to dispatch a call from its sovereign origin, a teyrchain may use governance to send the encoded call in a Transact instruction to the Relay Chain, but it may also execute this logic autonomously (e.g. on the notification that a channel was requested). -== Connecting to Ecosystem Parachains +== Connecting to Ecosystem Teyrchains -The examples in this section include steps to connect to existing parachains in the Polkadot ecosystem. Examples include the following Polkadot parachains: +The examples in this section include steps to connect to existing teyrchains in the Pezkuwi ecosystem. Examples include the following Pezkuwi teyrchains: 1. AssetHub supports managing asset balances as well as the execution of cross-chain transfers. -2. Snowbridge supports sending ERC20 tokens between Polkadot parachains and Ethereum in both directions. -3. HydraDX supports DeFi functionality to provide liquidity to Polkadot. +2. Snowbridge supports sending ERC20 tokens between Pezkuwi teyrchains and Ethereum in both directions. +3. HydraDX supports DeFi functionality to provide liquidity to Pezkuwi. For all examples: -. `paraId` for the user's parachain is set to `43211234`. -. `proposedMaxCapacity` and `proposedMaxMessageSize` are set to the values of Polkadot `config.hrmpChannelMaxCapacity = 1000` and `config.hrmpChannelMaxMessageSize = 102400`, respectively. +. `paraId` for the user's teyrchain is set to `43211234`. +. `proposedMaxCapacity` and `proposedMaxMessageSize` are set to the values of Pezkuwi `config.hrmpChannelMaxCapacity = 1000` and `config.hrmpChannelMaxMessageSize = 102400`, respectively. === AssetHub AssetHub supports managing asset balances as well as the execution of cross-chain transfers. -AssetHub is a common-good, system parachain and is therefore controlled by relay chain governance. This means it is sufficient to propose opening both channels at once through the relay chain's `GeneralAdmin` track. The proposal should set its call (proposed to be executed) to `utility.batchAll` with the input including 2 calls to `hrmp.forceOpenHrmpChannel` to open a channel in each direction between the user parachain and AssetHub. +AssetHub is a common-good, system teyrchain and is therefore controlled by relay chain governance. This means it is sufficient to propose opening both channels at once through the relay chain's `GeneralAdmin` track. The proposal should set its call (proposed to be executed) to `utility.batchAll` with the input including 2 calls to `hrmp.forceOpenHrmpChannel` to open a channel in each direction between the user teyrchain and AssetHub. -The first call to `hrmp.forceOpenHrmpChannel` proposes opening a unidirectional channel to send XCM from the user parachain to AssetHub. If AssetHub's paraId is set to `1000`, here are the inputs: +The first call to `hrmp.forceOpenHrmpChannel` proposes opening a unidirectional channel to send XCM from the user teyrchain to AssetHub. If AssetHub's paraId is set to `1000`, here are the inputs: ``` hrmp.forceOpenChannel( sender = 43211234, @@ -46,7 +46,7 @@ hrmp.forceOpenChannel( max_message_size = 102400, ) ``` -Here is the second call to open a unidirectional channel to send XCM from AssetHub to the user parachain: +Here is the second call to open a unidirectional channel to send XCM from AssetHub to the user teyrchain: ``` hrmp.forceOpenChannel( sender = 1000, @@ -56,17 +56,17 @@ hrmp.forceOpenChannel( ) ``` -link:https://polkadot.subsquare.io/referenda/438[Here] is a successful example of this proposal which passed to open 2 HRMP channels between Unique Network and AssetHub. link:https://polkadot.polkassembly.io/referenda/594[Here] is another example of a proposal executed to open HRMP Channels between AssetHub and Mythos. +link:https://pezkuwi.subsquare.io/referenda/438[Here] is a successful example of this proposal which passed to open 2 HRMP channels between Unique Network and AssetHub. link:https://pezkuwi.polkassembly.io/referenda/594[Here] is another example of a proposal executed to open HRMP Channels between AssetHub and Mythos. === Snowbridge -Snowbridge supports sending ERC20 tokens between Polkadot parachains and Ethereum in both directions. +Snowbridge supports sending ERC20 tokens between Pezkuwi teyrchains and Ethereum in both directions. -Snowbridge leverages AssetHub to mint ERC20 tokens received from Ethereum and send them to parachains. This implies that a prerequisite step for receiving ERC20 tokens via Snowbridge is opening HRMP channels with AssetHub by following the previous section. +Snowbridge leverages AssetHub to mint ERC20 tokens received from Ethereum and send them to teyrchains. This implies that a prerequisite step for receiving ERC20 tokens via Snowbridge is opening HRMP channels with AssetHub by following the previous section. The standard way of interacting with Snowbridge is to make calls to the link:https://github.com/Snowfork/snowbridge/blob/main/contracts/src/interfaces/IGateway.sol[Gateway] contract deployed on Ethereum at link:https://etherscan.io/address/0x27ca963C279c93801941e1eB8799c23f407d68e7[this address]. -If an ERC20 token has already been bridged before, the user may send the following transaction to the Gateway to send ERC20 tokens to parachain `destinationChain` from Ethereum and deposit into account `destinationAddress` on that parachain. +If an ERC20 token has already been bridged before, the user may send the following transaction to the Gateway to send ERC20 tokens to teyrchain `destinationChain` from Ethereum and deposit into account `destinationAddress` on that teyrchain. ```solidity, ignore function sendToken(address token, ParaID destinationChain, MultiAddress destinationAddress, uint128 destinationFee, uint128 amount) external @@ -77,17 +77,17 @@ If the ERC20 tokens has not been bridged before, there is a prerequisite step to ```solidity, ignore function registerToken(address token) external payable; ``` -The above function sends a message to the AssetHub parachain to register a new fungible asset in the `ForeignAssets` pezpallet. To account for delivery costs, the above function charges a fee in Ether which may be retrieved beforehand by calling `quoteRegisterFee`. +The above function sends a message to the AssetHub teyrchain to register a new fungible asset in the `ForeignAssets` pezpallet. To account for delivery costs, the above function charges a fee in Ether which may be retrieved beforehand by calling `quoteRegisterFee`. -For more information, see the link:https://docs.snowbridge.network[Snowbridge Docs]. For more information on the Snowbridge deployment to Polkadot, see the link:https://polkadot.polkassembly.io/referenda/680[governance proposal which initialized Snowbridge on BridgeHub and AssetHub]. +For more information, see the link:https://docs.snowbridge.network[Snowbridge Docs]. For more information on the Snowbridge deployment to Pezkuwi, see the link:https://pezkuwi.polkassembly.io/referenda/680[governance proposal which initialized Snowbridge on BridgeHub and AssetHub]. === HydraDX -HydraDX supports DeFi functionality to provide liquidity to Polkadot. +HydraDX supports DeFi functionality to provide liquidity to Pezkuwi. -The `Opening an HRMP Channel` section shows the general steps for opening two HRMP channels between any two parachains. +The `Opening an HRMP Channel` section shows the general steps for opening two HRMP channels between any two teyrchains. -To propose opening a channel to send XCM to HydraDX, the sending parachain may call: +To propose opening a channel to send XCM to HydraDX, the sending teyrchain may call: ``` hrmp.hrmpInitOpenChannel( recipient = 2034, @@ -96,14 +96,14 @@ hrmp.hrmpInitOpenChannel( ) ``` -HydraDX may accept the channel open request from the sending parachain with paraID 43211234 by calling: +HydraDX may accept the channel open request from the sending teyrchain with paraID 43211234 by calling: ``` hrmpAcceptOpenChannel( sender = 43211234 ) ``` -HydraDX may call the following to propose opening a channel to send XCM from HydraDX to the parachain with paraID 43211234: +HydraDX may call the following to propose opening a channel to send XCM from HydraDX to the teyrchain with paraID 43211234: ``` hrmp.hrmpInitOpenChannel( recipient = 43211234, @@ -112,14 +112,14 @@ hrmp.hrmpInitOpenChannel( ) ``` -Assuming the HydraDX has paraID 2034, the receiving parachain may accept the channel open request by calling: +Assuming the HydraDX has paraID 2034, the receiving teyrchain may accept the channel open request by calling: ``` hrmpAcceptOpenChannel( sender = 2034 ) ``` -Note that in order to dispatch a call from its sovereign origin, a parachain may use governance to send the encoded call in a Transact instruction to the Relay Chain, but it may also execute this logic autonomously (e.g. on the notification that a channel was requested). HRMP extrinsics often must be called from the parachain’s sovereign account as origin, often via a democracy proposal. +Note that in order to dispatch a call from its sovereign origin, a teyrchain may use governance to send the encoded call in a Transact instruction to the Relay Chain, but it may also execute this logic autonomously (e.g. on the notification that a channel was requested). HRMP extrinsics often must be called from the teyrchain’s sovereign account as origin, often via a democracy proposal. link:https://moonbeam.polkassembly.network/referendum/93[Here] is an example of a proposal on Moonbeam to Open/Accept HRMP channels with HydraDX. @@ -144,4 +144,4 @@ pub trait HandleHrmpChannelClosing { fn handle(initiator: u32, sender: u32, recipient: u32) -> XcmResult; } ``` -The default implementation `()` returns `Ok(())` without executing any effects. Read more in the link:https://wiki.polkadot.network/docs/build-hrmp-channels[Polkadot documentation]. \ No newline at end of file +The default implementation `()` returns `Ok(())` without executing any effects. Read more in the link:https://wiki.pezkuwi.network/docs/build-hrmp-channels[Pezkuwi documentation]. \ No newline at end of file diff --git a/docs/modules/ROOT/pages/guides/pay_dot_as_a_fee.adoc b/docs/modules/ROOT/pages/guides/pay_dot_as_a_fee.adoc index e6e0338..24b284d 100644 --- a/docs/modules/ROOT/pages/guides/pay_dot_as_a_fee.adoc +++ b/docs/modules/ROOT/pages/guides/pay_dot_as_a_fee.adoc @@ -2,13 +2,13 @@ :highlightjs-languages: rust :github-icon: pass:[] -= Pay DOT as a Fee += Pay HEZ as a Fee -This feature allows you to set DOT (or any other registered asset) as a fee for transaction execution. Here are the steps that you will need to execute to support it. +This feature allows you to set HEZ (or any other registered asset) as a fee for transaction execution. Here are the steps that you will need to execute to support it. == Configuration -All you need to configure to start using this feature is an Oracle. You can use some service from any oracle service (like Chainlink, Pyth and others who support Substrate runtimes) or set up a development-mode solution. +All you need to configure to start using this feature is an Oracle. You can use some service from any oracle service (like Chainlink, Pyth and others who support Bizinikiwi runtimes) or set up a development-mode solution. === 1. Add Oracle Members @@ -45,11 +45,11 @@ Here's how to submit oracle data using the CLI: [source,bash] ---- -# Submit price feed for DOT/USD +# Submit price feed for HEZ/USD subxt tx --url "ws://localhost:9944" \ --suri "" \ orml-oracle feed_values \ - --values '[[1, "12000000000000000000"]]' # replace the CurrencyId with DOT's AssetId and the number with price of native DOT in native tokens + --values '[[1, "12000000000000000000"]]' # replace the CurrencyId with HEZ's AssetId and the number with price of native HEZ in native tokens ---- === 4. Query Oracle Data diff --git a/docs/modules/ROOT/pages/guides/pezpallet_abstractions.adoc b/docs/modules/ROOT/pages/guides/pezpallet_abstractions.adoc index 9d89605..1c97c99 100644 --- a/docs/modules/ROOT/pages/guides/pezpallet_abstractions.adoc +++ b/docs/modules/ROOT/pages/guides/pezpallet_abstractions.adoc @@ -2,11 +2,11 @@ :highlightjs-languages: rust :github-icon: pass:[] -= OpenZeppelin Pezpallet Abstractions += OpenZeppelin Pezpezpallet Abstractions === Introduction -link:https://github.com/OpenZeppelin/openzeppelin-pezpallet-abstractions[openzeppelin-pezpallet-abstractions] is a Rust macro library designed to simplify and secure the configuration of Polkadot parachain runtimes. By reducing repetitive boilerplate and providing sensible defaults, the library helps developers configure their runtimes with fewer lines of code while ensuring flexibility for customizations. +link:https://github.com/OpenZeppelin/openzeppelin-pezpallet-abstractions[openzeppelin-pezpallet-abstractions] is a Rust macro library designed to simplify and secure the configuration of Pezkuwi teyrchain runtimes. By reducing repetitive boilerplate and providing sensible defaults, the library helps developers configure their runtimes with fewer lines of code while ensuring flexibility for customizations. Note: This library has not been audited yet and should not be used in production environments. @@ -39,7 +39,7 @@ impl SystemConfig for OpenZeppelinRuntime { } impl_openzeppelin_system!(OpenZeppelinRuntime); ``` -This expands to configure multiple core pezpallets like `pezframe_system`, `pezpallet_timestamp`, `parachain_info`, and others essential for a functioning parachain runtime. +This expands to configure multiple core pezpallets like `pezframe_system`, `pezpallet_timestamp`, `teyrchain_info`, and others essential for a functioning teyrchain runtime. ===== 2. Additional configurations @@ -74,7 +74,7 @@ impl_openzeppelin_evm!(OpenZeppelinRuntime); ===== 3. Advanced Configuration Options -Each macro allows optional parameters to override the default values. This enables fine-tuning of runtime settings according to the specific needs of your parachain while retaining the benefits of standardized, secure defaults. +Each macro allows optional parameters to override the default values. This enables fine-tuning of runtime settings according to the specific needs of your teyrchain while retaining the benefits of standardized, secure defaults. Default Overrides: Customize specific parameters like `ExistentialDeposit`, `BaseXcmWeight`, or `AssetId` while relying on default values for other settings. Custom Implementations: Integrate custom types (like `EitherOf`, `ConstU32`) or origins (`EnsureRoot`, `WhitelistedCaller`) for advanced use cases. @@ -86,7 +86,7 @@ While the library is built with security in mind, it’s essential to review eac ===== 5. Contributing and Feedback We encourage contributions from the community to improve the library. Please refer to the link:https://github.com/OpenZeppelin/openzeppelin-pezpallet-abstractions/blob/main/CONTRIBUTING.MD[CONTRIBUTING.md] for guidelines. -=== 3. Using Procedural Macros in OpenZeppelin Pezpallet Abstractions +=== 3. Using Procedural Macros in OpenZeppelin Pezpezpallet Abstractions ==== 1. `construct_runtime!` Macro @@ -101,17 +101,17 @@ mod runtime { #[abstraction] struct System; // Available abstractions: System, Consensus, XCM, Assets, Governance, EVM. #[pezpallet] - type Pezpallet = pezpallet_crate; // Regular pezpallets defined with `#[pezpallet]` mimic the `construct_runtime!` structure. + type Pezpezpallet = pezpallet_crate; // Regular pezpallets defined with `#[pezpallet]` mimic the `construct_runtime!` structure. } ``` -Note: Pezpallet index assignments are handled automatically by this macro. If you require explicit control over pezpallet indices, please consider submitting a link:https://github.com/OpenZeppelin/openzeppelin-pezpallet-abstractions/issues[feature request]. +Note: Pezpezpallet index assignments are handled automatically by this macro. If you require explicit control over pezpallet indices, please consider submitting a link:https://github.com/OpenZeppelin/openzeppelin-pezpallet-abstractions/issues[feature request]. -===== Supported Abstractions and their Pezpallets: -* System -- pezframe_system, pezpallet_timestamp, parachain_info, pezpallet_scheduler, pezpallet_preimage, pezpallet_proxy, pezpallet_balances, pezpallet_utility, cumulus_pezpallet_parachain_system, pezpallet_multisig, pezpallet_session +===== Supported Abstractions and their Pezpezpallets: +* System -- pezframe_system, pezpallet_timestamp, teyrchain_info, pezpallet_scheduler, pezpallet_preimage, pezpallet_proxy, pezpallet_balances, pezpallet_utility, pezcumulus_pezpallet_teyrchain_system, pezpallet_multisig, pezpallet_session * Assets -- pezpallet_assets, pezpallet_transaction_payment, pezpallet_asset_manager -* Consensus -- pezpallet_authorship, pezpallet_aura, cumulus_pezpallet_aura_ext, pezpallet_collator_selection +* Consensus -- pezpallet_authorship, pezpallet_aura, pezcumulus_pezpallet_aura_ext, pezpallet_collator_selection * Governance -- pezpallet_sudo, pezpallet_treasury, pezpallet_conviction_voting, pezpallet_whitelist, pezpallet_custom_origins, pezpallet_referenda -* XCM -- pezpallet_message_queue, cumulus_pezpallet_xcmp_queue, pezpallet_xcm, cumulus_pezpallet_xcm, pezpallet_xcm_transactor, orml_xtokens, pezpallet_xcm_weight_trader +* XCM -- pezpallet_message_queue, pezcumulus_pezpallet_xcmp_queue, pezpallet_xcm, pezcumulus_pezpallet_xcm, pezpallet_xcm_transactor, orml_xtokens, pezpallet_xcm_weight_trader * EVM -- pezpallet_ethereum, pezpallet_evm, pezpallet_base_fee, pezpallet_evm_chain_id, pezpallet_erc20_xcm_bridge ==== 2. `impl_runtime_apis!` Macro @@ -148,7 +148,7 @@ mod apis { | * `fp_rpc::EthereumRuntimeRPCApi` + * `fp_rpc::ConvertTransactionRuntimeApi` | * `RuntimeCall` -- runtime call generated by `construct_runtime` macro + - * `Executive` -- `pezframe_executive::Executive` specification used by parachain system + + * `Executive` -- `pezframe_executive::Executive` specification used by teyrchain system + * `Ethereum` -- `pezpallet_ethereum` pezpallet struct generated by `construct_runtime` macro | assets @@ -159,28 +159,28 @@ mod apis { * `Balance` -- type used for balance specification (e.g., in `pezpallet_balances` config) | consensus -| * `sp_consensus_aura::AuraApi` + - * `sp_session::SessionKeys` + - * `cumulus_primitives_aura::AuraUnincludedSegmentApi` (if `async-backing` feature is enabled) +| * `pezsp_consensus_aura::AuraApi` + + * `pezsp_session::SessionKeys` + + * `pezcumulus_primitives_aura::AuraUnincludedSegmentApi` (if `async-backing` feature is enabled) | * `SessionKeys` -- struct generated by `impl_opaque_keys` macro + * `Aura` -- `pezpallet_aura` struct pezpallet generated by `construct_runtime` macro (only if `async-backing` feature is not enabled) + * `SlotDuration` -- constant used for slot duration definition (only if `async-backing` feature is enabled) + - * `ConsensusHook` -- type used in `cumulus_pezpallet_parachain_system::Config::ConsensusHook` (only if `async-backing` feature is enabled) + * `ConsensusHook` -- type used in `pezcumulus_pezpallet_teyrchain_system::Config::ConsensusHook` (only if `async-backing` feature is enabled) | system -| * `sp_api::Core` + - * `sp_api::Metadata` + - * `sp_block_builder::BlockBuilder` + - * `sp_transaction_pool::runtime_api::TaggedTransactionQueue` + - * `sp_offchain::OffchainWorkerApi` + +| * `pezsp_api::Core` + + * `pezsp_api::Metadata` + + * `pezsp_block_builder::BlockBuilder` + + * `pezsp_transaction_pool::runtime_api::TaggedTransactionQueue` + + * `pezsp_offchain::OffchainWorkerApi` + * `pezframe_system_rpc_runtime_api::AccountNonceApi` + - * `cumulus_primitives_core::CollectCollationInfo` + + * `pezcumulus_primitives_core::CollectCollationInfo` + * `pezframe_try_runtime::TryRuntime` (under a `try-runtime` feature) + - * `sp_genesis_builder::GenesisBuilder` -| * `Executive` -- `pezframe_executive::Executive` specification used by parachain system + + * `pezsp_genesis_builder::GenesisBuilder` +| * `Executive` -- `pezframe_executive::Executive` specification used by teyrchain system + * `System` -- `pezframe_system` pezpallet struct generated by `construct_runtime` macro + - * `ParachainSystem` -- `cumulus_pezpallet_parachain_system` pezpallet struct generated by `construct_runtime` macro + - * `RuntimeVersion` -- runtime version, generated by `sp_version::runtime_version` + + * `TeyrchainSystem` -- `pezcumulus_pezpallet_teyrchain_system` pezpallet struct generated by `construct_runtime` macro + + * `RuntimeVersion` -- runtime version, generated by `pezsp_version::runtime_version` + * `AccountId` -- account id type specified in `pezframe_system::Config` + * `Nonce` -- nonce type specified in `pezframe_system::Config` + * `RuntimeGenesisConfig` -- type generated by `construct_runtime` macro + @@ -194,7 +194,7 @@ mod apis { * `RuntimeOrigin` -- type generated by `construct_runtime` macro + * `RelayLocation` -- `Location` type pointing to the relaychain + * `System` -- `pezframe_system` pezpallet struct generated by `construct_runtime` macro + - * `ParachainSystem` -- `cumulus_pezpallet_parachain_system` pezpallet struct generated by `construct_runtime` macro + + * `TeyrchainSystem` -- `pezcumulus_pezpallet_teyrchain_system` pezpallet struct generated by `construct_runtime` macro + * `ExistentialDeposit` -- type describing existential deposit + * `AssetId` -- type describing internal asset id + * `XCMConfig` -- struct implementing `xcm_executor::Config`, generated by XCM abstraction as `XcmExecutorConfig` + diff --git a/docs/modules/ROOT/pages/guides/predeployed_contracts.adoc b/docs/modules/ROOT/pages/guides/predeployed_contracts.adoc index 2be2476..f004fd3 100644 --- a/docs/modules/ROOT/pages/guides/predeployed_contracts.adoc +++ b/docs/modules/ROOT/pages/guides/predeployed_contracts.adoc @@ -39,7 +39,7 @@ You can take as an example a file in our EVM template in path `contracts/contrac During the step when you generate a chainspec pass the parameter `--predeployed-contracts` with a path to the directory where you have stored the contract artifacts and the configuration: ```bash -./target/release/parachain-template-node build-spec --disable-default-bootnode --predeployed-contracts= > plain-parachain-chainspec.json +./target/release/teyrchain-template-node build-spec --disable-default-bootnode --predeployed-contracts= > plain-teyrchain-chainspec.json ``` == Exclude any contracts from genesis config diff --git a/docs/modules/ROOT/pages/guides/quick_start.adoc b/docs/modules/ROOT/pages/guides/quick_start.adoc index 11408fb..0f2ebd2 100644 --- a/docs/modules/ROOT/pages/guides/quick_start.adoc +++ b/docs/modules/ROOT/pages/guides/quick_start.adoc @@ -4,9 +4,9 @@ = Quick start -* Begin by visiting our link:https://github.com/OpenZeppelin/polkadot-runtime-templates[repository]. You can fork it, or simply clone it to your local directory. +* Begin by visiting our link:https://github.com/OpenZeppelin/pezkuwi-runtime-templates[repository]. You can fork it, or simply clone it to your local directory. ```bash -git clone git@github.com:OpenZeppelin/polkadot-runtime-templates.git +git clone git@github.com:OpenZeppelin/pezkuwi-runtime-templates.git ``` * Move to the directory of the template you want to use. We will use the `generic runtime template` for this tutorial, but it is the same for the same applies to the xref:runtimes/evm.adoc[EVM Runtime Template]. @@ -19,15 +19,15 @@ cd generic-template cargo build --release ``` -* Receive some `PSO` from the link:https://paritytech.github.io/polkadot-testnet-faucet/[Paseo faucet] +* Receive some `PSO` from the link:https://pezkuwichain.github.io/pezkuwi-testnet-faucet/[Paseo faucet] * Reserve a ParaId on Paseo: -** Go to link:https://polkadot.js.org/apps[PolkadotJS]. Check that it points to Paseo testnet. -** Go to `Network` > `Parachains` +** Go to link:https://pezkuwi.js.org/apps[PezkuwiJS]. Check that it points to Paseo testnet. +** Go to `Network` > `Teyrchains` ** Go to `Parathreads` tab ** Click the `+ ParaId` button -** Save the `parachain id` for the further usage. +** Save the `teyrchain id` for the further usage. ** Click `Submit` and `Sign and Submit`. * Generate and customize a chainspec: @@ -40,24 +40,24 @@ We use the `generic-template-node` executable throughout all the commands since ** Generate a plain chainspec with this command: + ```bash -./target/release/generic-template-node build-spec --disable-default-bootnode > plain-parachain-chainspec.json +./target/release/generic-template-node build-spec --disable-default-bootnode > plain-teyrchain-chainspec.json ``` ** Edit the chainspec: *** Update `name`, `id` and `protocolId` to unique values. *** Change `relay_chain` from `paseo-local` to `paseo`. -*** Change `para_id` and `parachainInfo.parachainId` from `1000` to the previously saved parachain id. +*** Change `para_id` and `teyrchainInfo.teyrchainId` from `1000` to the previously saved teyrchain id. ** Generate a raw chainspec with this command: + ```bash -./target/release/generic-template-node build-spec --chain plain-parachain-chainspec.json --disable-default-bootnode --raw > raw-parachain-chainspec.json +./target/release/generic-template-node build-spec --chain plain-teyrchain-chainspec.json --disable-default-bootnode --raw > raw-teyrchain-chainspec.json ``` [NOTE] ==== -At this point, you are free to use the omni-node. The command for using omni-node takes the form: `polkadot-omni-node --chain `. For more information about using omni-node, see the link:https://docs.polkadot.com/develop/toolkit/parachains/polkadot-omni-node/[polkadot-omni-node documentation]. +At this point, you are free to use the omni-node. The command for using omni-node takes the form: `pezkuwi-omni-node --chain `. For more information about using omni-node, see the link:https://docs.pezkuwi.com/develop/toolkit/teyrchains/pezkuwi-omni-node/[pezkuwi-omni-node documentation]. ==== * Run two nodes and wait until it syncs with the Paseo relay chain. This can take a fairly long time(up to 2 days), so we can use the `fast-unsafe` flag to make the process faster since we are on a testnet(~ 3 hours). `fast` downloads the blocks without executing the transactions, and `unsafe` skips downloading the state proofs(which we are ok with since it is a testnet). @@ -67,7 +67,7 @@ At this point, you are free to use the omni-node. The command for using omni-nod --alice \ --collator \ --force-authoring \ - --chain raw-parachain-chainspec.json \ + --chain raw-teyrchain-chainspec.json \ --base-path \ --port 40333 \ --rpc-port 8844 \ @@ -84,7 +84,7 @@ At this point, you are free to use the omni-node. The command for using omni-nod --bob \ --collator \ --force-authoring \ - --chain raw-parachain-chainspec.json \ + --chain raw-teyrchain-chainspec.json \ --base-path \ --port 40333 \ --rpc-port 8845 \ @@ -96,34 +96,34 @@ At this point, you are free to use the omni-node. The command for using omni-nod --sync fast-unsafe ``` ** `` is where the downloaded chain state will be stored. It can be any folder on your computer. -** `` is where your Paseo chainspec is stored. You can download this file from the link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/polkadot/node/service/chain-specs/paseo.json[official Polkadot sdk repository]. +** `` is where your Paseo chainspec is stored. You can download this file from the link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezkuwi/node/service/chain-specs/paseo.json[official Pezkuwi sdk repository]. * Register a parathread: ** Generate a genesis state: + ```bash -./target/release/generic-template-node export-genesis-state --chain raw-parachain-chainspec.json para--genesis-state +./target/release/generic-template-node export-genesis-state --chain raw-teyrchain-chainspec.json para--genesis-state ``` ** Generate a genesis wasm: + ```bash -./target/release/generic-template-node export-genesis-wasm --chain raw-parachain-chainspec.json para--wasm +./target/release/generic-template-node export-genesis-wasm --chain raw-teyrchain-chainspec.json para--wasm ``` -** Go to link:https://polkadot.js.org/apps[PolkadotJS]. Check that it points to Paseo testnet. -** Go to `Network` > `Parachains`. +** Go to link:https://pezkuwi.js.org/apps[PezkuwiJS]. Check that it points to Paseo testnet. +** Go to `Network` > `Teyrchains`. ** Go to `Parathreads` tab. ** Click the `+ ParaThread` button. ** Insert `para--wasm` to `code` field. ** Insert `para--genesis-state` to `initial state` field. ** Click `Submit` and `Sign and Submit`. -* When a parachain gets synced with a relaychain, you may start producing blocks as a parathread: -** Create some transaction with a PolkadotJS pointing to your parachain setup. -** With a PolkadotJS pointing to Paseo go to `Developer` > `Extrinsics`. +* When a teyrchain gets synced with a relaychain, you may start producing blocks as a parathread: +** Create some transaction with a PezkuwiJS pointing to your teyrchain setup. +** With a PezkuwiJS pointing to Paseo go to `Developer` > `Extrinsics`. ** Submit an extrinsic `onDemandAssignmentProvider.placeOrderAllowDeath` or `onDemandAssignmentProvider.placeOrderKeepAlive`: *** `maxAmount` should be not less than 10_000_000 and it is amount of 0.00001 PAS. It is an amount of PAS paid for the block. -*** `paraId` should be set to your parachain id. +*** `paraId` should be set to your teyrchain id. *** Click `Submit` and `Sign and Submit`. ** In some time your parathread will produce a block and in one of the next blocks of Paseo there will be an inclusion of this block @@ -132,4 +132,4 @@ At this point, you are free to use the omni-node. The command for using omni-nod - Read our general guides to understand more about the concepts of runtime development. - Learn more about the runtime configuration. Currently, we have two runtime templates: xref:runtimes/generic.adoc[Generic Runtime Template] and xref:runtimes/evm.adoc[EVM Runtime Template]. -- Explore the documentation for pezpallets. It may be useful if you are considering building a frontend for your parachain. +- Explore the documentation for pezpallets. It may be useful if you are considering building a frontend for your teyrchain. diff --git a/docs/modules/ROOT/pages/guides/rpc_differences.adoc b/docs/modules/ROOT/pages/guides/rpc_differences.adoc index e47efda..4e3f6be 100644 --- a/docs/modules/ROOT/pages/guides/rpc_differences.adoc +++ b/docs/modules/ROOT/pages/guides/rpc_differences.adoc @@ -4,7 +4,7 @@ = RPC Differences -The EVM in a Substrate node has almost the same RPC calls common to all nodes. But some of them are not applicable for Frontier. +The EVM in a Bizinikiwi node has almost the same RPC calls common to all nodes. But some of them are not applicable for Frontier. These are the calls that behave differently than would be expected by regular Ethereum nodes: diff --git a/docs/modules/ROOT/pages/guides/testing_with_zombienet.adoc b/docs/modules/ROOT/pages/guides/testing_with_zombienet.adoc index ae7b284..f2dd3b0 100644 --- a/docs/modules/ROOT/pages/guides/testing_with_zombienet.adoc +++ b/docs/modules/ROOT/pages/guides/testing_with_zombienet.adoc @@ -4,16 +4,16 @@ = Testing Solidity Smart Contracts with Zombienet -In this tutorial, we will demonstrate how to deploy your parachain using Zombienet, and test the functionalities of your parachain. +In this tutorial, we will demonstrate how to deploy your teyrchain using Zombienet, and test the functionalities of your teyrchain. Below are the main steps of this demo: -. Deploy our parachain against the locally simulated Paseo testnet by Zombienet. -. Deploy a Solidity smart contract on our parachain. -. Successfully invoke the Solidity smart contract deployed on our parachain. +. Deploy our teyrchain against the locally simulated Paseo testnet by Zombienet. +. Deploy a Solidity smart contract on our teyrchain. +. Successfully invoke the Solidity smart contract deployed on our teyrchain. -== Step 1: Deploy The Parachain +== Step 1: Deploy The Teyrchain -. git clone https://github.com/OpenZeppelin/polkadot-runtime-templates +. git clone https://github.com/OpenZeppelin/pezkuwi-runtime-templates . move to evm template directory + @@ -26,7 +26,7 @@ cd evm-template ```rust [relaychain] chain = "paseo-local" -default_command = "./bin-v1.6.0/polkadot" +default_command = "./bin-v1.6.0/pezkuwi" [[relaychain.nodes]] name = "alice" @@ -61,7 +61,7 @@ error[E0635]: unknown feature `stdsimd` 33 | #![cfg_attr(feature = "stdsimd", feature(stdsimd))] ``` -`Cd` into the `polkadot-sdk` directory (the path should be visible on the error message), and run the below command to update `ahash`: +`Cd` into the `pezkuwi-sdk` directory (the path should be visible on the error message), and run the below command to update `ahash`: ```bash cargo update -p ahash@0.7.6 @@ -95,53 +95,53 @@ cargo build --release --features="async-backing" + image::alice-direct-link.png[Alice Direct Link] -. Open the link with Chrome: link:https://polkadot.js.org/apps[PolkadotJS]. As of 2024 July, it doesn’t work on Safari and Brave, and it is buggy on Firefox. +. Open the link with Chrome: link:https://pezkuwi.js.org/apps[PezkuwiJS]. As of 2024 July, it doesn’t work on Safari and Brave, and it is buggy on Firefox. . Reserve a `ParaId` on Zombienet: - .. Go to `Network` > `Parachains` + .. Go to `Network` > `Teyrchains` .. Go to `Parathreads` tab .. Click the `+ ParaId` button - .. Save a `parachain id` for the further usage. + .. Save a `teyrchain id` for the further usage. .. Click `Submit` and `Sign and Submit` (you can use `Alice` as the account). -. Preparing necessary files to become a Parachain: +. Preparing necessary files to become a Teyrchain: .. Generate a plain chainspec: + ```bash -./target/release/evm-template-node build-spec --disable-default-bootnode > plain-parachain-chainspec.json +./target/release/evm-template-node build-spec --disable-default-bootnode > plain-teyrchain-chainspec.json ``` .. Edit the chainspec: ... Update `name`, `id` and `protocolId` to unique values (optional). - ... Change `para_id` and `parachainInfo.parachainId` from `1000` to the previously saved parachain id (probably 2000 if that’s your first time ;) ). + ... Change `para_id` and `teyrchainInfo.teyrchainId` from `1000` to the previously saved teyrchain id (probably 2000 if that’s your first time ;) ). ... Edit the `evmChainId.chainId` to the value of your choice. Try to select a value that has no existing EVM chain assigned to it (should be ok to leave as is for the most cases). .. Generate a raw chainspec: + ```bash -./target/release/evm-template-node build-spec --chain plain-parachain-chainspec.json --disable-default-bootnode --raw > raw-parachain-chainspec.json +./target/release/evm-template-node build-spec --chain plain-teyrchain-chainspec.json --disable-default-bootnode --raw > raw-teyrchain-chainspec.json ``` .. Generate the genesis state: + ```bash -./target/release/evm-template-node export-genesis-state --chain raw-parachain-chainspec.json > genesis-state +./target/release/evm-template-node export-genesis-state --chain raw-teyrchain-chainspec.json > genesis-state ``` .. Generate the validation code: + ```bash -./target/release/evm-template-node export-genesis-wasm --chain raw-parachain-chainspec.json > genesis-wasm +./target/release/evm-template-node export-genesis-wasm --chain raw-teyrchain-chainspec.json > genesis-wasm ``` -. Registering the Parachain: - .. Go back to `polkadot.js.org/apps` (remember Chrome). Go to `Developer/Sudo`. +. Registering the Teyrchain: + .. Go back to `pezkuwi.js.org/apps` (remember Chrome). Go to `Developer/Sudo`. .. select `pasasSudoWrapper` and `sudoScheduleParaInitialize(id, genesis)` .. enter the reserved id (2000) to `id` field .. enable `file upload` for both `genesisHead` and `validationCode` → because we will upload files for these. - .. select `Yes` for `paraKind` → meaning when we register our parachain, it will be a parachain rather than a parathread. + .. select `Yes` for `paraKind` → meaning when we register our teyrchain, it will be a teyrchain rather than a parathread. .. drag&drop your `genesis-state` file generated in step `10.d` into `genesisHead` field (good luck with the aiming) .. drag&drop your `genesis-wasm` file generated in `10.e` into `validationCode` field .. It should look like below: + -image::register-parachain.png[Register Parachain] +image::register-teyrchain.png[Register Teyrchain] .. `Submit Sudo`! . copy the path to `chain-spec` from zombienet terminal from `Bob` (beware, this file is changing every time you spin up a new zombienet): @@ -156,7 +156,7 @@ image::zombie-chain-spec.png[Zombie Chain Spec] --alice \ --collator \ --force-authoring \ - --chain raw-parachain-chainspec.json \ + --chain raw-teyrchain-chainspec.json \ --base-path storage/alice \ --port 40333 \ --rpc-port 8844 \ diff --git a/docs/modules/ROOT/pages/guides/weights_fees.adoc b/docs/modules/ROOT/pages/guides/weights_fees.adoc index 5e405d7..82d0e8c 100644 --- a/docs/modules/ROOT/pages/guides/weights_fees.adoc +++ b/docs/modules/ROOT/pages/guides/weights_fees.adoc @@ -6,11 +6,11 @@ Weight is a metric to estimate the time it takes to execute code. -In Substrate, every transaction has a weight. The block production algorithm selects the set of transactions from the transaction pool that achieve block saturation without exceeding `MaximumBlockWeight`. The `AvailableBlockRatio` ensures only a fraction of `MaximumBlockWeight` is used for regular transactions while system-critical operations (operational transactions) may use all remaining block weight. +In Bizinikiwi, every transaction has a weight. The block production algorithm selects the set of transactions from the transaction pool that achieve block saturation without exceeding `MaximumBlockWeight`. The `AvailableBlockRatio` ensures only a fraction of `MaximumBlockWeight` is used for regular transactions while system-critical operations (operational transactions) may use all remaining block weight. -Substrate charges every transaction's caller with fees in proportion to the cost of execution. It does so by converting each transaction's weight to fees via `WeightToFee`. +Bizinikiwi charges every transaction's caller with fees in proportion to the cost of execution. It does so by converting each transaction's weight to fees via `WeightToFee`. -Weights which underestimate cost of execution expose a DDOS vulnerability. If a transaction takes up less space than it should, too many transactions may be included in the block and the block's execution time may exceed expected block time. For parachains, this DDOS vulnerability can be critical; it may prevent future block production by bricking the chain until the parachain state is reset on the relay chain. +Weights which underestimate cost of execution expose a DDOS vulnerability. If a transaction takes up less space than it should, too many transactions may be included in the block and the block's execution time may exceed expected block time. For teyrchains, this DDOS vulnerability can be critical; it may prevent future block production by bricking the chain until the teyrchain state is reset on the relay chain. It is imperative for runtime developers to be conservative when approximating weight. Moreover, runtime complexity that is non-linear must be limited and bounded. @@ -31,7 +31,7 @@ cargo build --features runtime-benchmarks cargo build --release --features=runtime-benchmarks # Collect all pezpallets needed for benchmarking -# Makes the assumption all pezpallets are present at: /pezpallets/$PALLET_NAME +# Makes the assumption all pezpallets are present at: /pezpallets/$PEZPALLET_NAME pezpallets=$(ls pezpallets/) # Generate weights @@ -45,7 +45,7 @@ for pezpallet_name in $pezpallets; do done ``` [start=3] -. Automate the benchmarking pipeline. The first step may be automated by enforcing the command in the CI. The second step may be automated by integrating a benchmarking github bot. For an example, see https://github.com/paritytech/command-bot[Parity's Command Bot]. +. Automate the benchmarking pipeline. The first step may be automated by enforcing the command in the CI. The second step may be automated by integrating a benchmarking github bot. For an example, see https://github.com/pezkuwichain/command-bot[Parity's Command Bot]. == More Reading @@ -55,8 +55,8 @@ Technically, *Weight* represents the time it takes to execute code on *productio 1 unit of weight = 1 picosecond of execution time on target reference hardware ``` -It is important to ONLY generate weights on *production hardware*. https://wiki.polkadot.network/docs/maintain-guides-how-to-validate-polkadot#:~:text=Reference%20Hardware%E2%80%8B,instance%20on%20GCP%20and%20c6i[Polkadot Reference Hardware Docs] provides more information on Polkadot validator hardware requirements. +It is important to ONLY generate weights on *production hardware*. https://wiki.pezkuwi.network/docs/maintain-guides-how-to-validate-pezkuwi#:~:text=Reference%20Hardware%E2%80%8B,instance%20on%20GCP%20and%20c6i[Pezkuwi Reference Hardware Docs] provides more information on Pezkuwi validator hardware requirements. === References -https://www.shawntabrizi.com/blog/substrate/substrate-weight-and-fees/[Substrate Weight & Fees] by https://github.com/shawntabrizi/[Shawn Tabrizi] +https://www.shawntabrizi.com/blog/bizinikiwi/bizinikiwi-weight-and-fees/[Bizinikiwi Weight & Fees] by https://github.com/shawntabrizi/[Shawn Tabrizi] diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index 190515f..413eb21 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -1,9 +1,9 @@ :source-highlighter: highlight.js :highlightjs-languages: bash -= Polkadot Parachain Runtimes += Pezkuwi Teyrchain Runtimes -A collection of secure runtime templates to build parachains more easily on Polkadot. +A collection of secure runtime templates to build teyrchains more easily on Pezkuwi. == Runtimes * xref:runtimes/generic.adoc[Generic Runtime Template] @@ -11,6 +11,6 @@ A collection of secure runtime templates to build parachains more easily on Polk == Where to get started -* xref:guides/quick_start.adoc[Quick Start]: a generic parachain runtime that works out of the box. It has all the must have features, and allows further customization based on your project's needs. Generic Runtime Template also serves as the base for our other runtime templates. -* xref:guides/testing_with_zombienet.adoc[Testing with Zombienet]: a more opinionated parachain runtime template that maximizes Ethereum compatibility by using `AccountId20` and configures a local EVM instance. You can easily migrate/deploy Solidity Smart Contracts to this one. +* xref:guides/quick_start.adoc[Quick Start]: a generic teyrchain runtime that works out of the box. It has all the must have features, and allows further customization based on your project's needs. Generic Runtime Template also serves as the base for our other runtime templates. +* xref:guides/testing_with_zombienet.adoc[Testing with Zombienet]: a more opinionated teyrchain runtime template that maximizes Ethereum compatibility by using `AccountId20` and configures a local EVM instance. You can easily migrate/deploy Solidity Smart Contracts to this one. diff --git a/docs/modules/ROOT/pages/misc/multisig-accounts.adoc b/docs/modules/ROOT/pages/misc/multisig-accounts.adoc index 4313565..a0e72a3 100644 --- a/docs/modules/ROOT/pages/misc/multisig-accounts.adoc +++ b/docs/modules/ROOT/pages/misc/multisig-accounts.adoc @@ -2,7 +2,7 @@ * Multisig accounts do not have a private key. They are managed by their signatories. ** Q: how can it be secure if it does not have a private key - ** A: substrate uses `origin` for accounts. Each account signs their transaction. Someone who does not belong to the signatories of a multisig account, cannot approve/dispatch calls in the name of the multisig account, even if they wanted to. Knowing the public key of the account is not enough, since the approval message needs to belong to signatories, and each message is signed by the private key. So, effectively, a multisig account indirectly has private keys as many as its signatory count, and thus, a multisig account does not need a separate private key. + ** A: bizinikiwi uses `origin` for accounts. Each account signs their transaction. Someone who does not belong to the signatories of a multisig account, cannot approve/dispatch calls in the name of the multisig account, even if they wanted to. Knowing the public key of the account is not enough, since the approval message needs to belong to signatories, and each message is signed by the private key. So, effectively, a multisig account indirectly has private keys as many as its signatory count, and thus, a multisig account does not need a separate private key. * Creating a multisig account is basically just deriving the public key of it. Just like the creation of a new personal account, we are just deriving the public key. We don’t store this public key on-chain for the creation of the account. The only difference between personal accounts and multisig accounts is, the public key derivation process: ** for a single account, the process is roughly: *** generating a private key, diff --git a/docs/modules/ROOT/pages/pezpallets/assets.adoc b/docs/modules/ROOT/pages/pezpallets/assets.adoc index de31e7a..88237ff 100644 --- a/docs/modules/ROOT/pages/pezpallets/assets.adoc +++ b/docs/modules/ROOT/pages/pezpallets/assets.adoc @@ -4,15 +4,15 @@ = pezpallet_assets -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/assets/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/assets/src/lib.rs[{github-icon},role=heading-link] == Purpose The `pezpallet_assets` module is designed to manage and manipulate custom fungible asset types. It provides functionality for asset creation, management, and various operations, allowing for a flexible and scalable approach to asset handling. -== Pezpallet specific terms +== Pezpezpallet specific terms ** `Asset ID` - A unique identifier for an asset type. ** `Asset Owner` - The account that owns an asset. @@ -21,7 +21,7 @@ The `pezpallet_assets` module is designed to manage and manipulate custom fungib == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `Balance` -- The balance unit type. ** `RemoveItemsLimit` -- The maximum number of items that can be removed in a single `destroy_accounts` and `destroy_approvals` call. ** `AssetId` -- The unique asset identifiers. diff --git a/docs/modules/ROOT/pages/pezpallets/aura_ext.adoc b/docs/modules/ROOT/pages/pezpallets/aura_ext.adoc index c702e43..ee41931 100644 --- a/docs/modules/ROOT/pages/pezpallets/aura_ext.adoc +++ b/docs/modules/ROOT/pages/pezpallets/aura_ext.adoc @@ -2,30 +2,30 @@ :highlightjs-languages: rust :github-icon: pass:[] -= cumulus_pezpallet_aura_ext += pezcumulus_pezpallet_aura_ext -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` == Purpose -This pezpallet integrates parachain’s own block production mechanism (for example AuRa) into Cumulus parachain system. It allows: +This pezpallet integrates teyrchain’s own block production mechanism (for example AuRa) into Pezpezcumulus teyrchain system. It allows: - to manage the unincluded blocks from the current slot - to validate produced block against the relay chain -== Configuration and Integration link:https://github.com/paritytech/polkadot-sdk/tree/release-polkadot-v1.10.0/cumulus/pezpallets/aura-ext[{github-icon},role=heading-link] +== Configuration and Integration link:https://github.com/pezkuwichain/pezkuwi-sdk/tree/release-pezkuwi-v1.10.0/pezcumulus/pezpallets/aura-ext[{github-icon},role=heading-link] -There is no special config for this integration and it has no dispatchables, but you need to integrate it with other `parachain-system` crate: +There is no special config for this integration and it has no dispatchables, but you need to integrate it with other `teyrchain-system` crate: === Integrate `BlockExecutor` -When you invoke the `register_validate_block` macro, you should provide `cumulus_pezpallet_aura_ext::BlockExecutor` to it to allow `aura-ext` to validate the blocks produced by `aura` +When you invoke the `register_validate_block` macro, you should provide `pezcumulus_pezpallet_aura_ext::BlockExecutor` to it to allow `aura-ext` to validate the blocks produced by `aura` [source, rust] ---- -cumulus_pezpallet_parachain_system::register_validate_block! { +pezcumulus_pezpallet_teyrchain_system::register_validate_block! { Runtime = Runtime, - BlockExecutor = cumulus_pezpallet_aura_ext::BlockExecutor::, + BlockExecutor = pezcumulus_pezpallet_aura_ext::BlockExecutor::, } ---- @@ -35,12 +35,12 @@ Also you might want to manage the consensus externally and control the segment t [source, rust] ---- -impl cumulus_pezpallet_parachain_system::Config for Runtime { +impl pezcumulus_pezpallet_teyrchain_system::Config for Runtime { ... - type ConsensusHook = cumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< + type ConsensusHook = pezcumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, - BLOCK_PROCESSING_VELOCITY, + BLOCK_PTYRESSING_VELOCITY, UNINCLUDED_SEGMENT_CAPACITY, >; } diff --git a/docs/modules/ROOT/pages/pezpallets/balances.adoc b/docs/modules/ROOT/pages/pezpallets/balances.adoc index 7f8c562..181fe65 100644 --- a/docs/modules/ROOT/pages/pezpallets/balances.adoc +++ b/docs/modules/ROOT/pages/pezpallets/balances.adoc @@ -4,9 +4,9 @@ = pezpallet_balances -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/balances/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/balances/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -23,17 +23,17 @@ The Balances pezpallet provides functions for: == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `RuntimeHoldReason` -- The overarching xref:glossary.adoc#hold[hold] reason. ** `RuntimeFreezeReason` -- The overarching xref:glossary.adoc#freeze[freeze] reason. ** `Balance` -- The balance of an account ** `DustRemoval` -- Handler for the unbalanced reduction when removing a dust account. ** `ExistentialDeposit` -- The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO! ** `AccountStore` -- The means of storing the balances of an account. -** `ReserveIdentifier` -- The ID type for xref:glossary.adoc#reserve[reserves]. The use of reserves is deprecated in favor of holds. See `https://github.com/paritytech/substrate/pull/12951/` +** `ReserveIdentifier` -- The ID type for xref:glossary.adoc#reserve[reserves]. The use of reserves is deprecated in favor of holds. See `https://github.com/pezkuwichain/bizinikiwi/pull/12951/` ** `FreezeIdentifier` -- The ID type for freezes. ** `MaxLocks` -- The maximum number of locks that should exist on an account. -** `MaxReserves` -- The maximum number of named reserves that can exist on an account. The use of reserves is deprecated in favor of holds. See `https://github.com/paritytech/substrate/pull/12951/` +** `MaxReserves` -- The maximum number of named reserves that can exist on an account. The use of reserves is deprecated in favor of holds. See `https://github.com/pezkuwichain/bizinikiwi/pull/12951/` ** `MaxFreezes` -- The maximum number of individual freeze locks that can exist on an account at any time. * Common configs ** `RuntimeEvent` -- The overarching event type. diff --git a/docs/modules/ROOT/pages/pezpallets/collator-selection.adoc b/docs/modules/ROOT/pages/pezpallets/collator-selection.adoc index f06c4d9..b9cc5a6 100644 --- a/docs/modules/ROOT/pages/pezpallets/collator-selection.adoc +++ b/docs/modules/ROOT/pages/pezpallets/collator-selection.adoc @@ -4,9 +4,9 @@ = collator_selection -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/cumulus/pezpallets/collator-selection/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezcumulus/pezpallets/collator-selection/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,7 +14,7 @@ This pezpallet is needed to manage the set of xref:glossary.adoc#collator[collat == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `UpdateOrigin` — defines the list of origins that are able to modify the settings of collators (e.g. set and remove list of xref:glossary.adoc#invulnerable[invulnerables], desired xref:glossary.adoc#candidates[candidates], xref:glossary.adoc#candidacy_bond[candidacy bond]). This type should implement the trait `EnsureOrigin`. ** `PotId` — id of account that will hold a xref:glossary.adoc#pot[Pot]. ** `MaxCandidates` — maximum number of candidates diff --git a/docs/modules/ROOT/pages/pezpallets/message-queue.adoc b/docs/modules/ROOT/pages/pezpallets/message-queue.adoc index 1d39d04..592a875 100644 --- a/docs/modules/ROOT/pages/pezpallets/message-queue.adoc +++ b/docs/modules/ROOT/pages/pezpallets/message-queue.adoc @@ -4,16 +4,16 @@ = pezpallet_message_queue -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/message-queue/src/lib.rs[{github-icon},role=heading-link] +Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/message-queue/src/lib.rs[{github-icon},role=heading-link] == Purpose -Flexible FRAME pezpallet for implementing message queues. This pezpallet can also initiate message processing using the `MessageProcessor` (see `Config`). +Flexible PEZFRAME pezpallet for implementing message queues. This pezpallet can also initiate message processing using the `MessageProcessor` (see `Config`). == Config -* Pezpallet-specific configs: +* Pezpezpallet-specific configs: ** `MessageProcessor` -- Processor for messages ** `Size` -- Page/heap size type. ** `QueueChangeHandler` -- Code to be called when a message queue changes - either with items introduced or removed. @@ -21,7 +21,7 @@ Flexible FRAME pezpallet for implementing message queues. This pezpallet can als ** `HeapSize` -- The size of the page; this also serves as the maximum message size which can be sent. ** `MaxStale` -- The maximum number of stale pages (i.e. of overweight messages) allowed before culling can happen. Once there are more stale pages than this, then historical pages may be dropped, even if they contain unprocessed overweight messages. ** `ServiceWeight` -- The amount of weight (if any) which should be provided to the message queue for servicing enqueued items `on_initialize`. This may be legitimately `None` in the case that you will call `ServiceQueues::service_queues` manually or set [`Self::IdleMaxServiceWeight`] to have it run in `on_idle`. -** `IdleMaxServiceWeight` -- The maximum amount of weight (if any) to be used from remaining weight `on_idle` which should be provided to the message queue for servicing enqueued items `on_idle`. Useful for parachains to process messages at the same block they are received. If `None`, it will not call `ServiceQueues::service_queues` in `on_idle`. +** `IdleMaxServiceWeight` -- The maximum amount of weight (if any) to be used from remaining weight `on_idle` which should be provided to the message queue for servicing enqueued items `on_idle`. Useful for teyrchains to process messages at the same block they are received. If `None`, it will not call `ServiceQueues::service_queues` in `on_idle`. * Common configs: ** `RuntimeEvent` -- The overarching event type. ** `WeightInfo` -- Weight information for extrinsics in this pezpallet. @@ -108,7 +108,7 @@ Remove a page which has no more messages remaining to be processed or is stale. == Important Mentions and FAQ's -IMPORTANT: The pezpallet utilizes the [`sp_weights::WeightMeter`] to manually track its consumption to always stay within +IMPORTANT: The pezpallet utilizes the [`pezsp_weights::WeightMeter`] to manually track its consumption to always stay within the required limit. This implies that the message processor hook can calculate the weight of a message without executing it. ==== How does this pezpallet work under the hood? diff --git a/docs/modules/ROOT/pages/pezpallets/multisig.adoc b/docs/modules/ROOT/pages/pezpallets/multisig.adoc index 33b8888..c31d6e4 100644 --- a/docs/modules/ROOT/pages/pezpallets/multisig.adoc +++ b/docs/modules/ROOT/pages/pezpallets/multisig.adoc @@ -4,9 +4,9 @@ = pezpallet_multisig -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code: link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/multisig/src/lib.rs[{github-icon},role=heading-link] +== Source Code: link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/multisig/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,7 +14,7 @@ This module enables multi-signature operations in your runtime. It allows multip == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `DepositBase` -- The base amount of currency needed to xref:glossary.adoc#reserve[reserve] for creating a multisig execution or to store a dispatch call for later. Recall: The deposit to be made by the account that creates the multisig is: `threshold * DepositFactor + DepositBase` ** `DepositFactor` -- The amount of currency needed per unit threshold when creating a multisig execution. Recall: The deposit to be made by the account that creates the multisig is: `threshold * DepositFactor + DepositBase` ** `MaxSignatories` -- The maximum amount of signatories allowed in the multisig. @@ -218,7 +218,7 @@ A real use case scenario could be for example a business that has a bank account * funding the multisig account (same for `1-out-of-n multisig accounts`, and `m-out-of-n multisig accounts`) ** find the public key of the shared account - *** use polkadot JS to create a multisig account + *** use pezkuwi JS to create a multisig account *** or, use `multi_account_id` in the source code ** fund the account by simply sending some money to the derived public key diff --git a/docs/modules/ROOT/pages/pezpallets/proxy.adoc b/docs/modules/ROOT/pages/pezpallets/proxy.adoc index 63e83c2..7e195c6 100644 --- a/docs/modules/ROOT/pages/pezpallets/proxy.adoc +++ b/docs/modules/ROOT/pages/pezpallets/proxy.adoc @@ -4,9 +4,9 @@ = pezpallet_proxy -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/proxy/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/proxy/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,7 +14,7 @@ This pezpallet enables delegation of rights to execute certain call types from o == Config -* Pezpallet-specific configs: +* Pezpezpallet-specific configs: ** `ProxyType` -- a type that describes different variants of xref:glossary.adoc#proxy[proxy]. It must implement `Default` trait and `InstanceFilter` trait. ** `ProxyDepositBase` -- a base amount of currency that defines a deposit for proxy creation. ** `ProxyDepositFactor` -- an amount of currency that will be frozen along with the `ProxyDepositBase` for each additional proxy. diff --git a/docs/modules/ROOT/pages/pezpallets/teyrchain-system.adoc b/docs/modules/ROOT/pages/pezpallets/teyrchain-system.adoc index a057b82..930d599 100644 --- a/docs/modules/ROOT/pages/pezpallets/teyrchain-system.adoc +++ b/docs/modules/ROOT/pages/pezpallets/teyrchain-system.adoc @@ -2,34 +2,34 @@ :highlightjs-languages: rust :github-icon: pass:[] -= parachain_system += teyrchain_system -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/cumulus/pezpallets/parachain-system/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezcumulus/pezpallets/teyrchain-system/src/lib.rs[{github-icon},role=heading-link] == Purpose -This pezpallet is a core element of each parachain. It will: +This pezpallet is a core element of each teyrchain. It will: - Aggregate information about built blocks - Process binary code upgrades -- Process incoming messages from both relay chain and other parachains (if a channel is established between them) -- Send outgoing messages to relay chain and other parachains +- Process incoming messages from both relay chain and other teyrchains (if a channel is established between them) +- Send outgoing messages to relay chain and other teyrchains - Build collation info when requested by xref:glossary.adoc#collator[collator] == Config -* Pezpallet-specific configs: +* Pezpezpallet-specific configs: ** `OnSystemEvent` — a handler that will be called when new xref:glossary.adoc#validation_data[validation data] will be set (once each block). New validation data will also be passed to it. Look to `trait OnSystemEvent` for more details. -** `SelfParaId` — getter for a parachain id of this chain +** `SelfParaId` — getter for a teyrchain id of this chain ** `OutboundXcmpMessageSource` — source of outgoing XCMP messages. It is queried in `finalize_block` and later included into collation information ** `DmpQueue` — a handler for the incoming *downward* messages from relay chain ** `ReservedDmpWeight` — xref:glossary.adoc#weight[weight] reserved for DMP message processing. This config seems to be is not used as the function that processes these messages (`enqueue_inbound_downward_messages`) returns used weight. -** `XcmpMessageHandler` — a handler for the incoming _horizontal_ messages from other parachains +** `XcmpMessageHandler` — a handler for the incoming _horizontal_ messages from other teyrchains ** `ReservedXcmpWeight` — default weight limit for the for the XCMP message processing. May be overridden by storage `ReservedXcmpWeightOverride` . If incoming messages in block will exceed the weight limit, they won’t be processed. -** `CheckAssociatedRelayNumber` — type that implements `trait CheckAssociatedRelayNumber` . Currently there are three implementations: no check (`AnyRelayNumber`), strict increase (`RelayNumberStrictlyIncreases`), monotonic increase (`RelayNumberMonotonicallyIncreases`). It is needed to maintain some order between blocks in relay chain and parachain. -** `ConsensusHook` — this is a feature-enabled config ( for the management of the xref:glossary.adoc#unincluded_segment[unincluded segment]. Requires the implementation of `trait ConsensusHook`. There are several implementations of it, in `parachain-system` crate (`FixedCapacityUnincludedSegment`) and in `aura-ext` crate (`FixedVelocityConsensusHook`). It is needed to maintain the logic of segment length handling. +** `CheckAssociatedRelayNumber` — type that implements `trait CheckAssociatedRelayNumber` . Currently there are three implementations: no check (`AnyRelayNumber`), strict increase (`RelayNumberStrictlyIncreases`), monotonic increase (`RelayNumberMonotonicallyIncreases`). It is needed to maintain some order between blocks in relay chain and teyrchain. +** `ConsensusHook` — this is a feature-enabled config ( for the management of the xref:glossary.adoc#unincluded_segment[unincluded segment]. Requires the implementation of `trait ConsensusHook`. There are several implementations of it, in `teyrchain-system` crate (`FixedCapacityUnincludedSegment`) and in `aura-ext` crate (`FixedVelocityConsensusHook`). It is needed to maintain the logic of segment length handling. * Common parameters for all pezpallets: ** `RuntimeEvent` ** `WeightInfo` @@ -42,7 +42,7 @@ This pezpallet is a core element of each parachain. It will: [source,rust] ---- pub fn set_validation_data( - data: ParachainInherentData, + data: TeyrchainInherentData, ) ---- This call is an inherent, you can’t call this from another dispatchable or from client side. This call sets up validation data for collation, processes code upgrades and updates unincluded segments. @@ -115,7 +115,7 @@ Validate and perform the authorized upgrade. == Important Mentions and FAQ's -=== Pezpallet's workflow +=== Pezpezpallet's workflow * Block Initialization ** Remove already processed xref:glossary.adoc#validation_code[validation code] @@ -127,5 +127,5 @@ Validate and perform the authorized upgrade. ** Update `ValidationData`, `RelayStateProof` and other configs from relay. ** Process the `ValidationCode` upgrade * Block Finalization -** Enqueue all received messages from relay chain and other parachains +** Enqueue all received messages from relay chain and other teyrchains ** Update `UnincludedSegment` and `AggregatedUnincludedSegment` with the latest block data diff --git a/docs/modules/ROOT/pages/pezpallets/transaction_payment.adoc b/docs/modules/ROOT/pages/pezpallets/transaction_payment.adoc index 24d803a..677ec72 100644 --- a/docs/modules/ROOT/pages/pezpallets/transaction_payment.adoc +++ b/docs/modules/ROOT/pages/pezpallets/transaction_payment.adoc @@ -4,15 +4,15 @@ = pezpallet_transaction_payment -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/transaction-payment/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/transaction-payment/src/lib.rs[{github-icon},role=heading-link] == Purpose `pezpallet-transaction-payment` implements transaction fee logic. -In substrate, every transaction has an associated `call`, and each `call` has its own xref:glossary.adoc#weight[weight] function. The weight function estimates the time it takes to execute the `call`. +In bizinikiwi, every transaction has an associated `call`, and each `call` has its own xref:glossary.adoc#weight[weight] function. The weight function estimates the time it takes to execute the `call`. `Config::WeightToFee` is a mapping between the smallest unit of compute (*Weight*) and smallest unit of fee. @@ -29,13 +29,13 @@ The inputs are defined below in the glossary and config sections. == Config -* Pezpallet-specific handlers: +* Pezpezpallet-specific handlers: ** `OnChargeTransaction` -- Handler for withdrawing, refunding and depositing the transaction fee. Type must implement the trait `OnChargeTransaction`. ** `FeeMultiplierUpdate` -- Handler to define how base fees change over time (over blocks). Type must implement the trait `MultiplierUpdate`. Possible assignments include `ConstantFee`, `SlowAdjustingFee`, and `FastAdjustingFee`. -* Pezpallet-specific converters: +* Pezpezpallet-specific converters: ** `WeightToFee` -- Mapping between the smallest unit of weight and smallest unit of fee. Type must implement the trait `WeightToFee>`. ** `LengthToFee` -- Convert a length value into a deductible fee based on the currency type. Type must implement the trait `WeightToFee>`. -* Pezpallet-specific constants: +* Pezpezpallet-specific constants: ** `OperationalFeeMultiplier` -- A fee multiplier for `Operational` extrinsics to compute "virtual tip" to boost their `priority`. Type must implement the trait `Get`. * Common configs: ** `RuntimeEvent` @@ -50,7 +50,7 @@ There are no dispatchables (and no errors) in this pezpallet. This pezpallet is == More Reading -** https://www.shawntabrizi.com/blog/substrate/substrate-weight-and-fees/[Substrate Weight & Fees] by Shawn Tabrizi -* https://docs.substrate.io/build/tx-weights-fees/[Substrate Docs: Transaction Weight & Fees] -** https://docs.substrate.io/reference/how-to-guides/weights/calculate-fees/#:~:text=Weight%20fee%20%2D%20A%20fee%20calculated,change%20as%20the%20chain%20progresses[Substrate Docs: How to Calculate Fees] +** https://www.shawntabrizi.com/blog/bizinikiwi/bizinikiwi-weight-and-fees/[Bizinikiwi Weight & Fees] by Shawn Tabrizi +* https://docs.bizinikiwi.io/build/tx-weights-fees/[Bizinikiwi Docs: Transaction Weight & Fees] +** https://docs.bizinikiwi.io/reference/how-to-guides/weights/calculate-fees/#:~:text=Weight%20fee%20%2D%20A%20fee%20calculated,change%20as%20the%20chain%20progresses[Bizinikiwi Docs: How to Calculate Fees] diff --git a/docs/modules/ROOT/pages/pezpallets/treasury.adoc b/docs/modules/ROOT/pages/pezpallets/treasury.adoc index 591dd75..b4ce698 100644 --- a/docs/modules/ROOT/pages/pezpallets/treasury.adoc +++ b/docs/modules/ROOT/pages/pezpallets/treasury.adoc @@ -4,9 +4,9 @@ = pezpallet_treasury -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/substrate/pezframe/treasury/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/bizinikiwi/pezframe/treasury/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,12 +14,12 @@ The Treasury pezpallet provides a “pot” of funds that can be managed by stak == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `SpendPeriod` -- Period between successive spends. "Spend" means, treasury spending money to a proposal. `SpendPeriod` determines how often the treasury pezpallet distributes the assets to the proposals. ** `Burn` -- Percentage of spare funds (if any) that are burnt per spend period. ** `BurnDestination` -- Handler for the unbalanced decrease when treasury funds are burned. ** `SpendFunds` -- Runtime hooks to external pezpallet using treasury to compute spend funds. -** `MaxApprovals` -- The maximum number of approvals that can wait in the spending queue. NOTE: This parameter is also used within the Bounties Pezpallet extension if enabled. +** `MaxApprovals` -- The maximum number of approvals that can wait in the spending queue. NOTE: This parameter is also used within the Bounties Pezpezpallet extension if enabled. ** `AssetKind` -- Type parameter representing the asset kinds to be spent from the treasury. ** `Beneficiary` -- Type parameter used to identify the beneficiaries eligible to receive treasury spends. ** `BeneficiaryLookup` -- Converting trait to take a source type and convert to [`Self::Beneficiary`]. @@ -27,14 +27,14 @@ The Treasury pezpallet provides a “pot” of funds that can be managed by stak ** `BalanceConverter` -- Type for converting the balance of an [Self::AssetKind] to the balance of the native asset, solely for the purpose of asserting the result against the maximum allowed spend amount of the [`Self::SpendOrigin`]. ** `PayoutPeriod` -- The period during which an approved treasury spend has to be claimed by the beneficiary of the proposal. -* Pezpallet-specific origins: +* Pezpezpallet-specific origins: ** `RejectOrigin` -- Origin from which rejections must come. ** `SpendOrigin` -- The origin required for approving spends from the treasury outside of the proposal process. The `Success` value is the maximum amount in a native asset that this origin is allowed to spend at a time. * Common configs ** `Currency` -- The staking balance. ** `RuntimeEvent` -- The overarching event type. -** `PezpalletId` -- The treasury's pezpallet id, used for deriving its sovereign account ID. +** `PezpezpalletId` -- The treasury's pezpallet id, used for deriving its sovereign account ID. ** `WeightInfo` -- Weight information for extrinsics in this pezpallet. ** `BenchmarkHelper` -- Helper type for benchmarks. @@ -55,7 +55,7 @@ Propose and approve a spend of treasury funds, enables the creation of spends us NOTE: For record-keeping purposes, the proposer is deemed to be equivalent to the beneficiary. -NOTE: The behavior and API of the old `spend` call capable of spending local DOT tokens remain unchanged, and is now under the name `spend_local`. The revised +NOTE: The behavior and API of the old `spend` call capable of spending local HEZ tokens remain unchanged, and is now under the name `spend_local`. The revised new `spend` call is able to spend any asset kind managed by the treasury. @@ -241,5 +241,5 @@ The new `spend` dispatchable will not be able to solely `propose` or `approve` p After the deprecation update, `treasury` pezpallet no longer tracks `unapproved` proposals, but only approved ones. -The idea is to use the `treausry` pezpallet combined with some other pezpallet which will provide the functionality of tracking unapproved proposals (reject, approve, propose). For Polkadot it's OpenGov (referenda and conviction voting pezpallets). +The idea is to use the `treausry` pezpallet combined with some other pezpallet which will provide the functionality of tracking unapproved proposals (reject, approve, propose). For Pezkuwi it's OpenGov (referenda and conviction voting pezpallets). diff --git a/docs/modules/ROOT/pages/pezpallets/xcm.adoc b/docs/modules/ROOT/pages/pezpallets/xcm.adoc index 2077745..f1043c3 100644 --- a/docs/modules/ROOT/pages/pezpallets/xcm.adoc +++ b/docs/modules/ROOT/pages/pezpallets/xcm.adoc @@ -4,9 +4,9 @@ = pezpallet_xcm -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/polkadot/xcm/pezpallet-xcm/src/lib.rs[{github-icon},role=heading-link] +Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezkuwi/xcm/pezpallet-xcm/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,31 +14,31 @@ Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkado == Config -* Pezpallet-specific origins: +* Pezpezpallet-specific origins: ** `AdminOrigin` -- The origin that is allowed to call privileged operations on the XCM pezpallet. Type must implement trait `EnsureOrigin`. ** `ExecuteXcmOrigin` -- Required origin for executing XCM messages, including the teleport functionality. If successful, it returns a `xref:glossary.adoc#multilocation[MultiLocation]` which exists as an interior location within this chain's XCM context. Type must implement trait `EnsureOrigin`. ** `SendXcmOrigin` -- Required origin for sending XCM messages. If successful, it resolves to `MultiLocation`. Type must implement trait `EnsureOrigin`. -* Pezpallet-specific ID types: +* Pezpezpallet-specific ID types: ** `RemoteLockConsumerIdentifier` -- The ID type for local consumers of remote locks. The type must implement `Copy`. -* Pezpallet-specific handlers: +* Pezpezpallet-specific handlers: ** `Currency` -- Lockable currency used in the pezpallet. Type must implement the trait `LockableCurrency`. ** `Weigher` -- Measures xref:glossary.adoc#weight[weight] consumed by XCM local execution. Type must implement the trait `WeightBounds`. ** `XcmExecutor` -- Means of executing XCM. Type must implement the trait `ExecuteXcm`. ** `XcmRouter` -- The type used to dispatch an XCM to its destination. Type must implement the trait `SendXcm`. -* Pezpallet-specific filters: +* Pezpezpallet-specific filters: ** `XcmExecuteFilter` -- XCM filter for which messages to be executed using `XcmExecutor` must pass. Type must implement trait `Contains<(MultiLocation, Xcm<::RuntimeCall>)>`. ** `XcmReserveTransferFilter` -- XCM filter for which messages to be reserve-transferred using the dedicated extrinsic must pass.Type must implement the trait `Contains<(MultiLocation, Vec)>`. ** `XcmTeleportFilter` -- XCM filter for which messages to be teleported using the dedicated extrinsic must pass. Type must implement the trait `Contains<(MultiLocation, Vec)>`. ** `TrustedLockers` -- Returns whether or not the origin can be trusted for a specific asset. Type must implement `ContainsPair` where each pair is an `asset` and an `origin` thereby entrusting `origin` for operations relating to `asset`. -* Pezpallet-specific converters: +* Pezpezpallet-specific converters: ** `CurrencyMatcher` -- The `xref:glossary.adoc#multiasset[MultiAsset]` matcher for `Currency`. Type must implement the trait `MatchesFungible`. ** `SovereignAccountOf` -- How to get an `AccountId` value from a `MultiLocation`, useful for handling asset locks. Type must implement `ConvertLocation`. -* Pezpallet-specific constants: +* Pezpezpallet-specific constants: ** `VERSION_DISCOVERY_QUEUE_SIZE` -- `u32` measures the size of the version discovery queue. Typically set to `100`. ** `AdvertisedXcmVersion` -- The latest supported XCM version that this chain accepts. Type must implement the trait `Get`. Commonly set to `pezpallet_xcm::CurrentXcmVersion`. ** `MaxLockers` -- The maximum number of local XCM locks that a single account may have. Type must implement the trait `Get`. @@ -69,7 +69,7 @@ WARNING: DEPRECATED. `send` will be removed after June 2024. Use `send_blob` ins * Deprecation explanation: ** `pezpallet-xcm` has a new pair of extrinsics, `execute_blob` and `send_blob`. These are meant to be used instead of `execute` and `send`, which are now deprecated and will be removed eventually. These new extrinsics just require you to input the encoded XCM. -** There's a new utility in PolkadotJS Apps for encoding XCMs you can use: https://polkadot.js.org/apps/#/utilities/xcm Just pass in the encoded XCM to the new extrinsics and you're done. +** There's a new utility in PezkuwiJS Apps for encoding XCMs you can use: https://pezkuwi.js.org/apps/#/utilities/xcm Just pass in the encoded XCM to the new extrinsics and you're done. ** The migration from the old extrinsic to the new is very simple. If you have your message `xcm: VersionedXcm`, then instead of passing in `Box::new(xcm)` to both `execute` and `send`, you would pass in `xcm.encode().try_into()` and handle the potential error of its encoded length being bigger than `MAX_XCM_ENCODED_SIZE`. ** `pezpallet-contracts` takes the XCM encoded now as well. It follows the same API as `execute_blob` and `send_blob`. @@ -108,7 +108,7 @@ WARNING: DEPRECATED. `execute` will be removed after June 2024. Use `execute_blo * Deprecation explanation: ** `pezpallet-xcm` has a new pair of extrinsics, `execute_blob` and `send_blob`. These are meant to be used instead of `execute` and `send`, which are now deprecated and will be removed eventually. These new extrinsics just require you to input the encoded XCM. -** There's a new utility in PolkadotJS Apps for encoding XCMs you can use: https://polkadot.js.org/apps/#/utilities/xcm Just pass in the encoded XCM to the new extrinsics and you're done. +** There's a new utility in PezkuwiJS Apps for encoding XCMs you can use: https://pezkuwi.js.org/apps/#/utilities/xcm Just pass in the encoded XCM to the new extrinsics and you're done. ** The migration from the old extrinsic to the new is very simple. If you have your message `xcm: VersionedXcm`, then instead of passing in `Box::new(xcm)` to both `execute` and `send`, you would pass in `xcm.encode().try_into()` and handle the potential error of its encoded length being bigger than `MAX_XCM_ENCODED_SIZE`. ** `pezpallet-contracts` takes the XCM encoded now as well. It follows the same API as `execute_blob` and `send_blob`. @@ -260,7 +260,7 @@ The origin must be `ExecuteXcmOrigin` for this call. **Params:** -- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain. +- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Teyrchain(..))` to send from teyrchain to teyrchain, or `X1(Teyrchain(..))` to send from relay to teyrchain. - `beneficiary: Box` -- A beneficiary location for the assets in the context of `dest`. Willgenerally be an `AccountId32` value. - `assets: Box` -- The assets to be withdrawn. This should include the assets used to pay the fee on the `dest` side. - `fee_asset_item: u32` -- The index into `assets` of the item which should be used to pay fees. @@ -298,7 +298,7 @@ The origin must be `ExecuteXcmOrigin` for this call. **Params:** -- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to teleport from parachain to parachain, or `X1(Parachain(..))` to teleport from relay to parachain. +- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Teyrchain(..))` to teleport from teyrchain to teyrchain, or `X1(Teyrchain(..))` to teleport from relay to teyrchain. - `beneficiary: Box` -- A beneficiary location for the assets in the context of `dest`. Will generally be an `AccountId32` value. - `assets: Box` -- The assets to be withdrawn. This should include the assets used to pay the fee on the `dest` side. - `fee_asset_item: u32` -- The index into `assets` of the item which should be used to pay fees. @@ -358,7 +358,7 @@ Transfer some assets from the local chain to the destination chain through their **Params:** -- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain. +- `dest: Box` -- Destination context for the assets. Will typically be `X2(Parent, Teyrchain(..))` to send from teyrchain to teyrchain, or `X1(Teyrchain(..))` to send from relay to teyrchain. - `beneficiary: Box` -- A beneficiary location for the assets in the context of `dest`. Will generally be an `AccountId32` value. - `assets`: The assets to be withdrawn. This should include the assets used to pay the fee on the `dest` (and possibly reserve) chains. - `fee_asset_item: u32` -- The index into `assets` of the item which should be used to pay fees. @@ -490,4 +490,4 @@ Send an XCM from a local, signed, origin. == More Reading -https://wiki.polkadot.network/docs/learn-xcm-usecases[Polkadot Wiki XCM Use Cases] +https://wiki.pezkuwi.network/docs/learn-xcm-usecases[Pezkuwi Wiki XCM Use Cases] diff --git a/docs/modules/ROOT/pages/pezpallets/xcmp-queue.adoc b/docs/modules/ROOT/pages/pezpallets/xcmp-queue.adoc index 4ef6534..0fdc1a7 100644 --- a/docs/modules/ROOT/pages/pezpallets/xcmp-queue.adoc +++ b/docs/modules/ROOT/pages/pezpallets/xcmp-queue.adoc @@ -2,11 +2,11 @@ :highlightjs-languages: rust :github-icon: pass:[] -= cumulus_pezpallet_xcmp_queue += pezcumulus_pezpallet_xcmp_queue -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -== Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/cumulus/pezpallets/xcmp-queue/src/lib.rs[{github-icon},role=heading-link] +== Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezcumulus/pezpallets/xcmp-queue/src/lib.rs[{github-icon},role=heading-link] == Purpose @@ -14,14 +14,14 @@ Responsible for the Queues (both incoming and outgoing) for XCMP messages. This == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `ChannelInfo` -- Configures two functions `get_channel_status` and `get_channel_info` to provide information about channels (`ChannelStatus` and `ChannelInfo`). ** `VersionWrapper` -- Means of converting an `Xcm` into a `VersionedXcm`. Xcm's should be versioned in order to pass the validation. ** `XcmpQueue` -- Defines max length of an XCMP message, and how `enqueue_message` should behave. ** `MaxInboundSuspended` -- The maximum number of inbound XCMP channels that can be suspended simultaneously. Any further channel suspensions will fail and messages may get dropped without further notice. Choosing a high value (1000) is okay. ** `ControllerOrigin` -- The origin that is allowed to resume or suspend the XCMP queue. ** `ControllerOriginConverter` -- The conversion function used to attempt to convert an XCM `xref:glossary.adoc#multilocation[MultiLocation]` origin to a superuser origin. This is used for allowing the superuser's queue to send messages even to paused queues. -** `PriceForSiblingDelivery` -- The price for delivering an XCM to a sibling parachain destination. +** `PriceForSiblingDelivery` -- The price for delivering an XCM to a sibling teyrchain destination. * Common configs ** `RuntimeEvent` -- The overarching event type. ** `WeightInfo` -- The xref:glossary.adoc#weight[weight] information of this pezpallet. @@ -122,11 +122,11 @@ IMPORTANT: messages are not ordered when they are received, but they are ordered Messages and signals are stored in different queues. When the messages to be sent are taken with `take_outbound_messages`, they will be ordered: -* if there are signals present for outbound messages that targeting a parachain, we will only send signals, not messages +* if there are signals present for outbound messages that targeting a teyrchain, we will only send signals, not messages * messages (that are not signals) won’t be ordered -NOTE: polkadot/xcm/src/v3 has `SendXcm` trait, which has 2 blank methods validate and deliver. For each router struct, one can implement `SendXcm` for it. +NOTE: pezkuwi/xcm/src/v3 has `SendXcm` trait, which has 2 blank methods validate and deliver. For each router struct, one can implement `SendXcm` for it. -. `deliver` method take `destination` as a parameter, and calls `send_fragment` function with the target parachain id. -. `send_fragment` puts the message to the queue of the given parachain id. +. `deliver` method take `destination` as a parameter, and calls `send_fragment` function with the target teyrchain id. +. `send_fragment` puts the message to the queue of the given teyrchain id. ** unlike it's name, `deliver` method does not actually delivers the message. It is calling `send_fragment`, which places a message fragment on the outgoing XCMP queue for recipient. So, `deliver` is only putting the message to the respective outgoing xcmp queue diff --git a/docs/modules/ROOT/pages/runtime/xcm_executor.adoc b/docs/modules/ROOT/pages/runtime/xcm_executor.adoc index e191a55..3d7fb00 100644 --- a/docs/modules/ROOT/pages/runtime/xcm_executor.adoc +++ b/docs/modules/ROOT/pages/runtime/xcm_executor.adoc @@ -4,9 +4,9 @@ = XCM Executor -Branch/Release: `release-polkadot-v1.10.0` +Branch/Release: `release-pezkuwi-v1.10.0` -Source Code link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.10.0/polkadot/xcm/xcm-executor/src/config.rs[{github-icon},role=heading-link] +Source Code link:https://github.com/pezkuwichain/pezkuwi-sdk/blob/release-pezkuwi-v1.10.0/pezkuwi/xcm/xcm-executor/src/config.rs[{github-icon},role=heading-link] == Purpose @@ -50,7 +50,7 @@ The inner `trait Config` used to parameterize `XcmExecutor` has the following as * Accessors: - `Weigher` -- The means of determining an XCM message's weight. Type must implement the trait `WeightBounds`. -- `PezpalletInstancesInfo` -- Information on all pezpallets. Type must implement the trait `PezpalletsInfoAccess`. +- `PezpezpalletInstancesInfo` -- Information on all pezpallets. Type must implement the trait `PezpezpalletsInfoAccess`. * Constants: - `UniversalLocation` -- This chain's Universal Location. Type must implement the trait `Get`. diff --git a/docs/modules/ROOT/pages/runtimes/evm.adoc b/docs/modules/ROOT/pages/runtimes/evm.adoc index 674e9c5..4189c7e 100644 --- a/docs/modules/ROOT/pages/runtimes/evm.adoc +++ b/docs/modules/ROOT/pages/runtimes/evm.adoc @@ -13,7 +13,7 @@ With this template, you can: * Deploy Solidity Smart Contracts to your runtime. * Interact with the deployed Smart Contracts. * Deploy and interact with ERC20 tokens. -* Migrate your existing dAPP from Ethereum ecosystem to Polkadot ecosystem. +* Migrate your existing dAPP from Ethereum ecosystem to Pezkuwi ecosystem. The pezpallet list is constructed by the contributions of Parity, the community, and OpenZeppelin. @@ -30,22 +30,22 @@ Metamask integration for example is way simpler for chains with the Ethereum acc [%collapsible] ==== -* https://paritytech.github.io/polkadot-sdk/master/pezframe_system/index.html#[pezframe_system] is responsible from creating the runtime, initializing the storage, and providing the base functionality for the runtime. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezframe_system/index.html#[pezframe_system] is responsible from creating the runtime, initializing the storage, and providing the base functionality for the runtime. -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_parachain_system/index.html#[cumulus_pezpallet_parachain_system] handles low-level details of being a parachain. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_teyrchain_system/index.html#[pezcumulus_pezpallet_teyrchain_system] handles low-level details of being a teyrchain. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_timestamp/index.html#[pezpallet_timestamp] provides a way for consensus systems to set and check the onchain time. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_timestamp/index.html#[pezpallet_timestamp] provides a way for consensus systems to set and check the onchain time. -* https://docs.rs/staging-parachain-info/latest/staging_parachain_info/index.html#[parachain_info] provides a way for parachains to report their parachain id and the relay chain block number. +* https://docs.rs/staging-teyrchain-info/latest/staging_teyrchain_info/index.html#[teyrchain_info] provides a way for teyrchains to report their teyrchain id and the relay chain block number. * https://docs.rs/pezpallet-proxy/latest/pezpallet_proxy/#[pezpallet_proxy] enables delegation of rights to execute certain call types from one origin to another. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/index.html#[pezpallet_utility] contains two basic pieces of functionality: +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/index.html#[pezpallet_utility] contains two basic pieces of functionality: ** Batch dispatch: A stateless operation, allowing any origin to execute multiple calls in a single dispatch. This can be useful to amalgamate proposals, combining `set_code` with corresponding `set_storage`s, for efficient multiple payouts with just a single signature verify, or in combination with one of the other two dispatch functionality. -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.force_batch[force_batch]: Sends a batch of dispatch calls. Errors are allowed and won’t interrupt -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.batch[batch]: Sends a batch of dispatch calls. This will return `Ok` in all circumstances. To determine the success of the batch, an event is deposited. If a call failed and the batch was interrupted, then the `BatchInterrupted` event is deposited, along with the number of successful calls made and the error of the failed call. If all were successful, then the `BatchCompleted` event is deposited. -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.batch_all[batch_all]: Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed. +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.force_batch[force_batch]: Sends a batch of dispatch calls. Errors are allowed and won’t interrupt +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.batch[batch]: Sends a batch of dispatch calls. This will return `Ok` in all circumstances. To determine the success of the batch, an event is deposited. If a call failed and the batch was interrupted, then the `BatchInterrupted` event is deposited, along with the number of successful calls made and the error of the failed call. If all were successful, then the `BatchCompleted` event is deposited. +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.batch_all[batch_all]: Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed. ** Pseudonymal dispatch: A stateless operation, allowing a signed origin to execute a call from an alternative signed origin. Each account has 2 * 2**16 possible “pseudonyms” (alternative account IDs) and these can be stacked. This can be useful as a key management tool, where you need multiple distinct accounts (e.g. as controllers for many staking accounts), but where it’s perfectly fine to have each of them controlled by the same underlying keypair. Derivative accounts are, for the purposes of proxy filtering considered exactly the same as the origin and are thus hampered with the origin’s filters. * https://docs.rs/pezpallet-multisig/latest/pezpallet_multisig/#[pezpallet_multisig] enables multi-signature operations in your runtime. This module allows multiple signed origins (accounts) to coordinate and dispatch a call. For the call to execute, the threshold number of accounts from the set (signatories) must approve it. @@ -77,7 +77,7 @@ Metamask integration for example is way simpler for chains with the Ethereum acc ** *length fee*: A fee proportional to the encoded length of the transaction. ** *tip*: An optional tip. Tip increases the priority of the transaction, giving it a higher chance to be included by the transaction queue. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_assets/index.html#[pezpallet_assets] deals with sets of assets implementing fungible traits, via [fungibles] traits in a simple, secure manner. This pezpallet makes heavy use of concepts such as Holds and Freezes from the [pezframe_support::traits::fungible] traits, therefore you should read and understand those docs as a prerequisite to understanding this pezpallet. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_assets/index.html#[pezpallet_assets] deals with sets of assets implementing fungible traits, via [fungibles] traits in a simple, secure manner. This pezpallet makes heavy use of concepts such as Holds and Freezes from the [pezframe_support::traits::fungible] traits, therefore you should read and understand those docs as a prerequisite to understanding this pezpallet. * https://docs.rs/pezpallet-treasury/latest/pezpallet_treasury/#[pezpallet_treasury] provides a “pot” of funds that can be managed by stakeholders in the system and a structure for making spending proposals from this pot. @@ -96,7 +96,7 @@ Metamask integration for example is way simpler for chains with the Ethereum acc * https://docs.rs/pezpallet-referenda/latest/pezpallet_referenda/#[pezpallet_referenda] executes referenda. No voting logic is present here, and the Polling and PollStatus traits are used to allow the voting logic (likely in a pezpallet) to be utilized. -* https://github.com/OpenZeppelin/polkadot-runtime-templates/blob/main/evm-template/runtime/src/configs/governance/origins.rs#[pezpallet_custom_origins] allows custom origins for governance. // TODO: double check this, is it really our own pezpallet, or just copy paste? +* https://github.com/OpenZeppelin/pezkuwi-runtime-templates/blob/main/evm-template/runtime/src/configs/governance/origins.rs#[pezpallet_custom_origins] allows custom origins for governance. // TODO: double check this, is it really our own pezpallet, or just copy paste? * https://docs.rs/pezpallet-whitelist/latest/pezpallet_whitelist/index.html#[pezpallet_whitelist] allows some configurable origin: `Config::WhitelistOrigin` to whitelist some hash of a call, and allows another configurable origin: `Config::DispatchWhitelistedOrigin` to dispatch them with the root origin. @@ -108,16 +108,16 @@ Metamask integration for example is way simpler for chains with the Ethereum acc [%collapsible] ==== -* https://docs.rs/pezpallet-authorship/latest/pezpallet_authorship/#[pezpallet_authorship] provides authorship tracking for FRAME runtimes. This tracks the current author of the block and recent uncles. +* https://docs.rs/pezpallet-authorship/latest/pezpallet_authorship/#[pezpallet_authorship] provides authorship tracking for PEZFRAME runtimes. This tracks the current author of the block and recent uncles. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_collator_selection/index.html#[pezpallet_collator_selection] - manages the collators of a parachain. **Collation is *not* a secure activity** and this pezpallet does not implement any game-theoretic mechanisms to meet BFT safety assumptions of the chosen set. This pezpallet can: +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_collator_selection/index.html#[pezpallet_collator_selection] - manages the collators of a teyrchain. **Collation is *not* a secure activity** and this pezpallet does not implement any game-theoretic mechanisms to meet BFT safety assumptions of the chosen set. This pezpallet can: ** set invulnerable candidates (fixed candidates) ** set desired candidates (ideal number of non-fixed) ** set candidacy bond ** remove invulnerability (turn candidate into not fixed) ** and many more (all related to collators) -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_session/index.html#[pezpallet_session] allows validators to manage their session keys, provides a function for changing the session length, and handles session rotation. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_session/index.html#[pezpallet_session] allows validators to manage their session keys, provides a function for changing the session length, and handles session rotation. * https://docs.rs/pezpallet-aura/latest/pezpallet_aura/#[pezpallet_aura] extends Aura consensus by managing offline reporting. It can: ** get the current slot @@ -125,7 +125,7 @@ Metamask integration for example is way simpler for chains with the Ethereum acc ** change and initialize authorities ** ensure the correctness of the state of this pezpallet -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_aura_ext/index.html#[cumulus_pezpallet_aura_ext] extends the Substrate AuRa pezpallet to make it compatible with parachains. It provides the Pezpallet, the Config and the GenesisConfig. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_aura_ext/index.html#[pezcumulus_pezpallet_aura_ext] extends the Bizinikiwi AuRa pezpallet to make it compatible with teyrchains. It provides the Pezpezpallet, the Config and the GenesisConfig. ==== @@ -134,11 +134,11 @@ Metamask integration for example is way simpler for chains with the Ethereum acc [%collapsible] ==== -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_xcmp_queue/index.html#[cumulus_pezpallet_xcmp_queue] Responsible for the Queues (both incoming and outgoing) for XCMP messages. This pezpallet does not actually receive or send messages. Its responsibility is to place the incoming and outgoing XCMP messages in their respective queues and manage these queues. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_xcmp_queue/index.html#[pezcumulus_pezpallet_xcmp_queue] Responsible for the Queues (both incoming and outgoing) for XCMP messages. This pezpallet does not actually receive or send messages. Its responsibility is to place the incoming and outgoing XCMP messages in their respective queues and manage these queues. * https://docs.rs/pezpallet-xcm/6.0.0/pezpallet_xcm/#[pezpallet_xcm] is responsible for filtering, routing, and executing incoming XCM. -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_xcm/index.html#[cumulus_pezpallet_xcm] is responsible from detecting and ensuring whether XCM's are coming from *Relay* or *Sibling* chain. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_xcm/index.html#[pezcumulus_pezpallet_xcm] is responsible from detecting and ensuring whether XCM's are coming from *Relay* or *Sibling* chain. * https://docs.rs/pezpallet-message-queue/latest/pezpallet_message_queue/#[MessageQueue] provides generalized message queuing and processing capabilities on a per-queue basis for arbitrary use-cases. @@ -148,8 +148,8 @@ Metamask integration for example is way simpler for chains with the Ethereum acc * https://docs.rs/pezpallet-ethereum/latest/pezpallet_ethereum/#[Ethereum] works together with EVM pezpallet to provide full emulation for Ethereum block processing. -* https://docs.rs/pezpallet-evm/5.0.0/pezpallet_evm/#[EVM] allows unmodified EVM code to be executed in a Substrate-based blockchain. +* https://docs.rs/pezpallet-evm/5.0.0/pezpallet_evm/#[EVM] allows unmodified EVM code to be executed in a Bizinikiwi-based blockchain. -* https://github.com/polkadot-evm/frontier/blob/master/pezframe/base-fee/src/lib.rs#[BaseFee] dynamically adjusts the `BaseFeePerGas` based on elasticity (zero elasticity means constant `BaseFeePerGas`). +* https://github.com/pezkuwi-evm/frontier/blob/master/pezframe/base-fee/src/lib.rs#[BaseFee] dynamically adjusts the `BaseFeePerGas` based on elasticity (zero elasticity means constant `BaseFeePerGas`). -* https://github.com/polkadot-evm/frontier/blob/master/pezframe/evm-chain-id/src/lib.rs#[EvmChainId] stores the numeric Ethereum-style chain id in the runtime. This pezpallet can simplify setting up multiple networks with different chain ID by configuring the chain spec without requiring changes to the runtime config. +* https://github.com/pezkuwi-evm/frontier/blob/master/pezframe/evm-chain-id/src/lib.rs#[EvmChainId] stores the numeric Ethereum-style chain id in the runtime. This pezpallet can simplify setting up multiple networks with different chain ID by configuring the chain spec without requiring changes to the runtime config. diff --git a/docs/modules/ROOT/pages/runtimes/generic.adoc b/docs/modules/ROOT/pages/runtimes/generic.adoc index 543e28d..4b31d0a 100644 --- a/docs/modules/ROOT/pages/runtimes/generic.adoc +++ b/docs/modules/ROOT/pages/runtimes/generic.adoc @@ -10,7 +10,7 @@ Generic Runtime Template is constructed with the purpose of providing the most g The pezpallet list is constructed by the contributions of Parity, the community, and OpenZeppelin. Our motivation for crafting the pezpallet list was to be as minimalistic as possible, -whilst preserving the most important pezpallets that are used in the Polkadot ecosystem. +whilst preserving the most important pezpallets that are used in the Pezkuwi ecosystem. We designed this template to be generic, so that it can be used as a starting point for any other project/template, and we aim to base our future templates off of this one. @@ -29,22 +29,22 @@ To demystify the hard concepts, we provided a documentation, in which you can fi [%collapsible] ==== -* https://paritytech.github.io/polkadot-sdk/master/pezframe_system/index.html#[pezframe_system] is responsible from creating the runtime, initializing the storage, and providing the base functionality for the runtime. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezframe_system/index.html#[pezframe_system] is responsible from creating the runtime, initializing the storage, and providing the base functionality for the runtime. -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_parachain_system/index.html#[cumulus_pezpallet_parachain_system] handles low-level details of being a parachain. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_teyrchain_system/index.html#[pezcumulus_pezpallet_teyrchain_system] handles low-level details of being a teyrchain. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_timestamp/index.html#[pezpallet_timestamp] provides a way for consensus systems to set and check the onchain time. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_timestamp/index.html#[pezpallet_timestamp] provides a way for consensus systems to set and check the onchain time. -* https://docs.rs/staging-parachain-info/latest/staging_parachain_info/index.html#[parachain_info] provides a way for parachains to report their parachain id and the relay chain block number. +* https://docs.rs/staging-teyrchain-info/latest/staging_teyrchain_info/index.html#[teyrchain_info] provides a way for teyrchains to report their teyrchain id and the relay chain block number. * https://docs.rs/pezpallet-proxy/latest/pezpallet_proxy/#[pezpallet_proxy] enables delegation of rights to execute certain call types from one origin to another. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/index.html#[pezpallet_utility] contains two basic pieces of functionality: +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/index.html#[pezpallet_utility] contains two basic pieces of functionality: ** Batch dispatch: A stateless operation, allowing any origin to execute multiple calls in a single dispatch. This can be useful to amalgamate proposals, combining `set_code` with corresponding `set_storage`s, for efficient multiple payouts with just a single signature verify, or in combination with one of the other two dispatch functionality. -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.force_batch[force_batch]: Sends a batch of dispatch calls. Errors are allowed and won’t interrupt -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.batch[batch]: Sends a batch of dispatch calls. This will return `Ok` in all circumstances. To determine the success of the batch, an event is deposited. If a call failed and the batch was interrupted, then the `BatchInterrupted` event is deposited, along with the number of successful calls made and the error of the failed call. If all were successful, then the `BatchCompleted` event is deposited. -*** https://paritytech.github.io/polkadot-sdk/master/pezpallet_utility/pezpallet/struct.Pezpallet.html#method.batch_all[batch_all]: Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed. +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.force_batch[force_batch]: Sends a batch of dispatch calls. Errors are allowed and won’t interrupt +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.batch[batch]: Sends a batch of dispatch calls. This will return `Ok` in all circumstances. To determine the success of the batch, an event is deposited. If a call failed and the batch was interrupted, then the `BatchInterrupted` event is deposited, along with the number of successful calls made and the error of the failed call. If all were successful, then the `BatchCompleted` event is deposited. +*** https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_utility/pezpallet/struct.Pezpezpallet.html#method.batch_all[batch_all]: Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed. ** Pseudonymal dispatch: A stateless operation, allowing a signed origin to execute a call from an alternative signed origin. Each account has 2 * 2**16 possible “pseudonyms” (alternative account IDs) and these can be stacked. This can be useful as a key management tool, where you need multiple distinct accounts (e.g. as controllers for many staking accounts), but where it’s perfectly fine to have each of them controlled by the same underlying keypair. Derivative accounts are, for the purposes of proxy filtering considered exactly the same as the origin and are thus hampered with the origin’s filters. * https://docs.rs/pezpallet-multisig/latest/pezpallet_multisig/#[pezpallet_multisig] enables multi-signature operations in your runtime. This module allows multiple signed origins (accounts) to coordinate and dispatch a call. For the call to execute, the threshold number of accounts from the set (signatories) must approve it. @@ -76,7 +76,7 @@ To demystify the hard concepts, we provided a documentation, in which you can fi ** *length fee*: A fee proportional to the encoded length of the transaction. ** *tip*: An optional tip. Tip increases the priority of the transaction, giving it a higher chance to be included by the transaction queue. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_assets/index.html#[pezpallet_assets] deals with sets of assets implementing fungible traits, via [fungibles] traits in a simple, secure manner. This pezpallet makes heavy use of concepts such as Holds and Freezes from the [pezframe_support::traits::fungible] traits, therefore you should read and understand those docs as a prerequisite to understanding this pezpallet. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_assets/index.html#[pezpallet_assets] deals with sets of assets implementing fungible traits, via [fungibles] traits in a simple, secure manner. This pezpallet makes heavy use of concepts such as Holds and Freezes from the [pezframe_support::traits::fungible] traits, therefore you should read and understand those docs as a prerequisite to understanding this pezpallet. * https://docs.rs/pezpallet-treasury/latest/pezpallet_treasury/#[pezpallet_treasury] provides a “pot” of funds that can be managed by stakeholders in the system and a structure for making spending proposals from this pot. @@ -93,7 +93,7 @@ To demystify the hard concepts, we provided a documentation, in which you can fi * https://docs.rs/pezpallet-referenda/latest/pezpallet_referenda/#[pezpallet_referenda] executes referenda. No voting logic is present here, and the Polling and PollStatus traits are used to allow the voting logic (likely in a pezpallet) to be utilized. -* https://github.com/OpenZeppelin/polkadot-runtime-templates/blob/main/evm-template/runtime/src/configs/governance/origins.rs#[pezpallet_custom_origins] allows custom origins for governance. // TODO: double check this, is it really our own pezpallet, or just copy paste? +* https://github.com/OpenZeppelin/pezkuwi-runtime-templates/blob/main/evm-template/runtime/src/configs/governance/origins.rs#[pezpallet_custom_origins] allows custom origins for governance. // TODO: double check this, is it really our own pezpallet, or just copy paste? * https://docs.rs/pezpallet-whitelist/latest/pezpallet_whitelist/index.html#[pezpallet_whitelist] allows some configurable origin: `Config::WhitelistOrigin` to whitelist some hash of a call, and allows another configurable origin: `Config::DispatchWhitelistedOrigin` to dispatch them with the root origin. @@ -105,16 +105,16 @@ To demystify the hard concepts, we provided a documentation, in which you can fi [%collapsible] ==== -* https://docs.rs/pezpallet-authorship/latest/pezpallet_authorship/#[pezpallet_authorship] provides authorship tracking for FRAME runtimes. This tracks the current author of the block and recent uncles. +* https://docs.rs/pezpallet-authorship/latest/pezpallet_authorship/#[pezpallet_authorship] provides authorship tracking for PEZFRAME runtimes. This tracks the current author of the block and recent uncles. -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_collator_selection/index.html#[pezpallet_collator_selection] - manages the collators of a parachain. **Collation is *not* a secure activity** and this pezpallet does not implement any game-theoretic mechanisms to meet BFT safety assumptions of the chosen set. This pezpallet can: +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_collator_selection/index.html#[pezpallet_collator_selection] - manages the collators of a teyrchain. **Collation is *not* a secure activity** and this pezpallet does not implement any game-theoretic mechanisms to meet BFT safety assumptions of the chosen set. This pezpallet can: ** set invulnerable candidates (fixed candidates) ** set desired candidates (ideal number of non-fixed) ** set candidacy bond ** remove invulnerability (turn candidate into not fixed) ** and many more (all related to collators) -* https://paritytech.github.io/polkadot-sdk/master/pezpallet_session/index.html#[pezpallet_session] allows validators to manage their session keys, provides a function for changing the session length, and handles session rotation. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezpallet_session/index.html#[pezpallet_session] allows validators to manage their session keys, provides a function for changing the session length, and handles session rotation. * https://docs.rs/pezpallet-aura/latest/pezpallet_aura/#[pezpallet_aura] extends Aura consensus by managing offline reporting. It can: ** get the current slot @@ -122,7 +122,7 @@ To demystify the hard concepts, we provided a documentation, in which you can fi ** change and initialize authorities ** ensure the correctness of the state of this pezpallet -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_aura_ext/index.html#[cumulus_pezpallet_aura_ext] extends the Substrate AuRa pezpallet to make it compatible with parachains. It provides the Pezpallet, the Config and the GenesisConfig. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_aura_ext/index.html#[pezcumulus_pezpallet_aura_ext] extends the Bizinikiwi AuRa pezpallet to make it compatible with teyrchains. It provides the Pezpezpallet, the Config and the GenesisConfig. ==== @@ -131,11 +131,11 @@ To demystify the hard concepts, we provided a documentation, in which you can fi [%collapsible] ==== -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_xcmp_queue/index.html#[cumulus_pezpallet_xcmp_queue] Responsible for the Queues (both incoming and outgoing) for XCMP messages. This pezpallet does not actually receive or send messages. Its responsibility is to place the incoming and outgoing XCMP messages in their respective queues and manage these queues. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_xcmp_queue/index.html#[pezcumulus_pezpallet_xcmp_queue] Responsible for the Queues (both incoming and outgoing) for XCMP messages. This pezpallet does not actually receive or send messages. Its responsibility is to place the incoming and outgoing XCMP messages in their respective queues and manage these queues. * https://docs.rs/pezpallet-xcm/6.0.0/pezpallet_xcm/#[pezpallet_xcm] is responsible for filtering, routing, and executing incoming XCM. -* https://paritytech.github.io/polkadot-sdk/master/cumulus_pezpallet_xcm/index.html#[cumulus_pezpallet_xcm] is responsible from detecting and ensuring whether XCM's are coming from *Relay* or *Sibling* chain. +* https://pezkuwichain.github.io/pezkuwi-sdk/master/pezcumulus_pezpallet_xcm/index.html#[pezcumulus_pezpallet_xcm] is responsible from detecting and ensuring whether XCM's are coming from *Relay* or *Sibling* chain. * https://docs.rs/pezpallet-message-queue/latest/pezpallet_message_queue/#[MessageQueue] provides generalized message queuing and processing capabilities on a per-queue basis for arbitrary use-cases. diff --git a/docs/templates/pezpallet.adoc b/docs/templates/pezpallet.adoc index 4e6af67..4e0dfd4 100644 --- a/docs/templates/pezpallet.adoc +++ b/docs/templates/pezpallet.adoc @@ -2,9 +2,9 @@ :highlightjs-languages: rust :github-icon: pass:[] -= Pezpallet Name += Pezpezpallet Name -Branch/Release: `release-polkadot-v{x.x.x}` +Branch/Release: `release-pezkuwi-v{x.x.x}` == Purpose @@ -14,7 +14,7 @@ This is a freeform description of the tasks that this pezpallet fulfills == Config -* Pezpallet-specific configs +* Pezpezpallet-specific configs ** `ConfigType` -- description of config. Include the possible values if there is a set of them. * Common configs ** `ConfigType` -- description of config, if needed diff --git a/docs/templates/runtime.adoc b/docs/templates/runtime.adoc index a9690b4..a784f47 100644 --- a/docs/templates/runtime.adoc +++ b/docs/templates/runtime.adoc @@ -11,7 +11,7 @@ Freeform description of runtime purpose // List of pezpallets with their config description -=== Pezpallet Category +=== Pezpezpallet Category [%collapsible] ==== ===== `++pezpallet_name++` link:https://google.com[{github-icon},role=heading-link] diff --git a/docs/domains_repositories.md b/domains_repositories.md similarity index 88% rename from docs/domains_repositories.md rename to domains_repositories.md index 418ed2b..ebef776 100644 --- a/docs/domains_repositories.md +++ b/domains_repositories.md @@ -73,7 +73,7 @@ https://github.com/pezkuwichain/ awesome-hez -An opinionated list of awesome resources in the Polkadot ecosystem. +An opinionated list of awesome resources in the Pezkuwi ecosystem. 11 0 consensus @@ -87,12 +87,12 @@ TypeScript 0 0 docs -A sovereign blockchain parachain built for the Kurdish Nation and Culturel Nations of the world, on blockchain +A sovereign blockchain teyrchain built for the Kurdish Nation and Culturel Nations of the world, on blockchain Rust 0 0 kurdistan_blockchain-akademy -Open to everyone 👪 - The Polkadot Blockchain Academy's Rust Qualifier Exam. +Open to everyone 👪 - The Pezkuwi Blockchain Academy's Rust Qualifier Exam. Rust 70 0 @@ -117,7 +117,7 @@ Rust 98 0 pezframe-metadata -A set of tools to parse FRAME metadata retrieved from Substrate-based nodes. +A set of tools to parse PEZFRAME metadata retrieved from Bizinikiwi-based nodes. Rust 12 0 @@ -137,12 +137,12 @@ Rust 0 0 pezkuwi-sdk-minimal-template -The Minimal (Testing/Learning-Only) Template From Polkadot SDK +The Minimal (Testing/Learning-Only) Template From Pezkuwi SDK Rust 56 0 pezkuwi-sdk-solochain-template -The Solochain-Ready Template From Polkadot SDK +The Solochain-Ready Template From Pezkuwi SDK Rust 65 0 @@ -152,7 +152,7 @@ Rust 0 0 pezkuwi-subxt -Interact with Substrate based nodes in Rust or WebAssembly +Interact with Bizinikiwi based nodes in Rust or WebAssembly Rust 281 0 @@ -166,13 +166,13 @@ ZombieNet SDK Rust 15 0 -polkadot-runtime-templates +pezkuwi-runtime-templates Runtime Templates for Pezkuwi Teyrchains Rust 33 0 -polkadot-sdk -The Parity Polkadot Blockchain SDK +pezkuwi-sdk +The Parity Pezkuwi Blockchain SDK Rust 1.1k 0 diff --git a/evm-template/Cargo.lock b/evm-template/Cargo.lock index 605dca9..7954cff 100644 --- a/evm-template/Cargo.lock +++ b/evm-template/Cargo.lock @@ -610,22 +610,22 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "assets-common" version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", - "pallet-asset-conversion", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-assets", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -634,8 +634,8 @@ name = "async-backing-primitives" version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ - "sp-api", - "sp-consensus-slots", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -990,6 +990,16 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "binary-merkle-tree" +version = "16.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", +] + [[package]] name = "bincode" version = "1.3.3" @@ -1226,13 +1236,13 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "staging-xcm", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -1359,24 +1369,24 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dc-orchestrator-chain-interface", "dp-collator-assignment", "dp-core", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "test-relay-sproof-builder", "tracing", ] @@ -2052,17 +2062,17 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "parity-scale-codec", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-service", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "url", ] @@ -2071,21 +2081,44 @@ name = "cumulus-client-collator" version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-client-consensus-common", - "cumulus-client-network", - "cumulus-primitives-core", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-collator" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2095,43 +2128,90 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", - "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-collator 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-aura 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-slots", - "sc-telemetry", - "sc-utils", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "sp-trie", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tokio", + "tracing", +] + +[[package]] +name = "cumulus-client-consensus-aura" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-aura 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", "tracing", ] @@ -2142,27 +2222,57 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dyn-clone", "futures", "log", "parity-scale-codec", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-timestamp", - "sp-trie", - "sp-version", - "substrate-prometheus-endpoint", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-consensus-common" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "dyn-clone", + "futures", + "log", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2173,11 +2283,26 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "anyhow", "async-trait", - "cumulus-primitives-parachain-inherent", - "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "cumulus-client-consensus-proposer" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "async-trait", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -2187,23 +2312,49 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-version", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-network" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "futures-timer", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2213,17 +2364,37 @@ version = "0.16.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", - "cumulus-test-relay-sproof-builder", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-storage", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-parachain-inherent" +version = "0.16.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2233,78 +2404,104 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-client-api", - "sc-consensus", - "sp-api", - "sp-consensus", - "sp-maybe-compressed-blob", - "sp-runtime", - "sp-version", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-pov-recovery" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] [[package]] name = "cumulus-client-service" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "cumulus-client-cli", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-network", - "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-inprocess-interface", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-minimal-node", "futures", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-sync", - "sc-network-transactions", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-transaction-pool", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-aura-ext" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-aura", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2313,32 +2510,67 @@ version = "0.20.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bytes", - "cumulus-pallet-parachain-system-proc-macro", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "trie-db", +] + +[[package]] +name = "cumulus-pallet-parachain-system" +version = "0.20.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "trie-db", ] @@ -2353,76 +2585,87 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "cumulus-pallet-parachain-system-proc-macro" +version = "0.6.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "cumulus-pallet-session-benchmarking" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-weight-reclaim" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-storage-weight-reclaim", + "cumulus-primitives-storage-weight-reclaim 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "derive-where", "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-trie", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-xcm" version = "0.19.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", - "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2430,8 +2673,17 @@ name = "cumulus-primitives-aura" version = "0.17.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-consensus-aura", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-aura" +version = "0.17.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2440,14 +2692,30 @@ version = "0.18.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-api", - "sp-runtime", - "sp-trie", - "staging-xcm", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-core" +version = "0.18.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2456,12 +2724,26 @@ version = "0.18.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-parachain-inherent" +version = "0.18.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2469,9 +2751,19 @@ name = "cumulus-primitives-proof-size-hostfunction" version = "0.12.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-externalities", - "sp-runtime-interface", - "sp-trie", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-proof-size-hostfunction" +version = "0.12.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2479,67 +2771,84 @@ name = "cumulus-primitives-storage-weight-reclaim" version = "11.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-storage-weight-reclaim" +version = "11.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-timestamp" version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "sp-inherents", - "sp-timestamp", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-utility" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-asset-conversion", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "polkadot-cli", "polkadot-service", - "sc-cli", - "sc-client-api", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2548,86 +2857,105 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "jsonrpsee-core", "parity-scale-codec", - "polkadot-overseer", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-state-machine", - "sp-version", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "cumulus-relay-chain-interface" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "jsonrpsee-core", + "parity-scale-codec", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-rpc-interface", "futures", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-network-bridge", - "polkadot-node-network-protocol", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-service", - "sc-authority-discovery", - "sc-client-api", - "sc-network", - "sc-network-common", - "sc-service", - "sc-tracing", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "either", "futures", "futures-timer", "jsonrpsee", "parity-scale-codec", "pin-project", - "polkadot-overseer", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "prometheus", "rand 0.8.5", - "sc-client-api", - "sc-rpc-api", - "sc-service", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", "smoldot 0.11.0", "smoldot-light 0.9.0", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-version", - "substrate-prometheus-endpoint", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-util", @@ -2640,12 +2968,25 @@ name = "cumulus-test-relay-sproof-builder" version = "0.19.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-test-relay-sproof-builder" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2830,19 +3171,19 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-container-chain-genesis-data", "dp-core", "futures", "jsonrpsee", "nimbus-primitives", "parity-scale-codec", - "polkadot-overseer", - "sc-client-api", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-state-machine", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -3113,11 +3454,11 @@ name = "dp-chain-state-snapshot" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3125,19 +3466,19 @@ name = "dp-collator-assignment" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.3.4", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3145,16 +3486,16 @@ name = "dp-consensus" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-api", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3162,21 +3503,21 @@ name = "dp-container-chain-genesis-data" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex", "hex-literal 0.3.4", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3184,14 +3525,14 @@ name = "dp-core" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.3.4", "parity-scale-codec", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3589,13 +3930,13 @@ version = "3.0.0" dependencies = [ "assets-common", "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-pallet-session-benchmarking", "cumulus-pallet-weight-reclaim", "cumulus-pallet-xcm", "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-primitives-aura 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-primitives-timestamp", "cumulus-primitives-utility", "docify", @@ -3605,14 +3946,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-self-contained", - "frame-benchmarking", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", "nimbus-primitives", @@ -3628,8 +3969,8 @@ dependencies = [ "pallet-assets", "pallet-aura", "pallet-author-inherent", - "pallet-authorship", - "pallet-balances", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-base-fee", "pallet-cc-authorities-noting", "pallet-collator-selection", @@ -3642,51 +3983,51 @@ dependencies = [ "pallet-evm-precompile-sha3fips", "pallet-evm-precompile-simple", "pallet-membership", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-preimage", "pallet-proxy", "pallet-referenda", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-transactor", "pallet-xcm-weight-trader", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-tracing", - "sp-transaction-pool", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "staging-parachain-info", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", "xcm-primitives", "xcm-simulator", @@ -3700,16 +4041,16 @@ dependencies = [ "clap", "color-print", "cumulus-client-cli", - "cumulus-client-collator", - "cumulus-client-consensus-aura", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-aura 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-client-service", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", - "cumulus-test-relay-sproof-builder", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "evm-runtime-template", "fc-api", "fc-consensus", @@ -3721,7 +4062,7 @@ dependencies = [ "fp-dynamic-fee", "fp-evm", "fp-rpc", - "frame-benchmarking", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-benchmarking-cli", "futures", "hex", @@ -3732,42 +4073,42 @@ dependencies = [ "pallet-transaction-payment-rpc", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-basic-authorship", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-consensus-slots", - "sc-executor", - "sc-network", - "sc-network-sync", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_derive", "serde_json", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "staging-xcm", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-build-script-utils", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tc-consensus", ] @@ -3854,8 +4195,8 @@ dependencies = [ "async-trait", "fp-storage", "parity-scale-codec", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3866,11 +4207,11 @@ dependencies = [ "async-trait", "fp-consensus", "fp-rpc", - "sc-consensus", - "sp-api", - "sp-block-builder", - "sp-consensus", - "sp-runtime", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 2.0.12", ] @@ -3892,14 +4233,14 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-client-db", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sqlx", "tokio", ] @@ -3917,13 +4258,13 @@ dependencies = [ "futures-timer", "log", "parking_lot 0.12.4", - "sc-client-api", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tokio", ] @@ -3952,31 +4293,31 @@ dependencies = [ "prometheus", "rand 0.9.2", "rlp", - "sc-client-api", - "sc-consensus-aura", - "sc-network", - "sc-network-sync", - "sc-rpc", - "sc-service", - "sc-transaction-pool-api", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-timestamp", - "sp-trie", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 2.0.12", "tokio", ] @@ -4006,11 +4347,11 @@ dependencies = [ "fp-rpc", "fp-storage", "parity-scale-codec", - "sc-client-api", - "sp-api", - "sp-io", - "sp-runtime", - "sp-storage", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4157,6 +4498,14 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "fork-tree" +version = "13.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", +] + [[package]] name = "form_urlencoded" version = "1.2.1" @@ -4188,11 +4537,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "staging-xcm", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4202,8 +4551,8 @@ source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable250 dependencies = [ "ethereum 0.15.0 (git+https://github.com/rust-ethereum/ethereum?rev=bbb544622208ef6e9890a2dbc224248f6dd13318)", "parity-scale-codec", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4212,8 +4561,8 @@ version = "1.0.0" source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable2503#0d0d73962c7543cc715bbd5d97c23769e2ee492f" dependencies = [ "async-trait", - "sp-core", - "sp-inherents", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4224,7 +4573,7 @@ dependencies = [ "ethereum 0.15.0 (git+https://github.com/rust-ethereum/ethereum?rev=bbb544622208ef6e9890a2dbc224248f6dd13318)", "ethereum-types", "fp-evm", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", ] @@ -4235,13 +4584,13 @@ source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable250 dependencies = [ "environmental", "evm", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "num_enum", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4254,10 +4603,10 @@ dependencies = [ "fp-evm", "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4265,11 +4614,11 @@ name = "fp-self-contained" version = "1.0.0-dev" source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable2503#0d0d73962c7543cc715bbd5d97c23769e2ee492f" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4292,79 +4641,103 @@ name = "frame-benchmarking" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-support-procedural", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support-procedural 33.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "linregress", "log", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-storage", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support-procedural 33.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "linregress", + "log", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" version = "47.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "Inflector", "array-bytes", "chrono", "clap", "comfy-table", - "cumulus-client-parachain-inherent", - "cumulus-primitives-proof-size-hostfunction", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "gethostname", "handlebars", "itertools 0.11.0", "linked-hash-map", "log", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_pcg", - "sc-block-builder", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-client-db", - "sc-executor", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-runtime-utilities", - "sc-service", - "sc-sysinfo", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-externalities", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-timestamp", - "sp-transaction-pool", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "subxt", "subxt-signer", "thiserror 1.0.69", @@ -4396,20 +4769,47 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "frame-election-provider-solution-type" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "frame-election-provider-support" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-election-provider-solution-type 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-npos-elections", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-election-provider-support" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-election-provider-solution-type 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4418,16 +4818,34 @@ version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "aquamarine", - "frame-support", - "frame-system", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-executive" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aquamarine", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4457,17 +4875,17 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "const-hex", "docify", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4477,12 +4895,12 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "aquamarine", "array-bytes", - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "bitflags 1.3.2", "docify", "environmental", "frame-metadata 20.0.0", - "frame-support-procedural", + "frame-support-procedural 33.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "k256", "log", @@ -4492,22 +4910,63 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-crypto-hashing-proc-macro", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aquamarine", + "array-bytes", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 20.0.0", + "frame-support-procedural 33.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tt-call", ] @@ -4521,7 +4980,7 @@ dependencies = [ "derive-syn-parse", "docify", "expander", - "frame-support-procedural-tools", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "itertools 0.11.0", "macro_magic", "proc-macro-warning", @@ -4531,12 +4990,44 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "frame-support-procedural" +version = "33.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "cfg-expr", + "derive-syn-parse", + "docify", + "expander", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "itertools 0.11.0", + "macro_magic", + "proc-macro-warning", + "proc-macro2", + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "syn 2.0.104", +] + [[package]] name = "frame-support-procedural-tools" version = "13.0.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support-procedural-tools-derive", + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "13.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "proc-macro-crate 3.3.0", "proc-macro2", "quote", @@ -4553,6 +5044,16 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "frame-support-procedural-tools-derive" +version = "12.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "frame-system" version = "40.1.0" @@ -4560,16 +5061,35 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-version", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cfg-if", + "docify", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4577,13 +5097,27 @@ name = "frame-system-benchmarking" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system-benchmarking" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4593,7 +5127,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "docify", "parity-scale-codec", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system-rpc-runtime-api" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4601,10 +5145,21 @@ name = "frame-try-runtime" version = "0.46.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-try-runtime" +version = "0.46.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7090,35 +7645,35 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sp-api", - "sp-blockchain", - "sp-consensus", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "mmr-rpc" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7412,36 +7967,36 @@ source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503 dependencies = [ "async-backing-primitives", "async-trait", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", + "cumulus-client-collator 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "nimbus-primitives", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sc-consensus-manual-seal", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-version", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -7451,16 +8006,16 @@ version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ "async-trait", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7791,12 +8346,12 @@ name = "openzeppelin-pallet-abstractions" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions?branch=polkadot-stable2503#bc6dcabdc7b66f218c39c0f3496710c7b81a4a09" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-std", - "sp-version", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7855,18 +8410,18 @@ name = "orml-oracle" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "orml-traits", "orml-utilities", "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-std", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7875,8 +8430,8 @@ version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7884,7 +8439,7 @@ name = "orml-traits" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "num-traits", "orml-utilities", @@ -7892,11 +8447,11 @@ dependencies = [ "paste", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7904,14 +8459,14 @@ name = "orml-utilities" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7919,13 +8474,13 @@ name = "orml-xcm-support" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "orml-traits", "parity-scale-codec", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7933,20 +8488,20 @@ name = "orml-xtokens" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "orml-traits", "orml-xcm-support", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7960,17 +8515,35 @@ name = "pallet-asset-conversion" version = "22.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-asset-conversion" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7978,17 +8551,17 @@ name = "pallet-asset-manager" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#ef035d28747b49f8ac24ca675b903ecb20a94195" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "xcm-primitives", ] @@ -7997,62 +8570,76 @@ name = "pallet-asset-rate" version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-asset-rate" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-asset-tx-payment" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-transaction-payment", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-assets" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-aura" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8060,18 +8647,18 @@ name = "pallet-author-inherent" version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8079,14 +8666,29 @@ name = "pallet-authority-discovery" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", - "pallet-session", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-authority-discovery", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-authority-discovery" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8094,12 +8696,25 @@ name = "pallet-authorship" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-authorship" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8107,43 +8722,66 @@ name = "pallet-babe" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", - "pallet-timestamp", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-babe", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-babe" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-bags-list" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "aquamarine", "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8152,14 +8790,30 @@ version = "41.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-balances" +version = "41.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8168,73 +8822,73 @@ version = "1.0.0" source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable2503#0d0d73962c7543cc715bbd5d97c23769e2ee492f" dependencies = [ "fp-evm", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-beefy" version = "41.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-beefy-mmr" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", - "binary-merkle-tree", - "frame-benchmarking", - "frame-support", - "frame-system", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-beefy", - "pallet-mmr", - "pallet-session", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-bounties" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8243,16 +8897,34 @@ version = "0.19.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-broker" +version = "0.19.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8261,112 +8933,112 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ "ccp-authorities-noting-inherent", - "cumulus-pallet-parachain-system", - "cumulus-primitives-core", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-chain-state-snapshot", "dp-collator-assignment", "dp-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex", "log", "nimbus-primitives", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-child-bounties" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-bounties", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-collator-selection" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-balances", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-conviction-voting" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-delegated-staking" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-democracy" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8374,20 +9046,42 @@ name = "pallet-election-provider-multi-phase" version = "39.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", +] + +[[package]] +name = "pallet-election-provider-multi-phase" +version = "39.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -8396,30 +9090,43 @@ name = "pallet-election-provider-support-benchmarking" version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-npos-elections", - "sp-runtime", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-election-provider-support-benchmarking" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-elections-phragmen" version = "41.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", - "sp-staking", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8431,19 +9138,19 @@ dependencies = [ "ethereum 0.15.0 (git+https://github.com/rust-ethereum/ethereum?rev=bbb544622208ef6e9890a2dbc224248f6dd13318)", "ethereum-types", "fp-evm", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "pallet-evm", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", - "sp-weights", - "staging-xcm", - "staging-xcm-executor", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "xcm-primitives", ] @@ -8460,14 +9167,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "pallet-evm", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-version", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8475,23 +9182,23 @@ name = "pallet-evm" version = "6.0.0-dev" source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable2503#0d0d73962c7543cc715bbd5d97c23769e2ee492f" dependencies = [ - "cumulus-primitives-storage-weight-reclaim", + "cumulus-primitives-storage-weight-reclaim 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "environmental", "evm", "fp-account", "fp-evm", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hash-db", "hex-literal 0.4.1", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8499,8 +9206,8 @@ name = "pallet-evm-chain-id" version = "1.0.0-dev" source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable2503#0d0d73962c7543cc715bbd5d97c23769e2ee492f" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", ] @@ -8530,7 +9237,7 @@ source = "git+https://github.com/OpenZeppelin/frontier?branch=polkadot-stable250 dependencies = [ "fp-evm", "ripemd", - "sp-io", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8539,38 +9246,56 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-fast-unstake" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-grandpa" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8579,64 +9304,80 @@ version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-identity" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "enumflags2", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-im-online" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-indices" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-membership" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8645,54 +9386,73 @@ version = "43.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-message-queue" +version = "43.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-meta-tx" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-migrations" version = "10.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8702,209 +9462,221 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-mmr-primitives", + "sp-mmr-primitives 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-mmr" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-multisig" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-nis" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-nomination-pools" version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-nomination-pools-benchmarking" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-nomination-pools-runtime-api" version = "36.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-offences" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-offences-benchmarking" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-babe", - "pallet-balances", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-grandpa", "pallet-im-online", "pallet-offences", - "pallet-session", - "pallet-staking", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-parameters" version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-preimage" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-proxy" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-ranked-collective" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-recovery" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-referenda" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8912,23 +9684,23 @@ name = "pallet-registrar" version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-chain-state-snapshot", "dp-container-chain-genesis-data", "dp-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 1.0.0", "log", "parity-scale-codec", - "polkadot-runtime-common", + "polkadot-runtime-common 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tp-traits", ] @@ -8938,43 +9710,43 @@ version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ "dp-container-chain-genesis-data", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "pallet-registrar", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tp-traits", ] [[package]] name = "pallet-root-testing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-scheduler" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8982,53 +9754,74 @@ name = "pallet-session" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-state-machine", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-session" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-session-benchmarking" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", - "pallet-staking", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", - "sp-runtime", - "sp-session", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-society" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "rand_chacha 0.3.1", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9036,21 +9829,43 @@ name = "pallet-staking" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand_chacha 0.3.1", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-staking" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9059,48 +9874,57 @@ version = "22.0.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-staking-reward-fn" +version = "22.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-staking-runtime-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-staking", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-state-trie-migration" version = "44.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-sudo" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9109,35 +9933,54 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-storage", - "sp-timestamp", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-timestamp" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-tips" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9145,43 +9988,59 @@ name = "pallet-transaction-payment" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-transaction-payment" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9190,48 +10049,67 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-treasury" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-utility" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-verify-signature" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9239,22 +10117,36 @@ name = "pallet-vesting" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-vesting" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-whitelist" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] @@ -9264,38 +10156,61 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bounded-collections", - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-balances", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", - "xcm-runtime-apis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-xcm" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-xcm-benchmarks" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9304,22 +10219,22 @@ version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ "dp-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "nimbus-primitives", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-slots", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-std", - "staging-xcm", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tp-traits", "tp-xcm-core-buyer", ] @@ -9329,15 +10244,15 @@ name = "pallet-xcm-core-buyer-runtime-api" version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "pallet-xcm-core-buyer", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-consensus-slots", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 2.0.12", "tp-xcm-core-buyer", ] @@ -9347,20 +10262,20 @@ name = "pallet-xcm-transactor" version = "0.2.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#ef035d28747b49f8ac24ca675b903ecb20a94195" dependencies = [ - "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "xcm-primitives", ] @@ -9369,49 +10284,49 @@ name = "pallet-xcm-weight-trader" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#ef035d28747b49f8ac24ca675b903ecb20a94195" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", - "xcm-runtime-apis", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "xcm-runtime-apis 0.7.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] name = "parachains-common" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-primitives-utility", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-asset-tx-payment", "pallet-assets", - "pallet-authorship", - "pallet-balances", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-collator-selection", - "pallet-message-queue", - "pallet-xcm", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "staging-parachain-info", - "staging-xcm", - "staging-xcm-executor", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9719,80 +10634,80 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-approval-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", "itertools 0.11.0", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-bitfield-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "parity-scale-codec", - "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-network", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", - "sp-keystore", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-recovery" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "fatality", "futures", "parity-scale-codec", - "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-network", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9808,23 +10723,23 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "frame-benchmarking-cli", "futures", "log", - "polkadot-node-metrics", - "polkadot-node-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-service", - "sc-cli", - "sc-service", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-storage-monitor", - "sc-sysinfo", - "sc-tracing", - "sp-core", - "sp-keyring", - "sp-runtime", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-build-script-utils", "thiserror 1.0.69", ] @@ -9832,24 +10747,24 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio-util", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9859,30 +10774,41 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-core-primitives" +version = "17.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-dispute-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "futures-timer", "indexmap 2.10.0", "parity-scale-codec", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-network", - "sp-application-crypto", - "sp-keystore", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9891,39 +10817,53 @@ version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-erasure-coding" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "reed-solomon-novelpoly", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "polkadot-gossip-support" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", - "sc-network", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-keystore", - "tracing-gum", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-network-bridge" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "always-assert", "async-trait", @@ -9932,39 +10872,39 @@ dependencies = [ "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-network", - "sp-consensus", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-collation-generation" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "parity-scale-codec", - "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-approval-voting" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "bitvec", @@ -9974,226 +10914,226 @@ dependencies = [ "itertools 0.11.0", "merlin", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.6.4", - "sc-keystore", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "schnorrkel 0.11.5", - "sp-application-crypto", - "sp-consensus", - "sp-consensus-slots", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-approval-voting-parallel" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "itertools 0.11.0", "polkadot-approval-distribution", "polkadot-node-core-approval-voting", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_core 0.6.4", - "sc-keystore", - "sp-consensus", - "tracing-gum", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-av-store" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "futures", "futures-timer", "parity-scale-codec", - "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-consensus", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-backing" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", - "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-statement-table", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-keystore", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-bitfield-signing" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "wasm-timer", ] [[package]] name = "polkadot-node-core-candidate-validation" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "futures-timer", "parity-scale-codec", "polkadot-node-core-pvf", - "polkadot-node-metrics", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sp-application-crypto", - "sp-keystore", - "tracing-gum", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-chain-api" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-metrics", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "sc-client-api", - "sc-consensus-babe", - "tracing-gum", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-chain-selection" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-dispute-coordinator" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-keystore", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-parachains-inherent" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "futures-timer", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sp-blockchain", - "sp-inherents", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-prospective-parachains" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-provisioner" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "always-assert", "array-bytes", @@ -10202,39 +11142,39 @@ dependencies = [ "parity-scale-codec", "pin-project", "polkadot-node-core-pvf-common", - "polkadot-node-metrics", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-tracing", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "slotmap", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "tempfile", "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf-checker" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "tracing-gum", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf-common" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "cpu-time", "futures", @@ -10242,34 +11182,34 @@ dependencies = [ "libc", "nix 0.29.0", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-executor", - "sc-executor-common", - "sc-executor-wasmtime", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "seccompiler", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-io", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-runtime-api" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-metrics", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-consensus-babe", - "tracing-gum", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10281,12 +11221,29 @@ dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "prioritized-metered-channel", - "sc-cli", - "sc-service", - "sc-tracing", - "substrate-prometheus-endpoint", + "sc-cli 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-metrics" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "prioritized-metered-channel", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10302,16 +11259,41 @@ dependencies = [ "futures", "hex", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-authority-discovery", - "sc-network", - "sc-network-types", - "sp-runtime", + "sc-authority-discovery 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-network-protocol" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-channel 1.9.0", + "async-trait", + "bitvec", + "derive_more 0.99.20", + "fatality", + "futures", + "hex", + "parity-scale-codec", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", + "thiserror 1.0.69", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10324,16 +11306,40 @@ dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-keystore", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnorrkel 0.11.5", "serde", - "sp-application-crypto", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-keystore", - "sp-maybe-compressed-blob", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "zstd 0.12.4", +] + +[[package]] +name = "polkadot-node-primitives" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "bounded-vec", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnorrkel 0.11.5", + "serde", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "zstd 0.12.4", ] @@ -10343,8 +11349,17 @@ name = "polkadot-node-subsystem" version = "22.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "polkadot-node-subsystem-types", - "polkadot-overseer", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-subsystem" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10357,21 +11372,49 @@ dependencies = [ "fatality", "futures", "orchestra", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-primitives", - "polkadot-statement-table", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-node-subsystem-types" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "derive_more 0.99.20", + "fatality", + "futures", + "orchestra", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "smallvec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -10387,23 +11430,54 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-erasure-coding", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-metrics 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "prioritized-metered-channel", "rand 0.8.5", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-subsystem-util" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "fatality", + "futures", + "itertools 0.11.0", + "kvdb", + "parity-db", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-erasure-coding 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "prioritized-metered-channel", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10415,15 +11489,35 @@ dependencies = [ "futures", "futures-timer", "orchestra", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem-types", - "polkadot-primitives", - "sc-client-api", - "sp-core", + "polkadot-node-metrics 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tikv-jemalloc-ctl", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-overseer" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "orchestra", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tikv-jemalloc-ctl", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10434,12 +11528,28 @@ dependencies = [ "bounded-collections", "derive_more 0.99.20", "parity-scale-codec", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "derive_more 0.99.20", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10451,54 +11561,82 @@ dependencies = [ "hex-literal 0.4.1", "log", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-primitives" +version = "18.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "hex-literal 0.4.1", + "log", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "polkadot-rpc" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-babe-rpc", "sc-consensus-beefy", "sc-consensus-beefy-rpc", "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -10509,47 +11647,97 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "libsecp256k1", "log", - "pallet-asset-rate", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-election-provider-multi-phase", - "pallet-fast-unstake", - "pallet-identity", - "pallet-session", - "pallet-staking", - "pallet-staking-reward-fn", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-treasury", - "pallet-vesting", + "pallet-asset-rate 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-fast-unstake 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-identity 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking-reward-fn 22.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-treasury 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-vesting 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rustc-hex", "scale-info", "serde", - "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-npos-elections", - "sp-runtime", - "sp-session", - "sp-staking", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "slot-range-helper 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-common" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "libsecp256k1", + "log", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-fast-unstake 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking-reward-fn 22.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rustc-hex", + "scale-info", + "serde", + "slot-range-helper 17.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -10559,10 +11747,22 @@ version = "20.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bs58", - "frame-benchmarking", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "sp-tracing", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-runtime-metrics" +version = "20.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10572,43 +11772,90 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "bitflags 1.3.2", "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-message-queue", - "pallet-mmr", - "pallet-session", - "pallet-staking", - "pallet-timestamp", + "pallet-authority-discovery 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-message-queue 43.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-mmr 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-metrics", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-metrics 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-parachains" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitflags 1.3.2", + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-metrics 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -10627,52 +11874,87 @@ version = "0.9.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-executive", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-arithmetic", - "sp-block-builder", - "sp-consensus-aura", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-storage", - "sp-transaction-pool", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-sdk-frame" +version = "0.9.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-service" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "frame-benchmarking", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-benchmarking-cli", - "frame-system", - "frame-system-rpc-runtime-api", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "is_executable", "kvdb", "kvdb-rocksdb", "log", "mmr-gadget", - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", "parity-db", "parity-scale-codec", @@ -10682,7 +11964,7 @@ dependencies = [ "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", @@ -10702,72 +11984,72 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-core-pvf-checker", "polkadot-node-core-runtime-api", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-rpc", - "polkadot-runtime-parachains", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-statement-distribution", "rococo-runtime", - "sc-authority-discovery", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-basic-authorship", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-beefy", "sc-consensus-grandpa", - "sc-consensus-slots", - "sc-executor", - "sc-keystore", - "sc-network", - "sc-network-sync", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sc-service", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-sync-state-rpc", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-api", - "sp-authority-discovery", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "sp-weights", - "staging-xcm", - "substrate-prometheus-endpoint", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "westend-runtime", - "xcm-runtime-apis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-statement-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "arrayvec 0.7.6", "bitvec", @@ -10776,15 +12058,15 @@ dependencies = [ "futures-timer", "indexmap 2.10.0", "parity-scale-codec", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "sp-staking", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-util 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10793,8 +12075,18 @@ version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-primitives", - "tracing-gum", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-statement-table" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11740,25 +13032,25 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "22.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "bitvec", - "frame-benchmarking", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-beefy", "pallet-beefy-mmr", "pallet-bounties", @@ -11767,11 +13059,11 @@ dependencies = [ "pallet-democracy", "pallet-elections-phragmen", "pallet-grandpa", - "pallet-identity", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-indices", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-migrations", - "pallet-mmr", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-nis", "pallet-offences", @@ -11783,72 +13075,72 @@ dependencies = [ "pallet-referenda", "pallet-root-testing", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-society", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-state-trie-migration", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-tips", - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", - "pallet-vesting", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rococo-runtime-constants", "scale-info", "serde", "serde_derive", "serde_json", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", - "xcm-runtime-apis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "rococo-runtime-constants" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12165,8 +13457,19 @@ version = "31.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-allocator" +version = "31.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12185,38 +13488,66 @@ dependencies = [ "prost 0.12.6", "prost-build", "rand 0.8.5", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-authority-discovery" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "ip_network", + "linked_hash_set", + "log", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-basic-authorship" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "log", "parity-scale-codec", - "sc-block-builder", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-proposer-metrics", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12225,13 +13556,28 @@ version = "0.44.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-block-builder" +version = "0.44.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12243,21 +13589,47 @@ dependencies = [ "docify", "memmap2 0.9.7", "parity-scale-codec", - "sc-chain-spec-derive", - "sc-client-api", - "sc-executor", - "sc-network", - "sc-telemetry", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-blockchain", - "sp-core", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-genesis-builder", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-chain-spec" +version = "42.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "docify", + "memmap2 0.9.7", + "parity-scale-codec", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12271,6 +13643,17 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sc-chain-spec-derive" +version = "12.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sc-cli" version = "0.51.0" @@ -12290,25 +13673,67 @@ dependencies = [ "rand 0.8.5", "regex", "rpassword", - "sc-client-api", - "sc-client-db", - "sc-keystore", - "sc-mixnet", - "sc-network", - "sc-service", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "sc-cli" +version = "0.51.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "chrono", + "clap", + "fdlimit", + "futures", + "itertools 0.11.0", + "libp2p-identity", + "log", + "names", + "parity-bip39", + "parity-scale-codec", + "rand 0.8.5", + "regex", + "rpassword", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", ] @@ -12323,20 +13748,46 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-executor", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-database", - "sp-externalities", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", - "substrate-prometheus-endpoint", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-client-api" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "fnv", + "futures", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12353,16 +13804,42 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-state-db", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-state-db 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-client-db" +version = "0.46.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "kvdb", + "kvdb-memorydb", + "kvdb-rocksdb", + "linked-hash-map", + "log", + "parity-db", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-state-db 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12375,16 +13852,39 @@ dependencies = [ "log", "mockall", "parking_lot 0.12.4", - "sc-client-api", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "substrate-prometheus-endpoint", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "mockall", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12397,23 +13897,52 @@ dependencies = [ "futures", "log", "parity-scale-codec", - "sc-block-builder", - "sc-client-api", - "sc-consensus", - "sc-consensus-slots", - "sc-telemetry", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-block-builder 0.44.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-aura" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "parity-scale-codec", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12423,7 +13952,7 @@ version = "0.49.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "num-bigint", @@ -12431,54 +13960,90 @@ dependencies = [ "num-traits", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-consensus", - "sc-consensus-epochs", - "sc-consensus-slots", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-babe" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "log", + "num-bigint", + "num-rational", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe-rpc" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "jsonrpsee", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-rpc-api", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-application-crypto", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-beefy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -12487,23 +14052,23 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-consensus", - "sc-network", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "wasm-timer", @@ -12512,7 +14077,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "jsonrpsee", @@ -12520,12 +14085,12 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "sc-consensus-beefy", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-application-crypto", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12534,75 +14099,88 @@ name = "sc-consensus-epochs" version = "0.48.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sp-blockchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-consensus-epochs" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-consensus-grandpa" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "ahash", "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "log", "parity-scale-codec", "parking_lot 0.12.4", "rand 0.8.5", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-telemetry", - "sc-transaction-pool-api", - "sc-utils", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-grandpa-rpc" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "finality-grandpa", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-grandpa", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12618,26 +14196,26 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12651,17 +14229,40 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-telemetry", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-consensus-slots" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12671,19 +14272,42 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", - "sc-executor-common", - "sc-executor-polkavm", - "sc-executor-wasmtime", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-polkavm 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-api", - "sp-core", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "sc-executor" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-polkavm 0.35.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -12693,9 +14317,22 @@ version = "0.38.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "polkavm", - "sc-allocator", - "sp-maybe-compressed-blob", - "sp-wasm-interface", + "sc-allocator 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "wasm-instrument", +] + +[[package]] +name = "sc-executor-common" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "polkavm", + "sc-allocator 31.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "wasm-instrument", ] @@ -12707,8 +14344,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "log", "polkavm", - "sc-executor-common", - "sp-wasm-interface", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-executor-polkavm" +version = "0.35.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "polkavm", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12720,10 +14368,26 @@ dependencies = [ "log", "parking_lot 0.12.4", "rustix 0.36.17", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-wasm-interface", + "sc-allocator 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "wasmtime", +] + +[[package]] +name = "sc-executor-wasmtime" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "log", + "parking_lot 0.12.4", + "rustix 0.36.17", + "sc-allocator 31.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "wasmtime", ] @@ -12736,11 +14400,27 @@ dependencies = [ "futures", "futures-timer", "log", - "sc-client-api", - "sc-network", - "sc-network-sync", - "sp-blockchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-informant" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "console", + "futures", + "futures-timer", + "log", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12751,9 +14431,23 @@ dependencies = [ "array-bytes", "parking_lot 0.12.4", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-keystore" +version = "35.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "parking_lot 0.12.4", + "serde_json", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12772,16 +14466,44 @@ dependencies = [ "mixnet", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-keystore", - "sp-mixnet", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-mixnet 0.14.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-mixnet" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "arrayvec 0.7.6", + "blake2 0.10.6", + "bytes", + "futures", + "futures-timer", + "log", + "mixnet", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mixnet 0.14.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12813,19 +14535,69 @@ dependencies = [ "prost 0.12.6", "prost-build", "rand 0.8.5", - "sc-client-api", - "sc-network-common", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "unsigned-varint 0.7.2", + "void", + "wasm-timer", + "zeroize", +] + +[[package]] +name = "sc-network" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "asynchronous-codec 0.6.2", + "bytes", + "cid 0.9.0", + "either", + "fnv", + "futures", + "futures-timer", + "ip_network", + "libp2p", + "linked_hash_set", + "litep2p", + "log", + "mockall", + "parity-scale-codec", + "parking_lot 0.12.4", + "partial_sort", + "pin-project", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "serde_json", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12842,25 +14614,35 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "bitflags 1.3.2", "parity-scale-codec", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-network-common" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitflags 1.3.2", + "parity-scale-codec", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-network-gossip" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "ahash", "futures", "futures-timer", "log", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -12876,12 +14658,33 @@ dependencies = [ "parity-scale-codec", "prost 0.12.6", "prost-build", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-network-light" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "futures", + "log", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12893,28 +14696,63 @@ dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "mockall", "parity-scale-codec", "prost 0.12.6", "prost-build", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-network-sync" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "log", + "mockall", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12929,14 +14767,33 @@ dependencies = [ "futures", "log", "parity-scale-codec", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-consensus", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-network-transactions" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "futures", + "log", + "parity-scale-codec", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12958,10 +14815,29 @@ dependencies = [ "zeroize", ] +[[package]] +name = "sc-network-types" +version = "0.15.3" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "bytes", + "ed25519-dalek", + "libp2p-identity", + "libp2p-kad", + "litep2p", + "log", + "multiaddr 0.18.2", + "multihash 0.19.3", + "rand 0.8.5", + "thiserror 1.0.69", + "zeroize", +] + [[package]] name = "sc-offchain" version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bytes", "fnv", @@ -12977,17 +14853,17 @@ dependencies = [ "parking_lot 0.12.4", "rand 0.8.5", "rustls 0.23.29", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-offchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "threadpool", "tracing", ] @@ -12995,10 +14871,10 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13011,25 +14887,57 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-mixnet", - "sc-rpc-api", - "sc-tracing", - "sc-transaction-pool-api", - "sc-utils", + "sc-block-builder 0.44.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde_json", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-offchain", - "sp-rpc", - "sp-runtime", - "sp-session", - "sp-statement-store", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-statement-store 20.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tokio", +] + +[[package]] +name = "sc-rpc" +version = "44.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-statement-store 20.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", ] @@ -13040,16 +14948,36 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-mixnet", - "sc-transaction-pool-api", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-rpc-api" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "jsonrpsee", + "parity-scale-codec", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "serde_json", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13068,10 +14996,34 @@ dependencies = [ "ip_network", "jsonrpsee", "log", - "sc-rpc-api", + "sc-rpc-api 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tokio", + "tower", + "tower-http", +] + +[[package]] +name = "sc-rpc-server" +version = "21.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "dyn-clone", + "forwarded-header-value", + "futures", + "governor", + "http 1.3.1", + "http-body-util", + "hyper 1.6.0", + "ip_network", + "jsonrpsee", + "log", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", "tower", "tower-http", @@ -13092,18 +15044,50 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "rand 0.8.5", - "sc-chain-spec", - "sc-client-api", - "sc-rpc", - "sc-transaction-pool-api", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-rpc-spec-v2" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "futures", + "futures-util", + "hex", + "itertools 0.11.0", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -13112,15 +15096,15 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sc-executor", - "sc-executor-common", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-state-machine", - "sp-wasm-interface", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13140,47 +15124,111 @@ dependencies = [ "parking_lot 0.12.4", "pin-project", "rand 0.8.5", - "sc-chain-spec", - "sc-client-api", - "sc-client-db", - "sc-consensus", - "sc-executor", - "sc-informant", - "sc-keystore", - "sc-network", - "sc-network-common", - "sc-network-light", - "sc-network-sync", - "sc-network-transactions", - "sc-network-types", - "sc-rpc", - "sc-rpc-server", - "sc-rpc-spec-v2", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-informant 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-light 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-server 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-spec-v2 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-state-machine", - "sp-storage", - "sp-transaction-pool", - "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-storage-proof 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "static_init", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", + "tracing-futures", +] + +[[package]] +name = "sc-service" +version = "0.50.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "directories", + "exit-future", + "futures", + "futures-timer", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "pin-project", + "rand 0.8.5", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-informant 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-light 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-server 21.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-spec-v2 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-storage-proof 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "static_init", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tempfile", "thiserror 1.0.69", "tokio", @@ -13196,18 +15244,29 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-state-db" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-storage-monitor" version = "0.24.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "fs4", "log", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", ] @@ -13215,19 +15274,19 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", - "sc-consensus-epochs", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-grandpa", "serde", "serde_json", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13243,12 +15302,32 @@ dependencies = [ "rand 0.8.5", "rand_pcg", "regex", - "sc-telemetry", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-io", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-sysinfo" +version = "42.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "derive_more 0.99.20", + "futures", + "libc", + "log", + "rand 0.8.5", + "rand_pcg", + "regex", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13263,7 +15342,26 @@ dependencies = [ "parking_lot 0.12.4", "pin-project", "rand 0.8.5", - "sc-utils", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "thiserror 1.0.69", + "wasm-timer", +] + +[[package]] +name = "sc-telemetry" +version = "28.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "chrono", + "futures", + "libp2p", + "log", + "parking_lot 0.12.4", + "pin-project", + "rand 0.8.5", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", "thiserror 1.0.69", @@ -13283,15 +15381,43 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "rustc-hash 1.1.0", - "sc-client-api", - "sc-tracing-proc-macro", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing-proc-macro 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "tracing-log", + "tracing-subscriber", +] + +[[package]] +name = "sc-tracing" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "chrono", + "console", + "is-terminal", + "libc", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rustc-hash 1.1.0", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing-proc-macro 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "tracing-log", @@ -13309,6 +15435,17 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sc-tracing-proc-macro" +version = "11.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sc-transaction-pool" version = "39.0.0" @@ -13323,18 +15460,50 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-transaction-pool-api", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-core", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-runtime", - "sp-tracing", - "sp-transaction-pool", - "substrate-prometheus-endpoint", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "sc-transaction-pool" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "indexmap 2.10.0", + "itertools 0.11.0", + "linked-hash-map", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -13352,9 +15521,26 @@ dependencies = [ "log", "parity-scale-codec", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-transaction-pool-api" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "indexmap 2.10.0", + "log", + "parity-scale-codec", + "serde", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13369,7 +15555,21 @@ dependencies = [ "log", "parking_lot 0.12.4", "prometheus", - "sp-arithmetic", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-utils" +version = "18.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-channel 1.9.0", + "futures", + "futures-timer", + "log", + "parking_lot 0.12.4", + "prometheus", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13986,7 +16186,18 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "slot-range-helper" +version = "17.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "enumn", + "parity-scale-codec", + "paste", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14302,15 +16513,37 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro", - "sp-core", - "sp-externalities", - "sp-metadata-ir", - "sp-runtime", - "sp-runtime-interface", - "sp-state-machine", - "sp-trie", - "sp-version", + "sp-api-proc-macro 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-api" +version = "36.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "hash-db", + "log", + "parity-scale-codec", + "scale-info", + "sp-api-proc-macro 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14328,6 +16561,20 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sp-api-proc-macro" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "blake2 0.10.6", + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sp-application-crypto" version = "40.1.0" @@ -14336,8 +16583,20 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-application-crypto" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14354,6 +16613,20 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "sp-arithmetic" +version = "26.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "static_assertions", +] + [[package]] name = "sp-authority-discovery" version = "36.0.0" @@ -14361,9 +16634,21 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-authority-discovery" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14371,9 +16656,19 @@ name = "sp-block-builder" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-inherents", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-block-builder" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14385,12 +16680,31 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "schnellru", - "sp-api", - "sp-consensus", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "sp-blockchain" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "futures", + "parity-scale-codec", + "parking_lot 0.12.4", + "schnellru", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", ] @@ -14403,9 +16717,23 @@ dependencies = [ "async-trait", "futures", "log", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-consensus" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14417,12 +16745,28 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-aura" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14434,32 +16778,50 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-babe" +version = "0.42.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sp-consensus-beefy" version = "24.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-io", - "sp-keystore", - "sp-mmr-primitives", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -14473,11 +16835,28 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-grandpa" +version = "23.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14488,7 +16867,18 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-timestamp", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-slots" +version = "0.42.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14525,13 +16915,60 @@ dependencies = [ "secrecy 0.8.0", "serde", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "ss58-registry", - "substrate-bip39", + "substrate-bip39 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "w3f-bls", + "zeroize", +] + +[[package]] +name = "sp-core" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "ark-vrf", + "array-bytes", + "bitflags 1.3.2", + "blake2 0.10.6", + "bounded-collections", + "bs58", + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "itertools 0.11.0", + "k256", + "libsecp256k1", + "log", + "merlin", + "parity-bip39", + "parity-scale-codec", + "parking_lot 0.12.4", + "paste", + "primitive-types", + "rand 0.8.5", + "scale-info", + "schnorrkel 0.11.5", + "secp256k1 0.28.2", + "secrecy 0.8.0", + "serde", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "ss58-registry", + "substrate-bip39 0.6.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "w3f-bls", @@ -14565,6 +17002,19 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "sp-crypto-hashing" +version = "0.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.9", + "sha3", + "twox-hash", +] + [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" @@ -14575,6 +17025,16 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sp-crypto-hashing-proc-macro" +version = "0.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "syn 2.0.104", +] + [[package]] name = "sp-database" version = "10.0.0" @@ -14584,6 +17044,15 @@ dependencies = [ "parking_lot 0.12.4", ] +[[package]] +name = "sp-database" +version = "10.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "kvdb", + "parking_lot 0.12.4", +] + [[package]] name = "sp-debug-derive" version = "14.0.0" @@ -14594,6 +17063,16 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sp-debug-derive" +version = "14.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sp-externalities" version = "0.30.0" @@ -14601,7 +17080,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "environmental", "parity-scale-codec", - "sp-storage", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-externalities" +version = "0.30.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14612,8 +17101,20 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde_json", - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-genesis-builder" +version = "0.17.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14625,7 +17126,20 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-inherents" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14643,14 +17157,40 @@ dependencies = [ "polkavm-derive", "rustversion", "secp256k1 0.28.2", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-tracing", - "sp-trie", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive", + "rustversion", + "secp256k1 0.28.2", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", "tracing-core", ] @@ -14660,8 +17200,18 @@ name = "sp-keyring" version = "41.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", +] + +[[package]] +name = "sp-keyring" +version = "41.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -14672,8 +17222,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", - "sp-core", - "sp-externalities", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-keystore" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.4", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14685,6 +17246,15 @@ dependencies = [ "zstd 0.12.4", ] +[[package]] +name = "sp-maybe-compressed-blob" +version = "11.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "thiserror 1.0.69", + "zstd 0.12.4", +] + [[package]] name = "sp-metadata-ir" version = "0.10.0" @@ -14695,6 +17265,16 @@ dependencies = [ "scale-info", ] +[[package]] +name = "sp-metadata-ir" +version = "0.10.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-metadata 20.0.0", + "parity-scale-codec", + "scale-info", +] + [[package]] name = "sp-mixnet" version = "0.14.0" @@ -14702,8 +17282,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-mixnet" +version = "0.14.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14716,10 +17307,27 @@ dependencies = [ "polkadot-ckb-merkle-mountain-range", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-mmr-primitives" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "polkadot-ckb-merkle-mountain-range", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14731,9 +17339,22 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-npos-elections" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14741,9 +17362,19 @@ name = "sp-offchain" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-offchain" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14755,6 +17386,15 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "13.0.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "backtrace", + "regex", +] + [[package]] name = "sp-rpc" version = "34.0.0" @@ -14762,7 +17402,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "rustc-hash 1.1.0", "serde", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-rpc" +version = "34.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "rustc-hash 1.1.0", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14770,7 +17420,7 @@ name = "sp-runtime" version = "41.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "docify", "either", "hash256-std-hasher", @@ -14783,13 +17433,42 @@ dependencies = [ "scale-info", "serde", "simple-mermaid", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std", - "sp-trie", - "sp-weights", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", + "tuplex", +] + +[[package]] +name = "sp-runtime" +version = "41.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "docify", + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "paste", + "rand 0.8.5", + "scale-info", + "serde", + "simple-mermaid", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", "tuplex", ] @@ -14804,12 +17483,31 @@ dependencies = [ "parity-scale-codec", "polkavm-derive", "primitive-types", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface-proc-macro 18.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "29.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "polkavm-derive", + "primitive-types", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface-proc-macro 18.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -14826,6 +17524,19 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "18.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sp-session" version = "38.1.0" @@ -14833,11 +17544,25 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-staking", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-session" +version = "38.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14849,8 +17574,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-staking" +version = "38.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14864,10 +17602,30 @@ dependencies = [ "parking_lot 0.12.4", "rand 0.8.5", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-state-machine" +version = "0.45.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "smallvec", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "trie-db", @@ -14886,13 +17644,37 @@ dependencies = [ "rand 0.8.5", "scale-info", "sha2 0.10.9", - "sp-api", - "sp-application-crypto", - "sp-core", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-runtime", - "sp-runtime-interface", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "x25519-dalek", +] + +[[package]] +name = "sp-statement-store" +version = "20.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aes-gcm", + "curve25519-dalek", + "ed25519-dalek", + "hkdf", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sha2 0.10.9", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "x25519-dalek", ] @@ -14902,6 +17684,11 @@ name = "sp-std" version = "14.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +[[package]] +name = "sp-std" +version = "14.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" + [[package]] name = "sp-storage" version = "22.0.0" @@ -14911,7 +17698,19 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-storage" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14921,8 +17720,20 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-timestamp" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14937,13 +17748,33 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "sp-tracing" +version = "17.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "tracing", + "tracing-core", + "tracing-subscriber", +] + [[package]] name = "sp-transaction-pool" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-transaction-pool" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14954,10 +17785,24 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-transaction-storage-proof" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14974,8 +17819,30 @@ dependencies = [ "rand 0.8.5", "scale-info", "schnellru", - "sp-core", - "sp-externalities", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "39.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "ahash", + "hash-db", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "scale-info", + "schnellru", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "trie-db", @@ -14992,10 +17859,27 @@ dependencies = [ "parity-wasm", "scale-info", "serde", - "sp-crypto-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-version" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm", + "scale-info", + "serde", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -15011,6 +17895,18 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "sp-version-proc-macro" +version = "15.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "proc-macro-warning", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "sp-wasm-interface" version = "21.0.1" @@ -15023,6 +17919,18 @@ dependencies = [ "wasmtime", ] +[[package]] +name = "sp-wasm-interface" +version = "21.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "wasmtime", +] + [[package]] name = "sp-weights" version = "31.1.0" @@ -15033,8 +17941,22 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-debug-derive", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-weights" +version = "31.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -15215,14 +18137,14 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-parachain-info" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -15234,16 +18156,37 @@ dependencies = [ "bounded-collections", "derive-where", "environmental", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-weights", - "xcm-procedural", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "xcm-procedural 11.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "staging-xcm" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "bounded-collections", + "derive-where", + "environmental", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "hex-literal 0.4.1", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "xcm-procedural 11.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -15252,21 +18195,45 @@ version = "20.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", - "pallet-asset-conversion", - "pallet-transaction-payment", + "pallet-asset-conversion 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-executor", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "staging-xcm-builder" +version = "20.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -15276,17 +18243,37 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "staging-xcm-executor" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -15393,29 +18380,41 @@ dependencies = [ "zeroize", ] +[[package]] +name = "substrate-bip39" +version = "0.6.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hmac 0.12.1", + "pbkdf2", + "schnorrkel 0.11.5", + "sha2 0.10.9", + "zeroize", +] + [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" [[package]] name = "substrate-frame-rpc-system" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-system-rpc-runtime-api", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-rpc-api", - "sc-transaction-pool-api", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -15432,27 +18431,41 @@ dependencies = [ "tokio", ] +[[package]] +name = "substrate-prometheus-endpoint" +version = "0.17.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "http-body-util", + "hyper 1.6.0", + "hyper-util", + "log", + "prometheus", + "thiserror 1.0.69", + "tokio", +] + [[package]] name = "substrate-state-trie-migration-rpc" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "trie-db", ] [[package]] name = "substrate-wasm-builder" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "build-helper", @@ -15465,13 +18478,13 @@ dependencies = [ "parity-scale-codec", "parity-wasm", "polkavm-linker", - "sc-executor", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "shlex", - "sp-core", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "sp-version", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "tempfile", "toml 0.8.23", @@ -15757,13 +18770,13 @@ source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d dependencies = [ "async-backing-primitives", "async-trait", - "cumulus-client-collator", - "cumulus-client-consensus-aura", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-collator 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-aura 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dc-orchestrator-chain-interface", "dp-consensus", "fc-rpc", @@ -15774,34 +18787,34 @@ dependencies = [ "pallet-registrar-runtime-api", "pallet-xcm-core-buyer-runtime-api", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sc-consensus-manual-seal", - "sc-consensus-slots", - "sc-telemetry", - "sc-transaction-pool", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "substrate-prometheus-endpoint", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tokio", "tokio-util", "tp-traits", @@ -15826,27 +18839,27 @@ dependencies = [ name = "template-fuzzer" version = "0.1.0" dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-test-relay-sproof-builder", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "evm-runtime-template", - "frame-support", - "frame-system", - "pallet-balances", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-collator-selection", "pallet-multisig", "pallet-scheduler", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-whitelist", "parachains-common", "parity-scale-codec", "quinn-proto 0.9.6", - "sp-consensus-aura", - "sp-runtime", - "sp-state-machine", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "ziggy", ] @@ -15880,14 +18893,14 @@ name = "test-relay-sproof-builder" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#09c34cbd28fc6c5fd6ed2c2942de36110b8eacaa" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-collator-assignment", "dp-core", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -16243,18 +19256,18 @@ name = "tp-traits" version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-chain-state-snapshot", "dp-container-chain-genesis-data", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "macro_rules_attribute", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -16262,12 +19275,12 @@ name = "tp-xcm-core-buyer" version = "0.1.0" source = "git+https://github.com/KitHat/tanssi?branch=polkadot-stable2503#19475d40f7a7b45b7b0c0044d0ad8371ccf52230" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tp-traits", ] @@ -16320,9 +19333,20 @@ version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "coarsetime", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", - "tracing-gum-proc-macro", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "tracing-gum" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "coarsetime", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -16337,6 +19361,18 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "tracing-gum-proc-macro" +version = "5.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "tracing-log" version = "0.2.0" @@ -17228,43 +20264,43 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "westend-runtime" version = "22.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-bags-list", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-beefy", "pallet-beefy-mmr", "pallet-conviction-voting", "pallet-delegated-staking", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-elections-phragmen", - "pallet-fast-unstake", + "pallet-fast-unstake 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-grandpa", - "pallet-identity", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-indices", "pallet-membership", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-meta-tx", "pallet-migrations", - "pallet-mmr", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-nomination-pools", "pallet-nomination-pools-benchmarking", @@ -17278,76 +20314,76 @@ dependencies = [ "pallet-referenda", "pallet-root-testing", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-session-benchmarking", "pallet-society", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-staking-runtime-api", "pallet-state-trie-migration", "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-verify-signature", - "pallet-vesting", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "serde_derive", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", "westend-runtime-constants", - "xcm-runtime-apis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "westend-runtime-constants" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -17918,27 +20954,27 @@ name = "xcm-primitives" version = "0.1.1" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#ef035d28747b49f8ac24ca675b903ecb20a94195" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "ethereum 0.15.0 (git+https://github.com/rust-ethereum/ethereum?rev=3be0d8fd4c2ad1ba216b69ef65b9382612efc8ba)", "ethereum-types", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex", "impl-trait-for-tuples", "log", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", + "polkadot-runtime-common 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "sha3", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -17952,39 +20988,64 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "xcm-procedural" +version = "11.0.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "xcm-runtime-apis" version = "0.7.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-api", - "sp-weights", - "staging-xcm", - "staging-xcm-executor", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "xcm-runtime-apis" +version = "0.7.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "xcm-simulator" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "paste", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] diff --git a/evm-template/Cargo.toml b/evm-template/Cargo.toml index af21c56..f82177e 100644 --- a/evm-template/Cargo.toml +++ b/evm-template/Cargo.toml @@ -28,119 +28,119 @@ serde_derive = { version = "1.0.121", default-features = false } serde_json = { version = "1.0.121", default-features = false } smallvec = "1.11.0" -pezframe-benchmarking = { package = "frame-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-benchmarking-cli = { package = "frame-benchmarking-cli", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-executive = { package = "frame-executive", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-metadata-hash-extension = { package = "frame-metadata-hash-extension", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-support = { package = "frame-support", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system = { package = "frame-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system-benchmarking = { package = "frame-system-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system-rpc-runtime-api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-try-runtime = { package = "frame-try-runtime", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -openzeppelin-pezpallet-abstractions = { package = "openzeppelin-pallet-abstractions", git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } -openzeppelin-pezpallet-abstractions-proc = { package = "openzeppelin-pallet-abstractions-proc", git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } -pezpallet-asset-tx-payment = { package = "pallet-asset-tx-payment", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-assets = { package = "pallet-assets", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-aura = { package = "pallet-aura", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-balances = { package = "pallet-balances", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-conviction-voting = { package = "pallet-conviction-voting", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-membership = { package = "pallet-membership", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-message-queue = { package = "pallet-message-queue", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-preimage = { package = "pallet-preimage", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-referenda = { package = "pallet-referenda", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-session = { package = "pallet-session", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment-rpc = { package = "pallet-transaction-payment-rpc", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-utility = { package = "pallet-utility", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-whitelist = { package = "pallet-whitelist", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-consensus-slots = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-network = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-tracing = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-build-script-utils = { package = "substrate-build-script-utils", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503" } -bizinikiwi-pezframe-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-wasm-builder = { package = "substrate-wasm-builder", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-benchmarking = { package = "frame-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-benchmarking-cli = { package = "frame-benchmarking-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-executive = { package = "frame-executive", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-metadata-hash-extension = { package = "frame-metadata-hash-extension", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-support = { package = "frame-support", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system = { package = "frame-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system-benchmarking = { package = "frame-system-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system-rpc-runtime-api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-try-runtime = { package = "frame-try-runtime", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +openzeppelin-pallet-abstractions = { git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } +openzeppelin-pallet-abstractions-proc = { git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } +pezpallet-asset-tx-payment = { package = "pallet-asset-tx-payment", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-assets = { package = "pallet-assets", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-aura = { package = "pallet-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-authorship = { package = "pallet-authorship", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-balances = { package = "pallet-balances", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-conviction-voting = { package = "pallet-conviction-voting", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-membership = { package = "pallet-membership", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-message-queue = { package = "pallet-message-queue", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-multisig = { package = "pallet-multisig", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-preimage = { package = "pallet-preimage", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-proxy = { package = "pallet-proxy", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-referenda = { package = "pallet-referenda", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-scheduler = { package = "pallet-scheduler", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-session = { package = "pallet-session", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-sudo = { package = "pallet-sudo", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-timestamp = { package = "pallet-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment-rpc = { package = "pallet-transaction-payment-rpc", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-treasury = { package = "pallet-treasury", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-utility = { package = "pallet-utility", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-whitelist = { package = "pallet-whitelist", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-basic-authorship = { package = "sc-basic-authorship", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-chain-spec = { package = "sc-chain-spec", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-cli = { package = "sc-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-client-api = { package = "sc-client-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-consensus = { package = "sc-consensus", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-consensus-aura = { package = "sc-consensus-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-consensus-slots = { package = "sc-consensus-slots", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-executor = { package = "sc-executor", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-network = { package = "sc-network", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-network-sync = { package = "sc-network-sync", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-offchain = { package = "sc-offchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-rpc = { package = "sc-rpc", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-service = { package = "sc-service", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-sysinfo = { package = "sc-sysinfo", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-telemetry = { package = "sc-telemetry", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-tracing = { package = "sc-tracing", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-transaction-pool = { package = "sc-transaction-pool", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-transaction-pool-api = { package = "sc-transaction-pool-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-api = { package = "sp-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-block-builder = { package = "sp-block-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-blockchain = { package = "sp-blockchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-consensus-aura = { package = "sp-consensus-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-core = { package = "sp-core", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-genesis-builder = { package = "sp-genesis-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-inherents = { package = "sp-inherents", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-io = { package = "sp-io", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-keyring = { package = "sp-keyring", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-keystore = { package = "sp-keystore", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-offchain = { package = "sp-offchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-runtime = { package = "sp-runtime", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-session = { package = "sp-session", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-state-machine = { package = "sp-state-machine", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-std = { package = "sp-std", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-timestamp = { package = "sp-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-tracing = { package = "sp-tracing", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-transaction-pool = { package = "sp-transaction-pool", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-version = { package = "sp-version", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-build-script-utils = { package = "substrate-build-script-utils", git = "https://github.com/pezkuwichain/pezkuwi-sdk", tag = "polkadot-stable2503" } +bizinikiwi-pezframe-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-wasm-builder = { package = "substrate-wasm-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } # Pezkuwi -pezpallet-xcm = { package = "pallet-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-cli = { package = "polkadot-cli", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-teyrchain-primitives = { package = "polkadot-parachain-primitives", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-primitives = { package = "polkadot-primitives", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-runtime-teyrchains = { package = "polkadot-runtime-parachains", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -xcm-pez-simulator = { package = "xcm-simulator", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-xcm = { package = "pallet-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-cli = { package = "polkadot-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-teyrchain-primitives = { package = "polkadot-parachain-primitives", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-primitives = { package = "polkadot-primitives", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-runtime-teyrchains = { package = "polkadot-runtime-parachains", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm = { package = "staging-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +xcm-pez-simulator = { package = "xcm-simulator", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } -# Cumulus -assets-common = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-teyrchain-inherent = { package = "cumulus-client-parachain-inherent", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-aura-ext = { package = "cumulus-pallet-aura-ext", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-teyrchain-system = { package = "cumulus-pallet-parachain-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-session-benchmarking = { package = "cumulus-pallet-session-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-weight-reclaim = { package = "cumulus-pallet-weight-reclaim", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-xcm = { package = "cumulus-pallet-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-xcmp-queue = { package = "cumulus-pallet-xcmp-queue", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-teyrchain-inherent = { package = "cumulus-primitives-parachain-inherent", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-utility = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-collator-selection = { package = "pallet-collator-selection", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -teyrchain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -teyrchains-common = { package = "parachains-common", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +# Pezpezcumulus +assets-common = { git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-cli = { package = "cumulus-client-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-collator = { package = "cumulus-client-collator", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-aura = { package = "cumulus-client-consensus-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-common = { package = "cumulus-client-consensus-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-proposer = { package = "cumulus-client-consensus-proposer", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-teyrchain-inherent = { package = "cumulus-client-parachain-inherent", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-service = { package = "cumulus-client-service", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-aura-ext = { package = "cumulus-pallet-aura-ext", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-teyrchain-system = { package = "cumulus-pallet-parachain-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-session-benchmarking = { package = "cumulus-pallet-session-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-weight-reclaim = { package = "cumulus-pallet-weight-reclaim", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-xcm = { package = "cumulus-pallet-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-xcmp-queue = { package = "cumulus-pallet-xcmp-queue", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-aura = { package = "cumulus-primitives-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-core = { package = "cumulus-primitives-core", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-teyrchain-inherent = { package = "cumulus-primitives-parachain-inherent", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-timestamp = { package = "cumulus-primitives-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-utility = { package = "cumulus-primitives-utility", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-relay-chain-interface = { package = "cumulus-relay-chain-interface", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-test-relay-sproof-builder = { package = "cumulus-test-relay-sproof-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-collator-selection = { package = "pallet-collator-selection", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +teyrchain-info = { package = "staging-parachain-info", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +teyrchains-common = { package = "parachains-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } # EVM ethereum = { git = "https://github.com/rust-ethereum/ethereum", rev = "bbb544622208ef6e9890a2dbc224248f6dd13318" } @@ -159,10 +159,10 @@ fp-evm = { git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot- fp-rpc = { git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false } fp-self-contained = { git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false } pezpallet-base-fee = { package = "pallet-base-fee", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false } -pezpallet-ethereum = { package = "pallet-ethereum", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false, features = [ +pezpallet-ethereum = { package = "pallet-ethereum", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false, features = [ "forbid-evm-reentrancy", ] } -pezpallet-evm = { package = "pallet-evm", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false, features = [ +pezpallet-evm = { package = "pallet-evm", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false, features = [ "forbid-evm-reentrancy", ] } pezpallet-evm-chain-id = { package = "pallet-evm-chain-id", git = "https://github.com/OpenZeppelin/frontier", branch = "polkadot-stable2503", default-features = false } @@ -185,7 +185,7 @@ pezpallet-xcm-weight-trader = { package = "pallet-xcm-weight-trader", git = "ht xcm-primitives = { git = "https://github.com/OpenZeppelin/moonbeam.git", branch = "polkadot-stable2503", default-features = false } # Fuzzer -bizinikiwi-runtimes-fuzzers = { package = "substrate-runtimes-fuzzers", git = "https://github.com/srlabs/bizinikiwi-runtime-fuzzer.git", default-features = false, tag = "polkadot-v1.12.0" } +bizinikiwi-runtimes-fuzzers = { package = "substrate-runtimes-fuzzers", git = "https://github.com/srlabs/bizinikiwi-runtime-fuzzer.git", default-features = false, tag = "pezkuwi-v1.12.0" } ziggy = { version = "0.8", default-features = false } # Moonkit @@ -201,7 +201,7 @@ pezpallet-cc-authorities-noting = { package = "pallet-cc-authorities-noting", g # Tanssi tc-consensus = { git = "https://github.com/KitHat/tanssi", branch = "polkadot-stable2503", default-features = false } -# [patch."https://github.com/paritytech/pezkuwi-sdk"] +# [patch."https://github.com/pezkuwichain/pezkuwi-sdk"] # Make pezpallet-migrations optional to avoid the error # pezpallet-migrations = { version = "=9.0.0", optional = true } diff --git a/evm-template/node/Cargo.toml b/evm-template/node/Cargo.toml index 5384102..1a1bed9 100644 --- a/evm-template/node/Cargo.toml +++ b/evm-template/node/Cargo.toml @@ -28,34 +28,34 @@ evm-runtime-template = { path = "../runtime" } pezframe-benchmarking = { workspace = true } pezframe-benchmarking-cli = { workspace = true } pezpallet-transaction-payment-rpc = { workspace = true } -sc-basic-authorship = { workspace = true } -sc-chain-spec = { workspace = true } -sc-cli = { workspace = true } -sc-client-api = { workspace = true } -sc-consensus = { workspace = true } -sc-consensus-aura = { workspace = true } -sc-consensus-slots = { workspace = true } -sc-executor = { workspace = true } -sc-network = { workspace = true } -sc-network-sync = { workspace = true } -sc-offchain = { workspace = true } -sc-rpc = { workspace = true } -sc-service = { workspace = true } -sc-sysinfo = { workspace = true } -sc-telemetry = { workspace = true } -sc-tracing = { workspace = true } -sc-transaction-pool = { workspace = true } -sc-transaction-pool-api = { workspace = true } -sp-api = { workspace = true } -sp-block-builder = { workspace = true } -sp-blockchain = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-core = { workspace = true } -sp-inherents = { workspace = true } -sp-io = { workspace = true } -sp-keystore = { workspace = true } -sp-runtime = { workspace = true } -sp-timestamp = { workspace = true } +pezsc-basic-authorship = { workspace = true } +pezsc-chain-spec = { workspace = true } +pezsc-cli = { workspace = true } +pezsc-client-api = { workspace = true } +pezsc-consensus = { workspace = true } +pezsc-consensus-aura = { workspace = true } +pezsc-consensus-slots = { workspace = true } +pezsc-executor = { workspace = true } +pezsc-network = { workspace = true } +pezsc-network-sync = { workspace = true } +pezsc-offchain = { workspace = true } +pezsc-rpc = { workspace = true } +pezsc-service = { workspace = true } +pezsc-sysinfo = { workspace = true } +pezsc-telemetry = { workspace = true } +pezsc-tracing = { workspace = true } +pezsc-transaction-pool = { workspace = true } +pezsc-transaction-pool-api = { workspace = true } +pezsp-api = { workspace = true } +pezsp-block-builder = { workspace = true } +pezsp-blockchain = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-core = { workspace = true } +pezsp-inherents = { workspace = true } +pezsp-io = { workspace = true } +pezsp-keystore = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-timestamp = { workspace = true } bizinikiwi-pezframe-rpc-system = { workspace = true } bizinikiwi-prometheus-endpoint = { workspace = true } @@ -64,19 +64,19 @@ pezkuwi-cli = { workspace = true } pezkuwi-primitives = { workspace = true } staging-xcm = { workspace = true } -# Cumulus +# Pezpezcumulus color-print = { workspace = true } -cumulus-client-cli = { workspace = true } -cumulus-client-collator = { workspace = true } -cumulus-client-consensus-aura = { workspace = true } -cumulus-client-consensus-common = { workspace = true } -cumulus-client-consensus-proposer = { workspace = true } -cumulus-client-teyrchain-inherent = { workspace = true } -cumulus-client-service = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-teyrchain-inherent = { workspace = true } -cumulus-relay-chain-interface = { workspace = true } -cumulus-test-relay-sproof-builder = { workspace = true } +pezcumulus-client-cli = { workspace = true } +pezcumulus-client-collator = { workspace = true } +pezcumulus-client-consensus-aura = { workspace = true } +pezcumulus-client-consensus-common = { workspace = true } +pezcumulus-client-consensus-proposer = { workspace = true } +pezcumulus-client-teyrchain-inherent = { workspace = true } +pezcumulus-client-service = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-teyrchain-inherent = { workspace = true } +pezcumulus-relay-chain-interface = { workspace = true } +pezcumulus-test-relay-sproof-builder = { workspace = true } # Frontier fc-api = { workspace = true } @@ -101,12 +101,12 @@ bizinikiwi-build-script-utils = { workspace = true } [features] default = [] async-backing = [] -runtime-benchmarks = [ "evm-runtime-template/runtime-benchmarks", "pezframe-benchmarking-cli/runtime-benchmarks", "pezframe-benchmarking/runtime-benchmarks", "pezkuwi-cli/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "sc-service/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "tc-consensus/runtime-benchmarks" ] +runtime-benchmarks = [ "evm-runtime-template/runtime-benchmarks", "pezframe-benchmarking-cli/runtime-benchmarks", "pezframe-benchmarking/runtime-benchmarks", "pezkuwi-cli/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezsc-service/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "tc-consensus/runtime-benchmarks" ] tanssi = [] try-runtime = [ "evm-runtime-template/try-runtime", "pezkuwi-cli/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] txpool = [ "fc-rpc/txpool" ] diff --git a/evm-template/node/src/chain_spec.rs b/evm-template/node/src/chain_spec.rs index 215b04b..87c94b2 100644 --- a/evm-template/node/src/chain_spec.rs +++ b/evm-template/node/src/chain_spec.rs @@ -1,25 +1,25 @@ use std::collections::BTreeMap; -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::ParaId; use evm_runtime_template::{AccountId, OpenZeppelinPrecompiles as Precompiles, Runtime}; #[cfg(not(feature = "tanssi"))] use evm_runtime_template::{AuraId, Signature}; use fp_evm::GenesisAccount; use hex_literal::hex; use log::error; -use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup}; -use sc_service::ChainType; +use pezsc_chain_spec::{ChainSpecExtension, ChainSpecGroup}; +use pezsc_service::ChainType; use serde::{Deserialize, Serialize}; -use sp_core::H160; +use pezsp_core::H160; #[cfg(not(feature = "tanssi"))] -use sp_core::{ecdsa, Pair, Public}; +use pezsp_core::{ecdsa, Pair, Public}; #[cfg(not(feature = "tanssi"))] -use sp_runtime::traits::{IdentifyAccount, Verify}; +use pezsp_runtime::traits::{IdentifyAccount, Verify}; use crate::contracts::{parse_contracts, ContractsPath}; /// Specialized `ChainSpec` for the normal teyrchain runtime. -pub type ChainSpec = sc_service::GenericChainSpec; +pub type ChainSpec = pezsc_service::GenericChainSpec; /// The default XCM version to set in genesis config. const SAFE_XCM_VERSION: u32 = xcm::prelude::XCM_VERSION; @@ -44,8 +44,8 @@ pub struct Extensions { impl Extensions { /// Try to get the extension from the given `ChainSpec`. - pub fn try_get(chain_spec: &dyn sc_service::ChainSpec) -> Option<&Self> { - sc_chain_spec::get_extension(chain_spec.extensions()) + pub fn try_get(chain_spec: &dyn pezsc_service::ChainSpec) -> Option<&Self> { + pezsc_chain_spec::get_extension(chain_spec.extensions()) } } @@ -81,7 +81,7 @@ pub fn template_session_keys(keys: AuraId) -> evm_runtime_template::SessionKeys pub fn development_config(contracts_path: ContractsPath) -> ChainSpec { // Give your base currency a unit name and decimal places - let mut properties = sc_chain_spec::Properties::new(); + let mut properties = pezsc_chain_spec::Properties::new(); properties.insert("tokenSymbol".into(), "UNIT".into()); properties.insert("tokenDecimals".into(), 12.into()); properties.insert("ss58Format".into(), 42.into()); @@ -129,7 +129,7 @@ pub fn development_config(contracts_path: ContractsPath) -> ChainSpec { pub fn local_testnet_config(contracts_path: ContractsPath) -> ChainSpec { // Give your base currency a unit name and decimal places - let mut properties = sc_chain_spec::Properties::new(); + let mut properties = pezsc_chain_spec::Properties::new(); properties.insert("tokenSymbol".into(), "UNIT".into()); properties.insert("tokenDecimals".into(), 12.into()); properties.insert("ss58Format".into(), 42.into()); diff --git a/evm-template/node/src/cli.rs b/evm-template/node/src/cli.rs index c188c80..1a4104d 100644 --- a/evm-template/node/src/cli.rs +++ b/evm-template/node/src/cli.rs @@ -1,7 +1,7 @@ use std::path::PathBuf; -use sc_cli::{ChainSpec, Result}; -use sc_network::config::NetworkConfiguration; +use pezsc_cli::{ChainSpec, Result}; +use pezsc_network::config::NetworkConfiguration; use crate::{contracts::ContractsPath, eth::EthConfiguration}; @@ -12,31 +12,31 @@ pub enum Subcommand { BuildSpec(ExtendedBuildSpecCmd), /// Validate blocks. - CheckBlock(sc_cli::CheckBlockCmd), + CheckBlock(pezsc_cli::CheckBlockCmd), /// Export blocks. - ExportBlocks(sc_cli::ExportBlocksCmd), + ExportBlocks(pezsc_cli::ExportBlocksCmd), /// Export the state of a given block into a chain spec. - ExportState(sc_cli::ExportStateCmd), + ExportState(pezsc_cli::ExportStateCmd), /// Import blocks. - ImportBlocks(sc_cli::ImportBlocksCmd), + ImportBlocks(pezsc_cli::ImportBlocksCmd), /// Revert the chain to a previous state. - Revert(sc_cli::RevertCmd), + Revert(pezsc_cli::RevertCmd), /// Remove the whole chain. - PurgeChain(cumulus_client_cli::PurgeChainCmd), + PurgeChain(pezcumulus_client_cli::PurgeChainCmd), /// Export the genesis head data of the teyrchain. /// /// Head data is the encoded block header. #[command(alias = "export-genesis-state")] - ExportGenesisHead(cumulus_client_cli::ExportGenesisHeadCommand), + ExportGenesisHead(pezcumulus_client_cli::ExportGenesisHeadCommand), /// Export the genesis wasm of the teyrchain. - ExportGenesisWasm(cumulus_client_cli::ExportGenesisWasmCommand), + ExportGenesisWasm(pezcumulus_client_cli::ExportGenesisWasmCommand), /// Sub-commands concerned with benchmarking. /// The pezpallet benchmarking moved to the `pezpallet` sub-command. @@ -44,7 +44,7 @@ pub enum Subcommand { Benchmark(pezframe_benchmarking_cli::BenchmarkCmd), /// Try-runtime has migrated to a standalone - /// [CLI](). The subcommand exists as a stub and + /// [CLI](). The subcommand exists as a stub and /// deprecation notice. It will be removed entirely some time after January /// 2024. TryRuntime, @@ -67,7 +67,7 @@ impl Subcommand { #[derive(Debug, Clone, clap::Parser)] pub struct ExtendedBuildSpecCmd { #[clap(flatten)] - pub cmd: sc_cli::BuildSpecCmd, + pub cmd: pezsc_cli::BuildSpecCmd, /// Path to a directory that contains precompiled contracts. /// A directory should contain file `contracts.json`. @@ -116,7 +116,7 @@ pub struct Cli { pub subcommand: Option, #[command(flatten)] - pub run: cumulus_client_cli::RunCmd, + pub run: pezcumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. /// @@ -152,7 +152,7 @@ impl RelayChainCli { /// Parse the relay chain CLI parameters using the para chain /// `Configuration`. pub fn new<'a>( - para_config: &sc_service::Configuration, + para_config: &pezsc_service::Configuration, relay_chain_args: impl Iterator, ) -> Self { let extension = crate::chain_spec::Extensions::try_get(&*para_config.chain_spec); diff --git a/evm-template/node/src/command.rs b/evm-template/node/src/command.rs index abc1b22..59e81d4 100644 --- a/evm-template/node/src/command.rs +++ b/evm-template/node/src/command.rs @@ -1,14 +1,14 @@ -use cumulus_client_service::storage_proof_size::HostFunctions as ReclaimHostFunctions; -use cumulus_primitives_core::ParaId; +use pezcumulus_client_service::storage_proof_size::HostFunctions as ReclaimHostFunctions; +use pezcumulus_primitives_core::ParaId; use evm_runtime_template::Block; use pezframe_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE}; use log::info; -use sc_cli::{ +use pezsc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, NetworkParams, Result, RpcEndpoint, SharedParams, BizinikiwiCli, }; -use sc_service::config::{BasePath, PrometheusConfig}; -use sp_runtime::traits::AccountIdConversion; +use pezsc_service::config::{BasePath, PrometheusConfig}; +use pezsp_runtime::traits::AccountIdConversion; use crate::{ chain_spec, @@ -52,14 +52,14 @@ impl BizinikiwiCli for Cli { } fn support_url() -> String { - "https://github.com/paritytech/pezkuwi-sdk/issues/new".into() + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/new".into() } fn copyright_start_year() -> i32 { 2020 } - fn load_spec(&self, id: &str) -> std::result::Result, String> { + fn load_spec(&self, id: &str) -> std::result::Result, String> { load_spec( id, self.subcommand.as_ref().map(Subcommand::contract_directory).unwrap_or_default(), @@ -90,14 +90,14 @@ impl BizinikiwiCli for RelayChainCli { } fn support_url() -> String { - "https://github.com/paritytech/pezkuwi-sdk/issues/new".into() + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/new".into() } fn copyright_start_year() -> i32 { 2020 } - fn load_spec(&self, id: &str) -> std::result::Result, String> { + fn load_spec(&self, id: &str) -> std::result::Result, String> { pezkuwi_cli::Cli::from_iter([RelayChainCli::executable_name()].iter()).load_spec(id) } } @@ -186,9 +186,9 @@ pub fn run() -> Result<()> { let runner = cli.create_runner(cmd)?; // Switch on the concrete benchmark sub-command- match cmd { - BenchmarkCmd::Pallet(cmd) => + BenchmarkCmd::Pezpallet(cmd) => if cfg!(feature = "runtime-benchmarks") { - runner.sync_run(|config| cmd.run_with_spec::, ReclaimHostFunctions>(Some(config.chain_spec))) + runner.sync_run(|config| cmd.run_with_spec::, ReclaimHostFunctions>(Some(config.chain_spec))) } else { Err("Benchmarking wasn't enabled when building the node. \ You can enable it with `--features runtime-benchmarks`." @@ -200,7 +200,7 @@ pub fn run() -> Result<()> { }), #[cfg(not(feature = "runtime-benchmarks"))] BenchmarkCmd::Storage(_) => - Err(sc_cli::Error::Input( + Err(pezsc_cli::Error::Input( "Compile with --features=runtime-benchmarks \ to enable storage benchmarks." .into(), @@ -220,7 +220,7 @@ pub fn run() -> Result<()> { _ => Err("Benchmarking sub-command unsupported".into()), } }, - Some(Subcommand::TryRuntime) => Err("The `try-runtime` subcommand has been migrated to a standalone CLI (https://github.com/paritytech/try-runtime-cli). It is no longer being maintained here and will be removed entirely some time after January 2024. Please remove this subcommand from your runtime and use the standalone CLI.".into()), + Some(Subcommand::TryRuntime) => Err("The `try-runtime` subcommand has been migrated to a standalone CLI (https://github.com/pezkuwichain/try-runtime-cli). It is no longer being maintained here and will be removed entirely some time after January 2024. Please remove this subcommand from your runtime and use the standalone CLI.".into()), None => { let runner = cli.create_runner(&cli.run.normalize())?; let collator_options = cli.run.collator_options(); @@ -229,7 +229,7 @@ pub fn run() -> Result<()> { let hwbench = (!cli.no_hardware_benchmarks) .then_some(config.database.path().map(|database_path| { let _ = std::fs::create_dir_all(database_path); - sc_sysinfo::gather_hwbench(Some(database_path), &SUBSTRATE_REFERENCE_HARDWARE) + pezsc_sysinfo::gather_hwbench(Some(database_path), &SUBSTRATE_REFERENCE_HARDWARE) })) .flatten(); @@ -308,7 +308,7 @@ impl CliConfiguration for RelayChainCli { Ok(self.shared_params().base_path()?.or_else(|| self.base_path.clone().map(Into::into))) } - fn rpc_addr(&self, default_listen_port: u16) -> sc_cli::Result>> { + fn rpc_addr(&self, default_listen_port: u16) -> pezsc_cli::Result>> { self.base.base.rpc_addr(default_listen_port) } @@ -322,7 +322,7 @@ impl CliConfiguration for RelayChainCli { fn init(&self, _support_url: &String, _impl_version: &String, _logger_hook: F) -> Result<()> where - F: FnOnce(&mut sc_cli::LoggerBuilder), + F: FnOnce(&mut pezsc_cli::LoggerBuilder), { unreachable!("PezkuwiCli is never initialized; qed"); } @@ -333,11 +333,11 @@ impl CliConfiguration for RelayChainCli { Ok(if chain_id.is_empty() { self.chain_id.clone().unwrap_or_default() } else { chain_id }) } - fn role(&self, is_dev: bool) -> Result { + fn role(&self, is_dev: bool) -> Result { self.base.base.role(is_dev) } - fn transaction_pool(&self, is_dev: bool) -> Result { + fn transaction_pool(&self, is_dev: bool) -> Result { self.base.base.transaction_pool(is_dev) } @@ -345,7 +345,7 @@ impl CliConfiguration for RelayChainCli { self.base.base.trie_cache_maximum_size() } - fn rpc_methods(&self) -> Result { + fn rpc_methods(&self) -> Result { self.base.base.rpc_methods() } @@ -380,7 +380,7 @@ impl CliConfiguration for RelayChainCli { fn telemetry_endpoints( &self, chain_spec: &Box, - ) -> Result> { + ) -> Result> { self.base.base.telemetry_endpoints(chain_spec) } @@ -394,7 +394,7 @@ impl CliConfiguration for ExtendedBuildSpecCmd { self.cmd.shared_params() } - fn node_key_params(&self) -> Option<&sc_cli::NodeKeyParams> { + fn node_key_params(&self) -> Option<&pezsc_cli::NodeKeyParams> { self.cmd.node_key_params() } } diff --git a/evm-template/node/src/contracts/defaults.rs b/evm-template/node/src/contracts/defaults.rs index ac9e477..7c9e4a1 100644 --- a/evm-template/node/src/contracts/defaults.rs +++ b/evm-template/node/src/contracts/defaults.rs @@ -1,7 +1,7 @@ use std::str::FromStr; use hex_literal::hex; -use sp_core::H160; +use pezsp_core::H160; use super::{hardhat::HardhatContract, Contract}; diff --git a/evm-template/node/src/contracts/mod.rs b/evm-template/node/src/contracts/mod.rs index a686cc5..c7dab4b 100644 --- a/evm-template/node/src/contracts/mod.rs +++ b/evm-template/node/src/contracts/mod.rs @@ -6,7 +6,7 @@ use std::{ }; use serde::{de, Deserialize}; -use sp_core::H160; +use pezsp_core::H160; use self::{ defaults::{entrypoint_address, entrypoint_contract}, diff --git a/evm-template/node/src/eth.rs b/evm-template/node/src/eth.rs index 25fdd3b..b7ffeed 100644 --- a/evm-template/node/src/eth.rs +++ b/evm-template/node/src/eth.rs @@ -12,17 +12,17 @@ pub use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; pub use fc_storage::{StorageOverride, StorageOverrideHandler}; use futures::{future, prelude::*}; // Bizinikiwi -use sc_client_api::BlockchainEvents; -use sc_executor::{HostFunctions, WasmExecutor}; -use sc_network_sync::SyncingService; -use sc_service::{error::Error as ServiceError, Configuration, TaskManager}; -use sp_api::ConstructRuntimeApi; +use pezsc_client_api::BlockchainEvents; +use pezsc_executor::{HostFunctions, WasmExecutor}; +use pezsc_network_sync::SyncingService; +use pezsc_service::{error::Error as ServiceError, Configuration, TaskManager}; +use pezsp_api::ConstructRuntimeApi; /// Full backend. -pub type FullBackend = sc_service::TFullBackend; +pub type FullBackend = pezsc_service::TFullBackend; /// Full client. pub type FullClient = - sc_service::TFullClient>; + pezsc_service::TFullClient>; /// Frontier DB backend type. pub type FrontierBackend = fc_db::Backend; @@ -112,14 +112,14 @@ pub fn new_frontier_partial( /// A set of APIs that ethereum-compatible runtimes must implement. pub trait EthCompatRuntimeApiCollection: - sp_api::ApiExt + pezsp_api::ApiExt + fp_rpc::ConvertTransactionRuntimeApi + fp_rpc::EthereumRuntimeRPCApi { } impl EthCompatRuntimeApiCollection for Api where - Api: sp_api::ApiExt + Api: pezsp_api::ApiExt + fp_rpc::ConvertTransactionRuntimeApi + fp_rpc::EthereumRuntimeRPCApi { diff --git a/evm-template/node/src/main.rs b/evm-template/node/src/main.rs index eec7e53..f895eff 100644 --- a/evm-template/node/src/main.rs +++ b/evm-template/node/src/main.rs @@ -13,6 +13,6 @@ mod eth; #[cfg_attr(feature = "tanssi", path = "tanssi_rpc/mod.rs")] mod rpc; -fn main() -> sc_cli::Result<()> { +fn main() -> pezsc_cli::Result<()> { command::run() } diff --git a/evm-template/node/src/rpc/eth.rs b/evm-template/node/src/rpc/eth.rs index 313cfb5..10551cc 100644 --- a/evm-template/node/src/rpc/eth.rs +++ b/evm-template/node/src/rpc/eth.rs @@ -7,22 +7,22 @@ pub use fc_storage::StorageOverride; use fp_rpc::{ConvertTransaction, ConvertTransactionRuntimeApi, EthereumRuntimeRPCApi}; use jsonrpsee::RpcModule; // Bizinikiwi -use sc_client_api::{ +use pezsc_client_api::{ backend::{Backend, StorageProvider}, client::BlockchainEvents, AuxStore, UsageProvider, }; -use sc_network::service::traits::NetworkService; -use sc_network_sync::SyncingService; -use sc_rpc::SubscriptionTaskExecutor; -use sc_transaction_pool_api::TransactionPool; -use sp_api::{CallApiAt, ProvideRuntimeApi}; -use sp_block_builder::BlockBuilder as BlockBuilderApi; -use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; -use sp_consensus_aura::{sr25519::AuthorityId as AuraId, AuraApi}; -use sp_core::H256; -use sp_inherents::CreateInherentDataProviders; -use sp_runtime::traits::Block as BlockT; +use pezsc_network::service::traits::NetworkService; +use pezsc_network_sync::SyncingService; +use pezsc_rpc::SubscriptionTaskExecutor; +use pezsc_transaction_pool_api::TransactionPool; +use pezsp_api::{CallApiAt, ProvideRuntimeApi}; +use pezsp_block_builder::BlockBuilder as BlockBuilderApi; +use pezsp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; +use pezsp_consensus_aura::{sr25519::AuthorityId as AuraId, AuraApi}; +use pezsp_core::H256; +use pezsp_inherents::CreateInherentDataProviders; +use pezsp_runtime::traits::Block as BlockT; /// Extra dependencies for Ethereum compatibility. pub struct EthDeps { diff --git a/evm-template/node/src/rpc/mod.rs b/evm-template/node/src/rpc/mod.rs index d77184d..52e62c6 100644 --- a/evm-template/node/src/rpc/mod.rs +++ b/evm-template/node/src/rpc/mod.rs @@ -1,5 +1,5 @@ //! A collection of node-specific RPC methods. -//! Bizinikiwi provides the `sc-rpc` crate, which defines the core RPC layer +//! Bizinikiwi provides the `pezsc-rpc` crate, which defines the core RPC layer //! used by Bizinikiwi nodes. This file extends those RPC definitions with //! capabilities that are specific to this project's runtime configuration. @@ -8,15 +8,15 @@ mod eth; use std::sync::Arc; use evm_runtime_template::{opaque::Block, AccountId, Balance, Nonce}; -use sc_client_api::{backend::Backend, AuxStore, BlockchainEvents, StorageProvider, UsageProvider}; -use sc_rpc::SubscriptionTaskExecutor; -use sc_transaction_pool_api::TransactionPool; -use sp_api::{CallApiAt, ProvideRuntimeApi}; -use sp_block_builder::BlockBuilder; -use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; -use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_inherents::CreateInherentDataProviders; -use sp_runtime::traits::Block as BlockT; +use pezsc_client_api::{backend::Backend, AuxStore, BlockchainEvents, StorageProvider, UsageProvider}; +use pezsc_rpc::SubscriptionTaskExecutor; +use pezsc_transaction_pool_api::TransactionPool; +use pezsp_api::{CallApiAt, ProvideRuntimeApi}; +use pezsp_block_builder::BlockBuilder; +use pezsp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; +use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; +use pezsp_inherents::CreateInherentDataProviders; +use pezsp_runtime::traits::Block as BlockT; pub use self::eth::EthDeps; use crate::rpc::eth::create_eth; @@ -70,11 +70,11 @@ where + 'static, C::Api: pezpallet_transaction_payment_rpc::TransactionPaymentRuntimeApi, C::Api: bizinikiwi_pezframe_rpc_system::AccountNonceApi, - C::Api: sp_consensus_aura::AuraApi, + C::Api: pezsp_consensus_aura::AuraApi, C::Api: BlockBuilder, C::Api: fp_rpc::ConvertTransactionRuntimeApi, C::Api: fp_rpc::EthereumRuntimeRPCApi, - P: TransactionPool + Sync + Send + 'static, + P: TransactionPool + Sync + Send + 'static, CIDP: CreateInherentDataProviders + Send + 'static, CT: fp_rpc::ConvertTransaction<::Extrinsic> + Send + Sync + 'static, BE: Backend + 'static, diff --git a/evm-template/node/src/service.rs b/evm-template/node/src/service.rs index 35da448..b124e90 100644 --- a/evm-template/node/src/service.rs +++ b/evm-template/node/src/service.rs @@ -4,44 +4,44 @@ // std use std::{path::Path, sync::Arc, time::Duration}; -use cumulus_client_cli::CollatorOptions; -// Cumulus Imports +use pezcumulus_client_cli::CollatorOptions; +// Pezcumulus Imports #[cfg(not(feature = "tanssi"))] -use cumulus_client_collator::service::CollatorService; -use cumulus_client_consensus_common::TeyrChainBlockImport as TTeyrChainBlockImport; +use pezcumulus_client_collator::service::CollatorService; +use pezcumulus_client_consensus_common::TeyrChainBlockImport as TTeyrChainBlockImport; #[cfg(not(feature = "tanssi"))] -use cumulus_client_consensus_proposer::Proposer; -use cumulus_client_service::{ +use pezcumulus_client_consensus_proposer::Proposer; +use pezcumulus_client_service::{ build_network, build_relay_chain_interface, prepare_node_config, start_relay_chain_tasks, BuildNetworkParams, CollatorSybilResistance, DARecoveryProfile, StartRelayChainTasksParams, }; #[cfg(not(feature = "tanssi"))] -use cumulus_primitives_core::relay_chain::CollatorPair; +use pezcumulus_primitives_core::relay_chain::CollatorPair; #[cfg(feature = "async-backing")] -use cumulus_primitives_core::relay_chain::ValidationCode; -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::relay_chain::ValidationCode; +use pezcumulus_primitives_core::ParaId; #[cfg(not(feature = "tanssi"))] -use cumulus_relay_chain_interface::OverseerHandle; -use cumulus_relay_chain_interface::RelayChainInterface; +use pezcumulus_relay_chain_interface::OverseerHandle; +use pezcumulus_relay_chain_interface::RelayChainInterface; #[cfg(not(feature = "tanssi"))] use evm_runtime_template::opaque::Hash; // Local Runtime Types use evm_runtime_template::{configs::TransactionConverter, opaque::Block, RuntimeApi}; // Bizinikiwi Imports use pezframe_benchmarking_cli::SUBSTRATE_REFERENCE_HARDWARE; -use sc_client_api::Backend; -use sc_consensus::ImportQueue; -use sc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; -use sc_network::{config::FullNetworkConfiguration, NetworkBlock}; -use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; +use pezsc_client_api::Backend; +use pezsc_consensus::ImportQueue; +use pezsc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; +use pezsc_network::{config::FullNetworkConfiguration, NetworkBlock}; +use pezsc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; #[cfg(not(feature = "tanssi"))] -use sc_telemetry::TelemetryHandle; -use sc_telemetry::{Telemetry, TelemetryWorker, TelemetryWorkerHandle}; -use sc_transaction_pool_api::OffchainTransactionPoolFactory; +use pezsc_telemetry::TelemetryHandle; +use pezsc_telemetry::{Telemetry, TelemetryWorker, TelemetryWorkerHandle}; +use pezsc_transaction_pool_api::OffchainTransactionPoolFactory; #[cfg(not(feature = "tanssi"))] -use sp_core::U256; +use pezsp_core::U256; #[cfg(not(feature = "tanssi"))] -use sp_keystore::KeystorePtr; +use pezsp_keystore::KeystorePtr; #[cfg(not(feature = "tanssi"))] use bizinikiwi_prometheus_endpoint::Registry; @@ -52,12 +52,12 @@ use crate::eth::{ #[cfg(not(feature = "runtime-benchmarks"))] pub type HostFunctions = - (sp_io::BizinikiwiHostFunctions, cumulus_client_service::storage_proof_size::HostFunctions); + (pezsp_io::BizinikiwiHostFunctions, pezcumulus_client_service::storage_proof_size::HostFunctions); #[cfg(feature = "runtime-benchmarks")] pub type HostFunctions = ( - sp_io::BizinikiwiHostFunctions, - cumulus_client_service::storage_proof_size::HostFunctions, + pezsp_io::BizinikiwiHostFunctions, + pezcumulus_client_service::storage_proof_size::HostFunctions, pezframe_benchmarking::benchmarking::HostFunctions, ); @@ -74,8 +74,8 @@ pub type Service = PartialComponents< TeyrChainClient, TeyrChainBackend, (), - sc_consensus::DefaultImportQueue, - sc_transaction_pool::TransactionPoolHandle, + pezsc_consensus::DefaultImportQueue, + pezsc_transaction_pool::TransactionPoolHandle, ( TeyrChainBlockImport, Option, @@ -92,12 +92,12 @@ pub type Service = PartialComponents< pub fn new_partial( config: &Configuration, eth_config: &EthConfiguration, -) -> Result { +) -> Result { let telemetry = config .telemetry_endpoints .clone() .filter(|x| !x.is_empty()) - .map(|endpoints| -> Result<_, sc_telemetry::Error> { + .map(|endpoints| -> Result<_, pezsc_telemetry::Error> { let worker = TelemetryWorker::new(16)?; let telemetry = worker.handle().new_telemetry(endpoints); Ok((worker, telemetry)) @@ -118,7 +118,7 @@ pub fn new_partial( .build(); let (client, backend, keystore_container, task_manager) = - sc_service::new_full_parts_record_import::( + pezsc_service::new_full_parts_record_import::( config, telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()), executor, @@ -134,7 +134,7 @@ pub fn new_partial( }); let transaction_pool = Arc::from( - sc_transaction_pool::Builder::new( + pezsc_transaction_pool::Builder::new( task_manager.spawn_essential_handle(), client.clone(), config.role.is_authority().into(), @@ -214,7 +214,7 @@ pub fn import_queue( client: Arc, backend: Arc, task_manager: &TaskManager, -) -> (TeyrChainBlockImport, sc_consensus::BasicQueue) { +) -> (TeyrChainBlockImport, pezsc_consensus::BasicQueue) { // The nimbus import queue ONLY checks the signature correctness // Any other checks corresponding to the author-correctness should be done // in the runtime @@ -224,7 +224,7 @@ pub fn import_queue( client, block_import.clone(), move |_, _| async move { - let time = sp_timestamp::InherentDataProvider::from_system_time(); + let time = pezsp_timestamp::InherentDataProvider::from_system_time(); Ok((time,)) }, @@ -242,15 +242,15 @@ pub fn import_queue( /// /// This is the actual implementation that is abstract over the executor and the /// runtime api. -#[sc_tracing::logging::prefix_logs_with("TeyrChain")] +#[pezsc_tracing::logging::prefix_logs_with("TeyrChain")] async fn start_node_impl( teyrchain_config: Configuration, pezkuwi_config: Configuration, collator_options: CollatorOptions, eth_config: &EthConfiguration, para_id: ParaId, - hwbench: Option, -) -> sc_service::error::Result<(TaskManager, Arc)> { + hwbench: Option, +) -> pezsc_service::error::Result<(TaskManager, Arc)> { let teyrchain_config = prepare_node_config(teyrchain_config); let params = new_partial(&teyrchain_config, eth_config)?; @@ -265,7 +265,7 @@ async fn start_node_impl( let (_, mut telemetry, telemetry_worker_handle, frontier_backend, overrides) = params.other; let frontier_backend = Arc::new(frontier_backend); - let net_config = FullNetworkConfiguration::<_, _, sc_network::NetworkWorker>::new( + let net_config = FullNetworkConfiguration::<_, _, pezsc_network::NetworkWorker>::new( &teyrchain_config.network, teyrchain_config.prometheus_config.as_ref().map(|cfg| cfg.registry.clone()), ); @@ -283,7 +283,7 @@ async fn start_node_impl( hwbench.clone(), ) .await - .map_err(|e| sc_service::Error::Application(Box::new(e) as Box<_>))?; + .map_err(|e| pezsc_service::Error::Application(Box::new(e) as Box<_>))?; #[cfg(not(feature = "tanssi"))] let (relay_chain_interface, collator_key) = relay_chain_interface; @@ -295,7 +295,7 @@ async fn start_node_impl( let transaction_pool = params.transaction_pool.clone(); let import_queue_service = params.import_queue.service(); #[cfg(not(feature = "tanssi"))] - let slot_duration = sc_consensus_aura::slot_duration(&*client)?; + let slot_duration = pezsc_consensus_aura::slot_duration(&*client)?; let (network, system_rpc_tx, tx_handler_controller, sync_service) = build_network(BuildNetworkParams { @@ -317,7 +317,7 @@ async fn start_node_impl( task_manager.spawn_handle().spawn( "offchain-workers-runner", "offchain-work", - sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { + pezsc_offchain::OffchainWorkers::new(pezsc_offchain::OffchainWorkerOptions { runtime_api_provider: client.clone(), keystore: Some(params.keystore_container.keystore()), offchain_db: backend.offchain_storage(), @@ -347,10 +347,10 @@ async fn start_node_impl( let enable_dev_signer = eth_config.enable_dev_signer; #[cfg(not(feature = "tanssi"))] let pending_create_inherent_data_providers = move |_, ()| async move { - let current = sp_timestamp::InherentDataProvider::from_system_time(); + let current = pezsp_timestamp::InherentDataProvider::from_system_time(); let next_slot = current.timestamp().as_millis() + slot_duration.as_millis(); - let timestamp = sp_timestamp::InherentDataProvider::new(next_slot.into()); - let slot = sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( + let timestamp = pezsp_timestamp::InherentDataProvider::new(next_slot.into()); + let slot = pezsp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( *timestamp, slot_duration, ); @@ -409,7 +409,7 @@ async fn start_node_impl( }) }; - sc_service::spawn_tasks(sc_service::SpawnTasksParams { + pezsc_service::spawn_tasks(pezsc_service::SpawnTasksParams { rpc_builder, client: client.clone(), transaction_pool: transaction_pool.clone(), @@ -425,7 +425,7 @@ async fn start_node_impl( })?; if let Some(hwbench) = hwbench { - sc_sysinfo::print_hwbench(&hwbench); + pezsc_sysinfo::print_hwbench(&hwbench); // Here you can check whether the hardware meets your chains' requirements. // Putting a link in there and swapping out the requirements for your // own are probably a good idea. The requirements for a para-chain are @@ -446,7 +446,7 @@ async fn start_node_impl( task_manager.spawn_handle().spawn( "telemetry_hwbench", None, - sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + pezsc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), ); } } @@ -460,7 +460,7 @@ async fn start_node_impl( let overseer_handle = relay_chain_interface .overseer_handle() - .map_err(|e| sc_service::Error::Application(Box::new(e)))?; + .map_err(|e| pezsc_service::Error::Application(Box::new(e)))?; start_relay_chain_tasks(StartRelayChainTasksParams { client: client.clone(), @@ -525,9 +525,9 @@ fn build_import_queue( config: &Configuration, telemetry: Option, task_manager: &TaskManager, -) -> Result, sc_service::Error> { - Ok(cumulus_client_consensus_aura::equivocation_import_queue::fully_verifying_import_queue::< - sp_consensus_aura::sr25519::AuthorityPair, +) -> Result, pezsc_service::Error> { + Ok(pezcumulus_client_consensus_aura::equivocation_import_queue::fully_verifying_import_queue::< + pezsp_consensus_aura::sr25519::AuthorityPair, _, _, _, @@ -536,7 +536,7 @@ fn build_import_queue( client, block_import, move |_, _| async move { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + let timestamp = pezsp_timestamp::InherentDataProvider::from_system_time(); Ok(timestamp) }, &task_manager.spawn_essential_handle(), @@ -554,20 +554,20 @@ fn start_consensus( telemetry: Option, task_manager: &TaskManager, relay_chain_interface: Arc, - transaction_pool: Arc>, + transaction_pool: Arc>, keystore: KeystorePtr, relay_chain_slot_duration: Duration, para_id: ParaId, collator_key: CollatorPair, overseer_handle: OverseerHandle, announce_block: Arc>) + Send + Sync>, -) -> Result<(), sc_service::Error> { +) -> Result<(), pezsc_service::Error> { #[cfg(not(feature = "async-backing"))] - use cumulus_client_consensus_aura::collators::basic::{self as basic_aura, Params}; + use pezcumulus_client_consensus_aura::collators::basic::{self as basic_aura, Params}; #[cfg(feature = "async-backing")] - use cumulus_client_consensus_aura::collators::lookahead::{self as aura, Params}; + use pezcumulus_client_consensus_aura::collators::lookahead::{self as aura, Params}; - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + let proposer_factory = pezsc_basic_authorship::ProposerFactory::with_proof_recording( task_manager.spawn_handle(), client.clone(), transaction_pool, @@ -619,11 +619,11 @@ fn start_consensus( }; #[cfg(not(feature = "async-backing"))] - let fut = basic_aura::run::( + let fut = basic_aura::run::( params, ); #[cfg(feature = "async-backing")] - let fut = aura::run::( + let fut = aura::run::( params, ); task_manager.spawn_essential_handle().spawn("aura", None, fut); @@ -638,8 +638,8 @@ pub async fn start_teyrchain_node( collator_options: CollatorOptions, eth_config: &EthConfiguration, para_id: ParaId, - hwbench: Option, -) -> sc_service::error::Result<(TaskManager, Arc)> { + hwbench: Option, +) -> pezsc_service::error::Result<(TaskManager, Arc)> { start_node_impl( teyrchain_config, pezkuwi_config, diff --git a/evm-template/node/src/tanssi_rpc/eth.rs b/evm-template/node/src/tanssi_rpc/eth.rs index b3dc19c..988e2f8 100644 --- a/evm-template/node/src/tanssi_rpc/eth.rs +++ b/evm-template/node/src/tanssi_rpc/eth.rs @@ -1,8 +1,8 @@ use std::{collections::BTreeMap, sync::Arc}; -use cumulus_client_teyrchain_inherent::TeyrChainInherentData; -use cumulus_primitives_core::PersistedValidationData; -use cumulus_test_relay_sproof_builder::RelayStateSproofBuilder; +use pezcumulus_client_teyrchain_inherent::TeyrChainInherentData; +use pezcumulus_primitives_core::PersistedValidationData; +use pezcumulus_test_relay_sproof_builder::RelayStateSproofBuilder; // Frontier pub use fc_rpc::{EthBlockDataCacheTask, EthConfig}; pub use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; @@ -10,21 +10,21 @@ pub use fc_storage::StorageOverride; use fp_rpc::{ConvertTransaction, ConvertTransactionRuntimeApi, EthereumRuntimeRPCApi}; use jsonrpsee::RpcModule; // Bizinikiwi -use sc_client_api::{ +use pezsc_client_api::{ backend::{Backend, StorageProvider}, client::BlockchainEvents, AuxStore, UsageProvider, }; -use sc_network::service::traits::NetworkService; -use sc_network_sync::SyncingService; -use sc_rpc::SubscriptionTaskExecutor; -use sc_transaction_pool::{ChainApi, Pool}; -use sc_transaction_pool_api::TransactionPool; -use sp_api::{CallApiAt, ProvideRuntimeApi}; -use sp_block_builder::BlockBuilder as BlockBuilderApi; -use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; -use sp_core::H256; -use sp_runtime::traits::Block as BlockT; +use pezsc_network::service::traits::NetworkService; +use pezsc_network_sync::SyncingService; +use pezsc_rpc::SubscriptionTaskExecutor; +use pezsc_transaction_pool::{ChainApi, Pool}; +use pezsc_transaction_pool_api::TransactionPool; +use pezsp_api::{CallApiAt, ProvideRuntimeApi}; +use pezsp_block_builder::BlockBuilder as BlockBuilderApi; +use pezsp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; +use pezsp_core::H256; +use pezsp_runtime::traits::Block as BlockT; /// Extra dependencies for Ethereum compatibility. pub struct EthDeps { @@ -133,7 +133,7 @@ where authorities: authorities_for_cidp, }; - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + let timestamp = pezsp_timestamp::InherentDataProvider::from_system_time(); // Create a dummy teyrchain inherent data provider which is required to pass // the checks by the para chain system. We use dummy values because in the 'pending context' // neither do we have access to the real values nor do we need them. @@ -143,7 +143,7 @@ where } .into_state_root_and_proof(); let vfp = PersistedValidationData { - // This is a hack to make `cumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases` + // This is a hack to make `pezcumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases` // happy. Relay parent number can't be bigger than u32::MAX. relay_parent_number: u32::MAX, relay_parent_storage_root, @@ -182,7 +182,7 @@ where forced_parent_hashes, pending_create_inherent_data_providers, Some(Box::new(tc_consensus::ContainerManualSealAuraConsensusDataProvider::new( - sp_consensus_aura::SlotDuration::from_millis( + pezsp_consensus_aura::SlotDuration::from_millis( evm_runtime_template::constants::SLOT_DURATION, ), authorities_for_cdp.clone(), diff --git a/evm-template/node/src/tanssi_rpc/mod.rs b/evm-template/node/src/tanssi_rpc/mod.rs index 3771629..27183cf 100644 --- a/evm-template/node/src/tanssi_rpc/mod.rs +++ b/evm-template/node/src/tanssi_rpc/mod.rs @@ -1,5 +1,5 @@ //! A collection of node-specific RPC methods. -//! Bizinikiwi provides the `sc-rpc` crate, which defines the core RPC layer +//! Bizinikiwi provides the `pezsc-rpc` crate, which defines the core RPC layer //! used by Bizinikiwi nodes. This file extends those RPC definitions with //! capabilities that are specific to this project's runtime configuration. @@ -8,15 +8,15 @@ mod eth; use std::sync::Arc; use evm_runtime_template::{opaque::Block, AccountId, Balance, Nonce}; -use sc_client_api::{backend::Backend, AuxStore, BlockchainEvents, StorageProvider, UsageProvider}; -pub use sc_rpc::DenyUnsafe; -use sc_rpc::SubscriptionTaskExecutor; -use sc_transaction_pool::ChainApi; -use sc_transaction_pool_api::TransactionPool; -use sp_api::{CallApiAt, ProvideRuntimeApi}; -use sp_block_builder::BlockBuilder; -use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; -use sp_runtime::traits::Block as BlockT; +use pezsc_client_api::{backend::Backend, AuxStore, BlockchainEvents, StorageProvider, UsageProvider}; +pub use pezsc_rpc::DenyUnsafe; +use pezsc_rpc::SubscriptionTaskExecutor; +use pezsc_transaction_pool::ChainApi; +use pezsc_transaction_pool_api::TransactionPool; +use pezsp_api::{CallApiAt, ProvideRuntimeApi}; +use pezsp_block_builder::BlockBuilder; +use pezsp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; +use pezsp_runtime::traits::Block as BlockT; pub use self::eth::EthDeps; use crate::rpc::eth::create_eth; diff --git a/evm-template/pezkuwi-launch/config.json b/evm-template/pezkuwi-launch/config.json index 9a1f1d5..852c74e 100644 --- a/evm-template/pezkuwi-launch/config.json +++ b/evm-template/pezkuwi-launch/config.json @@ -1,6 +1,6 @@ { "relaychain": { - "bin": "../../polkadot/target/release/polkadot", + "bin": "../../pezkuwi/target/release/pezkuwi", "chain": "paseo-local", "nodes": [ { @@ -15,9 +15,9 @@ } ] }, - "parachains": [ + "teyrchains": [ { - "bin": "../target/release/polkadot-parachain", + "bin": "../target/release/pezkuwi-teyrchain", "id": "200", "balance": "1000000000000000000000", "nodes": [ diff --git a/evm-template/runtime/Cargo.toml b/evm-template/runtime/Cargo.toml index facddd1..08f8db2 100644 --- a/evm-template/runtime/Cargo.toml +++ b/evm-template/runtime/Cargo.toml @@ -19,8 +19,8 @@ scale-info = { workspace = true, features = [ "derive" ] } serde_json = { workspace = true, default-features = false, features = [ "alloc" ] } smallvec = { workspace = true } -openzeppelin-pezpallet-abstractions = { workspace = true } -openzeppelin-pezpallet-abstractions-proc = { workspace = true } +openzeppelin-pallet-abstractions = { workspace = true } +openzeppelin-pallet-abstractions-proc = { workspace = true } # Bizinikiwi pezframe-benchmarking = { workspace = true, optional = true } @@ -52,20 +52,20 @@ pezpallet-transaction-payment-rpc-runtime-api = { workspace = true } pezpallet-treasury = { workspace = true } pezpallet-utility = { workspace = true } pezpallet-whitelist = { workspace = true } -sp-api = { workspace = true } -sp-arithmetic = { workspace = true } -sp-block-builder = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-core = { workspace = true } -sp-genesis-builder = { workspace = true } -sp-inherents = { workspace = true } -sp-keyring = { workspace = true } -sp-offchain = { workspace = true } -sp-runtime = { workspace = true } -sp-session = { workspace = true } -sp-std = { workspace = true } -sp-transaction-pool = { workspace = true } -sp-version = { workspace = true } +pezsp-api = { workspace = true } +pezsp-arithmetic = { workspace = true } +pezsp-block-builder = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-core = { workspace = true } +pezsp-genesis-builder = { workspace = true } +pezsp-inherents = { workspace = true } +pezsp-keyring = { workspace = true } +pezsp-offchain = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-session = { workspace = true } +pezsp-std = { workspace = true } +pezsp-transaction-pool = { workspace = true } +pezsp-version = { workspace = true } # Pezkuwi pezpallet-xcm = { workspace = true } @@ -75,18 +75,18 @@ staging-xcm = { workspace = true } staging-xcm-builder = { workspace = true } staging-xcm-executor = { workspace = true } -# Cumulus +# Pezpezcumulus assets-common = { workspace = true } -cumulus-pezpallet-aura-ext = { workspace = true } -cumulus-pezpallet-teyrchain-system = { workspace = true } -cumulus-pezpallet-session-benchmarking = { workspace = true } -cumulus-pezpallet-weight-reclaim = { workspace = true } -cumulus-pezpallet-xcm = { workspace = true } -cumulus-pezpallet-xcmp-queue = { workspace = true } -cumulus-primitives-aura = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-timestamp = { workspace = true } -cumulus-primitives-utility = { workspace = true } +pezcumulus-pezpallet-aura-ext = { workspace = true } +pezcumulus-pezpallet-teyrchain-system = { workspace = true } +pezcumulus-pezpallet-session-benchmarking = { workspace = true } +pezcumulus-pezpallet-weight-reclaim = { workspace = true } +pezcumulus-pezpallet-xcm = { workspace = true } +pezcumulus-pezpallet-xcmp-queue = { workspace = true } +pezcumulus-primitives-aura = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-timestamp = { workspace = true } +pezcumulus-primitives-utility = { workspace = true } pezpallet-collator-selection = { workspace = true } teyrchain-info = { workspace = true } teyrchains-common = { workspace = true } @@ -127,8 +127,8 @@ pezpallet-cc-authorities-noting = { workspace = true } [dev-dependencies] ethereum = { workspace = true } pezkuwi-runtime-teyrchains = { workspace = true } -sp-io = { workspace = true } -sp-tracing = { workspace = true } +pezsp-io = { workspace = true } +pezsp-tracing = { workspace = true } xcm-pez-simulator = { workspace = true } [build-dependencies] @@ -138,15 +138,15 @@ bizinikiwi-wasm-builder = { workspace = true } default = [ "std" ] std = [ "assets-common/std", - "cumulus-pezpallet-aura-ext/std", - "cumulus-pezpallet-teyrchain-system/std", - "cumulus-pezpallet-session-benchmarking/std", - "cumulus-pezpallet-weight-reclaim/std", - "cumulus-pezpallet-xcm/std", - "cumulus-pezpallet-xcmp-queue/std", - "cumulus-primitives-aura/std", - "cumulus-primitives-core/std", - "cumulus-primitives-utility/std", + "pezcumulus-pezpallet-aura-ext/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-pezpallet-session-benchmarking/std", + "pezcumulus-pezpallet-weight-reclaim/std", + "pezcumulus-pezpallet-xcm/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezcumulus-primitives-aura/std", + "pezcumulus-primitives-core/std", + "pezcumulus-primitives-utility/std", "dp-consensus/std", "fp-account/std", "fp-account/std", @@ -163,7 +163,7 @@ std = [ "pezframe-try-runtime?/std", "log/std", "nimbus-primitives/std", - "openzeppelin-pezpallet-abstractions/std", + "openzeppelin-pallet-abstractions/std", "orml-oracle-runtime-api/std", "orml-oracle/std", "orml-xtokens/std", @@ -207,33 +207,33 @@ std = [ "pezkuwi-runtime-common/std", "scale-info/std", "serde_json/std", - "sp-api/std", - "sp-arithmetic/std", - "sp-block-builder/std", - "sp-consensus-aura/std", - "sp-core/std", - "sp-genesis-builder/std", - "sp-inherents/std", - "sp-keyring/std", - "sp-offchain/std", - "sp-runtime/std", - "sp-session/std", - "sp-std/std", - "sp-transaction-pool/std", - "sp-version/std", + "pezsp-api/std", + "pezsp-arithmetic/std", + "pezsp-block-builder/std", + "pezsp-consensus-aura/std", + "pezsp-core/std", + "pezsp-genesis-builder/std", + "pezsp-inherents/std", + "pezsp-keyring/std", + "pezsp-offchain/std", + "pezsp-runtime/std", + "pezsp-session/std", + "pezsp-std/std", + "pezsp-transaction-pool/std", + "pezsp-version/std", "staging-xcm-builder/std", "staging-xcm-executor/std", "xcm-primitives/std", "staging-xcm/std", ] -async-backing = [ "openzeppelin-pezpallet-abstractions-proc/async-backing" ] +async-backing = [ "openzeppelin-pallet-abstractions-proc/async-backing" ] metadata-hash = [ "bizinikiwi-wasm-builder/metadata-hash" ] runtime-benchmarks = [ "assets-common/runtime-benchmarks", - "cumulus-pezpallet-teyrchain-system/runtime-benchmarks", - "cumulus-pezpallet-session-benchmarking/runtime-benchmarks", - "cumulus-pezpallet-xcmp-queue/runtime-benchmarks", - "cumulus-primitives-utility/runtime-benchmarks", + "pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks", + "pezcumulus-pezpallet-session-benchmarking/runtime-benchmarks", + "pezcumulus-pezpallet-xcmp-queue/runtime-benchmarks", + "pezcumulus-primitives-utility/runtime-benchmarks", "dp-consensus/runtime-benchmarks", "pezframe-benchmarking/runtime-benchmarks", "pezframe-support/runtime-benchmarks", @@ -269,16 +269,16 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezkuwi-runtime-common/runtime-benchmarks", - "sp-runtime/runtime-benchmarks", + "pezsp-runtime/runtime-benchmarks", "staging-xcm-builder/runtime-benchmarks", "staging-xcm-executor/runtime-benchmarks", ] try-runtime = [ - "cumulus-pezpallet-aura-ext/try-runtime", - "cumulus-pezpallet-teyrchain-system/try-runtime", - "cumulus-pezpallet-xcm/try-runtime", - "cumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcm/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", "fp-self-contained/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", @@ -321,7 +321,7 @@ try-runtime = [ "pezpallet-xcm/try-runtime", "teyrchain-info/try-runtime", "pezkuwi-runtime-common/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] tanssi = [] @@ -329,4 +329,4 @@ tanssi = [] # A feature that should be enabled when the runtime should be built for on-chain # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. -on-chain-release-build = [ "sp-api/disable-logging" ] +on-chain-release-build = [ "pezsp-api/disable-logging" ] diff --git a/evm-template/runtime/src/benchmark.rs b/evm-template/runtime/src/benchmark.rs index eebffc7..c54bebd 100644 --- a/evm-template/runtime/src/benchmark.rs +++ b/evm-template/runtime/src/benchmark.rs @@ -7,11 +7,11 @@ pezframe_benchmarking::define_benchmarks!( [pezpallet_message_queue, MessageQueue] [pezpallet_sudo, Sudo] [pezpallet_collator_selection, CollatorSelection] - [cumulus_pezpallet_xcmp_queue, XcmpQueue] + [pezcumulus_pezpallet_xcmp_queue, XcmpQueue] [pezpallet_scheduler, Scheduler] [pezpallet_preimage, Preimage] [pezpallet_proxy, Proxy] - [cumulus_pezpallet_teyrchain_system, TeyrChainSystem] + [pezcumulus_pezpallet_teyrchain_system, TeyrChainSystem] [pezpallet_multisig, Multisig] [pezpallet_utility, Utility] [pezpallet_treasury, Treasury] @@ -25,12 +25,12 @@ pezframe_benchmarking::define_benchmarks!( [pezpallet_xcm_weight_trader, XcmWeightTrader] ); -use cumulus_primitives_core::{ChannelStatus, GetChannelInfo}; +use pezcumulus_primitives_core::{ChannelStatus, GetChannelInfo}; use pezframe_support::traits::{ tokens::{Pay, PaymentStatus}, Get, }; -use sp_std::marker::PhantomData; +use pezsp_std::marker::PhantomData; use crate::TeyrChainSystem; diff --git a/evm-template/runtime/src/configs/asset_config.rs b/evm-template/runtime/src/configs/asset_config.rs index 9b23060..63e647d 100644 --- a/evm-template/runtime/src/configs/asset_config.rs +++ b/evm-template/runtime/src/configs/asset_config.rs @@ -1,9 +1,9 @@ use pezframe_support::{dispatch::GetDispatchInfo, weights::Weight}; use parity_scale_codec::{Decode, DecodeWithMemTracking, Encode}; use scale_info::TypeInfo; -use sp_core::{H160, H256}; -use sp_runtime::traits::Hash as THash; -use sp_std::{ +use pezsp_core::{H160, H256}; +use pezsp_runtime::traits::Hash as THash; +use pezsp_std::{ convert::{From, Into}, prelude::*, }; @@ -86,7 +86,7 @@ impl From for AssetId { match asset { AssetType::Xcm(id) => { let mut result: [u8; 16] = [0u8; 16]; - let hash: H256 = id.using_encoded(::Hashing::hash); + let hash: H256 = id.using_encoded(::Hashing::hash); result.copy_from_slice(&hash.as_fixed_bytes()[0..16]); u128::from_le_bytes(result) } @@ -207,7 +207,7 @@ impl AccountIdAssetIdConversion for Runtime { mod tests { mod asset_registrar { use pezpallet_asset_manager::AssetRegistrar; - use sp_io::TestExternalities; + use pezsp_io::TestExternalities; use crate::{ configs::{AssetRegistrar as Registrar, AssetRegistrarMetadata}, diff --git a/evm-template/runtime/src/configs/governance/origins.rs b/evm-template/runtime/src/configs/governance/origins.rs index 5a89f4b..cb3898e 100644 --- a/evm-template/runtime/src/configs/governance/origins.rs +++ b/evm-template/runtime/src/configs/governance/origins.rs @@ -2,17 +2,18 @@ pub use pezpallet_custom_origins::*; -#[pezframe_support::pezpallet] +use pezsp_std::marker::PhantomData; +#[pezframe_support::pallet] pub mod pezpallet_custom_origins { - use pezframe_support::pezpallet_prelude::*; + use pezframe_support::pallet_prelude::*; use crate::configs::governance::{Balance, CENTS, GRAND}; - #[pezpallet::config] - pub trait Config: pezframe_system::Config {} + #[pallet::config] + pub trait Config: frame_system::Config {} - #[pezpallet::pezpallet] - pub struct Pezpallet(_); + #[pallet::pezpallet] + pub struct Pezpallet(PhantomData); #[derive( PartialEq, @@ -25,7 +26,7 @@ pub mod pezpallet_custom_origins { TypeInfo, RuntimeDebug, )] - #[pezpallet::origin] + #[pallet::origin] pub enum Origin { /// Origin for spending (any amount of) funds. Treasurer, diff --git a/evm-template/runtime/src/configs/governance/tracks.rs b/evm-template/runtime/src/configs/governance/tracks.rs index dba395f..107b795 100644 --- a/evm-template/runtime/src/configs/governance/tracks.rs +++ b/evm-template/runtime/src/configs/governance/tracks.rs @@ -3,13 +3,13 @@ use alloc::borrow::Cow; use pezpallet_referenda::Track; -use sp_runtime::str_array as s; +use pezsp_runtime::str_array as s; use super::*; use crate::constants::MINUTES; -const fn percent(x: i32) -> sp_arithmetic::FixedI64 { - sp_arithmetic::FixedI64::from_rational(x as u128, 100) +const fn percent(x: i32) -> pezsp_arithmetic::FixedI64 { + pezsp_arithmetic::FixedI64::from_rational(x as u128, 100) } use pezpallet_referenda::Curve; const APP_ROOT: Curve = Curve::make_reciprocal(4, 28, percent(80), percent(50), percent(100)); @@ -42,7 +42,7 @@ const SUP_WHITELISTED_CALLER: Curve = pub struct TracksInfo; impl pezpallet_referenda::TracksInfo for TracksInfo { type Id = u16; - type RuntimeOrigin = ::PalletsOrigin; + type RuntimeOrigin = ::PezpalletsOrigin; fn tracks() -> impl Iterator>> { static DATA: [Track; 10] = [ @@ -346,7 +346,7 @@ mod tests { >::track_for(&OriginCaller::CumulusXcm(cumulus_pezpallet_xcm::Origin::Relay)) + >>::track_for(&OriginCaller::PezcumulusXcm(pezcumulus_pezpallet_xcm::Origin::Relay)) .expect_err("incorrect config"); } } diff --git a/evm-template/runtime/src/configs/mod.rs b/evm-template/runtime/src/configs/mod.rs index 22ba1eb..fc65dad 100644 --- a/evm-template/runtime/src/configs/mod.rs +++ b/evm-template/runtime/src/configs/mod.rs @@ -5,12 +5,12 @@ pub mod xcm_config; use asset_config::*; #[cfg(feature = "tanssi")] -use cumulus_pezpallet_teyrchain_system::ExpectParentIncluded; +use pezcumulus_pezpallet_teyrchain_system::ExpectParentIncluded; #[cfg(feature = "async-backing")] -use cumulus_pezpallet_teyrchain_system::RelayNumberMonotonicallyIncreases; +use pezcumulus_pezpallet_teyrchain_system::RelayNumberMonotonicallyIncreases; #[cfg(not(feature = "async-backing"))] -use cumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases; -use cumulus_primitives_core::{AggregateMessageOrigin, ParaId}; +use pezcumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases; +use pezcumulus_primitives_core::{AggregateMessageOrigin, ParaId}; #[cfg(not(feature = "tanssi"))] use pezframe_support::PalletId; use pezframe_support::{ @@ -55,13 +55,13 @@ use teyrchains_common::{ use parity_scale_codec::{Decode, Encode}; use pezkuwi_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; #[cfg(not(feature = "tanssi"))] -use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_core::{H160, U256}; -use sp_runtime::{ +use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; +use pezsp_core::{H160, U256}; +use pezsp_runtime::{ traits::{BlakeTwo256, IdentityLookup}, ConsensusEngineId, Perbill, Permill, }; -use sp_std::marker::PhantomData; +use pezsp_std::marker::PhantomData; use xcm::latest::{prelude::*, InteriorLocation}; #[cfg(not(feature = "runtime-benchmarks"))] use xcm_builder::ProcessXcmMessage; @@ -141,7 +141,7 @@ impl GovernanceConfig for OpenZeppelinRuntime { type ReferendaSubmitOrigin = EnsureSigned; type ReferendaUndecidingTimeout = ConstU32<{ 14 * DAYS }>; type TreasuryInteriorLocation = TreasuryInteriorLocation; - type TreasuryPezpalletId = TreasuryPezpalletId; + type TreasuryPalletId = TreasuryPezpalletId; type TreasuryPayoutSpendPeriod = ConstU32<{ 30 * DAYS }>; type TreasuryRejectOrigin = EitherOfDiverse, Treasurer>; type TreasurySpendOrigin = TreasurySpender; @@ -168,7 +168,7 @@ impl XcmConfig for OpenZeppelinRuntime { type MessageQueueHeapSize = ConstU32<{ 64 * 1024 }>; type MessageQueueMaxStale = ConstU32<8>; type MessageQueueServiceWeight = MessageQueueServiceWeight; - type TeyrChainMinFee = TeyrChainMinFee; + type TeyrchainMinFee = TeyrChainMinFee; type PauseSupportedAssetOrigin = EnsureRoot; type RelayLocation = RelayLocation; type RemoveSupportedAssetOrigin = EnsureRoot; @@ -211,16 +211,16 @@ parameter_types! { } pub struct AssetsToBlockAuthor(PhantomData<(R, I)>); -impl HandleCredit, pezpallet_assets::Pallet> for AssetsToBlockAuthor +impl HandleCredit, pezpallet_assets::Pezpallet> for AssetsToBlockAuthor where I: 'static, R: pezpallet_authorship::Config + pezpallet_assets::Config, { - fn handle_credit(credit: Credit, pezpallet_assets::Pallet>) { + fn handle_credit(credit: Credit, pezpallet_assets::Pezpallet>) { use pezframe_support::traits::fungibles::Balanced; - if let Some(author) = pezpallet_authorship::Pallet::::author() { + if let Some(author) = pezpallet_authorship::Pezpallet::::author() { // In case of error: Will drop the result triggering the `OnDrop` of the imbalance. - let _ = pezpallet_assets::Pallet::::resolve(&author, credit); + let _ = pezpallet_assets::Pezpallet::::resolve(&author, credit); } } } @@ -317,7 +317,7 @@ mod tests { use pezframe_support::traits::fungibles::Balanced; use pezpallet_asset_tx_payment::HandleCredit; use parity_scale_codec::Encode; - use sp_runtime::{ + use pezsp_runtime::{ testing::{Digest, DigestItem}, ConsensusEngineId, }; @@ -379,8 +379,8 @@ mod tests { }); } - fn new_test_ext() -> sp_io::TestExternalities { - use sp_runtime::BuildStorage; + fn new_test_ext() -> pezsp_io::TestExternalities { + use pezsp_runtime::BuildStorage; pezframe_system::GenesisConfig::::default().build_storage().unwrap().into() } } @@ -389,7 +389,7 @@ mod tests { use ethereum::{LegacyTransaction, TransactionAction, TransactionSignature}; use fp_rpc::ConvertTransaction; - use sp_core::{H160, H256, U256}; + use pezsp_core::{H160, H256, U256}; use crate::{configs::TransactionConverter, RuntimeCall, UncheckedExtrinsic}; diff --git a/evm-template/runtime/src/configs/weight.rs b/evm-template/runtime/src/configs/weight.rs index 1332086..3782c6f 100644 --- a/evm-template/runtime/src/configs/weight.rs +++ b/evm-template/runtime/src/configs/weight.rs @@ -16,7 +16,7 @@ impl SystemWeight for OpenZeppelinRuntime { type Balances = weights::pezpallet_balances::WeightInfo; type DbWeight = RocksDbWeight; type Multisig = weights::pezpallet_multisig::WeightInfo; - type TeyrChainSystem = weights::cumulus_pezpallet_teyrchain_system::WeightInfo; + type ParachainSystem = weights::pezcumulus_pezpallet_teyrchain_system::WeightInfo; type Preimage = weights::pezpallet_preimage::WeightInfo; type Proxy = weights::pezpallet_proxy::WeightInfo; type Scheduler = weights::pezpallet_scheduler::WeightInfo; @@ -51,7 +51,7 @@ impl XcmWeight for OpenZeppelinRuntime { type Xcm = weights::pezpallet_xcm::WeightInfo; type XcmTransactor = weights::pezpallet_xcm_transactor::WeightInfo; type XcmWeightTrader = weights::pezpallet_xcm_weight_trader::WeightInfo; - type XcmpQueue = weights::cumulus_pezpallet_xcmp_queue::WeightInfo; + type XcmpQueue = weights::pezcumulus_pezpallet_xcmp_queue::WeightInfo; } impl EvmWeight for OpenZeppelinRuntime { diff --git a/evm-template/runtime/src/configs/xcm_config.rs b/evm-template/runtime/src/configs/xcm_config.rs index 11c8518..badecb8 100644 --- a/evm-template/runtime/src/configs/xcm_config.rs +++ b/evm-template/runtime/src/configs/xcm_config.rs @@ -11,8 +11,8 @@ use pezpallet_xcm::XcmPassthrough; use parity_scale_codec::{Decode, DecodeWithMemTracking, Encode}; use pezkuwi_teyrchain_primitives::primitives::{self, Sibling}; use scale_info::TypeInfo; -use sp_core::H160; -use sp_runtime::Vec; +use pezsp_core::H160; +use pezsp_runtime::Vec; use xcm::latest::prelude::{Assets as XcmAssets, *}; use xcm_builder::{ AccountKey20Aliases, AllowExplicitUnpaidExecutionFrom, AllowTopLevelPaidExecutionFrom, Case, @@ -39,7 +39,7 @@ parameter_types! { pub AssetsPezpalletLocation: Location = PezpalletInstance(::index() as u8).into(); pub BalancesPezpalletLocation: Location = PezpalletInstance(::index() as u8).into(); - pub RelayChainOrigin: RuntimeOrigin = cumulus_pezpallet_xcm::Origin::Relay.into(); + pub RelayChainOrigin: RuntimeOrigin = pezcumulus_pezpallet_xcm::Origin::Relay.into(); pub UniversalLocation: InteriorLocation = TeyrChain(TeyrChainInfo::teyrchain_id().into()).into(); // Self Reserve location, defines the multilocation identifiying the self-reserve currency // This is used to match it also against our Balances pezpallet when we receive such @@ -117,7 +117,7 @@ pub type XcmOriginToTransactDispatchOrigin = ( RelayChainAsNative, // Native converter for sibling TeyrChains; will convert to a `SiblingPara` origin when // recognized. - SiblingTeyrChainAsNative, + SiblingTeyrChainAsNative, // Xcm Origins defined by a Multilocation of type AccountKey20 can be converted to a 20 byte- // account local origin SignedAccountKey20AsNative, @@ -249,17 +249,17 @@ pub type FeeManager = XcmFeeManagerFromComponents< pub type XcmWeigher = FixedWeightBounds; use pezframe_support::{pezpallet_prelude::Get, traits::OriginTrait}; -use sp_runtime::traits::TryConvert; +use pezsp_runtime::traits::TryConvert; // Convert a local Origin (i.e., a signed 20 byte account Origin) to a Multilocation pub struct SignedToAccountId20( - sp_std::marker::PhantomData<(Origin, AccountId, Network)>, + pezsp_std::marker::PhantomData<(Origin, AccountId, Network)>, ); impl, Network: Get>> TryConvert for SignedToAccountId20 where - Origin::PalletsOrigin: From> - + TryInto, Error = Origin::PalletsOrigin>, + Origin::PezpalletsOrigin: From> + + TryInto, Error = Origin::PezpalletsOrigin>, { fn try_convert(o: Origin) -> Result { o.try_with_caller(|caller| match caller.try_into() { @@ -278,7 +278,7 @@ pub type LocalOriginToLocation = SignedToAccountId20, + pezcumulus_primitives_utility::ParentAsUmp, // ..and XCMP to communicate with the sibling chains. XcmpQueue, )>; @@ -325,11 +325,11 @@ pub enum CurrencyId { } // How to convert from CurrencyId to Location -pub struct CurrencyIdToLocation(sp_std::marker::PhantomData); -impl sp_runtime::traits::Convert> +pub struct CurrencyIdToLocation(pezsp_std::marker::PhantomData); +impl pezsp_runtime::traits::Convert> for CurrencyIdToLocation where - AssetXConverter: sp_runtime::traits::MaybeEquivalence, + AssetXConverter: pezsp_runtime::traits::MaybeEquivalence, { fn convert(currency: CurrencyId) -> Option { match currency { @@ -514,8 +514,8 @@ impl TryFrom for Transactors { impl UtilityEncodeCall for Transactors { fn encode_call(self, call: UtilityAvailableCalls) -> Vec { match self { - Transactors::Relay => pezpallet_xcm_transactor::Pallet::::encode_call( - pezpallet_xcm_transactor::Pallet(sp_std::marker::PhantomData::), + Transactors::Relay => pezpallet_xcm_transactor::Pezpallet::::encode_call( + pezpallet_xcm_transactor::Pezpallet(pezsp_std::marker::PhantomData::), call, ), } @@ -536,7 +536,7 @@ parameter_types! { #[cfg(feature = "runtime-benchmarks")] mod testing { - use sp_runtime::traits::MaybeEquivalence; + use pezsp_runtime::traits::MaybeEquivalence; use xcm_builder::WithLatestLocationConverter; use super::*; @@ -601,8 +601,8 @@ mod tests { } mod location_conversion { - use sp_core::H160; - use sp_runtime::traits::{Convert, TryConvert}; + use pezsp_core::H160; + use pezsp_runtime::traits::{Convert, TryConvert}; use xcm::latest::{Junction::AccountKey20, Location}; use crate::{ @@ -691,7 +691,7 @@ mod tests { #[test] fn test_transactors_encode_call() { - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let transactor = Transactors::Relay; let call = UtilityAvailableCalls::AsDerivative(0, vec![]); let encoded = transactor.encode_call(call); @@ -846,7 +846,7 @@ mod tests { #[test] fn test_absolute_and_relative_reserve_with_self_location() { // We need to use TestExternalities for this test - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { // Test with the actual SelfLocationAbsolute let self_location = SelfLocationAbsolute::get(); let asset = diff --git a/evm-template/runtime/src/constants.rs b/evm-template/runtime/src/constants.rs index 274f9c9..962a343 100644 --- a/evm-template/runtime/src/constants.rs +++ b/evm-template/runtime/src/constants.rs @@ -1,6 +1,6 @@ use pezframe_support::weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}; -use sp_runtime::Perbill; -use sp_version::{Cow, RuntimeVersion}; +use pezsp_runtime::Perbill; +use pezsp_version::{Cow, RuntimeVersion}; use crate::types::BlockNumber; @@ -33,7 +33,7 @@ pub const P_FACTOR: u128 = 10; pub const Q_FACTOR: u128 = 100; pub const POLY_DEGREE: u8 = 1; -#[sp_version::runtime_version] +#[pezsp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: Cow::Borrowed("template-teyrchain"), impl_name: Cow::Borrowed("template-teyrchain"), @@ -81,7 +81,7 @@ pub const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts( WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), #[cfg(not(feature = "async-backing"))] WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, ); /// Maximum number of blocks simultaneously accepted by the Runtime, not yet diff --git a/evm-template/runtime/src/genesis_config_presets.rs b/evm-template/runtime/src/genesis_config_presets.rs index 0a5c38b..b9022f6 100644 --- a/evm-template/runtime/src/genesis_config_presets.rs +++ b/evm-template/runtime/src/genesis_config_presets.rs @@ -2,13 +2,13 @@ use alloc::{format, vec, vec::Vec}; -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::ParaId; use pezframe_support::build_struct_json_patch; use teyrchains_common::AuraId; use serde_json::Value; -use sp_core::{ecdsa, Pair, Public}; -use sp_genesis_builder::PresetId; -use sp_runtime::traits::{IdentifyAccount, Verify}; +use pezsp_core::{ecdsa, Pair, Public}; +use pezsp_genesis_builder::PresetId; +use pezsp_runtime::traits::{IdentifyAccount, Verify}; use crate::{ constants::currency::EXISTENTIAL_DEPOSIT, AccountId, BalancesConfig, CollatorSelectionConfig, @@ -124,8 +124,8 @@ fn development_config_genesis() -> Value { /// Provides the JSON representation of predefined genesis config for given `id`. pub fn get_preset(id: &PresetId) -> Option> { let patch = match id.as_ref() { - sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET => local_testnet_genesis(), - sp_genesis_builder::DEV_RUNTIME_PRESET => development_config_genesis(), + pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET => local_testnet_genesis(), + pezsp_genesis_builder::DEV_RUNTIME_PRESET => development_config_genesis(), _ => return None, }; Some( @@ -138,8 +138,8 @@ pub fn get_preset(id: &PresetId) -> Option> { /// List of supported presets. pub fn preset_names() -> Vec { vec![ - PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET), - PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET), + PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET), + PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET), ] } @@ -274,14 +274,14 @@ mod tests { fn get_preset_roundtrips_known_ids() { // LOCAL_TESTNET let p = - super::get_preset(&PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)) + super::get_preset(&PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)) .expect("local preset should exist"); let from_api = parse_bytes(p); let from_fn = super::local_testnet_genesis(); assert_eq!(from_api, from_fn, "local_testnet preset must match function output"); // DEV - let p = super::get_preset(&PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET)) + let p = super::get_preset(&PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET)) .expect("dev preset should exist"); let from_api = parse_bytes(p); let from_fn = super::development_config_genesis(); @@ -292,11 +292,11 @@ mod tests { fn preset_names_lists_supported() { let names = super::preset_names(); assert!( - names.contains(&PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET)), + names.contains(&PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET)), "DEV preset should be listed" ); assert!( - names.contains(&PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)), + names.contains(&PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)), "LOCAL_TESTNET preset should be listed" ); } diff --git a/evm-template/runtime/src/lib.rs b/evm-template/runtime/src/lib.rs index 51577b6..787c1b6 100644 --- a/evm-template/runtime/src/lib.rs +++ b/evm-template/runtime/src/lib.rs @@ -1,3 +1,6 @@ +pub use pezframe_system as frame_system; +pub use pezframe_support as frame_support; +pub use pezcumulus_pezpallet_teyrchain_system as cumulus_pallet_parachain_system; #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] @@ -22,19 +25,19 @@ use pezframe_support::{ }; pub use genesis_config_presets::TEYRCHAIN_ID; use smallvec::smallvec; -pub use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_core::H160; +pub use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; +use pezsp_core::H160; #[cfg(any(feature = "std", test))] -pub use sp_runtime::BuildStorage; -use sp_runtime::{ +pub use pezsp_runtime::BuildStorage; +use pezsp_runtime::{ impl_opaque_keys, traits::{DispatchInfoOf, Dispatchable, Get, PostDispatchInfoOf, UniqueSaturatedInto}, transaction_validity::{TransactionValidity, TransactionValidityError}, }; -pub use sp_runtime::{MultiAddress, Perbill, Permill}; -use sp_std::prelude::{Vec, *}; +pub use pezsp_runtime::{MultiAddress, Perbill, Permill}; +use pezsp_std::prelude::{Vec, *}; #[cfg(feature = "std")] -use sp_version::NativeVersion; +use pezsp_version::NativeVersion; use crate::{ configs::pezpallet_custom_origins, @@ -61,7 +64,7 @@ use crate::{ use crate::{constants::SLOT_DURATION, types::ConsensusHook}; #[cfg(feature = "runtime-benchmarks")] -type ExistentialDeposit = sp_core::ConstU128; +type ExistentialDeposit = pezsp_core::ConstU128; impl fp_self_contained::SelfContainedCall for RuntimeCall { type SignedInfo = H160; @@ -108,7 +111,7 @@ impl fp_self_contained::SelfContainedCall for RuntimeCall { fn apply_self_contained( self, info: Self::SignedInfo, - ) -> Option>> { + ) -> Option>> { match self { call @ RuntimeCall::Ethereum(pezpallet_ethereum::Call::transact { .. }) => Some(call.dispatch(RuntimeOrigin::from( @@ -156,8 +159,8 @@ impl WeightToFeePolynomial for WeightToFee { /// continue syncing the network through upgrades to even the core data /// structures. pub mod opaque { - pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; - use sp_runtime::{ + pub use pezsp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; + use pezsp_runtime::{ generic, traits::{BlakeTwo256, Hash as HashT}, }; @@ -262,7 +265,7 @@ mod apis { mod system { type Executive = Executive; type System = System; - type ParachainSystem = TeyrChainSystem; + type TeyrchainSystem = TeyrChainSystem; type RuntimeVersion = VERSION; type AccountId = AccountId; type Nonce = Nonce; @@ -271,13 +274,13 @@ mod apis { } mod benchmarks { - type AllPalletsWithSystem = AllPezpalletsWithSystem; + type AllPezpalletsWithSystem = AllPezpalletsWithSystem; type Assets = Assets; type AssetManager = AssetManager; type AssetType = AssetType; type RuntimeOrigin = RuntimeOrigin; type RelayLocation = RelayLocation; - type ParachainSystem = TeyrChainSystem; + type TeyrchainSystem = TeyrChainSystem; type System = System; type ExistentialDeposit = ExistentialDeposit; type AssetId = AssetId; @@ -318,7 +321,7 @@ mod apis { mod system { type Executive = Executive; type System = System; - type ParachainSystem = TeyrChainSystem; + type TeyrchainSystem = TeyrChainSystem; type RuntimeVersion = VERSION; type AccountId = AccountId; type Nonce = Nonce; @@ -327,13 +330,13 @@ mod apis { } mod benchmarks { - type AllPalletsWithSystem = AllPezpalletsWithSystem; + type AllPezpalletsWithSystem = AllPezpalletsWithSystem; type Assets = Assets; type AssetManager = AssetManager; type AssetType = AssetType; type RuntimeOrigin = RuntimeOrigin; type RelayLocation = RelayLocation; - type ParachainSystem = TeyrChainSystem; + type TeyrchainSystem = TeyrChainSystem; type System = System; type ExistentialDeposit = ExistentialDeposit; type AssetId = AssetId; @@ -382,7 +385,7 @@ mod test { use fp_self_contained::SelfContainedCall; use pezframe_support::dispatch::GetDispatchInfo; use pezpallet_ethereum::TransactionAction; - use sp_core::{H160, H256, U256}; + use pezsp_core::{H160, H256, U256}; use crate::{Runtime, RuntimeCall, RuntimeOrigin}; @@ -457,10 +460,10 @@ mod test { }); let info = call.get_dispatch_info(); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let addr = H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(); - let _ = pezpallet_balances::Pallet::::force_set_balance( + let _ = pezpallet_balances::Pezpallet::::force_set_balance( RuntimeOrigin::root(), AccountId20(addr.0), 90000000000000000, @@ -482,7 +485,7 @@ mod test { }); let info = call.get_dispatch_info(); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let i = call.validate_self_contained( &H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(), &info, @@ -500,18 +503,18 @@ mod test { }); let info = call.get_dispatch_info(); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let addr = H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(); let who = AccountId20(addr.0); - let _ = pezpallet_balances::Pallet::::force_set_balance( + let _ = pezpallet_balances::Pezpallet::::force_set_balance( RuntimeOrigin::root(), who, 90000000000000000, ); // I do not know any other way to increase nonce for _ in 0..842 { - pezframe_system::Pallet::::inc_account_nonce(who); + pezframe_system::Pezpallet::::inc_account_nonce(who); } let () = call .pre_dispatch_self_contained(&addr, &info, 0) @@ -528,7 +531,7 @@ mod test { }); let info = call.get_dispatch_info(); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let i = call.pre_dispatch_self_contained( &H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(), &info, @@ -545,18 +548,18 @@ mod test { transaction: get_transaction(), }); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let addr = H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(); let who = AccountId20(addr.0); - let _ = pezpallet_balances::Pallet::::force_set_balance( + let _ = pezpallet_balances::Pezpallet::::force_set_balance( RuntimeOrigin::root(), who, 90000000000000000, ); // I do not know any other way to increase nonce for _ in 0..842 { - pezframe_system::Pallet::::inc_account_nonce(who); + pezframe_system::Pezpallet::::inc_account_nonce(who); } let _ = call .apply_self_contained(addr) @@ -572,7 +575,7 @@ mod test { keep_alive: true, }); - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let i = call.apply_self_contained( H160::from_str("0x78DFFE34196A5987fb73fb9bbfd55a2A33e467Fb").unwrap(), ); diff --git a/evm-template/runtime/src/precompiles.rs b/evm-template/runtime/src/precompiles.rs index 506b008..5312a5f 100644 --- a/evm-template/runtime/src/precompiles.rs +++ b/evm-template/runtime/src/precompiles.rs @@ -6,7 +6,7 @@ use pezpallet_evm::{ use pezpallet_evm_precompile_modexp::Modexp; use pezpallet_evm_precompile_sha3fips::Sha3FIPS256; use pezpallet_evm_precompile_simple::{ECRecover, ECRecoverPublicKey, Identity, Ripemd160, Sha256}; -use sp_core::H160; +use pezsp_core::H160; #[derive(Default)] pub struct OpenZeppelinPrecompiles(PhantomData); diff --git a/evm-template/runtime/src/types.rs b/evm-template/runtime/src/types.rs index e1597b0..01d63e2 100644 --- a/evm-template/runtime/src/types.rs +++ b/evm-template/runtime/src/types.rs @@ -11,15 +11,15 @@ use pezkuwi_runtime_common::impls::{ LocatableAssetConverter, VersionedLocatableAsset, VersionedLocationConverter, }; use scale_info::TypeInfo; -use sp_core::ConstU32; -use sp_runtime::{ +use pezsp_core::ConstU32; +use pezsp_runtime::{ generic, traits::{BlakeTwo256, IdentifyAccount, Verify}, Perbill, RuntimeDebug, }; -use sp_version::RuntimeVersion; +use pezsp_version::RuntimeVersion; use xcm::{ - latest::{InteriorLocation, Junction::PalletInstance}, + latest::{InteriorLocation, Junction::PezpalletInstance}, VersionedLocation, }; use xcm_builder::PayOverXcm; @@ -60,7 +60,7 @@ pub type AssetId = u128; pub type Nonce = u32; /// A hash of some data used by the chain. -pub type Hash = sp_core::H256; +pub type Hash = pezsp_core::H256; /// An index to a block. pub type BlockNumber = u32; @@ -75,7 +75,7 @@ pub type Header = generic::Header; pub type Block = generic::Block; /// The TransactionExtension to the basic transaction logic. -pub type TxExtension = cumulus_pezpallet_weight_reclaim::StorageWeightReclaim< +pub type TxExtension = pezcumulus_pezpallet_weight_reclaim::StorageWeightReclaim< Runtime, ( pezframe_system::CheckNonZeroSender, @@ -109,7 +109,7 @@ pub type PriceForSiblingTeyrChainDelivery = pezkuwi_runtime_common::xcm_sender:: /// Configures the number of blocks that can be created without submission of validity proof to the relay chain #[cfg(not(feature = "tanssi"))] -pub type ConsensusHook = cumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< +pub type ConsensusHook = pezcumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, BLOCK_PTYRESSING_VELOCITY, @@ -204,7 +204,7 @@ parameter_types! { mod test { mod filter { use pezframe_support::traits::InstanceFilter; - use sp_core::H256; + use pezsp_core::H256; use crate::{types::ProxyType, AssetManager, RuntimeCall}; diff --git a/evm-template/runtime/src/weights/mod.rs b/evm-template/runtime/src/weights/mod.rs index cd03778..bf3f64d 100644 --- a/evm-template/runtime/src/weights/mod.rs +++ b/evm-template/runtime/src/weights/mod.rs @@ -18,8 +18,8 @@ //! Expose the auto generated weight files. pub mod block_weights; -pub mod cumulus_pezpallet_teyrchain_system; -pub mod cumulus_pezpallet_xcmp_queue; +pub mod pezcumulus_pezpallet_teyrchain_system; +pub mod pezcumulus_pezpallet_xcmp_queue; pub mod extrinsic_weights; pub mod pezpallet_asset_manager; pub mod pezpallet_assets; diff --git a/evm-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs b/evm-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs similarity index 84% rename from evm-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs rename to evm-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs index 5560e10..109ab6e 100644 --- a/evm-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs +++ b/evm-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs @@ -1,5 +1,5 @@ -//! Autogenerated weights for `cumulus_pezpallet_teyrchain_system` +//! Autogenerated weights for `pezcumulus_pezpallet_teyrchain_system` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 42.0.0 //! DATE: 2024-11-03, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` @@ -16,10 +16,10 @@ // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 -// --json-file=benchmarking/results/results-cumulus_pezpallet_teyrchain_system.json -// --pezpallet=cumulus_pezpallet_teyrchain_system +// --json-file=benchmarking/results/results-pezcumulus_pezpallet_teyrchain_system.json +// --pezpallet=pezcumulus_pezpallet_teyrchain_system // --chain=dev -// --output=benchmarking/new-benchmarks/cumulus_pezpallet_teyrchain_system.rs +// --output=benchmarking/new-benchmarks/pezcumulus_pezpallet_teyrchain_system.rs #![cfg_attr(rustfmt, rustfmt_skip)] #![allow(unused_parens)] @@ -29,9 +29,9 @@ use pezframe_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; -/// Weight functions for `cumulus_pezpallet_teyrchain_system`. +/// Weight functions for `pezcumulus_pezpallet_teyrchain_system`. pub struct WeightInfo(PhantomData); -impl cumulus_pezpallet_teyrchain_system::WeightInfo for WeightInfo { +impl pezcumulus_pezpallet_teyrchain_system::WeightInfo for WeightInfo { /// Storage: `TeyrChainSystem::LastDmqMqcHead` (r:1 w:1) /// Proof: `TeyrChainSystem::LastDmqMqcHead` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs b/evm-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs similarity index 95% rename from evm-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs rename to evm-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs index c203585..13f5fd1 100644 --- a/evm-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs +++ b/evm-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs @@ -1,5 +1,5 @@ -//! Autogenerated weights for `cumulus_pezpallet_xcmp_queue` +//! Autogenerated weights for `pezcumulus_pezpallet_xcmp_queue` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 42.0.0 //! DATE: 2024-11-03, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` @@ -16,10 +16,10 @@ // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 -// --json-file=benchmarking/results/results-cumulus_pezpallet_xcmp_queue.json -// --pezpallet=cumulus_pezpallet_xcmp_queue +// --json-file=benchmarking/results/results-pezcumulus_pezpallet_xcmp_queue.json +// --pezpallet=pezcumulus_pezpallet_xcmp_queue // --chain=dev -// --output=benchmarking/new-benchmarks/cumulus_pezpallet_xcmp_queue.rs +// --output=benchmarking/new-benchmarks/pezcumulus_pezpallet_xcmp_queue.rs #![cfg_attr(rustfmt, rustfmt_skip)] #![allow(unused_parens)] @@ -29,9 +29,9 @@ use pezframe_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; -/// Weight functions for `cumulus_pezpallet_xcmp_queue`. +/// Weight functions for `pezcumulus_pezpallet_xcmp_queue`. pub struct WeightInfo(PhantomData); -impl cumulus_pezpallet_xcmp_queue::WeightInfo for WeightInfo { +impl pezcumulus_pezpallet_xcmp_queue::WeightInfo for WeightInfo { /// Storage: `XcmpQueue::QueueConfig` (r:1 w:1) /// Proof: `XcmpQueue::QueueConfig` (`max_values`: Some(1), `max_size`: Some(12), added: 507, mode: `MaxEncodedLen`) fn set_config_with_u32() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_asset_manager.rs b/evm-template/runtime/src/weights/pezpallet_asset_manager.rs index ad51cf2..012f4fe 100644 --- a/evm-template/runtime/src/weights/pezpallet_asset_manager.rs +++ b/evm-template/runtime/src/weights/pezpallet_asset_manager.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_asset_manager`. pub struct WeightInfo(PhantomData); -impl pezpallet_asset_manager::WeightInfo for WeightInfo { +impl pezpallet_asset_manager::WeightInfo for WeightInfo { /// Storage: `AssetManager::AssetIdType` (r:1 w:1) /// Proof: `AssetManager::AssetIdType` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Assets::Asset` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_assets.rs b/evm-template/runtime/src/weights/pezpallet_assets.rs index f749d5a..5ed3857 100644 --- a/evm-template/runtime/src/weights/pezpallet_assets.rs +++ b/evm-template/runtime/src/weights/pezpallet_assets.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_assets`. pub struct WeightInfo(PhantomData); -impl pezpallet_assets::WeightInfo for WeightInfo { +impl pezpallet_assets::WeightInfo for WeightInfo { /// Storage: `Assets::Asset` (r:1 w:1) /// Proof: `Assets::Asset` (`max_values`: None, `max_size`: Some(174), added: 2649, mode: `MaxEncodedLen`) /// Storage: `Assets::NextAssetId` (r:1 w:0) diff --git a/evm-template/runtime/src/weights/pezpallet_balances.rs b/evm-template/runtime/src/weights/pezpallet_balances.rs index 5e5fcc8..227ee6d 100644 --- a/evm-template/runtime/src/weights/pezpallet_balances.rs +++ b/evm-template/runtime/src/weights/pezpallet_balances.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_balances`. pub struct WeightInfo(PhantomData); -impl pezpallet_balances::WeightInfo for WeightInfo { +impl pezpallet_balances::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(116), added: 2591, mode: `MaxEncodedLen`) fn transfer_allow_death() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_collator_selection.rs b/evm-template/runtime/src/weights/pezpallet_collator_selection.rs index 70e548c..0ed47c8 100644 --- a/evm-template/runtime/src/weights/pezpallet_collator_selection.rs +++ b/evm-template/runtime/src/weights/pezpallet_collator_selection.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_collator_selection`. pub struct WeightInfo(PhantomData); -impl pezpallet_collator_selection::WeightInfo for WeightInfo { +impl pezpallet_collator_selection::WeightInfo for WeightInfo { /// Storage: `Session::NextKeys` (r:20 w:0) /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `CollatorSelection::Invulnerables` (r:0 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_conviction_voting.rs b/evm-template/runtime/src/weights/pezpallet_conviction_voting.rs index ed2b2c4..fff7d03 100644 --- a/evm-template/runtime/src/weights/pezpallet_conviction_voting.rs +++ b/evm-template/runtime/src/weights/pezpallet_conviction_voting.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_conviction_voting`. pub struct WeightInfo(PhantomData); -impl pezpallet_conviction_voting::WeightInfo for WeightInfo { +impl pezpallet_conviction_voting::WeightInfo for WeightInfo { /// Storage: `Referenda::ReferendumInfoFor` (r:1 w:1) /// Proof: `Referenda::ReferendumInfoFor` (`max_values`: None, `max_size`: Some(912), added: 3387, mode: `MaxEncodedLen`) /// Storage: `ConvictionVoting::VotingFor` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_evm.rs b/evm-template/runtime/src/weights/pezpallet_evm.rs index b4c707e..fd920ab 100644 --- a/evm-template/runtime/src/weights/pezpallet_evm.rs +++ b/evm-template/runtime/src/weights/pezpallet_evm.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_evm`. pub struct WeightInfo(PhantomData); -impl pezpallet_evm::WeightInfo for WeightInfo { +impl pezpallet_evm::WeightInfo for WeightInfo { fn withdraw() -> Weight { // Proof Size summary in bytes: // Measured: `0` diff --git a/evm-template/runtime/src/weights/pezpallet_message_queue.rs b/evm-template/runtime/src/weights/pezpallet_message_queue.rs index e4e3054..2a8d42f 100644 --- a/evm-template/runtime/src/weights/pezpallet_message_queue.rs +++ b/evm-template/runtime/src/weights/pezpallet_message_queue.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_message_queue`. pub struct WeightInfo(PhantomData); -impl pezpallet_message_queue::WeightInfo for WeightInfo { +impl pezpallet_message_queue::WeightInfo for WeightInfo { /// Storage: `MessageQueue::ServiceHead` (r:1 w:0) /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) /// Storage: `MessageQueue::BookStateFor` (r:2 w:2) diff --git a/evm-template/runtime/src/weights/pezpallet_multisig.rs b/evm-template/runtime/src/weights/pezpallet_multisig.rs index 795c523..e516221 100644 --- a/evm-template/runtime/src/weights/pezpallet_multisig.rs +++ b/evm-template/runtime/src/weights/pezpallet_multisig.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_multisig`. pub struct WeightInfo(PhantomData); -impl pezpallet_multisig::WeightInfo for WeightInfo { +impl pezpallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { // Proof Size summary in bytes: diff --git a/evm-template/runtime/src/weights/pezpallet_preimage.rs b/evm-template/runtime/src/weights/pezpallet_preimage.rs index bb02672..c1c95fc 100644 --- a/evm-template/runtime/src/weights/pezpallet_preimage.rs +++ b/evm-template/runtime/src/weights/pezpallet_preimage.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_preimage`. pub struct WeightInfo(PhantomData); -impl pezpallet_preimage::WeightInfo for WeightInfo { +impl pezpallet_preimage::WeightInfo for WeightInfo { /// Storage: `Preimage::StatusFor` (r:1 w:0) /// Proof: `Preimage::StatusFor` (`max_values`: None, `max_size`: Some(79), added: 2554, mode: `MaxEncodedLen`) /// Storage: `Preimage::RequestStatusFor` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_proxy.rs b/evm-template/runtime/src/weights/pezpallet_proxy.rs index 687758e..ae8e266 100644 --- a/evm-template/runtime/src/weights/pezpallet_proxy.rs +++ b/evm-template/runtime/src/weights/pezpallet_proxy.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_proxy`. pub struct WeightInfo(PhantomData); -impl pezpallet_proxy::WeightInfo for WeightInfo { +impl pezpallet_proxy::WeightInfo for WeightInfo { /// Storage: `Proxy::Proxies` (r:1 w:0) /// Proof: `Proxy::Proxies` (`max_values`: None, `max_size`: Some(845), added: 3320, mode: `MaxEncodedLen`) /// The range of component `p` is `[1, 31]`. diff --git a/evm-template/runtime/src/weights/pezpallet_referenda.rs b/evm-template/runtime/src/weights/pezpallet_referenda.rs index a5ec899..851216e 100644 --- a/evm-template/runtime/src/weights/pezpallet_referenda.rs +++ b/evm-template/runtime/src/weights/pezpallet_referenda.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_referenda`. pub struct WeightInfo(PhantomData); -impl pezpallet_referenda::WeightInfo for WeightInfo { +impl pezpallet_referenda::WeightInfo for WeightInfo { /// Storage: `Referenda::ReferendumCount` (r:1 w:1) /// Proof: `Referenda::ReferendumCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Scheduler::Agenda` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_scheduler.rs b/evm-template/runtime/src/weights/pezpallet_scheduler.rs index 2565463..627f7ef 100644 --- a/evm-template/runtime/src/weights/pezpallet_scheduler.rs +++ b/evm-template/runtime/src/weights/pezpallet_scheduler.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_scheduler`. pub struct WeightInfo(PhantomData); -impl pezpallet_scheduler::WeightInfo for WeightInfo { +impl pezpallet_scheduler::WeightInfo for WeightInfo { /// Storage: `Scheduler::IncompleteSince` (r:1 w:1) /// Proof: `Scheduler::IncompleteSince` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn service_agendas_base() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_session.rs b/evm-template/runtime/src/weights/pezpallet_session.rs index b3ea0f8..2ead52e 100644 --- a/evm-template/runtime/src/weights/pezpallet_session.rs +++ b/evm-template/runtime/src/weights/pezpallet_session.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_session`. pub struct WeightInfo(PhantomData); -impl pezpallet_session::WeightInfo for WeightInfo { +impl pezpallet_session::WeightInfo for WeightInfo { /// Storage: `Session::NextKeys` (r:1 w:1) /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Session::KeyOwner` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_sudo.rs b/evm-template/runtime/src/weights/pezpallet_sudo.rs index 68eca3e..4913b55 100644 --- a/evm-template/runtime/src/weights/pezpallet_sudo.rs +++ b/evm-template/runtime/src/weights/pezpallet_sudo.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_sudo`. pub struct WeightInfo(PhantomData); -impl pezpallet_sudo::WeightInfo for WeightInfo { +impl pezpallet_sudo::WeightInfo for WeightInfo { /// Storage: `Sudo::Key` (r:1 w:1) /// Proof: `Sudo::Key` (`max_values`: Some(1), `max_size`: Some(20), added: 515, mode: `MaxEncodedLen`) fn set_key() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_timestamp.rs b/evm-template/runtime/src/weights/pezpallet_timestamp.rs index 96f3ef0..7f7ca0f 100644 --- a/evm-template/runtime/src/weights/pezpallet_timestamp.rs +++ b/evm-template/runtime/src/weights/pezpallet_timestamp.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_timestamp`. pub struct WeightInfo(PhantomData); -impl pezpallet_timestamp::WeightInfo for WeightInfo { +impl pezpallet_timestamp::WeightInfo for WeightInfo { /// Storage: `Timestamp::Now` (r:1 w:1) /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) /// Storage: `Aura::CurrentSlot` (r:1 w:0) diff --git a/evm-template/runtime/src/weights/pezpallet_treasury.rs b/evm-template/runtime/src/weights/pezpallet_treasury.rs index 9eda845..7528ea3 100644 --- a/evm-template/runtime/src/weights/pezpallet_treasury.rs +++ b/evm-template/runtime/src/weights/pezpallet_treasury.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_treasury`. pub struct WeightInfo(PhantomData); -impl pezpallet_treasury::WeightInfo for WeightInfo { +impl pezpallet_treasury::WeightInfo for WeightInfo { /// Storage: `Treasury::ProposalCount` (r:1 w:1) /// Proof: `Treasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Treasury::Approvals` (r:1 w:1) diff --git a/evm-template/runtime/src/weights/pezpallet_utility.rs b/evm-template/runtime/src/weights/pezpallet_utility.rs index 4858e6f..616ae89 100644 --- a/evm-template/runtime/src/weights/pezpallet_utility.rs +++ b/evm-template/runtime/src/weights/pezpallet_utility.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_utility`. pub struct WeightInfo(PhantomData); -impl pezpallet_utility::WeightInfo for WeightInfo { +impl pezpallet_utility::WeightInfo for WeightInfo { /// The range of component `c` is `[0, 1000]`. fn batch(c: u32, ) -> Weight { // Proof Size summary in bytes: diff --git a/evm-template/runtime/src/weights/pezpallet_whitelist.rs b/evm-template/runtime/src/weights/pezpallet_whitelist.rs index fd8ff9e..ec345d6 100644 --- a/evm-template/runtime/src/weights/pezpallet_whitelist.rs +++ b/evm-template/runtime/src/weights/pezpallet_whitelist.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_whitelist`. pub struct WeightInfo(PhantomData); -impl pezpallet_whitelist::WeightInfo for WeightInfo { +impl pezpallet_whitelist::WeightInfo for WeightInfo { /// Storage: `Whitelist::WhitelistedCall` (r:1 w:1) /// Proof: `Whitelist::WhitelistedCall` (`max_values`: None, `max_size`: Some(40), added: 2515, mode: `MaxEncodedLen`) /// Storage: `Preimage::StatusFor` (r:1 w:0) diff --git a/evm-template/runtime/src/weights/pezpallet_xcm.rs b/evm-template/runtime/src/weights/pezpallet_xcm.rs index 4c9654d..483180d 100644 --- a/evm-template/runtime/src/weights/pezpallet_xcm.rs +++ b/evm-template/runtime/src/weights/pezpallet_xcm.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm::WeightInfo for WeightInfo { +impl pezpallet_xcm::WeightInfo for WeightInfo { /// Storage: `PezkuwiXcm::AuthorizedAliases` (r:1 w:1) /// Proof: `PezkuwiXcm::AuthorizedAliases` (`max_values`: None, `max_size`: None, mode: `Measured`) fn add_authorized_alias() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_xcm_transactor.rs b/evm-template/runtime/src/weights/pezpallet_xcm_transactor.rs index 56952d7..2036879 100644 --- a/evm-template/runtime/src/weights/pezpallet_xcm_transactor.rs +++ b/evm-template/runtime/src/weights/pezpallet_xcm_transactor.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm_transactor`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm_transactor::WeightInfo for WeightInfo { +impl pezpallet_xcm_transactor::WeightInfo for WeightInfo { /// Storage: `XcmTransactor::IndexToAccount` (r:1 w:1) /// Proof: `XcmTransactor::IndexToAccount` (`max_values`: None, `max_size`: None, mode: `Measured`) fn register() -> Weight { diff --git a/evm-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs b/evm-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs index efad7e0..9ba6aae 100644 --- a/evm-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs +++ b/evm-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm_weight_trader`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm_weight_trader::WeightInfo for WeightInfo { +impl pezpallet_xcm_weight_trader::WeightInfo for WeightInfo { /// Storage: `XcmWeightTrader::SupportedAssets` (r:1 w:1) /// Proof: `XcmWeightTrader::SupportedAssets` (`max_values`: None, `max_size`: Some(635), added: 3110, mode: `MaxEncodedLen`) fn add_asset() -> Weight { diff --git a/evm-template/runtime/tests/common/mod.rs b/evm-template/runtime/tests/common/mod.rs index 3ac6dbe..55663d9 100644 --- a/evm-template/runtime/tests/common/mod.rs +++ b/evm-template/runtime/tests/common/mod.rs @@ -3,7 +3,7 @@ use evm_runtime_template::{BuildStorage, Runtime, System}; use pezframe_support::weights::Weight; pub fn run_with_system_weight(w: Weight, mut assertions: F) { - let mut t: sp_io::TestExternalities = + let mut t: pezsp_io::TestExternalities = pezframe_system::GenesisConfig::::default().build_storage().unwrap().into(); t.execute_with(|| { System::set_block_consumed_resources(w, 0); diff --git a/evm-template/runtime/tests/constants_test.rs b/evm-template/runtime/tests/constants_test.rs index 449dfc0..af4e286 100644 --- a/evm-template/runtime/tests/constants_test.rs +++ b/evm-template/runtime/tests/constants_test.rs @@ -29,8 +29,8 @@ mod runtime_tests { BlockNumber, Runtime, }; use pezframe_support::{pezpallet_prelude::Weight, traits::TypedGet, PezpalletId}; - use sp_runtime::{Cow, Perbill}; - use sp_version::RuntimeVersion; + use pezsp_runtime::{Cow, Perbill}; + use pezsp_version::RuntimeVersion; use xcm::latest::prelude::BodyId; // RUNTIME_API_VERSIONS constant is generated by a macro and is private. @@ -67,7 +67,7 @@ mod runtime_tests { MAXIMUM_BLOCK_WEIGHT, Weight::from_parts( pezframe_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 ) ); @@ -76,7 +76,7 @@ mod runtime_tests { MAXIMUM_BLOCK_WEIGHT, Weight::from_parts( pezframe_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 ) ); @@ -107,9 +107,9 @@ mod runtime_tests { assert_eq!(MAX_BLOCK_LENGTH, 5 * 1024 * 1024); - assert_eq!(::SS58Prefix::get(), 42); + assert_eq!(::SS58Prefix::get(), 42); - assert_eq!(::MaxConsumers::get(), 16); + assert_eq!(::MaxConsumers::get(), 16); } #[test] @@ -173,14 +173,14 @@ mod runtime_tests { } #[test] - fn cumulus_pezpallet_teyrchain_system_constants() { + fn pezcumulus_pezpallet_teyrchain_system_constants() { assert_eq!( - ::ReservedXcmpWeight::get(), + ::ReservedXcmpWeight::get(), MAXIMUM_BLOCK_WEIGHT.saturating_div(4) ); assert_eq!( - ::ReservedDmpWeight::get(), + ::ReservedDmpWeight::get(), MAXIMUM_BLOCK_WEIGHT.saturating_div(4) ); } @@ -192,9 +192,9 @@ mod runtime_tests { } #[test] - fn cumulus_pezpallet_xcmp_queue_constants() { + fn pezcumulus_pezpallet_xcmp_queue_constants() { assert_eq!( - ::MaxInboundSuspended::get(), + ::MaxInboundSuspended::get(), 1000 ); } diff --git a/evm-template/runtime/tests/multiplier.rs b/evm-template/runtime/tests/multiplier.rs index 4d030f5..c9c1749 100644 --- a/evm-template/runtime/tests/multiplier.rs +++ b/evm-template/runtime/tests/multiplier.rs @@ -2,10 +2,10 @@ mod common; use common::*; use evm_runtime_template::{Runtime, RuntimeBlockWeights}; -use pezframe_support::pezpallet_prelude::*; +use pezframe_support::pallet_prelude::*; use pezpallet_transaction_payment::Multiplier; use pezkuwi_runtime_common::MinimumMultiplier; -use sp_runtime::{traits::Convert, Perquintill}; +use pezsp_runtime::{traits::Convert, Perquintill}; fn min_multiplier() -> Multiplier { MinimumMultiplier::get() diff --git a/evm-template/runtime/tests/storage.rs b/evm-template/runtime/tests/storage.rs index 50201d4..74c5bdb 100644 --- a/evm-template/runtime/tests/storage.rs +++ b/evm-template/runtime/tests/storage.rs @@ -2,13 +2,13 @@ #[cfg(not(feature = "tanssi"))] use evm_runtime_template::{Aura, AuraExt, Authorship, CollatorSelection, Session}; use evm_runtime_template::{ - Balances, CumulusXcm, MessageQueue, Multisig, TeyrChainInfo, TeyrChainSystem, PezkuwiXcm, + Balances, PezcumulusXcm, MessageQueue, Multisig, TeyrChainInfo, TeyrChainSystem, PezkuwiXcm, Proxy, Runtime, Sudo, System, Timestamp, TransactionPayment, XcmpQueue, }; -use pezframe_support::traits::PalletInfo; +use pezframe_support::traits::PezpalletInfo; fn assert_pezpallet_prefix(name: &str) { - assert_eq!(::PalletInfo::name::

(), Some(name)); + assert_eq!(::PezpalletInfo::name::

(), Some(name)); } #[test] @@ -24,7 +24,7 @@ fn verify_pezpallet_prefixes() { assert_pezpallet_prefix::("Multisig"); assert_pezpallet_prefix::("XcmpQueue"); assert_pezpallet_prefix::("PezkuwiXcm"); - assert_pezpallet_prefix::("CumulusXcm"); + assert_pezpallet_prefix::("PezcumulusXcm"); assert_pezpallet_prefix::("MessageQueue"); #[cfg(not(feature = "tanssi"))] diff --git a/evm-template/runtime/tests/xcm_mock/mod.rs b/evm-template/runtime/tests/xcm_mock/mod.rs index 6e2a9be..e978b9f 100644 --- a/evm-template/runtime/tests/xcm_mock/mod.rs +++ b/evm-template/runtime/tests/xcm_mock/mod.rs @@ -1,14 +1,14 @@ pub mod teyrchain; pub mod relay_chain; -use sp_runtime::BuildStorage; -use sp_tracing; +use pezsp_runtime::BuildStorage; +use pezsp_tracing; use xcm::prelude::*; use xcm_executor::traits::ConvertLocation; use xcm_simulator::{decl_test_network, decl_test_teyrchain, decl_test_relay_chain, TestExt}; pub const PARA_ALICE: [u8; 20] = [1u8; 20]; -pub const ALICE: sp_runtime::AccountId32 = sp_runtime::AccountId32::new([1u8; 32]); +pub const ALICE: pezsp_runtime::AccountId32 = pezsp_runtime::AccountId32::new([1u8; 32]); pub const INITIAL_BALANCE: u128 = 1_000_000_000; decl_test_teyrchain! { @@ -61,22 +61,22 @@ pub fn child_account_id(para: u32) -> relay_chain::AccountId { relay_chain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn child_account_account_id(para: u32, who: sp_runtime::AccountId32) -> relay_chain::AccountId { +pub fn child_account_account_id(para: u32, who: pezsp_runtime::AccountId32) -> relay_chain::AccountId { let location = (TeyrChain(para), AccountId32 { network: None, id: who.into() }); relay_chain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn sibling_account_account_id(para: u32, who: sp_runtime::AccountId32) -> teyrchain::AccountId { +pub fn sibling_account_account_id(para: u32, who: pezsp_runtime::AccountId32) -> teyrchain::AccountId { let location = (Parent, TeyrChain(para), AccountId32 { network: None, id: who.into() }); teyrchain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn parent_account_account_id(who: sp_runtime::AccountId32) -> teyrchain::AccountId { +pub fn parent_account_account_id(who: pezsp_runtime::AccountId32) -> teyrchain::AccountId { let location = (Parent, AccountId32 { network: None, id: who.into() }); teyrchain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn para_ext(para_id: u32) -> sp_io::TestExternalities { +pub fn para_ext(para_id: u32) -> pezsp_io::TestExternalities { use teyrchain::{MsgQueue, Runtime, System}; let mut t = pezframe_system::GenesisConfig::::default().build_storage().unwrap(); @@ -91,16 +91,16 @@ pub fn para_ext(para_id: u32) -> sp_io::TestExternalities { .assimilate_storage(&mut t) .unwrap(); - let mut ext = sp_io::TestExternalities::new(t); + let mut ext = pezsp_io::TestExternalities::new(t); ext.execute_with(|| { - sp_tracing::try_init_simple(); + pezsp_tracing::try_init_simple(); System::set_block_number(1); MsgQueue::set_para_id(para_id.into()); }); ext } -pub fn relay_ext() -> sp_io::TestExternalities { +pub fn relay_ext() -> pezsp_io::TestExternalities { use relay_chain::{Runtime, System}; let mut t = pezframe_system::GenesisConfig::::default().build_storage().unwrap(); @@ -116,12 +116,12 @@ pub fn relay_ext() -> sp_io::TestExternalities { .assimilate_storage(&mut t) .unwrap(); - let mut ext = sp_io::TestExternalities::new(t); + let mut ext = pezsp_io::TestExternalities::new(t); ext.execute_with(|| { System::set_block_number(1); }); ext } -pub type RelayChainPezpalletXcm = pezpallet_xcm::Pallet; -pub type TeyrChainPezpalletXcm = pezpallet_xcm::Pallet; +pub type RelayChainPezpalletXcm = pezpallet_xcm::Pezpallet; +pub type TeyrChainPezpalletXcm = pezpallet_xcm::Pezpallet; diff --git a/evm-template/runtime/tests/xcm_mock/relay_chain/mod.rs b/evm-template/runtime/tests/xcm_mock/relay_chain/mod.rs index 58fb9cf..eef451b 100644 --- a/evm-template/runtime/tests/xcm_mock/relay_chain/mod.rs +++ b/evm-template/runtime/tests/xcm_mock/relay_chain/mod.rs @@ -10,8 +10,8 @@ use pezkuwi_runtime_teyrchains::{ inclusion::{AggregateMessageOrigin, UmpQueueId}, origin, shared, }; -use sp_core::ConstU32; -use sp_runtime::{traits::IdentityLookup, AccountId32}; +use pezsp_core::ConstU32; +use pezsp_runtime::{traits::IdentityLookup, AccountId32}; use xcm::latest::prelude::*; use xcm_builder::{IsConcrete, SignedToAccountId32}; pub use xcm_config::*; @@ -25,7 +25,7 @@ parameter_types! { } #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] -impl pezframe_system::Config for Runtime { +impl frame_system::Config for Runtime { type AccountData = pezpallet_balances::AccountData; type AccountId = AccountId; type Block = Block; diff --git a/evm-template/runtime/tests/xcm_mock/teyrchain/mod.rs b/evm-template/runtime/tests/xcm_mock/teyrchain/mod.rs index 04a0d9f..ae43e5a 100644 --- a/evm-template/runtime/tests/xcm_mock/teyrchain/mod.rs +++ b/evm-template/runtime/tests/xcm_mock/teyrchain/mod.rs @@ -8,8 +8,8 @@ use pezframe_support::{ weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; use pezframe_system::EnsureRoot; -use sp_core::ConstU32; -use sp_runtime::traits::{Get, IdentityLookup}; +use pezsp_core::ConstU32; +use pezsp_runtime::traits::{Get, IdentityLookup}; use xcm::latest::prelude::*; use xcm_builder::EnsureXcmOrigin; pub use xcm_config::*; @@ -24,7 +24,7 @@ parameter_types! { } #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] -impl pezframe_system::Config for Runtime { +impl frame_system::Config for Runtime { type AccountData = pezpallet_balances::AccountData; type AccountId = AccountId; type Block = Block; diff --git a/evm-template/scripts/generate-benchmarks.sh b/evm-template/scripts/generate-benchmarks.sh index 5731ad5..e6da44a 100755 --- a/evm-template/scripts/generate-benchmarks.sh +++ b/evm-template/scripts/generate-benchmarks.sh @@ -13,5 +13,5 @@ mkdir benchmarking/new-benchmarks while IFS= read -r line; do echo "Creating benchmark for: $line" - target/release/parachain-template-node benchmark pallet --steps=50 --repeat=20 --extrinsic=* --wasm-execution=compiled --heap-pages=4096 --json-file=benchmarking/results/results-$line.json --pallet=$line --chain=dev --output=benchmarking/new-benchmarks/$line.rs + target/release/teyrchain-template-node benchmark pezpallet --steps=50 --repeat=20 --extrinsic=* --wasm-execution=compiled --heap-pages=4096 --json-file=benchmarking/results/results-$line.json --pezpallet=$line --chain=dev --output=benchmarking/new-benchmarks/$line.rs done < $filename \ No newline at end of file diff --git a/evm-template/scripts/zombienet.sh b/evm-template/scripts/zombienet.sh index 137edb7..2db94b6 100755 --- a/evm-template/scripts/zombienet.sh +++ b/evm-template/scripts/zombienet.sh @@ -1,7 +1,7 @@ #!/bin/bash ZOMBIENET_V=v1.3.106 -POLKADOT_V=stable2407-1 +POLKAHEZ_V=stable2407-1 # Detect the operating system case "$(uname -s)" in @@ -36,21 +36,21 @@ fi echo "Using binary: $ZOMBIENET_BIN" -BIN_DIR=bin-$POLKADOT_V +BIN_DIR=bin-$POLKAHEZ_V -build_polkadot() { - echo "cloning polkadot repository..." +build_pezkuwi() { + echo "cloning pezkuwi repository..." CWD=$(pwd) mkdir -p "$BIN_DIR" pushd /tmp - git clone https://github.com/paritytech/polkadot-sdk.git - pushd polkadot-sdk - git checkout polkadot-$POLKADOT_V - echo "building polkadot executable..." + git clone https://github.com/pezkuwichain/pezkuwi-sdk.git + pushd pezkuwi-sdk + git checkout pezkuwi-$POLKAHEZ_V + echo "building pezkuwi executable..." cargo build --release --features fast-runtime - cp target/release/polkadot "$CWD/$BIN_DIR" - cp target/release/polkadot-execute-worker "$CWD/$BIN_DIR" - cp target/release/polkadot-prepare-worker "$CWD/$BIN_DIR" + cp target/release/pezkuwi "$CWD/$BIN_DIR" + cp target/release/pezkuwi-execute-worker "$CWD/$BIN_DIR" + cp target/release/pezkuwi-prepare-worker "$CWD/$BIN_DIR" popd popd } @@ -58,7 +58,7 @@ build_polkadot() { zombienet_init() { if [ ! -f $ZOMBIENET_BIN ]; then echo "fetching zombienet executable..." - curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN + curl -LO https://github.com/pezkuwichain/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN chmod +x $ZOMBIENET_BIN fi } @@ -66,18 +66,18 @@ zombienet_init() { zombienet_build() { if [ ! -f $ZOMBIENET_BIN ]; then echo "fetching zombienet executable..." - curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN + curl -LO https://github.com/pezkuwichain/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN chmod +x $ZOMBIENET_BIN fi - if [ ! -f $BIN_DIR/polkadot ]; then - build_polkadot + if [ ! -f $BIN_DIR/pezkuwi ]; then + build_pezkuwi fi } zombienet_devnet() { zombienet_init cargo build --release - echo "spawning paseo-local relay chain plus devnet as a parachain..." + echo "spawning paseo-local relay chain plus devnet as a teyrchain..." local dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) ./$ZOMBIENET_BIN spawn "$dir/../zombienet-config/devnet.toml" -p native } @@ -86,9 +86,9 @@ zombienet_devnet() { print_help() { echo "This is a shell script to automate the execution of zombienet." echo "" - echo "$ ./zombienet.sh init # fetches zombienet and polkadot executables" - echo "$ ./zombienet.sh build # builds polkadot executables from source" - echo "$ ./zombienet.sh devnet # spawns a paseo-local relay chain plus parachain devnet-local as a parachain" + echo "$ ./zombienet.sh init # fetches zombienet and pezkuwi executables" + echo "$ ./zombienet.sh build # builds pezkuwi executables from source" + echo "$ ./zombienet.sh devnet # spawns a paseo-local relay chain plus teyrchain devnet-local as a teyrchain" } SUBCOMMAND=$1 diff --git a/evm-template/template-fuzzer/Cargo.toml b/evm-template/template-fuzzer/Cargo.toml index d895f05..b29b3ea 100644 --- a/evm-template/template-fuzzer/Cargo.toml +++ b/evm-template/template-fuzzer/Cargo.toml @@ -26,9 +26,9 @@ parity-scale-codec = { workspace = true } pezframe-support = { workspace = true } pezframe-system = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-runtime = { workspace = true } -sp-state-machine = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-state-machine = { workspace = true } pezpallet-balances = { workspace = true } pezpallet-collator-selection = { workspace = true } @@ -39,10 +39,10 @@ pezpallet-timestamp = { workspace = true } pezpallet-utility = { workspace = true } pezpallet-whitelist = { workspace = true } -cumulus-pezpallet-teyrchain-system = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-teyrchain-inherent = { workspace = true } -cumulus-test-relay-sproof-builder = { workspace = true } +pezcumulus-pezpallet-teyrchain-system = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-teyrchain-inherent = { workspace = true } +pezcumulus-test-relay-sproof-builder = { workspace = true } [features] default = [ "std", "try-runtime" ] @@ -57,8 +57,8 @@ std = [ "pezpallet-utility/std", "pezpallet-whitelist/std", "parity-scale-codec/std", - "sp-consensus-aura/std", - "sp-runtime/std", + "pezsp-consensus-aura/std", + "pezsp-runtime/std", ] tanssi = [] try-runtime = [ @@ -72,7 +72,7 @@ try-runtime = [ "pezpallet-timestamp/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-whitelist/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] [lints] diff --git a/evm-template/template-fuzzer/src/main.rs b/evm-template/template-fuzzer/src/main.rs index 228bb14..c883ee6 100644 --- a/evm-template/template-fuzzer/src/main.rs +++ b/evm-template/template-fuzzer/src/main.rs @@ -18,23 +18,23 @@ use pezframe_support::{ use pezframe_system::Account; use pezpallet_balances::{Holds, TotalIssuance}; use parity_scale_codec::{DecodeLimit, Encode}; -use sp_consensus_aura::{Slot, AURA_ENGINE_ID}; -use sp_runtime::{ +use pezsp_consensus_aura::{Slot, AURA_ENGINE_ID}; +use pezsp_runtime::{ testing::H256, traits::{Dispatchable, Header}, Digest, DigestItem, Storage, }; -use sp_state_machine::BasicExternalities; +use pezsp_state_machine::BasicExternalities; fn generate_genesis(accounts: &[AccountId]) -> Storage { use evm_runtime_template::{BalancesConfig, RuntimeGenesisConfig}; #[cfg(not(feature = "tanssi"))] use evm_runtime_template::{CollatorSelectionConfig, SessionConfig, SessionKeys}; #[cfg(not(feature = "tanssi"))] - use sp_consensus_aura::sr25519::AuthorityId as AuraId; + use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; #[cfg(not(feature = "tanssi"))] - use sp_runtime::app_crypto::ByteArray; - use sp_runtime::BuildStorage; + use pezsp_runtime::app_crypto::ByteArray; + use pezsp_runtime::BuildStorage; // Configure endowed accounts with initial balance of 1 << 60. let balances = accounts.iter().cloned().map(|k| (k, 1 << 60)).collect(); @@ -177,9 +177,9 @@ fn initialize_block(block: u32) { .unwrap(); let teyrchain_validation_data = { - use cumulus_primitives_core::{relay_chain::HeadData, PersistedValidationData}; - use cumulus_primitives_teyrchain_inherent::TeyrChainInherentData; - use cumulus_test_relay_sproof_builder::RelayStateSproofBuilder; + use pezcumulus_primitives_core::{relay_chain::HeadData, PersistedValidationData}; + use pezcumulus_primitives_teyrchain_inherent::TeyrChainInherentData; + use pezcumulus_test_relay_sproof_builder::RelayStateSproofBuilder; let parent_head = HeadData(prev_header.clone().unwrap_or(parent_header.clone()).encode()); let sproof_builder = RelayStateSproofBuilder { @@ -202,7 +202,7 @@ fn initialize_block(block: u32) { downward_messages: Default::default(), horizontal_messages: Default::default(), }; - cumulus_pezpallet_teyrchain_system::Call::set_validation_data { data } + pezcumulus_pezpallet_teyrchain_system::Call::set_validation_data { data } }; Executive::apply_extrinsic(UncheckedExtrinsic::new_bare(RuntimeCall::TeyrChainSystem( diff --git a/evm-template/zombienet-config/README.md b/evm-template/zombienet-config/README.md index ef628d5..bc1bdea 100644 --- a/evm-template/zombienet-config/README.md +++ b/evm-template/zombienet-config/README.md @@ -1,10 +1,10 @@ # Zombienet configuration -Zombienet aims to be a testing framework for Substrate based blockchains, providing a simple cli tool that allows users to spawn and test ephemeral networks. +Zombienet aims to be a testing pezframework for Bizinikiwi based blockchains, providing a simple cli tool that allows users to spawn and test ephemeral networks. ## Start a development chain -Firstly build Polkadot binaries with: +Firstly build Pezkuwi binaries with: ```sh $ scripts/zombienet.sh build @@ -16,7 +16,7 @@ This process can take some time, so please be patient. If on Linux, you can alte $ scripts/zombinet.sh init ``` -Once Polkadot binaries are in place you can spawn a local testnet by running the following command: +Once Pezkuwi binaries are in place you can spawn a local testnet by running the following command: ```shell $ scripts/zombienet.sh devnet diff --git a/evm-template/zombienet-config/devnet.toml b/evm-template/zombienet-config/devnet.toml index 4b482ac..6995c4b 100644 --- a/evm-template/zombienet-config/devnet.toml +++ b/evm-template/zombienet-config/devnet.toml @@ -1,6 +1,6 @@ [relaychain] -chain = "rococo-local" -default_command = "./bin-stable2407-1/polkadot" +chain = "pezkuwichain-local" +default_command = "./bin-stable2407-1/pezkuwi" [[relaychain.nodes]] name = "alice" @@ -10,21 +10,21 @@ validator = true name = "bob" validator = true -[[parachains]] +[[teyrchains]] id = 1000 addToGenesis = true -cumulus_based = true +pezcumulus_based = true chain = "dev" force_decorator = "generic-evm" -[[parachains.collators]] +[[teyrchains.collators]] name = "collator01" command = "./target/release/evm-template-node" ws_port = 9933 rpc_port = 8833 args = ["--rpc-max-connections 10000"] -[[parachains.collators]] +[[teyrchains.collators]] name = "collator02" ws_port = 9822 rpc_port = 8822 diff --git a/final_rebrand.py b/final_rebrand.py new file mode 100644 index 0000000..8397b1e --- /dev/null +++ b/final_rebrand.py @@ -0,0 +1,147 @@ +import os +import re + +# Order matters! Specific to General. +CONTENT_MAP = [ + # Git URLs - keep them pointing to the new SDK but use original package names if needed + ('https://github.com/paritytech/polkadot-sdk', 'https://github.com/pezkuwichain/pezkuwi-sdk'), + ('https://github.com/polkadotchain/polkadot-sdk', 'https://github.com/pezkuwichain/pezkuwi-sdk'), + + # Specific Package Renames (from REBRAND_MAP in prompt) + ('asset-test-utils', 'asset-test-pezutils'), + ('chain-spec-guide-runtime', 'pez-chain-spec-guide-runtime'), + ('equivocation-detector', 'pez-equivocation-detector'), + ('erasure-coding-fuzzer', 'pez-erasure-coding-fuzzer'), + ('ethereum-standards', 'pez-ethereum-standards'), + ('finality-relay', 'pez-finality-relay'), + ('fork-tree', 'pez-fork-tree'), + ('generate-bags', 'pez-generate-bags'), + ('kitchensink-runtime', 'pez-kitchensink-runtime'), + ('messages-relay', 'pez-messages-relay'), + ('minimal-template-node', 'pez-minimal-template-node'), + ('minimal-template-runtime', 'pez-minimal-template-runtime'), + ('node-bench', 'pez-node-bench'), + ('node-primitives', 'pez-node-primitives'), + ('node-rpc', 'pez-node-rpc'), + ('node-runtime-generate-bags', 'pez-node-runtime-generate-bags'), + ('node-template-release', 'pez-node-template-release'), + ('node-testing', 'pez-node-testing'), + ('penpal-emulated-chain', 'pez-penpal-emulated-chain'), + ('penpal-runtime', 'pez-penpal-runtime'), + ('remote-ext-tests-bags-list', 'pez-remote-ext-tests-bags-list'), + ('revive-dev-node', 'pez-revive-dev-node'), + ('revive-dev-runtime', 'pez-revive-dev-runtime'), + ('slot-range-helper', 'pez-slot-range-helper'), + ('solochain-template-node', 'pez-solochain-template-node'), + ('solochain-template-runtime', 'pez-solochain-template-runtime'), + ('subkey', 'pez-subkey'), + ('template-zombienet-tests', 'pez-template-zombienet-tests'), + ('test-runtime-constants', 'peztest-runtime-constants'), + ('tracing-gum', 'pez-tracing-gum'), + ('tracing-gum-proc-macro', 'pez-tracing-gum-proc-macro'), + + # Core Terminology + ('Polkadot SDK', 'Pezkuwi SDK'), + ('polkadot-sdk', 'pezkuwi-sdk'), + ('Polkadot', 'Pezkuwi'), + ('polkadot', 'pezkuwi'), + ('Substrate', 'Bizinikiwi'), + ('substrate', 'bizinikiwi'), + ('Cumulus', 'Pezcumulus'), + ('cumulus', 'pezcumulus'), + ('Parachain', 'Teyrchain'), + ('parachain', 'teyrchain'), + ('Rococo', 'Pezkuwichain'), + ('rococo', 'pezkuwichain'), + ('Westend', 'Zagros'), + ('westend', 'zagros'), + ('DOT', 'HEZ'), + ('WND', 'ZGR'), + ('ROC', 'TYR'), + ('PARACHAIN', 'TEYRCHAIN'), + ('POLKADOT', 'PEZKUWI'), + + # Prefix Rebranding (Lower) + (r'\bframe-', 'pezframe-'), + (r'\bpallet-', 'pezpallet-'), + (r'\bsp-', 'pezsp-'), + (r'\bsc-', 'pezsc-'), + (r'\bcumulus-', 'pezcumulus-'), + + # Prefix Rebranding (Underscore for code) + (r'\bframe_', 'pezframe_'), + (r'\bpallet_', 'pezpallet_'), + (r'\bsp_', 'pezsp_'), + (r'\bsc_', 'pezsc_'), + (r'\bcumulus_', 'pezcumulus_'), + + # Capitalized variants + (r'\bFrame', 'Pezframe'), + (r'\bPallet', 'Pezpallet'), +] + +# File renaming map +FILE_RENAME_MAP = [ + ('polkadot', 'pezkuwi'), + ('substrate', 'bizinikiwi'), + ('cumulus', 'pezcumulus'), + ('parachain', 'teyrchain'), + ('rococo', 'pezkuwichain'), + ('westend', 'zagros'), + ('frame', 'pezframe'), + ('pallet', 'pezpallet'), + ('sp-', 'pezsp-'), + ('sc-', 'pezsc-'), +] + +EXTENSIONS = ('.rs', '.toml', '.adoc', '.md', '.sh', '.yml', '.yaml', '.json') + +def rebrand_content(content): + # First, protect existing "pez" prefixes to avoid "pezpez" + # Actually, the regex \b already helps, but let's be safer. + for pattern, replacement in CONTENT_MAP: + if pattern.startswith(r'\b'): + content = re.sub(pattern, replacement, content) + else: + content = content.replace(pattern, replacement) + + # Cleanup any "pezpez" accidental double branding + content = content.replace('pezpez', 'pez') + content = content.replace('PezPez', 'Pez') + return content + +def main(): + # 1. Content Rebrand + for root, dirs, files in os.walk('.'): + if '.git' in root or 'target' in root: continue + for file in files: + if file.endswith(EXTENSIONS): + path = os.path.join(root, file) + try: + with open(path, 'r', encoding='utf-8') as f: + content = f.read() + new_content = rebrand_content(content) + if content != new_content: + with open(path, 'w', encoding='utf-8') as f: + f.write(new_content) + except: pass + + # 2. Filename Rebrand (bottom-up) + for root, dirs, files in os.walk('.', topdown=False): + if '.git' in root or 'target' in root: continue + + for name in files + dirs: + if name in ('.git', 'target', '.', '..'): continue + new_name = name + for old, new in FILE_RENAME_MAP: + if old in new_name: + new_name = new_name.replace(old, new) + + # Cleanup double pez in filenames + new_name = new_name.replace('pezpez', 'pez') + + if new_name != name: + os.rename(os.path.join(root, name), os.path.join(root, new_name)) + +if __name__ == "__main__": + main() diff --git a/generic-template/CHANGELOG.md b/generic-template/CHANGELOG.md index e5d8e15..d2385b4 100644 --- a/generic-template/CHANGELOG.md +++ b/generic-template/CHANGELOG.md @@ -17,10 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- removed `polkadot launch` (#169) +- removed `pezkuwi launch` (#169) - explanation for runtime constants (#167) - proxy filters (#146) -- weights for non-XCM related pallets (#149) +- weights for non-XCM related pezpallets (#149) ## [Unreleased] @@ -34,7 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added test for detecting changes in runtime constants (#31) - Tested and added guidelines about connecting to relay chain (#84) - Integrated fuzzer (#14) -- Added documentation for pallet assets (#106) +- Added documentation for pezpallet assets (#106) ### Fixed @@ -46,35 +46,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Upgraded `polkadot-sdk` dependencies from `polkadotv1.3.0` -> `polkadotv1.6.0` (#96) +- Upgraded `pezkuwi-sdk` dependencies from `pezkuwiv1.3.0` -> `pezkuwiv1.6.0` (#96) ## [0.1.0] - 2023-12-21 ### Added -- Fork cumulus parachain template (#11) -- Configured pallet-multisig (#13) -- Configured pallet-proxy (#20) -- Configured pallet-utility (#36) +- Fork pezcumulus teyrchain template (#11) +- Configured pezpallet-multisig (#13) +- Configured pezpallet-proxy (#20) +- Configured pezpallet-utility (#36) - Integration tests (#24) - Set up Docs (#51) -- Docs for pallet-proxy (#57) +- Docs for pezpallet-proxy (#57) - Docs for aura-ext (#59) -- Docs for parachain-system (#63) +- Docs for teyrchain-system (#63) - Docs for collator-selection (#63) -- Docs for pallet-multisig (#64) -- Docs for pallet-transaction-payment (#53) -- Docs for pallet-message-queue (#58) +- Docs for pezpallet-multisig (#64) +- Docs for pezpallet-transaction-payment (#53) +- Docs for pezpallet-message-queue (#58) - Docs for weights & fees (#66) - Docs for xcmp-queue (#73) - Docs for balances (#72) - Docs for xcm-executor (#77) -- Docs for pallet-xcm (#76) +- Docs for pezpallet-xcm (#76) ### Fixed - Fix runtime build (#40) -- Add pallet index to multisig (#45) +- Add pezpallet index to multisig (#45) - Update LICENSE (#50) - Fix CI to verify runtime builds (#46) - Don't run Rust CI on Doc Changes (#54) diff --git a/generic-template/Cargo.lock b/generic-template/Cargo.lock index 3b92524..a3c270a 100644 --- a/generic-template/Cargo.lock +++ b/generic-template/Cargo.lock @@ -610,22 +610,22 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "assets-common" version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", - "pallet-asset-conversion", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-assets", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -634,8 +634,8 @@ name = "async-backing-primitives" version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ - "sp-api", - "sp-consensus-slots", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -972,6 +972,16 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "binary-merkle-tree" +version = "16.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", +] + [[package]] name = "bincode" version = "1.3.3" @@ -1208,13 +1218,13 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "staging-xcm", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -1341,24 +1351,24 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dc-orchestrator-chain-interface", "dp-collator-assignment", "dp-core", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "test-relay-sproof-builder", "tracing", ] @@ -2019,17 +2029,17 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "parity-scale-codec", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-service", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "url", ] @@ -2038,67 +2048,90 @@ name = "cumulus-client-collator" version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-client-consensus-common", - "cumulus-client-network", - "cumulus-primitives-core", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-collator" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] [[package]] name = "cumulus-client-consensus-aura" version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-slots", - "sc-telemetry", - "sc-utils", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "sp-trie", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", "tracing", ] @@ -2109,27 +2142,57 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dyn-clone", "futures", "log", "parity-scale-codec", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-timestamp", - "sp-trie", - "sp-version", - "substrate-prometheus-endpoint", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-consensus-common" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "dyn-clone", + "futures", + "log", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2140,11 +2203,26 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "anyhow", "async-trait", - "cumulus-primitives-parachain-inherent", - "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "cumulus-client-consensus-proposer" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "async-trait", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -2154,23 +2232,49 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-version", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-network" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "futures-timer", + "parity-scale-codec", + "parking_lot 0.12.4", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2180,17 +2284,37 @@ version = "0.16.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", - "cumulus-test-relay-sproof-builder", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-storage", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-parachain-inherent" +version = "0.16.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -2200,78 +2324,104 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-client-api", - "sc-consensus", - "sp-api", - "sp-consensus", - "sp-maybe-compressed-blob", - "sp-runtime", - "sp-version", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "cumulus-client-pov-recovery" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] [[package]] name = "cumulus-client-service" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "cumulus-client-cli", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-network", - "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-network 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-pov-recovery 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-inprocess-interface", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-minimal-node", "futures", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-sync", - "sc-network-transactions", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-transaction-pool", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-aura-ext" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-aura", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2280,32 +2430,67 @@ version = "0.20.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bytes", - "cumulus-pallet-parachain-system-proc-macro", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "trie-db", +] + +[[package]] +name = "cumulus-pallet-parachain-system" +version = "0.20.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "trie-db", ] @@ -2320,85 +2505,96 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "cumulus-pallet-parachain-system-proc-macro" +version = "0.6.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "cumulus-pallet-session-benchmarking" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-weight-reclaim" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "derive-where", "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-trie", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-xcm" version = "0.19.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", - "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-aura" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-consensus-aura", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2407,14 +2603,30 @@ version = "0.18.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-api", - "sp-runtime", - "sp-trie", - "staging-xcm", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-core" +version = "0.18.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2423,12 +2635,26 @@ version = "0.18.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-parachain-inherent" +version = "0.18.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2436,77 +2662,87 @@ name = "cumulus-primitives-proof-size-hostfunction" version = "0.12.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-externalities", - "sp-runtime-interface", - "sp-trie", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-primitives-proof-size-hostfunction" +version = "0.12.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-storage-weight-reclaim" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-timestamp" version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "sp-inherents", - "sp-timestamp", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-primitives-utility" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-asset-conversion", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "polkadot-cli", "polkadot-service", - "sc-cli", - "sc-client-api", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2515,86 +2751,105 @@ version = "0.22.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "jsonrpsee-core", "parity-scale-codec", - "polkadot-overseer", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-state-machine", - "sp-version", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "cumulus-relay-chain-interface" +version = "0.22.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "jsonrpsee-core", + "parity-scale-codec", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-relay-chain-rpc-interface", "futures", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-network-bridge", - "polkadot-node-network-protocol", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-service", - "sc-authority-discovery", - "sc-client-api", - "sc-network", - "sc-network-common", - "sc-service", - "sc-tracing", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "either", "futures", "futures-timer", "jsonrpsee", "parity-scale-codec", "pin-project", - "polkadot-overseer", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "prometheus", "rand 0.8.5", - "sc-client-api", - "sc-rpc-api", - "sc-service", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", "smoldot 0.11.0", "smoldot-light 0.9.0", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-version", - "substrate-prometheus-endpoint", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-util", @@ -2607,12 +2862,25 @@ name = "cumulus-test-relay-sproof-builder" version = "0.19.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "cumulus-test-relay-sproof-builder" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -2794,19 +3062,19 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-container-chain-genesis-data", "dp-core", "futures", "jsonrpsee", "nimbus-primitives", "parity-scale-codec", - "polkadot-overseer", - "sc-client-api", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-state-machine", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -3071,11 +3339,11 @@ name = "dp-chain-state-snapshot" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3083,19 +3351,19 @@ name = "dp-collator-assignment" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.3.4", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3103,16 +3371,16 @@ name = "dp-consensus" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-api", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3120,14 +3388,14 @@ name = "dp-container-chain-genesis-data" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.3.4", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3135,14 +3403,14 @@ name = "dp-core" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.3.4", "parity-scale-codec", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3644,13 +3912,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" [[package]] -name = "pez-fork-tree" +name = "fork-tree" version = "13.0.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", ] +[[package]] +name = "fork-tree" +version = "13.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", +] + [[package]] name = "form_urlencoded" version = "1.2.1" @@ -3681,79 +3957,103 @@ name = "frame-benchmarking" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-support-procedural", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support-procedural 33.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "linregress", "log", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-storage", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support-procedural 33.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "linregress", + "log", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" version = "47.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "Inflector", "array-bytes", "chrono", "clap", "comfy-table", - "cumulus-client-parachain-inherent", - "cumulus-primitives-proof-size-hostfunction", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-proof-size-hostfunction 0.12.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "gethostname", "handlebars", "itertools 0.11.0", "linked-hash-map", "log", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_pcg", - "sc-block-builder", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-client-db", - "sc-executor", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-runtime-utilities", - "sc-service", - "sc-sysinfo", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-externalities", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-timestamp", - "sp-transaction-pool", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "subxt", "subxt-signer", "thiserror 1.0.69", @@ -3785,20 +4085,47 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "frame-election-provider-solution-type" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "frame-election-provider-support" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-election-provider-solution-type 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-npos-elections", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-election-provider-support" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-election-provider-solution-type 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3807,16 +4134,34 @@ version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "aquamarine", - "frame-support", - "frame-system", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-executive" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aquamarine", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3846,17 +4191,17 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "const-hex", "docify", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3866,12 +4211,12 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "aquamarine", "array-bytes", - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "bitflags 1.3.2", "docify", "environmental", "frame-metadata 20.0.0", - "frame-support-procedural", + "frame-support-procedural 33.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "k256", "log", @@ -3881,22 +4226,63 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-crypto-hashing-proc-macro", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aquamarine", + "array-bytes", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 20.0.0", + "frame-support-procedural 33.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tt-call", ] @@ -3910,7 +4296,7 @@ dependencies = [ "derive-syn-parse", "docify", "expander", - "frame-support-procedural-tools", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "itertools 0.11.0", "macro_magic", "proc-macro-warning", @@ -3920,12 +4306,44 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "frame-support-procedural" +version = "33.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "cfg-expr", + "derive-syn-parse", + "docify", + "expander", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "itertools 0.11.0", + "macro_magic", + "proc-macro-warning", + "proc-macro2", + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "syn 2.0.103", +] + [[package]] name = "frame-support-procedural-tools" version = "13.0.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support-procedural-tools-derive", + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "13.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "proc-macro-crate 3.3.0", "proc-macro2", "quote", @@ -3942,6 +4360,16 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "frame-support-procedural-tools-derive" +version = "12.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "frame-system" version = "40.1.0" @@ -3949,16 +4377,35 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-version", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "cfg-if", + "docify", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3966,13 +4413,27 @@ name = "frame-system-benchmarking" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system-benchmarking" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3982,7 +4443,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "docify", "parity-scale-codec", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-system-rpc-runtime-api" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -3990,10 +4461,21 @@ name = "frame-try-runtime" version = "0.46.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "frame-try-runtime" +version = "0.46.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -4225,25 +4707,25 @@ version = "3.0.0" dependencies = [ "assets-common", "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-pallet-session-benchmarking", "cumulus-pallet-weight-reclaim", "cumulus-pallet-xcm", "cumulus-pallet-xcmp-queue", "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-primitives-timestamp", "cumulus-primitives-utility", "docify", "dp-consensus", - "frame-benchmarking", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", "nimbus-primitives", @@ -4259,60 +4741,60 @@ dependencies = [ "pallet-assets", "pallet-aura", "pallet-author-inherent", - "pallet-authorship", - "pallet-balances", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-cc-authorities-noting", "pallet-collator-selection", "pallet-conviction-voting", "pallet-membership", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-preimage", "pallet-proxy", "pallet-referenda", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-transactor", "pallet-xcm-weight-trader", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-tracing", - "sp-transaction-pool", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "staging-parachain-info", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", "xcm-primitives", - "xcm-pez-simulator", + "xcm-simulator", ] [[package]] @@ -4322,15 +4804,15 @@ dependencies = [ "clap", "color-print", "cumulus-client-cli", - "cumulus-client-collator", + "cumulus-client-collator 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-client-consensus-aura", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-client-service", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", - "frame-benchmarking", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-benchmarking-cli", "futures", "generic-runtime-template", @@ -4340,38 +4822,38 @@ dependencies = [ "pallet-transaction-payment-rpc", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-basic-authorship", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-consensus", - "sc-executor", - "sc-network", - "sc-network-sync", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "staging-xcm", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-build-script-utils", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -6576,35 +7058,35 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sp-api", - "sp-blockchain", - "sp-consensus", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] -name = "pezmmr-rpc" +name = "mmr-rpc" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -6881,36 +7363,36 @@ source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503 dependencies = [ "async-backing-primitives", "async-trait", - "cumulus-client-collator", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", + "cumulus-client-collator 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-common 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-consensus-proposer 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-client-parachain-inherent 0.16.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-relay-chain-interface 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "nimbus-primitives", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sc-consensus-manual-seal", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-version", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -6920,16 +7402,16 @@ version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ "async-trait", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7175,12 +7657,12 @@ name = "openzeppelin-pallet-abstractions" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions?branch=polkadot-stable2503#bc6dcabdc7b66f218c39c0f3496710c7b81a4a09" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-std", - "sp-version", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7239,18 +7721,18 @@ name = "orml-oracle" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "orml-traits", "orml-utilities", "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-std", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7259,8 +7741,8 @@ version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7268,7 +7750,7 @@ name = "orml-traits" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "num-traits", "orml-utilities", @@ -7276,11 +7758,11 @@ dependencies = [ "paste", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7288,14 +7770,14 @@ name = "orml-utilities" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7303,13 +7785,13 @@ name = "orml-xcm-support" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "orml-traits", "parity-scale-codec", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7317,20 +7799,20 @@ name = "orml-xtokens" version = "1.1.0" source = "git+https://github.com/OpenZeppelin/open-runtime-module-library?branch=polkadot-stable2503#8eb87752765acacae0f1f788dfc5583da668772c" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "orml-traits", "orml-xcm-support", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7344,17 +7826,35 @@ name = "pallet-asset-conversion" version = "22.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-asset-conversion" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7362,17 +7862,17 @@ name = "pallet-asset-manager" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#cd57bbc6c45616ba5433f1299c14c6be3139656f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "xcm-primitives", ] @@ -7381,62 +7881,76 @@ name = "pallet-asset-rate" version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-asset-rate" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-asset-tx-payment" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-transaction-payment", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-assets" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-aura" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7444,18 +7958,18 @@ name = "pallet-author-inherent" version = "0.9.0" source = "git+https://github.com/OpenZeppelin/moonkit?branch=polkadot-stable2503#4985a2b50a9987b06efd2b3f8b410a065da7734b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "nimbus-primitives", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7463,14 +7977,29 @@ name = "pallet-authority-discovery" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", - "pallet-session", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-authority-discovery", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-authority-discovery" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7478,12 +8007,25 @@ name = "pallet-authorship" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-authorship" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7491,43 +8033,66 @@ name = "pallet-babe" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", - "pallet-timestamp", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-babe", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-babe" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-bags-list" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "aquamarine", "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7536,75 +8101,91 @@ version = "41.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-balances" +version = "41.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-beefy" version = "41.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-beefy-mmr" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", - "binary-merkle-tree", - "frame-benchmarking", - "frame-support", - "frame-system", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-beefy", - "pallet-mmr", - "pallet-session", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-bounties" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7613,16 +8194,34 @@ version = "0.19.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-broker" +version = "0.19.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7631,112 +8230,112 @@ version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ "ccp-authorities-noting-inherent", - "cumulus-pallet-parachain-system", - "cumulus-primitives-core", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-chain-state-snapshot", "dp-collator-assignment", "dp-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex", "log", "nimbus-primitives", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-child-bounties" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-bounties", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-collator-selection" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-balances", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-conviction-voting" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-delegated-staking" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-democracy" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7744,20 +8343,42 @@ name = "pallet-election-provider-multi-phase" version = "39.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", +] + +[[package]] +name = "pallet-election-provider-multi-phase" +version = "39.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -7766,30 +8387,43 @@ name = "pallet-election-provider-support-benchmarking" version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-npos-elections", - "sp-runtime", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-election-provider-support-benchmarking" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-elections-phragmen" version = "41.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", - "sp-staking", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7798,38 +8432,56 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-fast-unstake" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-grandpa" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7838,64 +8490,80 @@ version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-identity" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "enumflags2", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-im-online" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-indices" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-membership" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7904,54 +8572,73 @@ version = "43.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-message-queue" +version = "43.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-meta-tx" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-migrations" version = "10.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -7961,240 +8648,252 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-mmr-primitives", + "sp-mmr-primitives 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-mmr" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-multisig" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-nis" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-nomination-pools" version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-nomination-pools-benchmarking" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-nomination-pools-runtime-api" version = "36.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", - "sp-api", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-offences" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-offences-benchmarking" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-babe", - "pallet-balances", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-grandpa", "pallet-im-online", "pallet-offences", - "pallet-session", - "pallet-staking", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-parameters" version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-preimage" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-proxy" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] [[package]] name = "pallet-ranked-collective" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-recovery" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-referenda" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-root-testing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-scheduler" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8202,53 +8901,74 @@ name = "pallet-session" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-state-machine", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-session" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-session-benchmarking" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", - "pallet-staking", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand 0.8.5", - "sp-runtime", - "sp-session", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-society" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "rand_chacha 0.3.1", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8256,21 +8976,43 @@ name = "pallet-staking" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "rand_chacha 0.3.1", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-staking" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8279,48 +9021,57 @@ version = "22.0.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-staking-reward-fn" +version = "22.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-staking-runtime-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-staking", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-state-trie-migration" version = "44.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-sudo" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8329,35 +9080,54 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-storage", - "sp-timestamp", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-timestamp" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-tips" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8365,43 +9135,59 @@ name = "pallet-transaction-payment" version = "40.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-transaction-payment" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8410,48 +9196,67 @@ version = "39.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-treasury" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-utility" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-verify-signature" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8459,22 +9264,36 @@ name = "pallet-vesting" version = "40.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-vesting" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-whitelist" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-sdk-frame", + "polkadot-sdk-frame 0.9.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", ] @@ -8484,38 +9303,61 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bounded-collections", - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-balances", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", - "xcm-runtime-pezapis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "pallet-xcm" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "pallet-xcm-benchmarks" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8523,20 +9365,20 @@ name = "pallet-xcm-transactor" version = "0.2.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#cd57bbc6c45616ba5433f1299c14c6be3139656f" dependencies = [ - "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "xcm-primitives", ] @@ -8545,49 +9387,49 @@ name = "pallet-xcm-weight-trader" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#cd57bbc6c45616ba5433f1299c14c6be3139656f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-executor", - "xcm-runtime-pezapis", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "xcm-runtime-apis 0.7.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] name = "parachains-common" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "cumulus-primitives-utility", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "log", "pallet-asset-tx-payment", "pallet-assets", - "pallet-authorship", - "pallet-balances", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-collator-selection", - "pallet-message-queue", - "pallet-xcm", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "staging-parachain-info", - "staging-xcm", - "staging-xcm-executor", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8895,80 +9737,80 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-approval-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", "itertools 0.11.0", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-bitfield-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-network", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", - "sp-keystore", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-availability-recovery" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "fatality", "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-network", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -8984,23 +9826,23 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "frame-benchmarking-cli", "futures", "log", - "polkadot-node-metrics", - "polkadot-node-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-service", - "sc-cli", - "sc-service", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-storage-monitor", - "sc-sysinfo", - "sc-tracing", - "sp-core", - "sp-keyring", - "sp-runtime", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-build-script-utils", "thiserror 1.0.69", ] @@ -9008,24 +9850,24 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio-util", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9035,71 +9877,82 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-core-primitives" +version = "17.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-dispute-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "futures-timer", "indexmap 2.9.0", "parity-scale-codec", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-network", - "sp-application-crypto", - "sp-keystore", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-erasure-coding" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "polkadot-gossip-support" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", - "sc-network", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-keystore", - "tracing-gum", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-network-bridge" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "always-assert", "async-trait", @@ -9108,39 +9961,39 @@ dependencies = [ "futures", "parity-scale-codec", "parking_lot 0.12.4", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-network", - "sp-consensus", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-collation-generation" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-approval-voting" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "bitvec", @@ -9150,226 +10003,226 @@ dependencies = [ "itertools 0.11.0", "merlin", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.6.4", - "sc-keystore", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "schnorrkel 0.11.4", - "sp-application-crypto", - "sp-consensus", - "sp-consensus-slots", - "sp-runtime", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-approval-voting-parallel" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "itertools 0.11.0", "polkadot-approval-distribution", "polkadot-node-core-approval-voting", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_core 0.6.4", - "sc-keystore", - "sp-consensus", - "tracing-gum", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-av-store" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "futures", "futures-timer", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-consensus", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-backing" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", "polkadot-erasure-coding", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-statement-table", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-keystore", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-bitfield-signing" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-subsystem", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "wasm-timer", ] [[package]] name = "polkadot-node-core-candidate-validation" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "futures-timer", "parity-scale-codec", "polkadot-node-core-pvf", - "polkadot-node-metrics", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sp-application-crypto", - "sp-keystore", - "tracing-gum", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-chain-api" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-metrics", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "sc-client-api", - "sc-consensus-babe", - "tracing-gum", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-chain-selection" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-dispute-coordinator" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-keystore", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-parachains-inherent" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", "futures", "futures-timer", - "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sp-blockchain", - "sp-inherents", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-prospective-parachains" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", - "polkadot-node-subsystem", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-provisioner" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "always-assert", "array-bytes", @@ -9378,39 +10231,39 @@ dependencies = [ "parity-scale-codec", "pin-project", "polkadot-node-core-pvf-common", - "polkadot-node-metrics", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-tracing", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "slotmap", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "tempfile", "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf-checker" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-subsystem", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "tracing-gum", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-pvf-common" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "cpu-time", "futures", @@ -9418,34 +10271,34 @@ dependencies = [ "libc", "nix 0.29.0", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-executor", - "sc-executor-common", - "sc-executor-wasmtime", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "seccompiler", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-io", - "sp-tracing", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-node-core-runtime-api" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", - "polkadot-node-metrics", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-consensus-babe", - "tracing-gum", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9457,12 +10310,29 @@ dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "prioritized-metered-channel", - "sc-cli", - "sc-service", - "sc-tracing", - "substrate-prometheus-endpoint", + "sc-cli 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-metrics" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "prioritized-metered-channel", + "sc-cli 0.51.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9478,16 +10348,41 @@ dependencies = [ "futures", "hex", "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", - "sc-authority-discovery", - "sc-network", - "sc-network-types", - "sp-runtime", + "sc-authority-discovery 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-network-protocol" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-channel 1.9.0", + "async-trait", + "bitvec", + "derive_more 0.99.20", + "fatality", + "futures", + "hex", + "parity-scale-codec", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", + "thiserror 1.0.69", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9500,16 +10395,40 @@ dependencies = [ "futures", "futures-timer", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-keystore", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnorrkel 0.11.4", "serde", - "sp-application-crypto", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-keystore", - "sp-maybe-compressed-blob", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "zstd 0.12.4", +] + +[[package]] +name = "polkadot-node-primitives" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "bounded-vec", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnorrkel 0.11.4", + "serde", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "zstd 0.12.4", ] @@ -9519,8 +10438,17 @@ name = "polkadot-node-subsystem" version = "22.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "polkadot-node-subsystem-types", - "polkadot-overseer", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-node-subsystem" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9533,28 +10461,56 @@ dependencies = [ "fatality", "futures", "orchestra", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-primitives", - "polkadot-statement-table", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-node-subsystem-types" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "derive_more 0.99.20", + "fatality", + "futures", + "orchestra", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-statement-table 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "smallvec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "polkadot-node-subsystem-util" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "fatality", "futures", @@ -9564,22 +10520,22 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "polkadot-erasure-coding", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "prioritized-metered-channel", "rand 0.8.5", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9591,15 +10547,35 @@ dependencies = [ "futures", "futures-timer", "orchestra", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem-types", - "polkadot-primitives", - "sc-client-api", - "sp-core", + "polkadot-node-metrics 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tikv-jemalloc-ctl", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-overseer" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "orchestra", + "polkadot-node-metrics 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tikv-jemalloc-ctl", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9610,12 +10586,28 @@ dependencies = [ "bounded-collections", "derive_more 0.99.20", "parity-scale-codec", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "derive_more 0.99.20", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9627,54 +10619,82 @@ dependencies = [ "hex-literal 0.4.1", "log", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-primitives" +version = "18.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "hex-literal 0.4.1", + "log", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "polkadot-rpc" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", - "pezmmr-rpc", + "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-babe-rpc", "sc-consensus-beefy", "sc-consensus-beefy-rpc", "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -9685,47 +10705,97 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "libsecp256k1", "log", - "pallet-asset-rate", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-election-provider-multi-phase", - "pallet-fast-unstake", - "pallet-identity", - "pallet-session", - "pallet-staking", - "pallet-staking-reward-fn", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-treasury", - "pallet-vesting", + "pallet-asset-rate 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-fast-unstake 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-identity 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking-reward-fn 22.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-treasury 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-vesting 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rustc-hex", "scale-info", "serde", - "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-npos-elections", - "sp-runtime", - "sp-session", - "sp-staking", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "slot-range-helper 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-common" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "libsecp256k1", + "log", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-fast-unstake 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking-reward-fn 22.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rustc-hex", + "scale-info", + "serde", + "slot-range-helper 17.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -9735,10 +10805,22 @@ version = "20.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bs58", - "frame-benchmarking", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-primitives", - "sp-tracing", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-runtime-metrics" +version = "20.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9748,43 +10830,90 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "bitflags 1.3.2", "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "log", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-message-queue", - "pallet-mmr", - "pallet-session", - "pallet-staking", - "pallet-timestamp", + "pallet-authority-discovery 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-message-queue 43.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-mmr 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-metrics", + "polkadot-core-primitives 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-metrics 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "rand 0.8.5", "rand_chacha 0.3.1", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "staging-xcm", - "staging-xcm-executor", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-parachains" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitflags 1.3.2", + "bitvec", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "log", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-broker 0.19.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-metrics 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "rand 0.8.5", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -9803,52 +10932,87 @@ version = "0.9.1" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-benchmarking", - "frame-executive", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-arithmetic", - "sp-block-builder", - "sp-consensus-aura", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-storage", - "sp-transaction-pool", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-sdk-frame" +version = "0.9.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-service" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "frame-benchmarking", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-benchmarking-cli", - "frame-system", - "frame-system-rpc-runtime-api", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "is_executable", "kvdb", "kvdb-rocksdb", "log", "mmr-gadget", - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", "parity-db", "parity-scale-codec", @@ -9858,7 +11022,7 @@ dependencies = [ "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", @@ -9878,72 +11042,72 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-core-pvf-checker", "polkadot-node-core-runtime-api", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem-types 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-rpc", - "polkadot-runtime-parachains", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-statement-distribution", "rococo-runtime", - "sc-authority-discovery", + "sc-authority-discovery 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-basic-authorship", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-beefy", "sc-consensus-grandpa", - "sc-consensus-slots", - "sc-executor", - "sc-keystore", - "sc-network", - "sc-network-sync", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-offchain", - "sc-service", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-sync-state-rpc", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-api", - "sp-authority-discovery", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "sp-weights", - "staging-xcm", - "substrate-prometheus-endpoint", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "westend-runtime", - "xcm-runtime-pezapis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "polkadot-statement-distribution" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "arrayvec 0.7.6", "bitvec", @@ -9952,15 +11116,15 @@ dependencies = [ "futures-timer", "indexmap 2.9.0", "parity-scale-codec", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", + "polkadot-node-network-protocol 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-primitives 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-node-subsystem 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "sp-staking", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", - "tracing-gum", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -9969,8 +11133,18 @@ version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "polkadot-primitives", - "tracing-gum", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "polkadot-statement-table" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing-gum 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -10917,25 +12091,25 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "22.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "bitvec", - "frame-benchmarking", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-beefy", "pallet-beefy-mmr", "pallet-bounties", @@ -10944,11 +12118,11 @@ dependencies = [ "pallet-democracy", "pallet-elections-phragmen", "pallet-grandpa", - "pallet-identity", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-indices", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-migrations", - "pallet-mmr", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-nis", "pallet-offences", @@ -10960,72 +12134,72 @@ dependencies = [ "pallet-referenda", "pallet-root-testing", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-society", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-state-trie-migration", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-tips", - "pallet-transaction-payment", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", - "pallet-vesting", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "rococo-runtime-constants", "scale-info", "serde", "serde_derive", "serde_json", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", - "xcm-runtime-pezapis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "rococo-runtime-constants" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11342,8 +12516,19 @@ version = "31.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-allocator" +version = "31.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11362,38 +12547,66 @@ dependencies = [ "prost 0.12.6", "prost-build", "rand 0.8.5", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-authority-discovery" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "ip_network", + "linked_hash_set", + "log", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-basic-authorship" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "log", "parity-scale-codec", - "sc-block-builder", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-proposer-metrics", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11402,13 +12615,28 @@ version = "0.44.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-block-builder" +version = "0.44.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11420,21 +12648,47 @@ dependencies = [ "docify", "memmap2 0.9.5", "parity-scale-codec", - "sc-chain-spec-derive", - "sc-client-api", - "sc-executor", - "sc-network", - "sc-telemetry", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-blockchain", - "sp-core", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-genesis-builder", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-genesis-builder 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-chain-spec" +version = "42.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "docify", + "memmap2 0.9.5", + "parity-scale-codec", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11448,6 +12702,17 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sc-chain-spec-derive" +version = "12.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sc-cli" version = "0.51.0" @@ -11467,25 +12732,67 @@ dependencies = [ "rand 0.8.5", "regex", "rpassword", - "sc-client-api", - "sc-client-db", - "sc-keystore", - "sc-mixnet", - "sc-network", - "sc-service", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "sc-cli" +version = "0.51.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "chrono", + "clap", + "fdlimit", + "futures", + "itertools 0.11.0", + "libp2p-identity", + "log", + "names", + "parity-bip39", + "parity-scale-codec", + "rand 0.8.5", + "regex", + "rpassword", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-service 0.50.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", ] @@ -11500,26 +12807,77 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-executor", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-database", - "sp-externalities", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", - "substrate-prometheus-endpoint", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-client-api" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "fnv", + "futures", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-client-db" version = "0.46.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "kvdb", + "kvdb-memorydb", + "linked-hash-map", + "log", + "parity-db", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-state-db 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-client-db" +version = "0.46.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "hash-db", "kvdb", @@ -11530,16 +12888,16 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-state-db", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-state-db 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11552,16 +12910,39 @@ dependencies = [ "log", "mockall", "parking_lot 0.12.4", - "sc-client-api", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "substrate-prometheus-endpoint", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "mockall", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11574,23 +12955,52 @@ dependencies = [ "futures", "log", "parity-scale-codec", - "sc-block-builder", - "sc-client-api", - "sc-consensus", - "sc-consensus-slots", - "sc-telemetry", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-block-builder 0.44.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-aura" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "parity-scale-codec", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11600,7 +13010,7 @@ version = "0.49.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "async-trait", - "pez-fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "num-bigint", @@ -11608,54 +13018,90 @@ dependencies = [ "num-traits", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-consensus", - "sc-consensus-epochs", - "sc-consensus-slots", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-babe" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "log", + "num-bigint", + "num-rational", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-slots 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe-rpc" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "jsonrpsee", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-rpc-api", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-application-crypto", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-beefy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11664,23 +13110,23 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-consensus", - "sc-network", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "wasm-timer", @@ -11689,7 +13135,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "futures", "jsonrpsee", @@ -11697,12 +13143,12 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "sc-consensus-beefy", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-application-crypto", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11711,75 +13157,88 @@ name = "sc-consensus-epochs" version = "0.48.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "pez-fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sp-blockchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-consensus-epochs" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-consensus-grandpa" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "ahash", "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", - "pez-fork-tree", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "futures-timer", "log", "parity-scale-codec", "parking_lot 0.12.4", "rand 0.8.5", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-telemetry", - "sc-transaction-pool-api", - "sc-utils", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-grandpa-rpc" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "finality-grandpa", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-grandpa", - "sc-rpc", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11795,26 +13254,26 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-aura 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "substrate-prometheus-endpoint", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-aura 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11828,17 +13287,40 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-telemetry", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-consensus-slots" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11848,19 +13330,42 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", - "sc-executor-common", - "sc-executor-polkavm", - "sc-executor-wasmtime", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-polkavm 0.35.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-api", - "sp-core", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "sc-executor" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-polkavm 0.35.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-wasmtime 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -11870,9 +13375,22 @@ version = "0.38.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "polkavm", - "sc-allocator", - "sp-maybe-compressed-blob", - "sp-wasm-interface", + "sc-allocator 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "wasm-instrument", +] + +[[package]] +name = "sc-executor-common" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "polkavm", + "sc-allocator 31.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "wasm-instrument", ] @@ -11884,8 +13402,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "log", "polkavm", - "sc-executor-common", - "sp-wasm-interface", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-executor-polkavm" +version = "0.35.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "polkavm", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11897,10 +13426,26 @@ dependencies = [ "log", "parking_lot 0.12.4", "rustix 0.36.17", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-wasm-interface", + "sc-allocator 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "wasmtime", +] + +[[package]] +name = "sc-executor-wasmtime" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "log", + "parking_lot 0.12.4", + "rustix 0.36.17", + "sc-allocator 31.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "wasmtime", ] @@ -11913,11 +13458,27 @@ dependencies = [ "futures", "futures-timer", "log", - "sc-client-api", - "sc-network", - "sc-network-sync", - "sp-blockchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-informant" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "console", + "futures", + "futures-timer", + "log", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -11928,9 +13489,23 @@ dependencies = [ "array-bytes", "parking_lot 0.12.4", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-keystore" +version = "35.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "parking_lot 0.12.4", + "serde_json", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11949,16 +13524,44 @@ dependencies = [ "mixnet", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-keystore", - "sp-mixnet", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-mixnet 0.14.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-mixnet" +version = "0.19.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "arrayvec 0.7.6", + "blake2 0.10.6", + "bytes", + "futures", + "futures-timer", + "log", + "mixnet", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mixnet 0.14.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -11990,19 +13593,69 @@ dependencies = [ "prost 0.12.6", "prost-build", "rand 0.8.5", - "sc-client-api", - "sc-network-common", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "unsigned-varint 0.7.2", + "void", + "wasm-timer", + "zeroize", +] + +[[package]] +name = "sc-network" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "asynchronous-codec 0.6.2", + "bytes", + "cid 0.9.0", + "either", + "fnv", + "futures", + "futures-timer", + "ip_network", + "libp2p", + "linked_hash_set", + "litep2p", + "log", + "mockall", + "parity-scale-codec", + "parking_lot 0.12.4", + "partial_sort", + "pin-project", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "serde_json", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12019,25 +13672,35 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "bitflags 1.3.2", "parity-scale-codec", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-network-common" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bitflags 1.3.2", + "parity-scale-codec", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-network-gossip" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "ahash", "futures", "futures-timer", "log", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "schnellru", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -12053,12 +13716,33 @@ dependencies = [ "parity-scale-codec", "prost 0.12.6", "prost-build", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-network-light" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "futures", + "log", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12070,28 +13754,63 @@ dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", - "pez-fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "futures", "log", "mockall", "parity-scale-codec", "prost 0.12.6", "prost-build", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", - "sc-network-types", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-network-sync" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "fork-tree 13.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "futures", + "log", + "mockall", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12106,14 +13825,33 @@ dependencies = [ "futures", "log", "parity-scale-codec", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-consensus", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-network-transactions" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "futures", + "log", + "parity-scale-codec", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12135,10 +13873,29 @@ dependencies = [ "zeroize", ] +[[package]] +name = "sc-network-types" +version = "0.15.3" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bs58", + "bytes", + "ed25519-dalek", + "libp2p-identity", + "libp2p-kad", + "litep2p", + "log", + "multiaddr 0.18.2", + "multihash 0.19.3", + "rand 0.8.5", + "thiserror 1.0.69", + "zeroize", +] + [[package]] name = "sc-offchain" version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "bytes", "fnv", @@ -12154,17 +13911,17 @@ dependencies = [ "parking_lot 0.12.4", "rand 0.8.5", "rustls 0.23.28", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-offchain", - "sp-runtime", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "threadpool", "tracing", ] @@ -12172,10 +13929,10 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "log", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12188,25 +13945,57 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-mixnet", - "sc-rpc-api", - "sc-tracing", - "sc-transaction-pool-api", - "sc-utils", + "sc-block-builder 0.44.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde_json", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-offchain", - "sp-rpc", - "sp-runtime", - "sp-session", - "sp-statement-store", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-statement-store 20.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tokio", +] + +[[package]] +name = "sc-rpc" +version = "44.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-block-builder 0.44.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-statement-store 20.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", ] @@ -12217,16 +14006,36 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-mixnet", - "sc-transaction-pool-api", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-rpc-api" +version = "0.48.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "jsonrpsee", + "parity-scale-codec", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-mixnet 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "serde", + "serde_json", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12245,10 +14054,34 @@ dependencies = [ "ip_network", "jsonrpsee", "log", - "sc-rpc-api", + "sc-rpc-api 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tokio", + "tower", + "tower-http", +] + +[[package]] +name = "sc-rpc-server" +version = "21.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "dyn-clone", + "forwarded-header-value", + "futures", + "governor", + "http 1.3.1", + "http-body-util", + "hyper 1.6.0", + "ip_network", + "jsonrpsee", + "log", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tokio", "tower", "tower-http", @@ -12269,18 +14102,50 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "rand 0.8.5", - "sc-chain-spec", - "sc-client-api", - "sc-rpc", - "sc-transaction-pool-api", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-rpc-spec-v2" +version = "0.49.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "futures", + "futures-util", + "hex", + "itertools 0.11.0", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12289,15 +14154,15 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", - "sc-executor", - "sc-executor-common", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-state-machine", - "sp-wasm-interface", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor-common 0.38.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12317,47 +14182,111 @@ dependencies = [ "parking_lot 0.12.4", "pin-project", "rand 0.8.5", - "sc-chain-spec", - "sc-client-api", - "sc-client-db", - "sc-consensus", - "sc-executor", - "sc-informant", - "sc-keystore", - "sc-network", - "sc-network-common", - "sc-network-light", - "sc-network-sync", - "sc-network-transactions", - "sc-network-types", - "sc-rpc", - "sc-rpc-server", - "sc-rpc-spec-v2", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "sc-chain-spec 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-informant 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-light 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-server 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-rpc-spec-v2 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "schnellru", "serde", "serde_json", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-state-machine", - "sp-storage", - "sp-transaction-pool", - "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-storage-proof 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "static_init", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", + "tracing-futures", +] + +[[package]] +name = "sc-service" +version = "0.50.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "directories", + "exit-future", + "futures", + "futures-timer", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "pin-project", + "rand 0.8.5", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-db 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-informant 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-keystore 35.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-common 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-light 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-sync 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-transactions 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-network-types 0.15.3 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc 44.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-server 21.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-spec-v2 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-sysinfo 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "schnellru", + "serde", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-storage-proof 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "static_init", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tempfile", "thiserror 1.0.69", "tokio", @@ -12373,18 +14302,29 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-state-db" +version = "0.38.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sc-storage-monitor" version = "0.24.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "clap", "fs4", "log", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", ] @@ -12392,19 +14332,19 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", - "sc-consensus-epochs", + "sc-chain-spec 42.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-babe 0.49.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-consensus-epochs 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sc-consensus-grandpa", "serde", "serde_json", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12420,12 +14360,32 @@ dependencies = [ "rand 0.8.5", "rand_pcg", "regex", - "sc-telemetry", + "sc-telemetry 28.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", "serde_json", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-io", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-sysinfo" +version = "42.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "derive_more 0.99.20", + "futures", + "libc", + "log", + "rand 0.8.5", + "rand_pcg", + "regex", + "sc-telemetry 28.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -12440,7 +14400,26 @@ dependencies = [ "parking_lot 0.12.4", "pin-project", "rand 0.8.5", - "sc-utils", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "serde", + "serde_json", + "thiserror 1.0.69", + "wasm-timer", +] + +[[package]] +name = "sc-telemetry" +version = "28.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "chrono", + "futures", + "libp2p", + "log", + "parking_lot 0.12.4", + "pin-project", + "rand 0.8.5", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", "serde_json", "thiserror 1.0.69", @@ -12460,15 +14439,43 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "rustc-hash 1.1.0", - "sc-client-api", - "sc-tracing-proc-macro", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-tracing-proc-macro 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "tracing-log", + "tracing-subscriber", +] + +[[package]] +name = "sc-tracing" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "chrono", + "console", + "is-terminal", + "libc", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rustc-hash 1.1.0", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-tracing-proc-macro 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-rpc 34.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "tracing-log", @@ -12486,6 +14493,17 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sc-tracing-proc-macro" +version = "11.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sc-transaction-pool" version = "39.0.0" @@ -12500,18 +14518,50 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.4", - "sc-client-api", - "sc-transaction-pool-api", - "sc-utils", + "sc-client-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "serde", - "sp-api", - "sp-blockchain", - "sp-core", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-runtime", - "sp-tracing", - "sp-transaction-pool", - "substrate-prometheus-endpoint", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "sc-transaction-pool" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "indexmap 2.9.0", + "itertools 0.11.0", + "linked-hash-map", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-utils 18.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "substrate-prometheus-endpoint 0.17.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -12529,9 +14579,26 @@ dependencies = [ "log", "parity-scale-codec", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-transaction-pool-api" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "indexmap 2.9.0", + "log", + "parity-scale-codec", + "serde", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -12546,7 +14613,21 @@ dependencies = [ "log", "parking_lot 0.12.4", "prometheus", - "sp-arithmetic", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sc-utils" +version = "18.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-channel 1.9.0", + "futures", + "futures-timer", + "log", + "parking_lot 0.12.4", + "prometheus", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13150,7 +15231,18 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "slot-range-helper" +version = "17.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "enumn", + "parity-scale-codec", + "paste", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13466,15 +15558,37 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro", - "sp-core", - "sp-externalities", - "sp-metadata-ir", - "sp-runtime", - "sp-runtime-interface", - "sp-state-machine", - "sp-trie", - "sp-version", + "sp-api-proc-macro 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-api" +version = "36.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "hash-db", + "log", + "parity-scale-codec", + "scale-info", + "sp-api-proc-macro 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-metadata-ir 0.10.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13492,6 +15606,20 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sp-api-proc-macro" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "blake2 0.10.6", + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sp-application-crypto" version = "40.1.0" @@ -13500,8 +15628,20 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-application-crypto" +version = "40.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13518,6 +15658,20 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "sp-arithmetic" +version = "26.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "docify", + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "static_assertions", +] + [[package]] name = "sp-authority-discovery" version = "36.0.0" @@ -13525,9 +15679,21 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-authority-discovery" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13535,9 +15701,19 @@ name = "sp-block-builder" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-inherents", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-block-builder" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13549,12 +15725,31 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "schnellru", - "sp-api", - "sp-consensus", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "sp-blockchain" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "futures", + "parity-scale-codec", + "parking_lot 0.12.4", + "schnellru", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-database 10.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", ] @@ -13567,9 +15762,23 @@ dependencies = [ "async-trait", "futures", "log", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-consensus" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "futures", + "log", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13581,12 +15790,28 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-aura" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13598,32 +15823,50 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-babe" +version = "0.42.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-slots 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "sp-consensus-beefy" version = "24.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-io", - "sp-keystore", - "sp-mmr-primitives", - "sp-runtime", - "sp-weights", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -13637,11 +15880,28 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-grandpa" +version = "23.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13652,7 +15912,18 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-timestamp", + "sp-timestamp 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-consensus-slots" +version = "0.42.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-timestamp 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13689,13 +15960,60 @@ dependencies = [ "secrecy 0.8.0", "serde", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "ss58-registry", - "substrate-bip39", + "substrate-bip39 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "w3f-bls", + "zeroize", +] + +[[package]] +name = "sp-core" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "ark-vrf", + "array-bytes", + "bitflags 1.3.2", + "blake2 0.10.6", + "bounded-collections", + "bs58", + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "itertools 0.11.0", + "k256", + "libsecp256k1", + "log", + "merlin", + "parity-bip39", + "parity-scale-codec", + "parking_lot 0.12.4", + "paste", + "primitive-types", + "rand 0.8.5", + "scale-info", + "schnorrkel 0.11.4", + "secp256k1 0.28.2", + "secrecy 0.8.0", + "serde", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "ss58-registry", + "substrate-bip39 0.6.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "w3f-bls", @@ -13729,6 +16047,19 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "sp-crypto-hashing" +version = "0.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.9", + "sha3", + "twox-hash", +] + [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" @@ -13739,6 +16070,16 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sp-crypto-hashing-proc-macro" +version = "0.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "syn 2.0.103", +] + [[package]] name = "sp-database" version = "10.0.0" @@ -13748,6 +16089,15 @@ dependencies = [ "parking_lot 0.12.4", ] +[[package]] +name = "sp-database" +version = "10.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "kvdb", + "parking_lot 0.12.4", +] + [[package]] name = "sp-debug-derive" version = "14.0.0" @@ -13758,6 +16108,16 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sp-debug-derive" +version = "14.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sp-externalities" version = "0.30.0" @@ -13765,7 +16125,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "environmental", "parity-scale-codec", - "sp-storage", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-externalities" +version = "0.30.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13776,8 +16146,20 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde_json", - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-genesis-builder" +version = "0.17.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde_json", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13789,7 +16171,20 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-inherents" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13807,14 +16202,40 @@ dependencies = [ "polkavm-derive", "rustversion", "secp256k1 0.28.2", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-tracing", - "sp-trie", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "40.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive", + "rustversion", + "secp256k1 0.28.2", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", "tracing-core", ] @@ -13824,8 +16245,18 @@ name = "sp-keyring" version = "41.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "strum 0.26.3", +] + +[[package]] +name = "sp-keyring" +version = "41.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", ] @@ -13836,8 +16267,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", - "sp-core", - "sp-externalities", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-keystore" +version = "0.42.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.4", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13849,6 +16291,15 @@ dependencies = [ "zstd 0.12.4", ] +[[package]] +name = "sp-maybe-compressed-blob" +version = "11.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "thiserror 1.0.69", + "zstd 0.12.4", +] + [[package]] name = "sp-metadata-ir" version = "0.10.0" @@ -13859,6 +16310,16 @@ dependencies = [ "scale-info", ] +[[package]] +name = "sp-metadata-ir" +version = "0.10.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-metadata 20.0.0", + "parity-scale-codec", + "scale-info", +] + [[package]] name = "sp-mixnet" version = "0.14.0" @@ -13866,8 +16327,19 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-mixnet" +version = "0.14.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13880,10 +16352,27 @@ dependencies = [ "polkadot-ckb-merkle-mountain-range", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-mmr-primitives" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "log", + "parity-scale-codec", + "polkadot-ckb-merkle-mountain-range", + "scale-info", + "serde", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -13895,9 +16384,22 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-npos-elections" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13905,9 +16407,19 @@ name = "sp-offchain" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-offchain" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13919,6 +16431,15 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "13.0.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "backtrace", + "regex", +] + [[package]] name = "sp-rpc" version = "34.0.0" @@ -13926,7 +16447,17 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "rustc-hash 1.1.0", "serde", - "sp-core", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-rpc" +version = "34.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "rustc-hash 1.1.0", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -13934,7 +16465,7 @@ name = "sp-runtime" version = "41.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "docify", "either", "hash256-std-hasher", @@ -13947,13 +16478,42 @@ dependencies = [ "scale-info", "serde", "simple-mermaid", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std", - "sp-trie", - "sp-weights", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", + "tuplex", +] + +[[package]] +name = "sp-runtime" +version = "41.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "docify", + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "paste", + "rand 0.8.5", + "scale-info", + "serde", + "simple-mermaid", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", "tuplex", ] @@ -13968,12 +16528,31 @@ dependencies = [ "parity-scale-codec", "polkavm-derive", "primitive-types", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface-proc-macro 18.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "29.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "polkavm-derive", + "primitive-types", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface-proc-macro 18.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-wasm-interface 21.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "static_assertions", ] @@ -13990,6 +16569,19 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "18.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "Inflector", + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sp-session" version = "38.1.0" @@ -13997,11 +16589,25 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-staking", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-session" +version = "38.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keystore 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14013,8 +16619,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-staking" +version = "38.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14028,10 +16647,30 @@ dependencies = [ "parking_lot 0.12.4", "rand 0.8.5", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-state-machine" +version = "0.45.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "smallvec", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-panic-handler 13.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "trie-db", @@ -14050,13 +16689,37 @@ dependencies = [ "rand 0.8.5", "scale-info", "sha2 0.10.9", - "sp-api", - "sp-application-crypto", - "sp-core", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", - "sp-externalities", - "sp-runtime", - "sp-runtime-interface", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "x25519-dalek", +] + +[[package]] +name = "sp-statement-store" +version = "20.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "aes-gcm", + "curve25519-dalek", + "ed25519-dalek", + "hkdf", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sha2 0.10.9", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime-interface 29.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "x25519-dalek", ] @@ -14066,6 +16729,11 @@ name = "sp-std" version = "14.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +[[package]] +name = "sp-std" +version = "14.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" + [[package]] name = "sp-storage" version = "22.0.0" @@ -14075,7 +16743,19 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-storage" +version = "22.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14085,8 +16765,20 @@ source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503 dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-timestamp" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14101,13 +16793,33 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "sp-tracing" +version = "17.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "tracing", + "tracing-core", + "tracing-subscriber", +] + [[package]] name = "sp-transaction-pool" version = "36.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-transaction-pool" +version = "36.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14118,10 +16830,24 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-transaction-storage-proof" +version = "36.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14138,8 +16864,30 @@ dependencies = [ "rand 0.8.5", "scale-info", "schnellru", - "sp-core", - "sp-externalities", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "39.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "ahash", + "hash-db", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.4", + "rand 0.8.5", + "scale-info", + "schnellru", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-externalities 0.30.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", "tracing", "trie-db", @@ -14156,10 +16904,27 @@ dependencies = [ "parity-wasm", "scale-info", "serde", - "sp-crypto-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-version" +version = "39.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm", + "scale-info", + "serde", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "thiserror 1.0.69", ] @@ -14175,6 +16940,18 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "sp-version-proc-macro" +version = "15.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "parity-scale-codec", + "proc-macro-warning", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "sp-wasm-interface" version = "21.0.1" @@ -14187,6 +16964,18 @@ dependencies = [ "wasmtime", ] +[[package]] +name = "sp-wasm-interface" +version = "21.0.1" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "anyhow", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "wasmtime", +] + [[package]] name = "sp-weights" version = "31.1.0" @@ -14197,8 +16986,22 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-debug-derive", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "sp-weights" +version = "31.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "bounded-collections", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-debug-derive 14.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14256,14 +17059,14 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-parachain-info" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14275,16 +17078,37 @@ dependencies = [ "bounded-collections", "derive-where", "environmental", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-weights", - "xcm-pez-procedural", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "xcm-procedural 11.0.2 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "staging-xcm" +version = "16.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "array-bytes", + "bounded-collections", + "derive-where", + "environmental", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "hex-literal 0.4.1", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "xcm-procedural 11.0.2 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14293,21 +17117,45 @@ version = "20.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", - "pallet-asset-conversion", - "pallet-transaction-payment", + "pallet-asset-conversion 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-executor", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "staging-xcm-builder" +version = "20.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "pallet-asset-conversion 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -14317,17 +17165,37 @@ version = "19.1.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-arithmetic 26.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "tracing", +] + +[[package]] +name = "staging-xcm-executor" +version = "19.1.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "environmental", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "tracing", ] @@ -14434,29 +17302,41 @@ dependencies = [ "zeroize", ] +[[package]] +name = "substrate-bip39" +version = "0.6.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "hmac 0.12.1", + "pbkdf2", + "schnorrkel 0.11.4", + "sha2 0.10.9", + "zeroize", +] + [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" [[package]] name = "substrate-frame-rpc-system" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "docify", - "frame-system-rpc-runtime-api", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-rpc-api", - "sc-transaction-pool-api", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-transaction-pool-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-blockchain 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -14473,27 +17353,41 @@ dependencies = [ "tokio", ] +[[package]] +name = "substrate-prometheus-endpoint" +version = "0.17.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "http-body-util", + "hyper 1.6.0", + "hyper-util", + "log", + "prometheus", + "thiserror 1.0.69", + "tokio", +] + [[package]] name = "substrate-state-trie-migration-rpc" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", + "sc-client-api 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sc-rpc-api 0.48.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "trie-db", ] [[package]] name = "substrate-wasm-builder" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "array-bytes", "build-helper", @@ -14506,13 +17400,13 @@ dependencies = [ "parity-scale-codec", "parity-wasm", "polkavm-linker", - "sc-executor", + "sc-executor 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "shlex", - "sp-core", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "sp-version", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-tracing 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "strum 0.26.3", "tempfile", "toml 0.8.23", @@ -14808,27 +17702,27 @@ dependencies = [ name = "template-fuzzer" version = "0.1.0" dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "cumulus-pallet-parachain-system 0.20.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-core 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-primitives-parachain-inherent 0.18.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "cumulus-test-relay-sproof-builder 0.19.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "generic-runtime-template", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-collator-selection", "pallet-multisig", "pallet-scheduler", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-whitelist", "parachains-common", "parity-scale-codec", "quinn-proto 0.9.6", - "sp-consensus-aura", - "sp-runtime", - "sp-state-machine", + "sp-consensus-aura 0.42.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "ziggy", ] @@ -14862,14 +17756,14 @@ name = "test-relay-sproof-builder" version = "0.1.0" source = "git+https://github.com/OpenZeppelin/dancekit?branch=polkadot-stable2503#6ee291fed2a2183d155ea0f3d9f95f213e14b721" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "dp-collator-assignment", "dp-core", - "frame-support", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-state-machine 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-trie 39.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -15265,13 +18159,24 @@ version = "19.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ "coarsetime", - "polkadot-primitives", + "polkadot-primitives 18.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "tracing", - "pez-tracing-gum-proc-macro", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] -name = "pez-tracing-gum-proc-macro" +name = "tracing-gum" +version = "19.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "coarsetime", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "tracing", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "tracing-gum-proc-macro" version = "5.0.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ @@ -15282,6 +18187,18 @@ dependencies = [ "syn 2.0.103", ] +[[package]] +name = "tracing-gum-proc-macro" +version = "5.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "expander", + "proc-macro-crate 3.3.0", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "tracing-log" version = "0.2.0" @@ -16161,43 +19078,43 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "westend-runtime" version = "22.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", + "frame-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-election-provider-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-executive 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-benchmarking 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system-rpc-runtime-api 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-try-runtime 0.46.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "hex-literal 0.4.1", "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", + "pallet-asset-rate 19.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authority-discovery 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-authorship 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-babe 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-bags-list", - "pallet-balances", + "pallet-balances 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-beefy", "pallet-beefy-mmr", "pallet-conviction-voting", "pallet-delegated-staking", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-multi-phase 39.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-election-provider-support-benchmarking 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-elections-phragmen", - "pallet-fast-unstake", + "pallet-fast-unstake 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-grandpa", - "pallet-identity", + "pallet-identity 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-indices", "pallet-membership", - "pallet-message-queue", + "pallet-message-queue 43.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-meta-tx", "pallet-migrations", - "pallet-mmr", + "pallet-mmr 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-multisig", "pallet-nomination-pools", "pallet-nomination-pools-benchmarking", @@ -16211,76 +19128,76 @@ dependencies = [ "pallet-referenda", "pallet-root-testing", "pallet-scheduler", - "pallet-session", + "pallet-session 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-session-benchmarking", "pallet-society", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-staking-runtime-api", "pallet-state-trie-migration", "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "pallet-transaction-payment 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", + "pallet-treasury 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-utility", "pallet-verify-signature", - "pallet-vesting", + "pallet-vesting 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-whitelist", - "pallet-xcm", + "pallet-xcm 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "serde_derive", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-application-crypto 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-arithmetic 26.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-authority-discovery 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-block-builder 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-consensus-babe 0.42.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-mmr-primitives", - "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-consensus-grandpa 23.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-genesis-builder 0.17.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-inherents 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-keyring 41.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-mmr-primitives 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-npos-elections 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-offchain 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-session 38.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-staking 38.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-storage 22.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-transaction-pool 36.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-version 39.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "substrate-wasm-builder", "westend-runtime-constants", - "xcm-runtime-pezapis", + "xcm-runtime-apis 0.7.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] name = "westend-runtime-constants" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-common 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", - "staging-xcm-builder", + "sp-core 36.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] @@ -16842,31 +19759,31 @@ name = "xcm-primitives" version = "0.1.1" source = "git+https://github.com/OpenZeppelin/moonbeam.git?branch=polkadot-stable2503#cd57bbc6c45616ba5433f1299c14c6be3139656f" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.18.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "ethereum", "ethereum-types", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "hex", "impl-trait-for-tuples", "log", - "pallet-staking", + "pallet-staking 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "parity-scale-codec", - "polkadot-runtime-common", + "polkadot-runtime-common 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", "scale-info", "serde", "sha3", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", ] [[package]] -name = "xcm-pez-procedural" +name = "xcm-procedural" version = "11.0.2" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ @@ -16877,38 +19794,63 @@ dependencies = [ ] [[package]] -name = "xcm-runtime-pezapis" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +name = "xcm-procedural" +version = "11.0.2" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-weights", - "staging-xcm", - "staging-xcm-executor", + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.103", ] [[package]] -name = "xcm-pez-simulator" -version = "20.0.0" +name = "xcm-runtime-apis" +version = "0.7.0" source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" dependencies = [ - "frame-support", - "frame-system", + "frame-support 40.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "xcm-runtime-apis" +version = "0.7.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "parity-scale-codec", + "scale-info", + "sp-api 36.0.1 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-weights 31.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", +] + +[[package]] +name = "xcm-simulator" +version = "20.0.0" +source = "git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503#0c0d4ceba45a70f4e8dc40b1ee0cfae1fd759454" +dependencies = [ + "frame-support 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "frame-system 40.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "parity-scale-codec", "paste", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-core-primitives 17.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-parachain-primitives 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-primitives 18.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "polkadot-runtime-parachains 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-io 40.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "sp-runtime 41.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm 16.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-builder 20.0.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", + "staging-xcm-executor 19.1.0 (git+https://github.com/pezkuwichain/pezkuwi-sdk?tag=polkadot-stable2503)", ] [[package]] diff --git a/generic-template/Cargo.toml b/generic-template/Cargo.toml index f288fe1..3b570ac 100644 --- a/generic-template/Cargo.toml +++ b/generic-template/Cargo.toml @@ -27,116 +27,116 @@ serde_json = { version = "1.0.121", default-features = false } smallvec = "1.11.0" # TODO: update to release -pezframe-benchmarking = { package = "frame-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-benchmarking-cli = { package = "frame-benchmarking-cli", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-executive = { package = "frame-executive", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-metadata-hash-extension = { package = "frame-metadata-hash-extension", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-support = { package = "frame-support", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system = { package = "frame-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system-benchmarking = { package = "frame-system-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-system-rpc-runtime-api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezframe-try-runtime = { package = "frame-try-runtime", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -openzeppelin-pezpallet-abstractions = { package = "openzeppelin-pallet-abstractions", git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } -openzeppelin-pezpallet-abstractions-proc = { package = "openzeppelin-pallet-abstractions-proc", git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } -pezpallet-asset-tx-payment = { package = "pallet-asset-tx-payment", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-assets = { package = "pallet-assets", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-aura = { package = "pallet-aura", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-balances = { package = "pallet-balances", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-conviction-voting = { package = "pallet-conviction-voting", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-membership = { package = "pallet-membership", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-message-queue = { package = "pallet-message-queue", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-multisig = { package = "pallet-multisig", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-preimage = { package = "pallet-preimage", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-referenda = { package = "pallet-referenda", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-session = { package = "pallet-session", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment-rpc = { package = "pallet-transaction-payment-rpc", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-utility = { package = "pallet-utility", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-whitelist = { package = "pallet-whitelist", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-network = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-tracing = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-build-script-utils = { package = "substrate-build-script-utils", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503" } -bizinikiwi-pezframe-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -bizinikiwi-wasm-builder = { package = "substrate-wasm-builder", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-benchmarking = { package = "frame-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-benchmarking-cli = { package = "frame-benchmarking-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-executive = { package = "frame-executive", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-metadata-hash-extension = { package = "frame-metadata-hash-extension", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-support = { package = "frame-support", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system = { package = "frame-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system-benchmarking = { package = "frame-system-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-system-rpc-runtime-api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezframe-try-runtime = { package = "frame-try-runtime", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +openzeppelin-pallet-abstractions = { git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } +openzeppelin-pallet-abstractions-proc = { git = "https://github.com/OpenZeppelin/openzeppelin-pallet-abstractions", branch = "polkadot-stable2503", default-features = false } +pezpallet-asset-tx-payment = { package = "pallet-asset-tx-payment", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-assets = { package = "pallet-assets", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-aura = { package = "pallet-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-authorship = { package = "pallet-authorship", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-balances = { package = "pallet-balances", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-conviction-voting = { package = "pallet-conviction-voting", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-membership = { package = "pallet-membership", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-message-queue = { package = "pallet-message-queue", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-multisig = { package = "pallet-multisig", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-preimage = { package = "pallet-preimage", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-proxy = { package = "pallet-proxy", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-referenda = { package = "pallet-referenda", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-scheduler = { package = "pallet-scheduler", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-session = { package = "pallet-session", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-sudo = { package = "pallet-sudo", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-timestamp = { package = "pallet-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment-rpc = { package = "pallet-transaction-payment-rpc", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-treasury = { package = "pallet-treasury", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-utility = { package = "pallet-utility", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-whitelist = { package = "pallet-whitelist", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-basic-authorship = { package = "sc-basic-authorship", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-chain-spec = { package = "sc-chain-spec", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-cli = { package = "sc-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-client-api = { package = "sc-client-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-consensus = { package = "sc-consensus", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-executor = { package = "sc-executor", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-network = { package = "sc-network", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-network-sync = { package = "sc-network-sync", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-offchain = { package = "sc-offchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-rpc = { package = "sc-rpc", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-service = { package = "sc-service", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-sysinfo = { package = "sc-sysinfo", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-telemetry = { package = "sc-telemetry", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-tracing = { package = "sc-tracing", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-transaction-pool = { package = "sc-transaction-pool", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsc-transaction-pool-api = { package = "sc-transaction-pool-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-api = { package = "sp-api", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-block-builder = { package = "sp-block-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-blockchain = { package = "sp-blockchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-consensus-aura = { package = "sp-consensus-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-core = { package = "sp-core", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-genesis-builder = { package = "sp-genesis-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-inherents = { package = "sp-inherents", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-io = { package = "sp-io", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-keyring = { package = "sp-keyring", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-keystore = { package = "sp-keystore", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-offchain = { package = "sp-offchain", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-runtime = { package = "sp-runtime", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-session = { package = "sp-session", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-state-machine = { package = "sp-state-machine", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-std = { package = "sp-std", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-timestamp = { package = "sp-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-tracing = { package = "sp-tracing", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-transaction-pool = { package = "sp-transaction-pool", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezsp-version = { package = "sp-version", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-build-script-utils = { package = "substrate-build-script-utils", git = "https://github.com/pezkuwichain/pezkuwi-sdk", tag = "polkadot-stable2503" } +bizinikiwi-pezframe-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +bizinikiwi-wasm-builder = { package = "substrate-wasm-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } # Pezkuwi -pezpallet-xcm = { package = "pallet-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-cli = { package = "polkadot-cli", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-teyrchain-primitives = { package = "polkadot-parachain-primitives", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-primitives = { package = "polkadot-primitives", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezkuwi-runtime-teyrchains = { package = "polkadot-runtime-parachains", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -staging-xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -xcm-pez-simulator = { package = "xcm-simulator", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-xcm = { package = "pallet-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-cli = { package = "polkadot-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-teyrchain-primitives = { package = "polkadot-parachain-primitives", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-primitives = { package = "polkadot-primitives", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezkuwi-runtime-teyrchains = { package = "polkadot-runtime-parachains", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm = { package = "staging-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +staging-xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +xcm-pez-simulator = { package = "xcm-simulator", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } -# Cumulus -assets-common = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-aura-ext = { package = "cumulus-pallet-aura-ext", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-teyrchain-system = { package = "cumulus-pallet-parachain-system", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-session-benchmarking = { package = "cumulus-pallet-session-benchmarking", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-weight-reclaim = { package = "cumulus-pallet-weight-reclaim", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-xcm = { package = "cumulus-pallet-xcm", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-pezpallet-xcmp-queue = { package = "cumulus-pallet-xcmp-queue", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-teyrchain-inherent = { package = "cumulus-primitives-parachain-inherent", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-primitives-utility = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -pezpallet-collator-selection = { package = "pallet-collator-selection", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -teyrchain-info = { package = "staging-parachain-info", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } -teyrchains-common = { package = "parachains-common", git = "https://github.com/paritytech/polkadot-sdk", default-features = false, tag = "polkadot-stable2503" } +# Pezpezcumulus +assets-common = { git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-cli = { package = "cumulus-client-cli", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-collator = { package = "cumulus-client-collator", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-aura = { package = "cumulus-client-consensus-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-common = { package = "cumulus-client-consensus-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-consensus-proposer = { package = "cumulus-client-consensus-proposer", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-client-service = { package = "cumulus-client-service", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-aura-ext = { package = "cumulus-pallet-aura-ext", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-teyrchain-system = { package = "cumulus-pallet-parachain-system", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-session-benchmarking = { package = "cumulus-pallet-session-benchmarking", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-weight-reclaim = { package = "cumulus-pallet-weight-reclaim", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-xcm = { package = "cumulus-pallet-xcm", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-pezpallet-xcmp-queue = { package = "cumulus-pallet-xcmp-queue", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-aura = { package = "cumulus-primitives-aura", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-core = { package = "cumulus-primitives-core", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-teyrchain-inherent = { package = "cumulus-primitives-parachain-inherent", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-timestamp = { package = "cumulus-primitives-timestamp", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-primitives-utility = { package = "cumulus-primitives-utility", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-relay-chain-interface = { package = "cumulus-relay-chain-interface", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezcumulus-test-relay-sproof-builder = { package = "cumulus-test-relay-sproof-builder", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +pezpallet-collator-selection = { package = "pallet-collator-selection", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +teyrchain-info = { package = "staging-parachain-info", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } +teyrchains-common = { package = "parachains-common", git = "https://github.com/pezkuwichain/pezkuwi-sdk", default-features = false, tag = "polkadot-stable2503" } # Moonbeam pezpallet-asset-manager = { package = "pallet-asset-manager", git = "https://github.com/OpenZeppelin/moonbeam.git", branch = "polkadot-stable2503", default-features = false } diff --git a/generic-template/node/Cargo.toml b/generic-template/node/Cargo.toml index 0fef807..cd901ac 100644 --- a/generic-template/node/Cargo.toml +++ b/generic-template/node/Cargo.toml @@ -25,31 +25,31 @@ generic-runtime-template = { path = "../runtime" } pezframe-benchmarking = { workspace = true } pezframe-benchmarking-cli = { workspace = true } pezpallet-transaction-payment-rpc = { workspace = true } -sc-basic-authorship = { workspace = true } -sc-chain-spec = { workspace = true } -sc-cli = { workspace = true } -sc-client-api = { workspace = true } -sc-consensus = { workspace = true } -sc-executor = { workspace = true } -sc-network = { workspace = true } -sc-network-sync = { workspace = true } -sc-offchain = { workspace = true } -sc-rpc = { workspace = true } -sc-service = { workspace = true } -sc-sysinfo = { workspace = true } -sc-telemetry = { workspace = true } -sc-tracing = { workspace = true } -sc-transaction-pool = { workspace = true } -sc-transaction-pool-api = { workspace = true } -sp-api = { workspace = true } -sp-block-builder = { workspace = true } -sp-blockchain = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-core = { workspace = true } -sp-io = { workspace = true } -sp-keystore = { workspace = true } -sp-runtime = { workspace = true } -sp-timestamp = { workspace = true } +pezsc-basic-authorship = { workspace = true } +pezsc-chain-spec = { workspace = true } +pezsc-cli = { workspace = true } +pezsc-client-api = { workspace = true } +pezsc-consensus = { workspace = true } +pezsc-executor = { workspace = true } +pezsc-network = { workspace = true } +pezsc-network-sync = { workspace = true } +pezsc-offchain = { workspace = true } +pezsc-rpc = { workspace = true } +pezsc-service = { workspace = true } +pezsc-sysinfo = { workspace = true } +pezsc-telemetry = { workspace = true } +pezsc-tracing = { workspace = true } +pezsc-transaction-pool = { workspace = true } +pezsc-transaction-pool-api = { workspace = true } +pezsp-api = { workspace = true } +pezsp-block-builder = { workspace = true } +pezsp-blockchain = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-core = { workspace = true } +pezsp-io = { workspace = true } +pezsp-keystore = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-timestamp = { workspace = true } bizinikiwi-pezframe-rpc-system = { workspace = true } bizinikiwi-prometheus-endpoint = { workspace = true } @@ -58,17 +58,17 @@ pezkuwi-cli = { workspace = true } pezkuwi-primitives = { workspace = true } staging-xcm = { workspace = true } -# Cumulus +# Pezpezcumulus color-print = { workspace = true } -cumulus-client-cli = { workspace = true } -cumulus-client-collator = { workspace = true } -cumulus-client-consensus-aura = { workspace = true } -cumulus-client-consensus-common = { workspace = true } -cumulus-client-consensus-proposer = { workspace = true } -cumulus-client-service = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-teyrchain-inherent = { workspace = true } -cumulus-relay-chain-interface = { workspace = true } +pezcumulus-client-cli = { workspace = true } +pezcumulus-client-collator = { workspace = true } +pezcumulus-client-consensus-aura = { workspace = true } +pezcumulus-client-consensus-common = { workspace = true } +pezcumulus-client-consensus-proposer = { workspace = true } +pezcumulus-client-service = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-teyrchain-inherent = { workspace = true } +pezcumulus-relay-chain-interface = { workspace = true } # Tanssi nimbus-consensus = { workspace = true } @@ -85,14 +85,14 @@ runtime-benchmarks = [ "generic-runtime-template/runtime-benchmarks", "pezkuwi-cli/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", - "sc-service/runtime-benchmarks", - "sp-runtime/runtime-benchmarks", + "pezsc-service/runtime-benchmarks", + "pezsp-runtime/runtime-benchmarks", ] tanssi = [] try-runtime = [ "generic-runtime-template/try-runtime", "pezkuwi-cli/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] [lints] diff --git a/generic-template/node/src/chain_spec.rs b/generic-template/node/src/chain_spec.rs index 073744c..4d19053 100644 --- a/generic-template/node/src/chain_spec.rs +++ b/generic-template/node/src/chain_spec.rs @@ -1,15 +1,15 @@ -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::ParaId; #[cfg(not(feature = "tanssi"))] use generic_runtime_template::{constants::currency::EXISTENTIAL_DEPOSIT, AuraId}; use generic_runtime_template::{AccountId, Signature}; -use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup}; -use sc_service::ChainType; +use pezsc_chain_spec::{ChainSpecExtension, ChainSpecGroup}; +use pezsc_service::ChainType; use serde::{Deserialize, Serialize}; -use sp_core::{sr25519, Pair, Public}; -use sp_runtime::traits::{IdentifyAccount, Verify}; +use pezsp_core::{sr25519, Pair, Public}; +use pezsp_runtime::traits::{IdentifyAccount, Verify}; /// Specialized `ChainSpec` for the normal teyrchain runtime. -pub type ChainSpec = sc_service::GenericChainSpec; +pub type ChainSpec = pezsc_service::GenericChainSpec; /// The default XCM version to set in genesis config. const SAFE_XCM_VERSION: u32 = xcm::prelude::XCM_VERSION; @@ -33,8 +33,8 @@ pub struct Extensions { impl Extensions { /// Try to get the extension from the given `ChainSpec`. - pub fn try_get(chain_spec: &dyn sc_service::ChainSpec) -> Option<&Self> { - sc_chain_spec::get_extension(chain_spec.extensions()) + pub fn try_get(chain_spec: &dyn pezsc_service::ChainSpec) -> Option<&Self> { + pezsc_chain_spec::get_extension(chain_spec.extensions()) } } @@ -69,7 +69,7 @@ pub fn template_session_keys(keys: AuraId) -> generic_runtime_template::SessionK pub fn development_config() -> ChainSpec { // Give your base currency a unit name and decimal places - let mut properties = sc_chain_spec::Properties::new(); + let mut properties = pezsc_chain_spec::Properties::new(); properties.insert("tokenSymbol".into(), "UNIT".into()); properties.insert("tokenDecimals".into(), 12.into()); properties.insert("ss58Format".into(), 42.into()); @@ -123,7 +123,7 @@ pub fn development_config() -> ChainSpec { pub fn local_testnet_config() -> ChainSpec { // Give your base currency a unit name and decimal places - let mut properties = sc_chain_spec::Properties::new(); + let mut properties = pezsc_chain_spec::Properties::new(); properties.insert("tokenSymbol".into(), "UNIT".into()); properties.insert("tokenDecimals".into(), 12.into()); properties.insert("ss58Format".into(), 42.into()); diff --git a/generic-template/node/src/cli.rs b/generic-template/node/src/cli.rs index f0547dd..98de764 100644 --- a/generic-template/node/src/cli.rs +++ b/generic-template/node/src/cli.rs @@ -4,34 +4,34 @@ use std::path::PathBuf; #[derive(Debug, clap::Subcommand)] pub enum Subcommand { /// Build a chain specification. - BuildSpec(sc_cli::BuildSpecCmd), + BuildSpec(pezsc_cli::BuildSpecCmd), /// Validate blocks. - CheckBlock(sc_cli::CheckBlockCmd), + CheckBlock(pezsc_cli::CheckBlockCmd), /// Export blocks. - ExportBlocks(sc_cli::ExportBlocksCmd), + ExportBlocks(pezsc_cli::ExportBlocksCmd), /// Export the state of a given block into a chain spec. - ExportState(sc_cli::ExportStateCmd), + ExportState(pezsc_cli::ExportStateCmd), /// Import blocks. - ImportBlocks(sc_cli::ImportBlocksCmd), + ImportBlocks(pezsc_cli::ImportBlocksCmd), /// Revert the chain to a previous state. - Revert(sc_cli::RevertCmd), + Revert(pezsc_cli::RevertCmd), /// Remove the whole chain. - PurgeChain(cumulus_client_cli::PurgeChainCmd), + PurgeChain(pezcumulus_client_cli::PurgeChainCmd), /// Export the genesis head data of the teyrchain. /// /// Head data is the encoded block header. #[command(alias = "export-genesis-state")] - ExportGenesisHead(cumulus_client_cli::ExportGenesisHeadCommand), + ExportGenesisHead(pezcumulus_client_cli::ExportGenesisHeadCommand), /// Export the genesis wasm of the teyrchain. - ExportGenesisWasm(cumulus_client_cli::ExportGenesisWasmCommand), + ExportGenesisWasm(pezcumulus_client_cli::ExportGenesisWasmCommand), /// Sub-commands concerned with benchmarking. /// The pezpallet benchmarking moved to the `pezpallet` sub-command. @@ -39,7 +39,7 @@ pub enum Subcommand { Benchmark(pezframe_benchmarking_cli::BenchmarkCmd), /// Try-runtime has migrated to a standalone - /// [CLI](). The subcommand exists as a stub and + /// [CLI](). The subcommand exists as a stub and /// deprecation notice. It will be removed entirely some time after January /// 2024. TryRuntime, @@ -69,7 +69,7 @@ pub struct Cli { pub subcommand: Option, #[command(flatten)] - pub run: cumulus_client_cli::RunCmd, + pub run: pezcumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. /// @@ -102,7 +102,7 @@ impl RelayChainCli { /// Parse the relay chain CLI parameters using the para chain /// `Configuration`. pub fn new<'a>( - para_config: &sc_service::Configuration, + para_config: &pezsc_service::Configuration, relay_chain_args: impl Iterator, ) -> Self { let extension = crate::chain_spec::Extensions::try_get(&*para_config.chain_spec); diff --git a/generic-template/node/src/command.rs b/generic-template/node/src/command.rs index fd68433..96d1aea 100644 --- a/generic-template/node/src/command.rs +++ b/generic-template/node/src/command.rs @@ -1,14 +1,14 @@ -use cumulus_client_service::storage_proof_size::HostFunctions as ReclaimHostFunctions; -use cumulus_primitives_core::ParaId; +use pezcumulus_client_service::storage_proof_size::HostFunctions as ReclaimHostFunctions; +use pezcumulus_primitives_core::ParaId; use pezframe_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE}; use generic_runtime_template::Block; use log::info; -use sc_cli::{ +use pezsc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, NetworkParams, Result, RpcEndpoint, SharedParams, BizinikiwiCli, }; -use sc_service::config::{BasePath, PrometheusConfig}; -use sp_runtime::traits::AccountIdConversion; +use pezsc_service::config::{BasePath, PrometheusConfig}; +use pezsp_runtime::traits::AccountIdConversion; use crate::{ chain_spec, @@ -48,14 +48,14 @@ impl BizinikiwiCli for Cli { } fn support_url() -> String { - "https://github.com/paritytech/pezkuwi-sdk/issues/new".into() + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/new".into() } fn copyright_start_year() -> i32 { 2020 } - fn load_spec(&self, id: &str) -> std::result::Result, String> { + fn load_spec(&self, id: &str) -> std::result::Result, String> { load_spec(id) } } @@ -83,14 +83,14 @@ impl BizinikiwiCli for RelayChainCli { } fn support_url() -> String { - "https://github.com/paritytech/pezkuwi-sdk/issues/new".into() + "https://github.com/pezkuwichain/pezkuwi-sdk/issues/new".into() } fn copyright_start_year() -> i32 { 2020 } - fn load_spec(&self, id: &str) -> std::result::Result, String> { + fn load_spec(&self, id: &str) -> std::result::Result, String> { pezkuwi_cli::Cli::from_iter([RelayChainCli::executable_name()].iter()).load_spec(id) } } @@ -181,9 +181,9 @@ pub fn run() -> Result<()> { let runner = cli.create_runner(cmd)?; // Switch on the concrete benchmark sub-command- match cmd { - BenchmarkCmd::Pallet(cmd) => + BenchmarkCmd::Pezpallet(cmd) => if cfg!(feature = "runtime-benchmarks") { - runner.sync_run(|config| cmd.run_with_spec::, ReclaimHostFunctions>(Some(config.chain_spec))) + runner.sync_run(|config| cmd.run_with_spec::, ReclaimHostFunctions>(Some(config.chain_spec))) } else { Err("Benchmarking wasn't enabled when building the node. \ You can enable it with `--features runtime-benchmarks`." @@ -195,7 +195,7 @@ pub fn run() -> Result<()> { }), #[cfg(not(feature = "runtime-benchmarks"))] BenchmarkCmd::Storage(_) => - Err(sc_cli::Error::Input( + Err(pezsc_cli::Error::Input( "Compile with --features=runtime-benchmarks \ to enable storage benchmarks." .into(), @@ -215,7 +215,7 @@ pub fn run() -> Result<()> { _ => Err("Benchmarking sub-command unsupported".into()), } }, - Some(Subcommand::TryRuntime) => Err("The `try-runtime` subcommand has been migrated to a standalone CLI (https://github.com/paritytech/try-runtime-cli). It is no longer being maintained here and will be removed entirely some time after January 2024. Please remove this subcommand from your runtime and use the standalone CLI.".into()), + Some(Subcommand::TryRuntime) => Err("The `try-runtime` subcommand has been migrated to a standalone CLI (https://github.com/pezkuwichain/try-runtime-cli). It is no longer being maintained here and will be removed entirely some time after January 2024. Please remove this subcommand from your runtime and use the standalone CLI.".into()), None => { let runner = cli.create_runner(&cli.run.normalize())?; let collator_options = cli.run.collator_options(); @@ -224,7 +224,7 @@ pub fn run() -> Result<()> { let hwbench = (!cli.no_hardware_benchmarks) .then_some(config.database.path().map(|database_path| { let _ = std::fs::create_dir_all(database_path); - sc_sysinfo::gather_hwbench(Some(database_path), &SUBSTRATE_REFERENCE_HARDWARE) + pezsc_sysinfo::gather_hwbench(Some(database_path), &SUBSTRATE_REFERENCE_HARDWARE) })) .flatten(); @@ -302,7 +302,7 @@ impl CliConfiguration for RelayChainCli { Ok(self.shared_params().base_path()?.or_else(|| self.base_path.clone().map(Into::into))) } - fn rpc_addr(&self, default_listen_port: u16) -> sc_cli::Result>> { + fn rpc_addr(&self, default_listen_port: u16) -> pezsc_cli::Result>> { self.base.base.rpc_addr(default_listen_port) } @@ -316,7 +316,7 @@ impl CliConfiguration for RelayChainCli { fn init(&self, _support_url: &String, _impl_version: &String, _logger_hook: F) -> Result<()> where - F: FnOnce(&mut sc_cli::LoggerBuilder), + F: FnOnce(&mut pezsc_cli::LoggerBuilder), { unreachable!("PezkuwiCli is never initialized; qed"); } @@ -327,11 +327,11 @@ impl CliConfiguration for RelayChainCli { Ok(if chain_id.is_empty() { self.chain_id.clone().unwrap_or_default() } else { chain_id }) } - fn role(&self, is_dev: bool) -> Result { + fn role(&self, is_dev: bool) -> Result { self.base.base.role(is_dev) } - fn transaction_pool(&self, is_dev: bool) -> Result { + fn transaction_pool(&self, is_dev: bool) -> Result { self.base.base.transaction_pool(is_dev) } @@ -339,7 +339,7 @@ impl CliConfiguration for RelayChainCli { self.base.base.trie_cache_maximum_size() } - fn rpc_methods(&self) -> Result { + fn rpc_methods(&self) -> Result { self.base.base.rpc_methods() } @@ -374,7 +374,7 @@ impl CliConfiguration for RelayChainCli { fn telemetry_endpoints( &self, chain_spec: &Box, - ) -> Result> { + ) -> Result> { self.base.base.telemetry_endpoints(chain_spec) } diff --git a/generic-template/node/src/main.rs b/generic-template/node/src/main.rs index 6598e0b..25deeba 100644 --- a/generic-template/node/src/main.rs +++ b/generic-template/node/src/main.rs @@ -9,6 +9,6 @@ mod cli; mod command; mod rpc; -fn main() -> sc_cli::Result<()> { +fn main() -> pezsc_cli::Result<()> { command::run() } diff --git a/generic-template/node/src/rpc.rs b/generic-template/node/src/rpc.rs index 465d81f..c661c7b 100644 --- a/generic-template/node/src/rpc.rs +++ b/generic-template/node/src/rpc.rs @@ -1,5 +1,5 @@ //! A collection of node-specific RPC methods. -//! Bizinikiwi provides the `sc-rpc` crate, which defines the core RPC layer +//! Bizinikiwi provides the `pezsc-rpc` crate, which defines the core RPC layer //! used by Bizinikiwi nodes. This file extends those RPC definitions with //! capabilities that are specific to this project's runtime configuration. @@ -8,11 +8,11 @@ use std::sync::Arc; use generic_runtime_template::{opaque::Block, AccountId, Balance, Nonce}; -use sc_client_api::AuxStore; -use sc_transaction_pool_api::TransactionPool; -use sp_api::ProvideRuntimeApi; -use sp_block_builder::BlockBuilder; -use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; +use pezsc_client_api::AuxStore; +use pezsc_transaction_pool_api::TransactionPool; +use pezsp_api::ProvideRuntimeApi; +use pezsp_block_builder::BlockBuilder; +use pezsp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata}; /// A type representing all RPC extensions. pub type RpcExtension = jsonrpsee::RpcModule<()>; diff --git a/generic-template/node/src/service.rs b/generic-template/node/src/service.rs index 517d44d..bf2f598 100644 --- a/generic-template/node/src/service.rs +++ b/generic-template/node/src/service.rs @@ -3,26 +3,26 @@ // std use std::{sync::Arc, time::Duration}; -use cumulus_client_cli::CollatorOptions; -// Cumulus Imports +use pezcumulus_client_cli::CollatorOptions; +// Pezcumulus Imports #[cfg(not(feature = "tanssi"))] -use cumulus_client_collator::service::CollatorService; -use cumulus_client_consensus_common::TeyrChainBlockImport as TTeyrChainBlockImport; +use pezcumulus_client_collator::service::CollatorService; +use pezcumulus_client_consensus_common::TeyrChainBlockImport as TTeyrChainBlockImport; #[cfg(not(feature = "tanssi"))] -use cumulus_client_consensus_proposer::Proposer; -use cumulus_client_service::{ +use pezcumulus_client_consensus_proposer::Proposer; +use pezcumulus_client_service::{ build_network, build_relay_chain_interface, prepare_node_config, start_relay_chain_tasks, BuildNetworkParams, CollatorSybilResistance, DARecoveryProfile, TeyrChainHostFunctions, StartRelayChainTasksParams, }; #[cfg(not(feature = "tanssi"))] -use cumulus_primitives_core::relay_chain::CollatorPair; +use pezcumulus_primitives_core::relay_chain::CollatorPair; #[cfg(feature = "async-backing")] -use cumulus_primitives_core::relay_chain::ValidationCode; -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::relay_chain::ValidationCode; +use pezcumulus_primitives_core::ParaId; #[cfg(not(feature = "tanssi"))] -use cumulus_relay_chain_interface::OverseerHandle; -use cumulus_relay_chain_interface::RelayChainInterface; +use pezcumulus_relay_chain_interface::OverseerHandle; +use pezcumulus_relay_chain_interface::RelayChainInterface; // Bizinikiwi Imports use pezframe_benchmarking_cli::SUBSTRATE_REFERENCE_HARDWARE; // Local Runtime Types @@ -30,17 +30,17 @@ use generic_runtime_template::{ apis::RuntimeApi, opaque::{Block, Hash}, }; -use sc_client_api::Backend; -use sc_consensus::ImportQueue; -use sc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; -use sc_network::NetworkBlock; -use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; +use pezsc_client_api::Backend; +use pezsc_consensus::ImportQueue; +use pezsc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; +use pezsc_network::NetworkBlock; +use pezsc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; #[cfg(not(feature = "tanssi"))] -use sc_telemetry::TelemetryHandle; -use sc_telemetry::{Telemetry, TelemetryWorker, TelemetryWorkerHandle}; -use sc_transaction_pool_api::OffchainTransactionPoolFactory; +use pezsc_telemetry::TelemetryHandle; +use pezsc_telemetry::{Telemetry, TelemetryWorker, TelemetryWorkerHandle}; +use pezsc_transaction_pool_api::OffchainTransactionPoolFactory; #[cfg(not(feature = "tanssi"))] -use sp_keystore::KeystorePtr; +use pezsp_keystore::KeystorePtr; #[cfg(not(feature = "tanssi"))] use bizinikiwi_prometheus_endpoint::Registry; @@ -57,8 +57,8 @@ pub type Service = PartialComponents< TeyrChainClient, TeyrChainBackend, (), - sc_consensus::DefaultImportQueue, - sc_transaction_pool::TransactionPoolHandle, + pezsc_consensus::DefaultImportQueue, + pezsc_transaction_pool::TransactionPoolHandle, (TeyrChainBlockImport, Option, Option), >; @@ -66,12 +66,12 @@ pub type Service = PartialComponents< /// /// Use this macro if you don't actually need the full service, but just the builder in order to /// be able to perform chain operations. -pub fn new_partial(config: &Configuration) -> Result { +pub fn new_partial(config: &Configuration) -> Result { let telemetry = config .telemetry_endpoints .clone() .filter(|x| !x.is_empty()) - .map(|endpoints| -> Result<_, sc_telemetry::Error> { + .map(|endpoints| -> Result<_, pezsc_telemetry::Error> { let worker = TelemetryWorker::new(16)?; let telemetry = worker.handle().new_telemetry(endpoints); Ok((worker, telemetry)) @@ -92,7 +92,7 @@ pub fn new_partial(config: &Configuration) -> Result .build(); let (client, backend, keystore_container, task_manager) = - sc_service::new_full_parts_record_import::( + pezsc_service::new_full_parts_record_import::( config, telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()), executor, @@ -108,7 +108,7 @@ pub fn new_partial(config: &Configuration) -> Result }); let transaction_pool = Arc::from( - sc_transaction_pool::Builder::new( + pezsc_transaction_pool::Builder::new( task_manager.spawn_essential_handle(), client.clone(), config.role.is_authority().into(), @@ -151,14 +151,14 @@ pub fn new_partial(config: &Configuration) -> Result /// Start a node with the given teyrchain `Configuration` and relay chain `Configuration`. /// /// This is the actual implementation that is abstract over the executor and the runtime api. -#[sc_tracing::logging::prefix_logs_with("TeyrChain")] +#[pezsc_tracing::logging::prefix_logs_with("TeyrChain")] async fn start_node_impl( teyrchain_config: Configuration, pezkuwi_config: Configuration, collator_options: CollatorOptions, para_id: ParaId, - hwbench: Option, -) -> sc_service::error::Result<(TaskManager, Arc)> { + hwbench: Option, +) -> pezsc_service::error::Result<(TaskManager, Arc)> { let teyrchain_config = prepare_node_config(teyrchain_config); let params = new_partial(&teyrchain_config)?; @@ -166,10 +166,10 @@ async fn start_node_impl( let (block_import, mut telemetry, telemetry_worker_handle) = params.other; #[cfg(feature = "tanssi")] let (_, mut telemetry, telemetry_worker_handle) = params.other; - let net_config = sc_network::config::FullNetworkConfiguration::< + let net_config = pezsc_network::config::FullNetworkConfiguration::< _, _, - sc_network::NetworkWorker, + pezsc_network::NetworkWorker, >::new( &teyrchain_config.network, teyrchain_config.prometheus_config.as_ref().map(|cfg| cfg.registry.clone()), @@ -188,7 +188,7 @@ async fn start_node_impl( hwbench.clone(), ) .await - .map_err(|e| sc_service::Error::Application(Box::new(e) as Box<_>))?; + .map_err(|e| pezsc_service::Error::Application(Box::new(e) as Box<_>))?; #[cfg(not(feature = "tanssi"))] let (relay_chain_interface, collator_key) = relay_chain_interface; @@ -218,7 +218,7 @@ async fn start_node_impl( if teyrchain_config.offchain_worker.enabled { use futures::FutureExt; let offchain_workers = - sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { + pezsc_offchain::OffchainWorkers::new(pezsc_offchain::OffchainWorkerOptions { runtime_api_provider: client.clone(), is_validator: teyrchain_config.role.is_authority(), keystore: Some(params.keystore_container.keystore()), @@ -250,7 +250,7 @@ async fn start_node_impl( }) }; - sc_service::spawn_tasks(sc_service::SpawnTasksParams { + pezsc_service::spawn_tasks(pezsc_service::SpawnTasksParams { rpc_builder, client: client.clone(), transaction_pool: transaction_pool.clone(), @@ -269,7 +269,7 @@ async fn start_node_impl( })?; if let Some(hwbench) = hwbench { - sc_sysinfo::print_hwbench(&hwbench); + pezsc_sysinfo::print_hwbench(&hwbench); // Here you can check whether the hardware meets your chains' requirements. Putting a link // in there and swapping out the requirements for your own are probably a good idea. The // requirements for a para-chain are dictated by its relay-chain. @@ -289,7 +289,7 @@ async fn start_node_impl( task_manager.spawn_handle().spawn( "telemetry_hwbench", None, - sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + pezsc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), ); } } @@ -303,7 +303,7 @@ async fn start_node_impl( let overseer_handle = relay_chain_interface .overseer_handle() - .map_err(|e| sc_service::Error::Application(Box::new(e)))?; + .map_err(|e| pezsc_service::Error::Application(Box::new(e)))?; start_relay_chain_tasks(StartRelayChainTasksParams { client: client.clone(), @@ -352,7 +352,7 @@ pub fn import_queue( client: Arc, backend: Arc, task_manager: &TaskManager, -) -> (TeyrChainBlockImport, sc_consensus::BasicQueue) { +) -> (TeyrChainBlockImport, pezsc_consensus::BasicQueue) { // The nimbus import queue ONLY checks the signature correctness // Any other checks corresponding to the author-correctness should be done // in the runtime @@ -362,7 +362,7 @@ pub fn import_queue( client, block_import.clone(), move |_, _| async move { - let time = sp_timestamp::InherentDataProvider::from_system_time(); + let time = pezsp_timestamp::InherentDataProvider::from_system_time(); Ok((time,)) }, @@ -383,9 +383,9 @@ fn build_import_queue( config: &Configuration, telemetry: Option, task_manager: &TaskManager, -) -> Result, sc_service::Error> { - Ok(cumulus_client_consensus_aura::equivocation_import_queue::fully_verifying_import_queue::< - sp_consensus_aura::sr25519::AuthorityPair, +) -> Result, pezsc_service::Error> { + Ok(pezcumulus_client_consensus_aura::equivocation_import_queue::fully_verifying_import_queue::< + pezsp_consensus_aura::sr25519::AuthorityPair, _, _, _, @@ -394,7 +394,7 @@ fn build_import_queue( client, block_import, move |_, _| async move { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + let timestamp = pezsp_timestamp::InherentDataProvider::from_system_time(); Ok(timestamp) }, &task_manager.spawn_essential_handle(), @@ -412,20 +412,20 @@ fn start_consensus( telemetry: Option, task_manager: &TaskManager, relay_chain_interface: Arc, - transaction_pool: Arc>, + transaction_pool: Arc>, keystore: KeystorePtr, relay_chain_slot_duration: Duration, para_id: ParaId, collator_key: CollatorPair, overseer_handle: OverseerHandle, announce_block: Arc>) + Send + Sync>, -) -> Result<(), sc_service::Error> { +) -> Result<(), pezsc_service::Error> { #[cfg(not(feature = "async-backing"))] - use cumulus_client_consensus_aura::collators::basic::{self as basic_aura, Params}; + use pezcumulus_client_consensus_aura::collators::basic::{self as basic_aura, Params}; #[cfg(feature = "async-backing")] - use cumulus_client_consensus_aura::collators::lookahead::{self as aura, Params}; + use pezcumulus_client_consensus_aura::collators::lookahead::{self as aura, Params}; - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + let proposer_factory = pezsc_basic_authorship::ProposerFactory::with_proof_recording( task_manager.spawn_handle(), client.clone(), transaction_pool, @@ -477,11 +477,11 @@ fn start_consensus( }; #[cfg(not(feature = "async-backing"))] - let fut = basic_aura::run::( + let fut = basic_aura::run::( params, ); #[cfg(feature = "async-backing")] - let fut = aura::run::( + let fut = aura::run::( params, ); task_manager.spawn_essential_handle().spawn("aura", None, fut); @@ -495,7 +495,7 @@ pub async fn start_teyrchain_node( pezkuwi_config: Configuration, collator_options: CollatorOptions, para_id: ParaId, - hwbench: Option, -) -> sc_service::error::Result<(TaskManager, Arc)> { + hwbench: Option, +) -> pezsc_service::error::Result<(TaskManager, Arc)> { start_node_impl(teyrchain_config, pezkuwi_config, collator_options, para_id, hwbench).await } diff --git a/generic-template/runtime/Cargo.toml b/generic-template/runtime/Cargo.toml index 3a83fb9..f1135e6 100644 --- a/generic-template/runtime/Cargo.toml +++ b/generic-template/runtime/Cargo.toml @@ -19,8 +19,8 @@ scale-info = { workspace = true, features = [ "derive" ] } serde_json = { workspace = true, default-features = false, features = [ "alloc" ] } smallvec = { workspace = true } -openzeppelin-pezpallet-abstractions = { workspace = true } -openzeppelin-pezpallet-abstractions-proc = { workspace = true } +openzeppelin-pallet-abstractions = { workspace = true } +openzeppelin-pallet-abstractions-proc = { workspace = true } # Bizinikiwi pezframe-benchmarking = { workspace = true, optional = true } @@ -49,22 +49,22 @@ pezpallet-transaction-payment-rpc-runtime-api = { workspace = true } pezpallet-treasury = { workspace = true } pezpallet-utility = { workspace = true } pezpallet-whitelist = { workspace = true } -sp-api = { workspace = true } -sp-arithmetic = { workspace = true } -sp-block-builder = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-core = { workspace = true } -sp-genesis-builder = { workspace = true } -sp-inherents = { workspace = true } -sp-keyring = { workspace = true } -sp-offchain = { workspace = true } -sp-runtime = { workspace = true } -sp-session = { workspace = true } -sp-std = { workspace = true } -sp-transaction-pool = { workspace = true } -sp-version = { workspace = true } +pezsp-api = { workspace = true } +pezsp-arithmetic = { workspace = true } +pezsp-block-builder = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-core = { workspace = true } +pezsp-genesis-builder = { workspace = true } +pezsp-inherents = { workspace = true } +pezsp-keyring = { workspace = true } +pezsp-offchain = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-session = { workspace = true } +pezsp-std = { workspace = true } +pezsp-transaction-pool = { workspace = true } +pezsp-version = { workspace = true } -cumulus-pezpallet-aura-ext = { workspace = true } +pezcumulus-pezpallet-aura-ext = { workspace = true } pezpallet-aura = { workspace = true } pezpallet-authorship = { workspace = true } pezpallet-collator-selection = { workspace = true } @@ -78,17 +78,17 @@ staging-xcm = { workspace = true } staging-xcm-builder = { workspace = true } staging-xcm-executor = { workspace = true } -# Cumulus +# Pezpezcumulus assets-common = { workspace = true } -cumulus-pezpallet-teyrchain-system = { workspace = true } -cumulus-pezpallet-session-benchmarking = { workspace = true } -cumulus-pezpallet-weight-reclaim = { workspace = true } -cumulus-pezpallet-xcm = { workspace = true } -cumulus-pezpallet-xcmp-queue = { workspace = true } -cumulus-primitives-aura = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-timestamp = { workspace = true } -cumulus-primitives-utility = { workspace = true } +pezcumulus-pezpallet-teyrchain-system = { workspace = true } +pezcumulus-pezpallet-session-benchmarking = { workspace = true } +pezcumulus-pezpallet-weight-reclaim = { workspace = true } +pezcumulus-pezpallet-xcm = { workspace = true } +pezcumulus-pezpallet-xcmp-queue = { workspace = true } +pezcumulus-primitives-aura = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-timestamp = { workspace = true } +pezcumulus-primitives-utility = { workspace = true } teyrchain-info = { workspace = true } teyrchains-common = { workspace = true } @@ -112,8 +112,8 @@ pezpallet-cc-authorities-noting = { workspace = true } [dev-dependencies] pezkuwi-runtime-teyrchains = { workspace = true } -sp-io = { workspace = true } -sp-tracing = { workspace = true } +pezsp-io = { workspace = true } +pezsp-tracing = { workspace = true } xcm-pez-simulator = { workspace = true } [build-dependencies] @@ -122,16 +122,16 @@ bizinikiwi-wasm-builder = { workspace = true } [features] std = [ "assets-common/std", - "cumulus-pezpallet-aura-ext/std", - "cumulus-pezpallet-teyrchain-system/std", - "cumulus-pezpallet-session-benchmarking/std", - "cumulus-pezpallet-weight-reclaim/std", - "cumulus-pezpallet-xcm/std", - "cumulus-pezpallet-xcmp-queue/std", - "cumulus-primitives-aura/std", - "cumulus-primitives-core/std", - "cumulus-primitives-timestamp/std", - "cumulus-primitives-utility/std", + "pezcumulus-pezpallet-aura-ext/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-pezpallet-session-benchmarking/std", + "pezcumulus-pezpallet-weight-reclaim/std", + "pezcumulus-pezpallet-xcm/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezcumulus-primitives-aura/std", + "pezcumulus-primitives-core/std", + "pezcumulus-primitives-timestamp/std", + "pezcumulus-primitives-utility/std", "dp-consensus/std", "pezframe-benchmarking?/std", "pezframe-executive/std", @@ -143,7 +143,7 @@ std = [ "pezframe-try-runtime?/std", "log/std", "nimbus-primitives/std", - "openzeppelin-pezpallet-abstractions/std", + "openzeppelin-pallet-abstractions/std", "orml-oracle-runtime-api/std", "orml-oracle/std", "orml-xtokens/std", @@ -182,20 +182,20 @@ std = [ "pezkuwi-runtime-common/std", "scale-info/std", "serde_json/std", - "sp-api/std", - "sp-arithmetic/std", - "sp-block-builder/std", - "sp-consensus-aura/std", - "sp-core/std", - "sp-genesis-builder/std", - "sp-inherents/std", - "sp-keyring/std", - "sp-offchain/std", - "sp-runtime/std", - "sp-session/std", - "sp-std/std", - "sp-transaction-pool/std", - "sp-version/std", + "pezsp-api/std", + "pezsp-arithmetic/std", + "pezsp-block-builder/std", + "pezsp-consensus-aura/std", + "pezsp-core/std", + "pezsp-genesis-builder/std", + "pezsp-inherents/std", + "pezsp-keyring/std", + "pezsp-offchain/std", + "pezsp-runtime/std", + "pezsp-session/std", + "pezsp-std/std", + "pezsp-transaction-pool/std", + "pezsp-version/std", "staging-xcm-builder/std", "staging-xcm-executor/std", "xcm-primitives/std", @@ -204,10 +204,10 @@ std = [ runtime-benchmarks = [ "assets-common/runtime-benchmarks", - "cumulus-pezpallet-teyrchain-system/runtime-benchmarks", - "cumulus-pezpallet-session-benchmarking/runtime-benchmarks", - "cumulus-pezpallet-xcmp-queue/runtime-benchmarks", - "cumulus-primitives-utility/runtime-benchmarks", + "pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks", + "pezcumulus-pezpallet-session-benchmarking/runtime-benchmarks", + "pezcumulus-pezpallet-xcmp-queue/runtime-benchmarks", + "pezcumulus-primitives-utility/runtime-benchmarks", "dp-consensus/runtime-benchmarks", "pezframe-benchmarking/runtime-benchmarks", "pezframe-support/runtime-benchmarks", @@ -241,16 +241,16 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezkuwi-runtime-common/runtime-benchmarks", - "sp-runtime/runtime-benchmarks", + "pezsp-runtime/runtime-benchmarks", "staging-xcm-builder/runtime-benchmarks", "staging-xcm-executor/runtime-benchmarks", ] try-runtime = [ - "cumulus-pezpallet-aura-ext/try-runtime", - "cumulus-pezpallet-teyrchain-system/try-runtime", - "cumulus-pezpallet-xcm/try-runtime", - "cumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcm/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", @@ -285,15 +285,15 @@ try-runtime = [ "pezpallet-xcm/try-runtime", "teyrchain-info/try-runtime", "pezkuwi-runtime-common/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] # A feature that should be enabled when the runtime should be built for on-chain # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. -on-chain-release-build = [ "sp-api/disable-logging" ] +on-chain-release-build = [ "pezsp-api/disable-logging" ] -async-backing = [ "openzeppelin-pezpallet-abstractions-proc/async-backing" ] +async-backing = [ "openzeppelin-pallet-abstractions-proc/async-backing" ] default = [ "std" ] diff --git a/generic-template/runtime/src/apis.rs b/generic-template/runtime/src/apis.rs index 4a37e2a..a950f88 100644 --- a/generic-template/runtime/src/apis.rs +++ b/generic-template/runtime/src/apis.rs @@ -17,7 +17,7 @@ use crate::{ }; #[cfg(feature = "runtime-benchmarks")] -type ExistentialDeposit = sp_core::ConstU128; +type ExistentialDeposit = pezsp_core::ConstU128; #[cfg(not(feature = "tanssi"))] #[openzeppelin_runtime_apis] @@ -46,7 +46,7 @@ mod apis { mod system { type Executive = Executive; type System = System; - type TeyrChainSystem = TeyrChainSystem; + type ParachainSystem = TeyrChainSystem; type RuntimeVersion = VERSION; type AccountId = AccountId; type Nonce = Nonce; @@ -55,13 +55,13 @@ mod apis { } mod benchmarks { - type AllPezpalletsWithSystem = AllPezpalletsWithSystem; + type AllPalletsWithSystem = AllPezpalletsWithSystem; type Assets = Assets; type AssetManager = AssetManager; type AssetType = AssetType; type RuntimeOrigin = RuntimeOrigin; type RelayLocation = RelayLocation; - type TeyrChainSystem = TeyrChainSystem; + type ParachainSystem = TeyrChainSystem; type System = System; type ExistentialDeposit = ExistentialDeposit; type AssetId = AssetId; @@ -96,7 +96,7 @@ mod apis { mod system { type Executive = Executive; type System = System; - type TeyrChainSystem = TeyrChainSystem; + type ParachainSystem = TeyrChainSystem; type RuntimeVersion = VERSION; type AccountId = AccountId; type Nonce = Nonce; @@ -105,13 +105,13 @@ mod apis { } mod benchmarks { - type AllPezpalletsWithSystem = AllPezpalletsWithSystem; + type AllPalletsWithSystem = AllPezpalletsWithSystem; type Assets = Assets; type AssetManager = AssetManager; type AssetType = AssetType; type RuntimeOrigin = RuntimeOrigin; type RelayLocation = RelayLocation; - type TeyrChainSystem = TeyrChainSystem; + type ParachainSystem = TeyrChainSystem; type System = System; type ExistentialDeposit = ExistentialDeposit; type AssetId = AssetId; diff --git a/generic-template/runtime/src/benchmark.rs b/generic-template/runtime/src/benchmark.rs index e7947fa..e1412d9 100644 --- a/generic-template/runtime/src/benchmark.rs +++ b/generic-template/runtime/src/benchmark.rs @@ -7,8 +7,8 @@ pezframe_benchmarking::define_benchmarks!( [pezpallet_message_queue, MessageQueue] [pezpallet_sudo, Sudo] [pezpallet_collator_selection, CollatorSelection] - [cumulus_pezpallet_xcmp_queue, XcmpQueue] - [cumulus_pezpallet_teyrchain_system, TeyrChainSystem] + [pezcumulus_pezpallet_xcmp_queue, XcmpQueue] + [pezcumulus_pezpallet_teyrchain_system, TeyrChainSystem] [pezpallet_proxy, Proxy] [pezpallet_utility, Utility] [pezpallet_multisig, Multisig] @@ -24,12 +24,12 @@ pezframe_benchmarking::define_benchmarks!( [pezpallet_xcm_weight_trader, XcmWeightTrader] ); -use cumulus_primitives_core::{ChannelStatus, GetChannelInfo}; +use pezcumulus_primitives_core::{ChannelStatus, GetChannelInfo}; use pezframe_support::traits::{ tokens::{Pay, PaymentStatus}, Get, }; -use sp_std::marker::PhantomData; +use pezsp_std::marker::PhantomData; use crate::TeyrChainSystem; diff --git a/generic-template/runtime/src/configs/asset_config.rs b/generic-template/runtime/src/configs/asset_config.rs index 4346279..8ac0fd4 100644 --- a/generic-template/runtime/src/configs/asset_config.rs +++ b/generic-template/runtime/src/configs/asset_config.rs @@ -1,9 +1,9 @@ use pezframe_support::{dispatch::GetDispatchInfo, weights::Weight}; use parity_scale_codec::{Decode, DecodeWithMemTracking, Encode}; use scale_info::TypeInfo; -use sp_core::H256; -use sp_runtime::traits::Hash as THash; -use sp_std::{ +use pezsp_core::H256; +use pezsp_runtime::traits::Hash as THash; +use pezsp_std::{ convert::{From, Into}, prelude::*, }; @@ -73,7 +73,7 @@ impl From for AssetId { match asset { AssetType::Xcm(id) => { let mut result: [u8; 4] = [0u8; 4]; - let hash: H256 = id.using_encoded(::Hashing::hash); + let hash: H256 = id.using_encoded(::Hashing::hash); result.copy_from_slice(&hash.as_fixed_bytes()[0..4]); u32::from_le_bytes(result) } @@ -155,7 +155,7 @@ impl pezpallet_asset_manager::AssetRegistrar for AssetRegistrar { Assets::force_create( RuntimeOrigin::root(), asset.into(), - sp_runtime::MultiAddress::Id(AssetManager::account_id()), + pezsp_runtime::MultiAddress::Id(AssetManager::account_id()), is_sufficient, min_balance, )?; @@ -194,7 +194,7 @@ impl pezpallet_asset_manager::AssetRegistrar for AssetRegistrar { mod tests { mod asset_registrar { use pezpallet_asset_manager::AssetRegistrar; - use sp_io::TestExternalities; + use pezsp_io::TestExternalities; use crate::{ configs::{AssetRegistrar as Registrar, AssetRegistrarMetadata}, @@ -217,7 +217,7 @@ mod tests { let _ = Assets::force_create( RuntimeOrigin::root(), asset_id.into(), - sp_runtime::MultiAddress::Id(AssetManager::account_id()), + pezsp_runtime::MultiAddress::Id(AssetManager::account_id()), true, 1, ); @@ -247,7 +247,7 @@ mod tests { } mod account_asset_id_conversion { - use sp_runtime::AccountId32; + use pezsp_runtime::AccountId32; use crate::{ configs::{ diff --git a/generic-template/runtime/src/configs/governance/origins.rs b/generic-template/runtime/src/configs/governance/origins.rs index 5a89f4b..cb3898e 100644 --- a/generic-template/runtime/src/configs/governance/origins.rs +++ b/generic-template/runtime/src/configs/governance/origins.rs @@ -2,17 +2,18 @@ pub use pezpallet_custom_origins::*; -#[pezframe_support::pezpallet] +use pezsp_std::marker::PhantomData; +#[pezframe_support::pallet] pub mod pezpallet_custom_origins { - use pezframe_support::pezpallet_prelude::*; + use pezframe_support::pallet_prelude::*; use crate::configs::governance::{Balance, CENTS, GRAND}; - #[pezpallet::config] - pub trait Config: pezframe_system::Config {} + #[pallet::config] + pub trait Config: frame_system::Config {} - #[pezpallet::pezpallet] - pub struct Pezpallet(_); + #[pallet::pezpallet] + pub struct Pezpallet(PhantomData); #[derive( PartialEq, @@ -25,7 +26,7 @@ pub mod pezpallet_custom_origins { TypeInfo, RuntimeDebug, )] - #[pezpallet::origin] + #[pallet::origin] pub enum Origin { /// Origin for spending (any amount of) funds. Treasurer, diff --git a/generic-template/runtime/src/configs/governance/tracks.rs b/generic-template/runtime/src/configs/governance/tracks.rs index dba395f..107b795 100644 --- a/generic-template/runtime/src/configs/governance/tracks.rs +++ b/generic-template/runtime/src/configs/governance/tracks.rs @@ -3,13 +3,13 @@ use alloc::borrow::Cow; use pezpallet_referenda::Track; -use sp_runtime::str_array as s; +use pezsp_runtime::str_array as s; use super::*; use crate::constants::MINUTES; -const fn percent(x: i32) -> sp_arithmetic::FixedI64 { - sp_arithmetic::FixedI64::from_rational(x as u128, 100) +const fn percent(x: i32) -> pezsp_arithmetic::FixedI64 { + pezsp_arithmetic::FixedI64::from_rational(x as u128, 100) } use pezpallet_referenda::Curve; const APP_ROOT: Curve = Curve::make_reciprocal(4, 28, percent(80), percent(50), percent(100)); @@ -42,7 +42,7 @@ const SUP_WHITELISTED_CALLER: Curve = pub struct TracksInfo; impl pezpallet_referenda::TracksInfo for TracksInfo { type Id = u16; - type RuntimeOrigin = ::PalletsOrigin; + type RuntimeOrigin = ::PezpalletsOrigin; fn tracks() -> impl Iterator>> { static DATA: [Track; 10] = [ @@ -346,7 +346,7 @@ mod tests { >::track_for(&OriginCaller::CumulusXcm(cumulus_pezpallet_xcm::Origin::Relay)) + >>::track_for(&OriginCaller::PezcumulusXcm(pezcumulus_pezpallet_xcm::Origin::Relay)) .expect_err("incorrect config"); } } diff --git a/generic-template/runtime/src/configs/mod.rs b/generic-template/runtime/src/configs/mod.rs index 1199b5a..ec8dbb9 100644 --- a/generic-template/runtime/src/configs/mod.rs +++ b/generic-template/runtime/src/configs/mod.rs @@ -6,12 +6,12 @@ pub mod xcm_config; use asset_config::*; #[cfg(feature = "tanssi")] -use cumulus_pezpallet_teyrchain_system::ExpectParentIncluded; +use pezcumulus_pezpallet_teyrchain_system::ExpectParentIncluded; #[cfg(feature = "async-backing")] -use cumulus_pezpallet_teyrchain_system::RelayNumberMonotonicallyIncreases; +use pezcumulus_pezpallet_teyrchain_system::RelayNumberMonotonicallyIncreases; #[cfg(not(feature = "async-backing"))] -use cumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases; -use cumulus_primitives_core::{AggregateMessageOrigin, ParaId}; +use pezcumulus_pezpallet_teyrchain_system::RelayNumberStrictlyIncreases; +use pezcumulus_primitives_core::{AggregateMessageOrigin, ParaId}; #[cfg(not(feature = "tanssi"))] use pezframe_support::PalletId; use pezframe_support::{ @@ -44,8 +44,8 @@ use openzeppelin_pezpallet_abstractions::{impl_openzeppelin_tanssi, TanssiConfig use teyrchains_common::message_queue::{NarrowOriginToSibling, ParaIdToSibling}; use pezkuwi_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; #[cfg(not(feature = "tanssi"))] -use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_runtime::{ +use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; +use pezsp_runtime::{ traits::{AccountIdLookup, BlakeTwo256, IdentityLookup}, Perbill, }; @@ -126,7 +126,7 @@ impl GovernanceConfig for OpenZeppelinRuntime { type ReferendaSubmitOrigin = EnsureSigned; type ReferendaUndecidingTimeout = ConstU32<{ 14 * DAYS }>; type TreasuryInteriorLocation = TreasuryInteriorLocation; - type TreasuryPezpalletId = TreasuryPezpalletId; + type TreasuryPalletId = TreasuryPezpalletId; type TreasuryPayoutSpendPeriod = ConstU32<{ 30 * DAYS }>; type TreasuryRejectOrigin = EitherOfDiverse, Treasurer>; type TreasurySpendOrigin = TreasurySpender; @@ -153,7 +153,7 @@ impl XcmConfig for OpenZeppelinRuntime { type MessageQueueHeapSize = ConstU32<{ 64 * 1024 }>; type MessageQueueMaxStale = ConstU32<8>; type MessageQueueServiceWeight = MessageQueueServiceWeight; - type TeyrChainMinFee = TeyrChainMinFee; + type TeyrchainMinFee = TeyrChainMinFee; type PauseSupportedAssetOrigin = EnsureRoot; type RelayLocation = RelayLocation; type RemoveSupportedAssetOrigin = EnsureRoot; diff --git a/generic-template/runtime/src/configs/weight.rs b/generic-template/runtime/src/configs/weight.rs index 3a14cba..cd71826 100644 --- a/generic-template/runtime/src/configs/weight.rs +++ b/generic-template/runtime/src/configs/weight.rs @@ -14,7 +14,7 @@ impl SystemWeight for OpenZeppelinRuntime { type Balances = weights::pezpallet_balances::WeightInfo; type DbWeight = RocksDbWeight; type Multisig = weights::pezpallet_multisig::WeightInfo; - type TeyrChainSystem = weights::cumulus_pezpallet_teyrchain_system::WeightInfo; + type ParachainSystem = weights::pezcumulus_pezpallet_teyrchain_system::WeightInfo; type Preimage = weights::pezpallet_preimage::WeightInfo; type Proxy = weights::pezpallet_proxy::WeightInfo; type Scheduler = weights::pezpallet_scheduler::WeightInfo; @@ -53,7 +53,7 @@ impl XcmWeight for OpenZeppelinRuntime { type Xcm = weights::pezpallet_xcm::WeightInfo; type XcmTransactor = weights::pezpallet_xcm_transactor::WeightInfo; type XcmWeightTrader = weights::pezpallet_xcm_weight_trader::WeightInfo; - type XcmpQueue = weights::cumulus_pezpallet_xcmp_queue::WeightInfo; + type XcmpQueue = weights::pezcumulus_pezpallet_xcmp_queue::WeightInfo; } #[cfg(feature = "tanssi")] diff --git a/generic-template/runtime/src/configs/xcm_config.rs b/generic-template/runtime/src/configs/xcm_config.rs index 6dba79f..70ab7d2 100644 --- a/generic-template/runtime/src/configs/xcm_config.rs +++ b/generic-template/runtime/src/configs/xcm_config.rs @@ -11,8 +11,8 @@ use pezpallet_xcm::XcmPassthrough; use parity_scale_codec::{Decode, DecodeWithMemTracking, Encode}; use pezkuwi_teyrchain_primitives::primitives::{self, Sibling}; use scale_info::TypeInfo; -use sp_runtime::{traits::Convert, Vec}; -use xcm::latest::{prelude::*, Junction::PalletInstance}; +use pezsp_runtime::{traits::Convert, Vec}; +use xcm::latest::{prelude::*, Junction::PezpalletInstance}; use xcm_builder::{ AccountId32Aliases, Case, FixedWeightBounds, FungibleAdapter, FungiblesAdapter, IsChildSystemTeyrChain, IsConcrete, NoChecking, ParentIsPreset, RelayChainAsNative, @@ -31,7 +31,7 @@ use crate::{ parameter_types! { pub PlaceholderAccount: AccountId = PezkuwiXcm::check_account(); pub const RelayNetwork: Option = None; - pub RelayChainOrigin: RuntimeOrigin = cumulus_pezpallet_xcm::Origin::Relay.into(); + pub RelayChainOrigin: RuntimeOrigin = pezcumulus_pezpallet_xcm::Origin::Relay.into(); pub AssetsPezpalletLocation: Location = PezpalletInstance(::index() as u8).into(); pub UniversalLocation: InteriorLocation = TeyrChain(TeyrChainInfo::teyrchain_id().into()).into(); @@ -114,7 +114,7 @@ pub type XcmOriginToTransactDispatchOrigin = ( RelayChainAsNative, // Native converter for sibling TeyrChains; will convert to a `SiblingPara` origin when // recognized. - SiblingTeyrChainAsNative, + SiblingTeyrChainAsNative, // Native signed account converter; this just converts an `AccountId32` origin into a normal // `RuntimeOrigin::Signed` origin of the same 32-byte value. SignedAccountId32AsNative, @@ -176,7 +176,7 @@ pub type LocalOriginToLocation = SignedToAccountId32, + pezcumulus_primitives_utility::ParentAsUmp, // ..and XCMP to communicate with the sibling chains. XcmpQueue, )>; @@ -234,11 +234,11 @@ parameter_types! { } // How to convert from CurrencyId to Location -pub struct CurrencyIdToLocation(sp_std::marker::PhantomData); -impl sp_runtime::traits::Convert> +pub struct CurrencyIdToLocation(pezsp_std::marker::PhantomData); +impl pezsp_runtime::traits::Convert> for CurrencyIdToLocation where - AssetXConverter: sp_runtime::traits::MaybeEquivalence, + AssetXConverter: pezsp_runtime::traits::MaybeEquivalence, { fn convert(currency: CurrencyId) -> Option { match currency { @@ -411,8 +411,8 @@ impl TryFrom for Transactors { impl UtilityEncodeCall for Transactors { fn encode_call(self, call: UtilityAvailableCalls) -> Vec { match self { - Transactors::Relay => pezpallet_xcm_transactor::Pallet::::encode_call( - pezpallet_xcm_transactor::Pallet(sp_std::marker::PhantomData::), + Transactors::Relay => pezpallet_xcm_transactor::Pezpallet::::encode_call( + pezpallet_xcm_transactor::Pezpallet(pezsp_std::marker::PhantomData::), call, ), } @@ -433,7 +433,7 @@ parameter_types! { #[cfg(feature = "runtime-benchmarks")] mod testing { - use sp_runtime::traits::MaybeEquivalence; + use pezsp_runtime::traits::MaybeEquivalence; use xcm_builder::WithLatestLocationConverter; use xcm_executor::traits::ConvertLocation; @@ -469,7 +469,7 @@ mod testing { #[cfg(test)] mod tests { mod location_conversion { - use sp_runtime::traits::Convert; + use pezsp_runtime::traits::Convert; use xcm::latest::{Junction::AccountId32, Location}; use crate::configs::{AccountIdToLocation, CurrencyId, CurrencyIdToLocation, SelfReserve}; @@ -526,9 +526,9 @@ mod tests { } mod asset_fee_filter { - use cumulus_primitives_core::Junctions::{X1, X4}; + use pezcumulus_primitives_core::Junctions::{X1, X4}; use pezframe_support::traits::Contains; - use sp_std::sync::Arc; + use pezsp_std::sync::Arc; use xcm::{latest::Location, prelude::*}; use crate::configs::{AssetFeesFilter, PezkuwiXcmLocation}; @@ -557,7 +557,7 @@ mod tests { 1, X4(Arc::new([ Junction::TeyrChain(1000), - Junction::PalletInstance(5), + Junction::PezpalletInstance(5), Junction::GeneralIndex(42), Junction::AccountId32 { network: None, id: [1u8; 32] }, ])), @@ -590,7 +590,7 @@ mod tests { #[test] fn test_transactors_encode_call() { - sp_io::TestExternalities::default().execute_with(|| { + pezsp_io::TestExternalities::default().execute_with(|| { let transactor = Transactors::Relay; let call = UtilityAvailableCalls::AsDerivative(1u16, Vec::::new()); diff --git a/generic-template/runtime/src/constants.rs b/generic-template/runtime/src/constants.rs index 226a54c..deba0f1 100644 --- a/generic-template/runtime/src/constants.rs +++ b/generic-template/runtime/src/constants.rs @@ -1,8 +1,8 @@ extern crate alloc; use pezframe_support::weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}; -use sp_runtime::Perbill; -use sp_version::RuntimeVersion; +use pezsp_runtime::Perbill; +use pezsp_version::RuntimeVersion; use crate::{apis, types::BlockNumber}; @@ -26,7 +26,7 @@ pub const P_FACTOR: u128 = 10; pub const Q_FACTOR: u128 = 100; pub const POLY_DEGREE: u8 = 1; -#[sp_version::runtime_version] +#[pezsp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: alloc::borrow::Cow::Borrowed("template-teyrchain"), impl_name: alloc::borrow::Cow::Borrowed("template-teyrchain"), @@ -72,7 +72,7 @@ pub const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts( WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), #[cfg(not(feature = "async-backing"))] WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, ); /// Maximum number of blocks simultaneously accepted by the Runtime, not yet diff --git a/generic-template/runtime/src/genesis_config_presets.rs b/generic-template/runtime/src/genesis_config_presets.rs index 7580d2a..790aa03 100644 --- a/generic-template/runtime/src/genesis_config_presets.rs +++ b/generic-template/runtime/src/genesis_config_presets.rs @@ -1,11 +1,11 @@ use alloc::{vec, vec::Vec}; -use cumulus_primitives_core::ParaId; +use pezcumulus_primitives_core::ParaId; use pezframe_support::build_struct_json_patch; use teyrchains_common::AuraId; use serde_json::Value; -use sp_genesis_builder::PresetId; -use sp_keyring::Sr25519Keyring; +use pezsp_genesis_builder::PresetId; +use pezsp_keyring::Sr25519Keyring; use crate::{ constants::currency::EXISTENTIAL_DEPOSIT, AccountId, BalancesConfig, CollatorSelectionConfig, @@ -91,8 +91,8 @@ fn development_config_genesis() -> Value { /// Provides the JSON representation of predefined genesis config for given `id`. pub fn get_preset(id: &PresetId) -> Option> { let patch = match id.as_ref() { - sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET => local_testnet_genesis(), - sp_genesis_builder::DEV_RUNTIME_PRESET => development_config_genesis(), + pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET => local_testnet_genesis(), + pezsp_genesis_builder::DEV_RUNTIME_PRESET => development_config_genesis(), _ => return None, }; Some( @@ -105,8 +105,8 @@ pub fn get_preset(id: &PresetId) -> Option> { /// List of supported presets. pub fn preset_names() -> Vec { vec![ - PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET), - PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET), + PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET), + PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET), ] } @@ -203,14 +203,14 @@ mod tests { fn get_preset_roundtrips_known_ids() { // LOCAL_TESTNET let p = - super::get_preset(&PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)) + super::get_preset(&PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)) .expect("local preset should exist"); let from_api = parse_bytes(p); let from_fn = super::local_testnet_genesis(); assert_eq!(from_api, from_fn, "local_testnet preset must match function output"); // DEV - let p = super::get_preset(&PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET)) + let p = super::get_preset(&PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET)) .expect("dev preset should exist"); let from_api = parse_bytes(p); let from_fn = super::development_config_genesis(); @@ -221,11 +221,11 @@ mod tests { fn preset_names_lists_supported() { let names = super::preset_names(); assert!( - names.contains(&PresetId::from(sp_genesis_builder::DEV_RUNTIME_PRESET)), + names.contains(&PresetId::from(pezsp_genesis_builder::DEV_RUNTIME_PRESET)), "DEV preset should be listed" ); assert!( - names.contains(&PresetId::from(sp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)), + names.contains(&PresetId::from(pezsp_genesis_builder::LOCAL_TESTNET_RUNTIME_PRESET)), "LOCAL_TESTNET preset should be listed" ); } diff --git a/generic-template/runtime/src/lib.rs b/generic-template/runtime/src/lib.rs index 94a9708..46106a8 100644 --- a/generic-template/runtime/src/lib.rs +++ b/generic-template/runtime/src/lib.rs @@ -1,3 +1,6 @@ +pub use pezframe_system as frame_system; +pub use pezframe_support as frame_support; +pub use pezcumulus_pezpallet_teyrchain_system as cumulus_pallet_parachain_system; #![cfg_attr(not(feature = "std"), no_std)] #![recursion_limit = "256"] @@ -19,14 +22,14 @@ use pezframe_support::weights::{ }; pub use genesis_config_presets::TEYRCHAIN_ID; use smallvec::smallvec; -pub use sp_consensus_aura::sr25519::AuthorityId as AuraId; -use sp_runtime::impl_opaque_keys; +pub use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; +use pezsp_runtime::impl_opaque_keys; #[cfg(any(feature = "std", test))] -pub use sp_runtime::BuildStorage; -pub use sp_runtime::{MultiAddress, Perbill, Permill}; -use sp_std::prelude::*; +pub use pezsp_runtime::BuildStorage; +pub use pezsp_runtime::{MultiAddress, Perbill, Permill}; +use pezsp_std::prelude::*; #[cfg(feature = "std")] -use sp_version::NativeVersion; +use pezsp_version::NativeVersion; use crate::{ configs::pezpallet_custom_origins, @@ -79,8 +82,8 @@ impl WeightToFeePolynomial for WeightToFee { /// continue syncing the network through upgrades to even the core data /// structures. pub mod opaque { - pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; - use sp_runtime::{ + pub use pezsp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; + use pezsp_runtime::{ generic, traits::{BlakeTwo256, Hash as HashT}, }; diff --git a/generic-template/runtime/src/types.rs b/generic-template/runtime/src/types.rs index 8d6cce2..b36d947 100644 --- a/generic-template/runtime/src/types.rs +++ b/generic-template/runtime/src/types.rs @@ -10,15 +10,15 @@ use pezkuwi_runtime_common::impls::{ LocatableAssetConverter, VersionedLocatableAsset, VersionedLocationConverter, }; use scale_info::TypeInfo; -use sp_core::ConstU32; -use sp_runtime::{ +use pezsp_core::ConstU32; +use pezsp_runtime::{ generic, traits::{BlakeTwo256, IdentifyAccount, Verify}, MultiAddress, MultiSignature, Perbill, RuntimeDebug, }; -use sp_version::RuntimeVersion; +use pezsp_version::RuntimeVersion; use xcm::{ - latest::{InteriorLocation, Junction::PalletInstance}, + latest::{InteriorLocation, Junction::PezpalletInstance}, VersionedLocation, }; use xcm_builder::PayOverXcm; @@ -58,7 +58,7 @@ pub type AssetId = u32; pub type Nonce = u32; /// A hash of some data used by the chain. -pub type Hash = sp_core::H256; +pub type Hash = pezsp_core::H256; /// An index to a block. pub type BlockNumber = u32; @@ -73,7 +73,7 @@ pub type Header = generic::Header; pub type Block = generic::Block; /// The TransactionExtension to the basic transaction logic. -pub type TxExtension = cumulus_pezpallet_weight_reclaim::StorageWeightReclaim< +pub type TxExtension = pezcumulus_pezpallet_weight_reclaim::StorageWeightReclaim< Runtime, ( pezframe_system::CheckNonZeroSender, @@ -111,7 +111,7 @@ pub type PriceForSiblingTeyrChainDelivery = pezkuwi_runtime_common::xcm_sender:: /// Configures the number of blocks that can be created without submission of validity proof to the relay chain #[cfg(not(feature = "tanssi"))] -pub type ConsensusHook = cumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< +pub type ConsensusHook = pezcumulus_pezpallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, BLOCK_PTYRESSING_VELOCITY, @@ -205,7 +205,7 @@ parameter_types! { mod test { mod filter { use pezframe_support::traits::InstanceFilter; - use sp_core::H256; + use pezsp_core::H256; use crate::{types::ProxyType, AssetManager, RuntimeCall}; @@ -241,7 +241,7 @@ mod test { ); assert!(!proxy_type.filter(&invalid_call)); let valid_call = RuntimeCall::Proxy(pezpallet_proxy::Call::reject_announcement { - delegate: sp_runtime::MultiAddress::Id(AssetManager::account_id()), + delegate: pezsp_runtime::MultiAddress::Id(AssetManager::account_id()), call_hash: H256::zero(), }); assert!(proxy_type.filter(&valid_call)); diff --git a/generic-template/runtime/src/weights/mod.rs b/generic-template/runtime/src/weights/mod.rs index 5dd63d6..beb4fb2 100644 --- a/generic-template/runtime/src/weights/mod.rs +++ b/generic-template/runtime/src/weights/mod.rs @@ -18,8 +18,8 @@ //! Expose the auto generated weight files. pub mod block_weights; -pub mod cumulus_pezpallet_teyrchain_system; -pub mod cumulus_pezpallet_xcmp_queue; +pub mod pezcumulus_pezpallet_teyrchain_system; +pub mod pezcumulus_pezpallet_xcmp_queue; pub mod extrinsic_weights; pub mod pezpallet_asset_manager; pub mod pezpallet_assets; diff --git a/generic-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs b/generic-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs similarity index 84% rename from generic-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs rename to generic-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs index 4431597..140727f 100644 --- a/generic-template/runtime/src/weights/cumulus_pezpallet_teyrchain_system.rs +++ b/generic-template/runtime/src/weights/pezcumulus_pezpallet_teyrchain_system.rs @@ -1,5 +1,5 @@ -//! Autogenerated weights for `cumulus_pezpallet_teyrchain_system` +//! Autogenerated weights for `pezcumulus_pezpallet_teyrchain_system` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 42.0.0 //! DATE: 2024-11-03, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` @@ -16,10 +16,10 @@ // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 -// --json-file=benchmarking/results/results-cumulus_pezpallet_teyrchain_system.json -// --pezpallet=cumulus_pezpallet_teyrchain_system +// --json-file=benchmarking/results/results-pezcumulus_pezpallet_teyrchain_system.json +// --pezpallet=pezcumulus_pezpallet_teyrchain_system // --chain=dev -// --output=benchmarking/new-benchmarks/cumulus_pezpallet_teyrchain_system.rs +// --output=benchmarking/new-benchmarks/pezcumulus_pezpallet_teyrchain_system.rs #![cfg_attr(rustfmt, rustfmt_skip)] #![allow(unused_parens)] @@ -29,9 +29,9 @@ use pezframe_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; -/// Weight functions for `cumulus_pezpallet_teyrchain_system`. +/// Weight functions for `pezcumulus_pezpallet_teyrchain_system`. pub struct WeightInfo(PhantomData); -impl cumulus_pezpallet_teyrchain_system::WeightInfo for WeightInfo { +impl pezcumulus_pezpallet_teyrchain_system::WeightInfo for WeightInfo { /// Storage: `TeyrChainSystem::LastDmqMqcHead` (r:1 w:1) /// Proof: `TeyrChainSystem::LastDmqMqcHead` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `MessageQueue::BookStateFor` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs b/generic-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs similarity index 95% rename from generic-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs rename to generic-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs index 2654ce4..9968933 100644 --- a/generic-template/runtime/src/weights/cumulus_pezpallet_xcmp_queue.rs +++ b/generic-template/runtime/src/weights/pezcumulus_pezpallet_xcmp_queue.rs @@ -1,5 +1,5 @@ -//! Autogenerated weights for `cumulus_pezpallet_xcmp_queue` +//! Autogenerated weights for `pezcumulus_pezpallet_xcmp_queue` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 42.0.0 //! DATE: 2024-11-03, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` @@ -16,10 +16,10 @@ // --extrinsic=* // --wasm-execution=compiled // --heap-pages=4096 -// --json-file=benchmarking/results/results-cumulus_pezpallet_xcmp_queue.json -// --pezpallet=cumulus_pezpallet_xcmp_queue +// --json-file=benchmarking/results/results-pezcumulus_pezpallet_xcmp_queue.json +// --pezpallet=pezcumulus_pezpallet_xcmp_queue // --chain=dev -// --output=benchmarking/new-benchmarks/cumulus_pezpallet_xcmp_queue.rs +// --output=benchmarking/new-benchmarks/pezcumulus_pezpallet_xcmp_queue.rs #![cfg_attr(rustfmt, rustfmt_skip)] #![allow(unused_parens)] @@ -29,9 +29,9 @@ use pezframe_support::{traits::Get, weights::Weight}; use core::marker::PhantomData; -/// Weight functions for `cumulus_pezpallet_xcmp_queue`. +/// Weight functions for `pezcumulus_pezpallet_xcmp_queue`. pub struct WeightInfo(PhantomData); -impl cumulus_pezpallet_xcmp_queue::WeightInfo for WeightInfo { +impl pezcumulus_pezpallet_xcmp_queue::WeightInfo for WeightInfo { /// Storage: `XcmpQueue::QueueConfig` (r:1 w:1) /// Proof: `XcmpQueue::QueueConfig` (`max_values`: Some(1), `max_size`: Some(12), added: 507, mode: `MaxEncodedLen`) fn set_config_with_u32() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_asset_manager.rs b/generic-template/runtime/src/weights/pezpallet_asset_manager.rs index 22eb297..7a0a07c 100644 --- a/generic-template/runtime/src/weights/pezpallet_asset_manager.rs +++ b/generic-template/runtime/src/weights/pezpallet_asset_manager.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_asset_manager`. pub struct WeightInfo(PhantomData); -impl pezpallet_asset_manager::WeightInfo for WeightInfo { +impl pezpallet_asset_manager::WeightInfo for WeightInfo { /// Storage: `AssetManager::AssetIdType` (r:1 w:1) /// Proof: `AssetManager::AssetIdType` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Assets::Asset` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_assets.rs b/generic-template/runtime/src/weights/pezpallet_assets.rs index 5c2bc81..bad8bdd 100644 --- a/generic-template/runtime/src/weights/pezpallet_assets.rs +++ b/generic-template/runtime/src/weights/pezpallet_assets.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_assets`. pub struct WeightInfo(PhantomData); -impl pezpallet_assets::WeightInfo for WeightInfo { +impl pezpallet_assets::WeightInfo for WeightInfo { /// Storage: `Assets::Asset` (r:1 w:1) /// Proof: `Assets::Asset` (`max_values`: None, `max_size`: Some(210), added: 2685, mode: `MaxEncodedLen`) /// Storage: `Assets::NextAssetId` (r:1 w:0) diff --git a/generic-template/runtime/src/weights/pezpallet_balances.rs b/generic-template/runtime/src/weights/pezpallet_balances.rs index 6f9219d..eab4227 100644 --- a/generic-template/runtime/src/weights/pezpallet_balances.rs +++ b/generic-template/runtime/src/weights/pezpallet_balances.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_balances`. pub struct WeightInfo(PhantomData); -impl pezpallet_balances::WeightInfo for WeightInfo { +impl pezpallet_balances::WeightInfo for WeightInfo { /// Storage: `System::Account` (r:1 w:1) /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) fn transfer_allow_death() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_collator_selection.rs b/generic-template/runtime/src/weights/pezpallet_collator_selection.rs index 9f7aff0..a02c6ec 100644 --- a/generic-template/runtime/src/weights/pezpallet_collator_selection.rs +++ b/generic-template/runtime/src/weights/pezpallet_collator_selection.rs @@ -31,7 +31,7 @@ use pezframe_support::{traits::Get, weights::Weight}; /// Weight functions for `pezpallet_collator_selection`. pub struct WeightInfo(PhantomData); -impl pezpallet_collator_selection::WeightInfo for WeightInfo { +impl pezpallet_collator_selection::WeightInfo for WeightInfo { /// Storage: `Session::NextKeys` (r:20 w:0) /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `CollatorSelection::Invulnerables` (r:0 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_conviction_voting.rs b/generic-template/runtime/src/weights/pezpallet_conviction_voting.rs index 35b1e99..0cf9bb2 100644 --- a/generic-template/runtime/src/weights/pezpallet_conviction_voting.rs +++ b/generic-template/runtime/src/weights/pezpallet_conviction_voting.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_conviction_voting`. pub struct WeightInfo(PhantomData); -impl pezpallet_conviction_voting::WeightInfo for WeightInfo { +impl pezpallet_conviction_voting::WeightInfo for WeightInfo { /// Storage: `Referenda::ReferendumInfoFor` (r:1 w:1) /// Proof: `Referenda::ReferendumInfoFor` (`max_values`: None, `max_size`: Some(936), added: 3411, mode: `MaxEncodedLen`) /// Storage: `ConvictionVoting::VotingFor` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_message_queue.rs b/generic-template/runtime/src/weights/pezpallet_message_queue.rs index 3716a32..ea8954c 100644 --- a/generic-template/runtime/src/weights/pezpallet_message_queue.rs +++ b/generic-template/runtime/src/weights/pezpallet_message_queue.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_message_queue`. pub struct WeightInfo(PhantomData); -impl pezpallet_message_queue::WeightInfo for WeightInfo { +impl pezpallet_message_queue::WeightInfo for WeightInfo { /// Storage: `MessageQueue::ServiceHead` (r:1 w:0) /// Proof: `MessageQueue::ServiceHead` (`max_values`: Some(1), `max_size`: Some(5), added: 500, mode: `MaxEncodedLen`) /// Storage: `MessageQueue::BookStateFor` (r:2 w:2) diff --git a/generic-template/runtime/src/weights/pezpallet_multisig.rs b/generic-template/runtime/src/weights/pezpallet_multisig.rs index ec08ffa..a1ea140 100644 --- a/generic-template/runtime/src/weights/pezpallet_multisig.rs +++ b/generic-template/runtime/src/weights/pezpallet_multisig.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_multisig`. pub struct WeightInfo(PhantomData); -impl pezpallet_multisig::WeightInfo for WeightInfo { +impl pezpallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { // Proof Size summary in bytes: diff --git a/generic-template/runtime/src/weights/pezpallet_preimage.rs b/generic-template/runtime/src/weights/pezpallet_preimage.rs index c4df760..ee07803 100644 --- a/generic-template/runtime/src/weights/pezpallet_preimage.rs +++ b/generic-template/runtime/src/weights/pezpallet_preimage.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_preimage`. pub struct WeightInfo(PhantomData); -impl pezpallet_preimage::WeightInfo for WeightInfo { +impl pezpallet_preimage::WeightInfo for WeightInfo { /// Storage: `Preimage::StatusFor` (r:1 w:0) /// Proof: `Preimage::StatusFor` (`max_values`: None, `max_size`: Some(91), added: 2566, mode: `MaxEncodedLen`) /// Storage: `Preimage::RequestStatusFor` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_proxy.rs b/generic-template/runtime/src/weights/pezpallet_proxy.rs index c94f59c..6e3b6bd 100644 --- a/generic-template/runtime/src/weights/pezpallet_proxy.rs +++ b/generic-template/runtime/src/weights/pezpallet_proxy.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_proxy`. pub struct WeightInfo(PhantomData); -impl pezpallet_proxy::WeightInfo for WeightInfo { +impl pezpallet_proxy::WeightInfo for WeightInfo { /// Storage: `Proxy::Proxies` (r:1 w:0) /// Proof: `Proxy::Proxies` (`max_values`: None, `max_size`: Some(1241), added: 3716, mode: `MaxEncodedLen`) /// The range of component `p` is `[1, 31]`. diff --git a/generic-template/runtime/src/weights/pezpallet_referenda.rs b/generic-template/runtime/src/weights/pezpallet_referenda.rs index c6206da..765bb00 100644 --- a/generic-template/runtime/src/weights/pezpallet_referenda.rs +++ b/generic-template/runtime/src/weights/pezpallet_referenda.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_referenda`. pub struct WeightInfo(PhantomData); -impl pezpallet_referenda::WeightInfo for WeightInfo { +impl pezpallet_referenda::WeightInfo for WeightInfo { /// Storage: `Referenda::ReferendumCount` (r:1 w:1) /// Proof: `Referenda::ReferendumCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Scheduler::Agenda` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_scheduler.rs b/generic-template/runtime/src/weights/pezpallet_scheduler.rs index 64327a7..bca84ee 100644 --- a/generic-template/runtime/src/weights/pezpallet_scheduler.rs +++ b/generic-template/runtime/src/weights/pezpallet_scheduler.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_scheduler`. pub struct WeightInfo(PhantomData); -impl pezpallet_scheduler::WeightInfo for WeightInfo { +impl pezpallet_scheduler::WeightInfo for WeightInfo { /// Storage: `Scheduler::IncompleteSince` (r:1 w:1) /// Proof: `Scheduler::IncompleteSince` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn service_agendas_base() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_session.rs b/generic-template/runtime/src/weights/pezpallet_session.rs index 5515ab2..f53c31b 100644 --- a/generic-template/runtime/src/weights/pezpallet_session.rs +++ b/generic-template/runtime/src/weights/pezpallet_session.rs @@ -31,7 +31,7 @@ use pezframe_support::{traits::Get, weights::Weight}; /// Weight functions for `pezpallet_session`. pub struct WeightInfo(PhantomData); -impl pezpallet_session::WeightInfo for WeightInfo { +impl pezpallet_session::WeightInfo for WeightInfo { /// Storage: `Session::NextKeys` (r:1 w:1) /// Proof: `Session::NextKeys` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Session::KeyOwner` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_sudo.rs b/generic-template/runtime/src/weights/pezpallet_sudo.rs index 6a2b967..d9ef332 100644 --- a/generic-template/runtime/src/weights/pezpallet_sudo.rs +++ b/generic-template/runtime/src/weights/pezpallet_sudo.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_sudo`. pub struct WeightInfo(PhantomData); -impl pezpallet_sudo::WeightInfo for WeightInfo { +impl pezpallet_sudo::WeightInfo for WeightInfo { /// Storage: `Sudo::Key` (r:1 w:1) /// Proof: `Sudo::Key` (`max_values`: Some(1), `max_size`: Some(32), added: 527, mode: `MaxEncodedLen`) fn set_key() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_timestamp.rs b/generic-template/runtime/src/weights/pezpallet_timestamp.rs index be5bd66..8219cbc 100644 --- a/generic-template/runtime/src/weights/pezpallet_timestamp.rs +++ b/generic-template/runtime/src/weights/pezpallet_timestamp.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_timestamp`. pub struct WeightInfo(PhantomData); -impl pezpallet_timestamp::WeightInfo for WeightInfo { +impl pezpallet_timestamp::WeightInfo for WeightInfo { /// Storage: `Timestamp::Now` (r:1 w:1) /// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) /// Storage: `Aura::CurrentSlot` (r:1 w:0) diff --git a/generic-template/runtime/src/weights/pezpallet_transaction_payment.rs b/generic-template/runtime/src/weights/pezpallet_transaction_payment.rs index dcd4e2c..1d58525 100644 --- a/generic-template/runtime/src/weights/pezpallet_transaction_payment.rs +++ b/generic-template/runtime/src/weights/pezpallet_transaction_payment.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_transaction_payment`. pub struct WeightInfo(PhantomData); -impl pezpallet_transaction_payment::WeightInfo for WeightInfo { +impl pezpallet_transaction_payment::WeightInfo for WeightInfo { fn charge_transaction_payment() -> Weight { // Proof Size summary in bytes: // Measured: `94` diff --git a/generic-template/runtime/src/weights/pezpallet_treasury.rs b/generic-template/runtime/src/weights/pezpallet_treasury.rs index 8ba9e18..ad0e468 100644 --- a/generic-template/runtime/src/weights/pezpallet_treasury.rs +++ b/generic-template/runtime/src/weights/pezpallet_treasury.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_treasury`. pub struct WeightInfo(PhantomData); -impl pezpallet_treasury::WeightInfo for WeightInfo { +impl pezpallet_treasury::WeightInfo for WeightInfo { /// Storage: `Treasury::ProposalCount` (r:1 w:1) /// Proof: `Treasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) /// Storage: `Treasury::Approvals` (r:1 w:1) diff --git a/generic-template/runtime/src/weights/pezpallet_utility.rs b/generic-template/runtime/src/weights/pezpallet_utility.rs index faacd0d..fa6af2d 100644 --- a/generic-template/runtime/src/weights/pezpallet_utility.rs +++ b/generic-template/runtime/src/weights/pezpallet_utility.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_utility`. pub struct WeightInfo(PhantomData); -impl pezpallet_utility::WeightInfo for WeightInfo { +impl pezpallet_utility::WeightInfo for WeightInfo { /// The range of component `c` is `[0, 1000]`. fn batch(c: u32, ) -> Weight { // Proof Size summary in bytes: diff --git a/generic-template/runtime/src/weights/pezpallet_whitelist.rs b/generic-template/runtime/src/weights/pezpallet_whitelist.rs index 4176e09..7f69057 100644 --- a/generic-template/runtime/src/weights/pezpallet_whitelist.rs +++ b/generic-template/runtime/src/weights/pezpallet_whitelist.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_whitelist`. pub struct WeightInfo(PhantomData); -impl pezpallet_whitelist::WeightInfo for WeightInfo { +impl pezpallet_whitelist::WeightInfo for WeightInfo { /// Storage: `Whitelist::WhitelistedCall` (r:1 w:1) /// Proof: `Whitelist::WhitelistedCall` (`max_values`: None, `max_size`: Some(40), added: 2515, mode: `MaxEncodedLen`) /// Storage: `Preimage::StatusFor` (r:1 w:0) diff --git a/generic-template/runtime/src/weights/pezpallet_xcm.rs b/generic-template/runtime/src/weights/pezpallet_xcm.rs index c567fa6..8e97919 100644 --- a/generic-template/runtime/src/weights/pezpallet_xcm.rs +++ b/generic-template/runtime/src/weights/pezpallet_xcm.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm::WeightInfo for WeightInfo { +impl pezpallet_xcm::WeightInfo for WeightInfo { /// Storage: `PezkuwiXcm::AuthorizedAliases` (r:1 w:1) /// Proof: `PezkuwiXcm::AuthorizedAliases` (`max_values`: None, `max_size`: None, mode: `Measured`) fn add_authorized_alias() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_xcm_transactor.rs b/generic-template/runtime/src/weights/pezpallet_xcm_transactor.rs index 32475ae..b1ead68 100644 --- a/generic-template/runtime/src/weights/pezpallet_xcm_transactor.rs +++ b/generic-template/runtime/src/weights/pezpallet_xcm_transactor.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm_transactor`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm_transactor::WeightInfo for WeightInfo { +impl pezpallet_xcm_transactor::WeightInfo for WeightInfo { /// Storage: `XcmTransactor::IndexToAccount` (r:1 w:1) /// Proof: `XcmTransactor::IndexToAccount` (`max_values`: None, `max_size`: None, mode: `Measured`) fn register() -> Weight { diff --git a/generic-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs b/generic-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs index 90227de..fe15aa4 100644 --- a/generic-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs +++ b/generic-template/runtime/src/weights/pezpallet_xcm_weight_trader.rs @@ -31,7 +31,7 @@ use core::marker::PhantomData; /// Weight functions for `pezpallet_xcm_weight_trader`. pub struct WeightInfo(PhantomData); -impl pezpallet_xcm_weight_trader::WeightInfo for WeightInfo { +impl pezpallet_xcm_weight_trader::WeightInfo for WeightInfo { /// Storage: `XcmWeightTrader::SupportedAssets` (r:1 w:1) /// Proof: `XcmWeightTrader::SupportedAssets` (`max_values`: None, `max_size`: Some(635), added: 3110, mode: `MaxEncodedLen`) fn add_asset() -> Weight { diff --git a/generic-template/runtime/tests/common/mod.rs b/generic-template/runtime/tests/common/mod.rs index 18f7859..3988af3 100644 --- a/generic-template/runtime/tests/common/mod.rs +++ b/generic-template/runtime/tests/common/mod.rs @@ -3,7 +3,7 @@ use pezframe_support::weights::Weight; use generic_runtime_template::{BuildStorage, Runtime, System}; pub fn run_with_system_weight(w: Weight, mut assertions: F) { - let mut t: sp_io::TestExternalities = + let mut t: pezsp_io::TestExternalities = pezframe_system::GenesisConfig::::default().build_storage().unwrap().into(); t.execute_with(|| { System::set_block_consumed_resources(w, 0); diff --git a/generic-template/runtime/tests/constants_test.rs b/generic-template/runtime/tests/constants_test.rs index e471f6c..b076e72 100644 --- a/generic-template/runtime/tests/constants_test.rs +++ b/generic-template/runtime/tests/constants_test.rs @@ -25,8 +25,8 @@ mod runtime_tests { constants::{currency::*, *}, BlockNumber, Runtime, }; - use sp_runtime::Perbill; - use sp_version::RuntimeVersion; + use pezsp_runtime::Perbill; + use pezsp_version::RuntimeVersion; use xcm::latest::prelude::BodyId; #[test] @@ -62,7 +62,7 @@ mod runtime_tests { MAXIMUM_BLOCK_WEIGHT, Weight::from_parts( pezframe_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 ) ); @@ -71,7 +71,7 @@ mod runtime_tests { MAXIMUM_BLOCK_WEIGHT, Weight::from_parts( pezframe_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), - cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 + pezcumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64 ) ); @@ -102,9 +102,9 @@ mod runtime_tests { assert_eq!(MAX_BLOCK_LENGTH, 5 * 1024 * 1024); - assert_eq!(::SS58Prefix::get(), 42); + assert_eq!(::SS58Prefix::get(), 42); - assert_eq!(::MaxConsumers::get(), 16); + assert_eq!(::MaxConsumers::get(), 16); } #[test] @@ -168,14 +168,14 @@ mod runtime_tests { } #[test] - fn cumulus_pezpallet_teyrchain_system_constants() { + fn pezcumulus_pezpallet_teyrchain_system_constants() { assert_eq!( - ::ReservedXcmpWeight::get(), + ::ReservedXcmpWeight::get(), MAXIMUM_BLOCK_WEIGHT.saturating_div(4) ); assert_eq!( - ::ReservedDmpWeight::get(), + ::ReservedDmpWeight::get(), MAXIMUM_BLOCK_WEIGHT.saturating_div(4) ); } @@ -187,9 +187,9 @@ mod runtime_tests { } #[test] - fn cumulus_pezpallet_xcmp_queue_constants() { + fn pezcumulus_pezpallet_xcmp_queue_constants() { assert_eq!( - ::MaxInboundSuspended::get(), + ::MaxInboundSuspended::get(), 1000 ); } diff --git a/generic-template/runtime/tests/multiplier.rs b/generic-template/runtime/tests/multiplier.rs index 300ca73..20c431b 100644 --- a/generic-template/runtime/tests/multiplier.rs +++ b/generic-template/runtime/tests/multiplier.rs @@ -1,11 +1,11 @@ // Integration transaction weight-fee tests mod common; use common::*; -use pezframe_support::pezpallet_prelude::*; +use pezframe_support::pallet_prelude::*; use generic_runtime_template::{Runtime, RuntimeBlockWeights}; use pezpallet_transaction_payment::Multiplier; use pezkuwi_runtime_common::MinimumMultiplier; -use sp_runtime::{traits::Convert, Perquintill}; +use pezsp_runtime::{traits::Convert, Perquintill}; fn min_multiplier() -> Multiplier { MinimumMultiplier::get() diff --git a/generic-template/runtime/tests/storage.rs b/generic-template/runtime/tests/storage.rs index 4e8e93c..cfcbcf1 100644 --- a/generic-template/runtime/tests/storage.rs +++ b/generic-template/runtime/tests/storage.rs @@ -1,14 +1,14 @@ // Storage indices integration checks -use pezframe_support::traits::PalletInfo; +use pezframe_support::traits::PezpalletInfo; #[cfg(not(feature = "tanssi"))] use generic_runtime_template::{Aura, AuraExt, Authorship, CollatorSelection, Session}; use generic_runtime_template::{ - Balances, CumulusXcm, MessageQueue, Multisig, TeyrChainInfo, TeyrChainSystem, PezkuwiXcm, + Balances, PezcumulusXcm, MessageQueue, Multisig, TeyrChainInfo, TeyrChainSystem, PezkuwiXcm, Proxy, Runtime, Sudo, System, Timestamp, TransactionPayment, XcmpQueue, }; fn assert_pezpallet_prefix(name: &str) { - assert_eq!(::PalletInfo::name::

(), Some(name)); + assert_eq!(::PezpalletInfo::name::

(), Some(name)); } #[test] @@ -24,7 +24,7 @@ fn verify_pezpallet_prefixes() { assert_pezpallet_prefix::("Multisig"); assert_pezpallet_prefix::("XcmpQueue"); assert_pezpallet_prefix::("PezkuwiXcm"); - assert_pezpallet_prefix::("CumulusXcm"); + assert_pezpallet_prefix::("PezcumulusXcm"); assert_pezpallet_prefix::("MessageQueue"); #[cfg(not(feature = "tanssi"))] diff --git a/generic-template/runtime/tests/xcm_mock/mod.rs b/generic-template/runtime/tests/xcm_mock/mod.rs index 4e01163..da0c96a 100644 --- a/generic-template/runtime/tests/xcm_mock/mod.rs +++ b/generic-template/runtime/tests/xcm_mock/mod.rs @@ -1,13 +1,13 @@ pub mod teyrchain; pub mod relay_chain; -use sp_runtime::BuildStorage; -use sp_tracing; +use pezsp_runtime::BuildStorage; +use pezsp_tracing; use xcm::prelude::*; use xcm_executor::traits::ConvertLocation; use xcm_simulator::{decl_test_network, decl_test_teyrchain, decl_test_relay_chain, TestExt}; -pub const ALICE: sp_runtime::AccountId32 = sp_runtime::AccountId32::new([1u8; 32]); +pub const ALICE: pezsp_runtime::AccountId32 = pezsp_runtime::AccountId32::new([1u8; 32]); pub const INITIAL_BALANCE: u128 = 1_000_000_000; decl_test_teyrchain! { @@ -60,22 +60,22 @@ pub fn child_account_id(para: u32) -> relay_chain::AccountId { relay_chain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn child_account_account_id(para: u32, who: sp_runtime::AccountId32) -> relay_chain::AccountId { +pub fn child_account_account_id(para: u32, who: pezsp_runtime::AccountId32) -> relay_chain::AccountId { let location = (TeyrChain(para), AccountId32 { network: None, id: who.into() }); relay_chain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn sibling_account_account_id(para: u32, who: sp_runtime::AccountId32) -> teyrchain::AccountId { +pub fn sibling_account_account_id(para: u32, who: pezsp_runtime::AccountId32) -> teyrchain::AccountId { let location = (Parent, TeyrChain(para), AccountId32 { network: None, id: who.into() }); teyrchain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn parent_account_account_id(who: sp_runtime::AccountId32) -> teyrchain::AccountId { +pub fn parent_account_account_id(who: pezsp_runtime::AccountId32) -> teyrchain::AccountId { let location = (Parent, AccountId32 { network: None, id: who.into() }); teyrchain::location_converter::LocationConverter::convert_location(&location.into()).unwrap() } -pub fn para_ext(para_id: u32) -> sp_io::TestExternalities { +pub fn para_ext(para_id: u32) -> pezsp_io::TestExternalities { use teyrchain::{MsgQueue, Runtime, System}; let mut t = pezframe_system::GenesisConfig::::default().build_storage().unwrap(); @@ -87,16 +87,16 @@ pub fn para_ext(para_id: u32) -> sp_io::TestExternalities { .assimilate_storage(&mut t) .unwrap(); - let mut ext = sp_io::TestExternalities::new(t); + let mut ext = pezsp_io::TestExternalities::new(t); ext.execute_with(|| { - sp_tracing::try_init_simple(); + pezsp_tracing::try_init_simple(); System::set_block_number(1); MsgQueue::set_para_id(para_id.into()); }); ext } -pub fn relay_ext() -> sp_io::TestExternalities { +pub fn relay_ext() -> pezsp_io::TestExternalities { use relay_chain::{Runtime, System}; let mut t = pezframe_system::GenesisConfig::::default().build_storage().unwrap(); @@ -112,12 +112,12 @@ pub fn relay_ext() -> sp_io::TestExternalities { .assimilate_storage(&mut t) .unwrap(); - let mut ext = sp_io::TestExternalities::new(t); + let mut ext = pezsp_io::TestExternalities::new(t); ext.execute_with(|| { System::set_block_number(1); }); ext } -pub type RelayChainPezpalletXcm = pezpallet_xcm::Pallet; -pub type TeyrChainPezpalletXcm = pezpallet_xcm::Pallet; +pub type RelayChainPezpalletXcm = pezpallet_xcm::Pezpallet; +pub type TeyrChainPezpalletXcm = pezpallet_xcm::Pezpallet; diff --git a/generic-template/runtime/tests/xcm_mock/relay_chain/mod.rs b/generic-template/runtime/tests/xcm_mock/relay_chain/mod.rs index 61914d8..0f40016 100644 --- a/generic-template/runtime/tests/xcm_mock/relay_chain/mod.rs +++ b/generic-template/runtime/tests/xcm_mock/relay_chain/mod.rs @@ -12,8 +12,8 @@ use pezkuwi_runtime_teyrchains::{ inclusion::{AggregateMessageOrigin, UmpQueueId}, origin, shared, }; -use sp_core::ConstU32; -use sp_runtime::{traits::IdentityLookup, AccountId32}; +use pezsp_core::ConstU32; +use pezsp_runtime::{traits::IdentityLookup, AccountId32}; use xcm::latest::prelude::*; use xcm_builder::{IsConcrete, SignedToAccountId32}; pub use xcm_config::*; @@ -27,7 +27,7 @@ parameter_types! { } #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] -impl pezframe_system::Config for Runtime { +impl frame_system::Config for Runtime { type AccountData = pezpallet_balances::AccountData; type AccountId = AccountId; type Block = Block; diff --git a/generic-template/runtime/tests/xcm_mock/teyrchain/mod.rs b/generic-template/runtime/tests/xcm_mock/teyrchain/mod.rs index 58fd475..a1a79f5 100644 --- a/generic-template/runtime/tests/xcm_mock/teyrchain/mod.rs +++ b/generic-template/runtime/tests/xcm_mock/teyrchain/mod.rs @@ -7,8 +7,8 @@ use pezframe_support::{ weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}, }; use pezframe_system::EnsureRoot; -use sp_core::ConstU32; -use sp_runtime::{ +use pezsp_core::ConstU32; +use pezsp_runtime::{ traits::{Get, IdentityLookup}, AccountId32, }; @@ -26,7 +26,7 @@ parameter_types! { } #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] -impl pezframe_system::Config for Runtime { +impl frame_system::Config for Runtime { type AccountData = pezpallet_balances::AccountData; type AccountId = AccountId; type Block = Block; diff --git a/generic-template/scripts/generate-benchmarks.sh b/generic-template/scripts/generate-benchmarks.sh index 5731ad5..e6da44a 100755 --- a/generic-template/scripts/generate-benchmarks.sh +++ b/generic-template/scripts/generate-benchmarks.sh @@ -13,5 +13,5 @@ mkdir benchmarking/new-benchmarks while IFS= read -r line; do echo "Creating benchmark for: $line" - target/release/parachain-template-node benchmark pallet --steps=50 --repeat=20 --extrinsic=* --wasm-execution=compiled --heap-pages=4096 --json-file=benchmarking/results/results-$line.json --pallet=$line --chain=dev --output=benchmarking/new-benchmarks/$line.rs + target/release/teyrchain-template-node benchmark pezpallet --steps=50 --repeat=20 --extrinsic=* --wasm-execution=compiled --heap-pages=4096 --json-file=benchmarking/results/results-$line.json --pezpallet=$line --chain=dev --output=benchmarking/new-benchmarks/$line.rs done < $filename \ No newline at end of file diff --git a/generic-template/scripts/zombienet.sh b/generic-template/scripts/zombienet.sh index b4c751e..85f80ad 100755 --- a/generic-template/scripts/zombienet.sh +++ b/generic-template/scripts/zombienet.sh @@ -1,7 +1,7 @@ #!/bin/bash ZOMBIENET_V=v1.3.106 -POLKADOT_V=stable-2407-01 +POLKAHEZ_V=stable-2407-01 # Detect the operating system case "$(uname -s)" in @@ -36,33 +36,33 @@ fi echo "Using binary: $ZOMBIENET_BIN" -BIN_DIR=bin-$POLKADOT_V +BIN_DIR=bin-$POLKAHEZ_V -build_polkadot() { - echo "cloning polkadot repository..." +build_pezkuwi() { + echo "cloning pezkuwi repository..." CWD=$(pwd) mkdir -p "$BIN_DIR" pushd /tmp - git clone https://github.com/paritytech/polkadot-sdk.git - pushd polkadot-sdk - git checkout release-polkadot-$POLKADOT_V - echo "building polkadot executable..." + git clone https://github.com/pezkuwichain/pezkuwi-sdk.git + pushd pezkuwi-sdk + git checkout release-pezkuwi-$POLKAHEZ_V + echo "building pezkuwi executable..." cargo build --release --features fast-runtime - cp target/release/polkadot "$CWD/$BIN_DIR" - cp target/release/polkadot-execute-worker "$CWD/$BIN_DIR" - cp target/release/polkadot-prepare-worker "$CWD/$BIN_DIR" + cp target/release/pezkuwi "$CWD/$BIN_DIR" + cp target/release/pezkuwi-execute-worker "$CWD/$BIN_DIR" + cp target/release/pezkuwi-prepare-worker "$CWD/$BIN_DIR" popd popd } -fetch_polkadot() { - echo "fetching from polkadot repository..." +fetch_pezkuwi() { + echo "fetching from pezkuwi repository..." echo $BIN_DIR mkdir -p "$BIN_DIR" pushd "$BIN_DIR" - wget https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-$POLKADOT_V/polkadot - wget https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-$POLKADOT_V/polkadot-execute-worker - wget https://github.com/paritytech/polkadot-sdk/releases/download/polkadot-$POLKADOT_V/polkadot-prepare-worker + wget https://github.com/pezkuwichain/pezkuwi-sdk/releases/download/pezkuwi-$POLKAHEZ_V/pezkuwi + wget https://github.com/pezkuwichain/pezkuwi-sdk/releases/download/pezkuwi-$POLKAHEZ_V/pezkuwi-execute-worker + wget https://github.com/pezkuwichain/pezkuwi-sdk/releases/download/pezkuwi-$POLKAHEZ_V/pezkuwi-prepare-worker chmod +x * popd } @@ -70,29 +70,29 @@ fetch_polkadot() { zombienet_init() { if [ ! -f $ZOMBIENET_BIN ]; then echo "fetching zombienet executable..." - curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN + curl -LO https://github.com/pezkuwichain/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN chmod +x $ZOMBIENET_BIN fi - if [ ! -f $BIN_DIR/polkadot ]; then - fetch_polkadot + if [ ! -f $BIN_DIR/pezkuwi ]; then + fetch_pezkuwi fi } zombienet_build() { if [ ! -f $ZOMBIENET_BIN ]; then echo "fetching zombienet executable..." - curl -LO https://github.com/paritytech/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN + curl -LO https://github.com/pezkuwichain/zombienet/releases/download/$ZOMBIENET_V/$ZOMBIENET_BIN chmod +x $ZOMBIENET_BIN fi - if [ ! -f $BIN_DIR/polkadot ]; then - build_polkadot + if [ ! -f $BIN_DIR/pezkuwi ]; then + build_pezkuwi fi } zombienet_devnet() { zombienet_init cargo build --release - echo "spawning paseo-local relay chain plus devnet as a parachain..." + echo "spawning paseo-local relay chain plus devnet as a teyrchain..." local dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) ./$ZOMBIENET_BIN spawn "$dir/../zombienet-config/devnet.toml" -p native } @@ -101,9 +101,9 @@ zombienet_devnet() { print_help() { echo "This is a shell script to automate the execution of zombienet." echo "" - echo "$ ./zombienet.sh init # fetches zombienet and polkadot executables" - echo "$ ./zombienet.sh build # builds polkadot executables from source" - echo "$ ./zombienet.sh devnet # spawns a paseo-local relay chain plus parachain devnet-local as a parachain" + echo "$ ./zombienet.sh init # fetches zombienet and pezkuwi executables" + echo "$ ./zombienet.sh build # builds pezkuwi executables from source" + echo "$ ./zombienet.sh devnet # spawns a paseo-local relay chain plus teyrchain devnet-local as a teyrchain" } SUBCOMMAND=$1 diff --git a/generic-template/template-fuzzer/Cargo.toml b/generic-template/template-fuzzer/Cargo.toml index aa74319..05fd5c1 100644 --- a/generic-template/template-fuzzer/Cargo.toml +++ b/generic-template/template-fuzzer/Cargo.toml @@ -26,9 +26,9 @@ parity-scale-codec = { workspace = true } pezframe-support = { workspace = true } pezframe-system = { workspace = true } -sp-consensus-aura = { workspace = true } -sp-runtime = { workspace = true } -sp-state-machine = { workspace = true } +pezsp-consensus-aura = { workspace = true } +pezsp-runtime = { workspace = true } +pezsp-state-machine = { workspace = true } pezpallet-balances = { workspace = true } pezpallet-collator-selection = { workspace = true } @@ -39,10 +39,10 @@ pezpallet-timestamp = { workspace = true } pezpallet-utility = { workspace = true } pezpallet-whitelist = { workspace = true } -cumulus-pezpallet-teyrchain-system = { workspace = true } -cumulus-primitives-core = { workspace = true } -cumulus-primitives-teyrchain-inherent = { workspace = true } -cumulus-test-relay-sproof-builder = { workspace = true } +pezcumulus-pezpallet-teyrchain-system = { workspace = true } +pezcumulus-primitives-core = { workspace = true } +pezcumulus-primitives-teyrchain-inherent = { workspace = true } +pezcumulus-test-relay-sproof-builder = { workspace = true } [features] default = [ "std", "try-runtime" ] @@ -57,8 +57,8 @@ std = [ "pezpallet-utility/std", "pezpallet-whitelist/std", "parity-scale-codec/std", - "sp-consensus-aura/std", - "sp-runtime/std", + "pezsp-consensus-aura/std", + "pezsp-runtime/std", ] fuzzing = [] tanssi = [] @@ -73,7 +73,7 @@ try-runtime = [ "pezpallet-timestamp/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-whitelist/try-runtime", - "sp-runtime/try-runtime", + "pezsp-runtime/try-runtime", ] [lints] diff --git a/generic-template/template-fuzzer/src/main.rs b/generic-template/template-fuzzer/src/main.rs index 0f63ca6..372ead6 100644 --- a/generic-template/template-fuzzer/src/main.rs +++ b/generic-template/template-fuzzer/src/main.rs @@ -19,23 +19,23 @@ use generic_runtime_template::{ use pezpallet_balances::{Holds, TotalIssuance}; use teyrchains_common::AccountId; use parity_scale_codec::{DecodeLimit, Encode}; -use sp_consensus_aura::{Slot, AURA_ENGINE_ID}; -use sp_runtime::{ +use pezsp_consensus_aura::{Slot, AURA_ENGINE_ID}; +use pezsp_runtime::{ testing::H256, traits::{Dispatchable, Header}, Digest, DigestItem, Storage, }; -use sp_state_machine::BasicExternalities; +use pezsp_state_machine::BasicExternalities; fn generate_genesis(accounts: &[AccountId]) -> Storage { use generic_runtime_template::{BalancesConfig, RuntimeGenesisConfig}; #[cfg(not(feature = "tanssi"))] use generic_runtime_template::{CollatorSelectionConfig, SessionConfig, SessionKeys}; #[cfg(not(feature = "tanssi"))] - use sp_consensus_aura::sr25519::AuthorityId as AuraId; + use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; #[cfg(not(feature = "tanssi"))] - use sp_runtime::app_crypto::ByteArray; - use sp_runtime::BuildStorage; + use pezsp_runtime::app_crypto::ByteArray; + use pezsp_runtime::BuildStorage; // Configure endowed accounts with initial balance of 1 << 60. let balances = accounts.iter().cloned().map(|k| (k, 1 << 60)).collect(); @@ -171,9 +171,9 @@ fn initialize_block(block: u32) { .unwrap(); let teyrchain_validation_data = { - use cumulus_primitives_core::{relay_chain::HeadData, PersistedValidationData}; - use cumulus_primitives_teyrchain_inherent::TeyrChainInherentData; - use cumulus_test_relay_sproof_builder::RelayStateSproofBuilder; + use pezcumulus_primitives_core::{relay_chain::HeadData, PersistedValidationData}; + use pezcumulus_primitives_teyrchain_inherent::TeyrChainInherentData; + use pezcumulus_test_relay_sproof_builder::RelayStateSproofBuilder; let parent_head = HeadData(prev_header.clone().unwrap_or(parent_header.clone()).encode()); let sproof_builder = RelayStateSproofBuilder { @@ -196,7 +196,7 @@ fn initialize_block(block: u32) { downward_messages: Default::default(), horizontal_messages: Default::default(), }; - cumulus_pezpallet_teyrchain_system::Call::set_validation_data { data } + pezcumulus_pezpallet_teyrchain_system::Call::set_validation_data { data } }; Executive::apply_extrinsic(UncheckedExtrinsic::new_bare(RuntimeCall::TeyrChainSystem( diff --git a/generic-template/zombienet-config/README.md b/generic-template/zombienet-config/README.md index ef628d5..bc1bdea 100644 --- a/generic-template/zombienet-config/README.md +++ b/generic-template/zombienet-config/README.md @@ -1,10 +1,10 @@ # Zombienet configuration -Zombienet aims to be a testing framework for Substrate based blockchains, providing a simple cli tool that allows users to spawn and test ephemeral networks. +Zombienet aims to be a testing pezframework for Bizinikiwi based blockchains, providing a simple cli tool that allows users to spawn and test ephemeral networks. ## Start a development chain -Firstly build Polkadot binaries with: +Firstly build Pezkuwi binaries with: ```sh $ scripts/zombienet.sh build @@ -16,7 +16,7 @@ This process can take some time, so please be patient. If on Linux, you can alte $ scripts/zombinet.sh init ``` -Once Polkadot binaries are in place you can spawn a local testnet by running the following command: +Once Pezkuwi binaries are in place you can spawn a local testnet by running the following command: ```shell $ scripts/zombienet.sh devnet diff --git a/generic-template/zombienet-config/devnet.toml b/generic-template/zombienet-config/devnet.toml index d59efef..ad3d3ca 100644 --- a/generic-template/zombienet-config/devnet.toml +++ b/generic-template/zombienet-config/devnet.toml @@ -1,6 +1,6 @@ [relaychain] chain = "paseo-local" -default_command = "./bin-v1.6.0/polkadot" +default_command = "./bin-v1.6.0/pezkuwi" [[relaychain.nodes]] name = "alice" @@ -10,20 +10,20 @@ validator = true name = "bob" validator = true -[[parachains]] +[[teyrchains]] id = 1000 addToGenesis = true -cumulus_based = true +pezcumulus_based = true chain = "dev" -[[parachains.collators]] +[[teyrchains.collators]] name = "collator01" command = "./target/release/generic-template-node" ws_port = 9933 rpc_port = 8833 args = ["--rpc-max-connections 10000"] -[[parachains.collators]] +[[teyrchains.collators]] name = "collator02" ws_port = 9822 rpc_port = 8822 diff --git a/rename_files.py b/rename_files.py new file mode 100644 index 0000000..f832db3 --- /dev/null +++ b/rename_files.py @@ -0,0 +1,51 @@ +import os + +RENAME_MAP = [ + ('polkadot', 'pezkuwi'), + ('substrate', 'bizinikiwi'), + ('cumulus', 'pezcumulus'), + ('parachain', 'teyrchain'), + ('rococo', 'pezkuwichain'), + ('westend', 'zagros'), + ('frame', 'pezframe'), + ('pallet', 'pezpallet'), + ('sp-', 'pezsp-'), + ('sc-', 'pezsc-'), +] + +def main(): + # Use depth-first to handle directories correctly + for root, dirs, files in os.walk('.', topdown=False): + if '.git' in root or 'target' in root: + continue + + # Rename files + for name in files: + new_name = name + for old, new in RENAME_MAP: + if old in new_name and not new in new_name: + new_name = new_name.replace(old, new) + + if new_name != name: + old_path = os.path.join(root, name) + new_path = os.path.join(root, new_name) + os.rename(old_path, new_path) + # print(f"Renamed file: {old_path} -> {new_path}") + + # Rename directories + for name in dirs: + if name == '.git' or name == 'target': + continue + new_name = name + for old, new in RENAME_MAP: + if old in new_name and not new in new_name: + new_name = new_name.replace(old, new) + + if new_name != name: + old_path = os.path.join(root, name) + new_path = os.path.join(root, new_name) + os.rename(old_path, new_path) + # print(f"Renamed dir: {old_path} -> {new_path}") + +if __name__ == "__main__": + main()