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
+7 -7
View File
@@ -1,10 +1,10 @@
# NFTs pallet
# NFTs pezpallet
A pallet for dealing with non-fungible assets.
A pezpallet for dealing with non-fungible assets.
## Overview
The NFTs pallet provides functionality for non-fungible tokens' management, including:
The NFTs pezpallet provides functionality for non-fungible tokens' management, including:
* Collection Creation
* NFT Minting
@@ -14,10 +14,10 @@ The NFTs pallet provides functionality for non-fungible tokens' management, incl
* NFT Burning
To use it in your runtime, you need to implement
[`nfts::Config`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pallet/trait.Config.html).
[`nfts::Config`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pezpallet/trait.Config.html).
The supported dispatchable functions are documented in the
[`nfts::Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pallet/enum.Call.html) enum.
[`nfts::Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pezpallet/enum.Call.html) enum.
### Terminology
@@ -33,7 +33,7 @@ The supported dispatchable functions are documented in the
### Goals
The NFTs pallet in Bizinikiwi is designed to make the following possible:
The NFTs 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.
@@ -96,7 +96,7 @@ The NFTs pallet in Bizinikiwi is designed to make the following possible:
* `force_collection_config`: Change collection's config.
* `force_set_attribute`: Set an attribute.
Please refer to the [`Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pallet/enum.Call.html) enum and
Please refer to the [`Call`](https://docs.pezkuwichain.io/bizinikiwi/master/pallet_nfts/pezpallet/enum.Call.html) enum and
its associated variants for documentation on each function.
## Related Modules