fix: Complete snowbridge pezpallet rebrand and critical bug fixes

- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs)
- pallet/ directories → pezpallet/ (4 locations)
- Fixed pezpallet.rs self-include recursion bug
- Fixed sc-chain-spec hardcoded crate name in derive macro
- Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API)
- Added BizinikiwiConfig type alias for zombienet tests
- Deleted obsolete session state files

Verified: pezsnowbridge-pezpallet-*, pezpallet-staking,
pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
This commit is contained in:
2025-12-16 09:57:23 +03:00
parent eea003e14d
commit 3139ffa25e
3022 changed files with 42157 additions and 23579 deletions
+4 -4
View File
@@ -14,10 +14,10 @@ The Uniques module provides functionality for non-fungible tokens' management, i
* Item Burning
To use it in your runtime, you need to implement
[`uniques::Config`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pallet/trait.Config.html).
[`uniques::Config`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pezpallet/trait.Config.html).
The supported dispatchable functions are documented in the
[`uniques::Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pallet/enum.Call.html) enum.
[`uniques::Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pezpallet/enum.Call.html) enum.
### Terminology
@@ -30,7 +30,7 @@ The supported dispatchable functions are documented in the
### Goals
The Uniques pallet in Bizinikiwi is designed to make the following possible:
The Uniques pezpallet in Bizinikiwi is designed to make the following possible:
* Allow accounts to permissionlessly create NFT collections.
* Allow a named (permissioned) account to mint and burn unique items within a collection.
@@ -70,7 +70,7 @@ The Uniques pallet in Bizinikiwi is designed to make the following possible:
* `force_create`: Create a new collection.
* `force_asset_status`: Alter the underlying characteristics of a collection.
Please refer to the [`Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pallet/enum.Call.html) enum
Please refer to the [`Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_uniques/pezpallet/enum.Call.html) enum
and its associated variants for documentation on each function.
## Related Modules