83 Commits

Author SHA1 Message Date
pezkuwichain afa8bba099 fix(ci): change Docker Hub namespace from pezkuwichain/ to pezkuwi/
Docker Hub personal account namespace must match the username.
Updated all docker.io image references across workflows, actions,
docker-compose files, and zombienet configs.
2026-03-14 15:58:50 +03:00
pezkuwichain d8550e2d76 style: fix rustfmt line length in BABE benchmarking blob
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 01:22:57 +03:00
pezkuwichain 0dbe3a7032 fix(benchmarks): regenerate BABE equivocation proof blob, exclude revive benchmarks
- Regenerate EQUIVOCATION_PROOF_BLOB in pezpallet-babe benchmarking:
  the old blob contained stale header hashes that caused
  check_equivocation_proof to fail with assertion error

- Exclude pezpallet_revive from quick-benchmarks via
  --exclude-pezpallets flag: revive benchmarks require PolkaVM
  toolchain (riscv64emac-unknown-none-polkavm) for fixture compilation
  which is not available in CI. This removes continue-on-error so
  real benchmark failures are now visible

- Increase build-rustdoc timeout from 180 to 240 minutes for VPS runner
2026-03-06 16:52:47 +03:00
pezkuwichain 233f6fcb9d fix(ci): remove all forklift usage and update runtime-interface UI test stderr
- Remove forklift cargo wrapper from build-only-wasm.sh (direct cause of
  build-linux-stable failures in container jobs)
- Add .env_remove("RUSTC_WRAPPER") to wasm-builder cargo subprocess to
  prevent inheriting forklift from Parity CI container images
- Remove forklift from cargo-check-runtimes action and cmd.py benchmark
  build command
- Update test_cmd.py expectations to match forklift removal
- Update no_feature_gated_method.stderr for rebrand: substrate_runtime →
  bizinikiwi_runtime, sp_runtime_interface_proc_macro →
  pezsp_runtime_interface_proc_macro, and expanded feature list
2026-03-01 07:58:42 +03:00
pezkuwichain 8f7a2d09f2 fix(ci): update UI test stderr files for pezsp_version rebrand and caret alignment
- empty_impl_runtime_apis_call.stderr: fix caret count (29→32) for pezsp_api span
- impl_incorrect_method_signature.stderr: sp_version→pezsp_version, fix caret alignment
- type_reference_in_impl_runtime_apis_call.stderr: sp_version→pezsp_version, fix caret alignment
2026-02-28 22:52:52 +03:00
pezkuwichain aa45e1a108 fix(ci): update UI test stderr files for pezsp_api rebrand, increase test-doc timeout
- Update 5 .stderr files: sp_api → pezsp_api references and column numbers
  (empty_impl_runtime_apis_call, impl_incorrect_method_signature,
   mock_advanced_hash_by_reference, mock_only_self_reference,
   type_reference_in_impl_runtime_apis_call)
- Increase test-doc timeout 180→300min (VPS needs ~3h for doc tests)
2026-02-27 17:57:31 +03:00
pezkuwichain 83e29dba8c fix: replace wasm32-unknown-unknown with wasm32v1-none in crypto checks and scripts
The serde_core + wasm32-unknown-unknown combination causes duplicate
lang item errors (panic_impl). Using wasm32v1-none avoids the fallback
to -Z build-std which triggers the conflict.
2026-02-23 11:15:06 +03:00
pezkuwichain cc156a1d61 fix(ah-staking): stall detection grace period, MinerPages fix, and simulation tools
- Add 3-session grace period to stall detection to allow RC XCM round-trip
  before triggering era recovery (StallDetectionCount storage added)
- Fix plan_new_era() to always increment CurrentEra regardless of
  ElectionProvider::start() result, preventing infinite retry loops
- Fix MinerPages from 2 to 32 to match Pages config (was causing
  incomplete OCW solutions and election failures)
- Bump AH spec_version to 1_020_007
- Add subxt example scripts for simulation and mainnet operations
- Remove obsolete fix_force_era.rs (replaced by sim_reset_election.rs)
2026-02-19 17:16:43 +03:00
pezkuwichain 4d0176e2f0 fix(staking-async): add stalled era recovery for zombie pending eras
When an election completes with 0 winners and RC never sends
activation_timestamp, the pending era becomes a zombie blocking all
future era transitions. Detect this condition (election idle + not
fetching) and revert the planned era to break the deadlock.
2026-02-18 21:22:56 +03:00
pezkuwichain b67e30942e style: taplo formatting and umbrella regeneration 2026-02-14 11:02:01 +03:00
pezkuwichain a7c9df6c22 fix: zepter feature propagation, umbrella regeneration, taplo formatting
- Propagate runtime-benchmarks feature to pezsp-test-primitives in pezsp-api
- Regenerate umbrella crate after pezsp-api dev-dependency addition
- Apply taplo formatting to all changed Cargo.toml files
2026-02-14 09:38:10 +03:00
pezkuwichain 019f8b9ea1 fix: resolve CI failures in pezkuwi-subxt-metadata no_std and pezsp-api doc-tests
- Replace thiserror::Error derive with manual Display + core::error::Error
  impl in pezkuwi-subxt-metadata TryFromError, fixing no_std compilation
  (thiserror v1 does not support no_std)
- Add pezsp-test-primitives as dev-dependency to pezsp-api, fixing 3
  failing doc-tests that import pezsp_test_primitives::Block
- Revert unnecessary features=["std"] on workspace pezkuwi-subxt-metadata dep
- Apply taplo formatting to changed Cargo.toml files
2026-02-14 06:00:17 +03:00
pezkuwichain bd454cf395 feat: wire trust score system with cross-chain staking data and component triggers
- Add CachedStakingDetails storage and receive_staking_details extrinsic
  to staking-score pallet for Asset Hub XCM data reception
- Add TrustScoreUpdater triggers to referral, tiki, and perwerde pallets
  so component score changes propagate to trust pallet
- Wire runtime hooks (OnKycApproved, OnCitizenshipRevoked) to Referral
  and CitizenNftProvider to Tiki in people.rs
- Fix PerwerdeScoreSource and ReferralScoreSource to read actual pallet data
- Fix EnsureOrigin trait feature unification issue by removing cfg gate
  from try_successful_origin and adding default Err(()) implementation
- Fix workspace Cargo.toml default-features for pezkuwi-subxt dependencies
2026-02-13 20:13:50 +03:00
pezkuwichain cab8e11f21 style: taplo fmt - normalize Cargo.toml indentation 2026-02-11 04:52:44 +03:00
pezkuwichain 0cb3f97092 fix: tests misc CI failures
- Add default impl for try_successful_origin in EnsureOriginWithArg trait
  to handle feature unification where pezframe-support/runtime-benchmarks
  is enabled but implementing crate's runtime-benchmarks is not
- Add SKIP_WASM_BUILD=1 to test-node-metrics job to avoid serde_core WASM bug
- Skip vendor workspace crates in check-each-crate.py that can't build standalone
2026-01-28 16:50:26 +03:00
pezkuwichain 5a1fd2ea22 fix: update GitHub URLs from master to main branch
- Replace tree/master with tree/main in all documentation and code comments
- Fix issues/168 -> pull/168 reference (issue was converted to PR)
2026-01-27 20:30:20 +03:00
pezkuwichain e89b8f29b7 fix: use CI-compatible cargo path in UI test expected output 2026-01-26 17:41:28 +03:00
pezkuwichain 5d2748a90c fix: update construct_runtime UI test expected output
Update deprecated_where_block.stderr to match current Rust compiler output.
The differences are minor formatting changes in error messages.
2026-01-26 16:22:03 +03:00
pezkuwichain 49474fb3e0 fix: broken documentation URLs in link checker
1. remote_mining.rs: dicle.subscan.io -> explorer.pezkuwichain.io
   - subscan doesn't have our testnet, use our explorer

2. ethereum-client + beacon primitives: consensus-specs/blob/dev -> blob/master
   - ethereum repo uses 'master' branch, not 'dev'
   - 5 URLs updated
2026-01-26 00:44:48 +03:00
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00
pezkuwichain c4d0882db6 fix: zepter feature propagation for runtime-benchmarks
- Add pezsp-timestamp/runtime-benchmarks to pezframe-support
- Add runtime-benchmarks feature to pezkuwi-zombienet-cli

Fixes feature propagation issues detected by zepter.
2026-01-25 23:51:47 +03:00
pezkuwichain ff5e45f904 fix: correct feature gates for storage-benchmark and metadata-hash
- StorageCmd: change cfg from runtime-benchmarks to storage-benchmark
- enable_metadata_hash_in_wasm_builder: add cfg(feature = "metadata-hash") gate
- Add storage-benchmark feature to pezkuwi-omni-node-lib Cargo.toml
- Add metadata-hash feature to pezframe-metadata-hash-extension Cargo.toml

These fixes resolve cargo-check-all-benches CI failures.
2026-01-25 23:03:06 +03:00
pezkuwichain 25477b2bb9 fix: doc test compilation errors with documented ignores
Changes:
- pezframe/src/lib.rs: Fix import pezframe, add ignore with documentation
  explaining pallet macro context requirements
- pezframe-election-provider-solution-type: Add documented ignores for
  two doc tests due to circular dependency (proc-macro cannot depend on
  pezframe-support). Tests exist in pezframe-election-provider-support/src/tests.rs
- pezframe-support/Cargo.toml: Add pezsp-timestamp dev-dependency for
  inherent doc test compilation
- pezframe-support-procedural: Add documented ignore for authorize doc test
  due to circular dependency (proc-macro cannot depend on pezframe crates)
- pezkuwi-subxt: Add documented ignore for substitute_type generic pattern
  example. Bundled metadata is from Polkadot (sp_runtime paths) but SDK
  uses pezsp_runtime. Proper fix requires generating pezkuwichain metadata.

All ignores include detailed technical documentation explaining:
1. Why the test cannot compile (circular deps or metadata mismatch)
2. Where equivalent functionality is tested
3. What users should do when using the documented pattern
2026-01-25 19:21:47 +03:00
pezkuwichain 3f3a0c5666 fix: correct domain from pezkuwi.io to pezkuwichain.io
The pezkuwi.io domain does not exist. All references have been
updated to the correct pezkuwichain.io domain.

Fixed files:
- subxt examples (rpc.pezkuwichain.io)
- subxt lib.rs documentation
- contracts fixtures (homepage, authors email)
- CHANGELOG.md (zagros-rpc.pezkuwichain.io)
2026-01-25 05:34:37 +03:00
pezkuwichain b74081c0b5 fix: taplo format all Cargo.toml files 2026-01-07 18:47:06 +03:00
pezkuwichain 592fbc1537 fix: CI - zepter feature propagation (347 issues), taplo format, umbrella 2026-01-07 18:16:03 +03:00
pezkuwichain b7b066682e fix: CI quick-checks - fmt, taplo, umbrella version 2026-01-07 17:19:27 +03:00
pezkuwichain bedde865b0 fix: restore dev-dependencies for clippy --all-targets --all-features
Uncomment dev-dependencies that were previously commented out to break
circular dependencies. These dependencies are needed for tests to compile
when running clippy with --all-targets --all-features.

Changes include:
- pezkuwi/node/*: Add pezkuwi-node-subsystem-test-helpers, pezkuwi-primitives-test-helpers
- pezkuwi/xcm/*: Add pezpallet-xcm, xcm-pez-simulator
- pezcumulus/client/*: Add test client, runtime, and sproof builder deps
- bizinikiwi/pezframe/*: Add bizinikiwi-test-utils, pezframe-support-test,
  pezpallet-transaction-payment, pezpallet-example-basic, etc.
- vendor/pezkuwi-zombienet-sdk: Fix imports from zombienet_sdk to pezkuwi_zombienet_sdk

All runtime-benchmarks feature flags have been updated accordingly.

cargo clippy --all-targets --all-features --workspace now passes.
2026-01-07 16:53:09 +03:00
pezkuwichain d84d85709d merge: resolve conflicts from main (keep development changes) 2026-01-07 10:53:12 +03:00
pezkuwichain 954e2703e2 rebrand: kusama → dicle
- Replace all kusama/Kusama references with dicle/Dicle
- Rename weight files from ksm_size to dcl_size
- Update papi-tests files from ksm to dcl
- Remove chain-specs/kusama.json files
- cargo check --workspace successful (Finished output)
- Update MAINNET_ROADMAP.md: FAZ 8 completed
2026-01-07 09:41:15 +03:00
pezkuwichain 6e1464bb91 fix: remove primitive-types/serde feature to avoid getrandom on wasm32
The serde feature was enabling primitive-types/serde which transitively
enables std -> fixed-hash/std -> rand/std -> getrandom. This fails on
wasm32-unknown-unknown target. Using only primitive-types/serde_no_std
provides serde support without the std dependency chain.
2026-01-05 00:13:48 +03:00
pezkuwichain e30bafef0c fix: add dep:serde to subxt-signer and skip wasm build for eth-rpc
- Add dep:serde to pezkuwi-subxt-signer serde feature (fixes docs workflow)
- Add SKIP_WASM_BUILD=1 to eth-rpc Dockerfile (workaround for serde_core + build-std conflict)
- Add zombienet-alpha.toml for 4-validator testnet configuration
2026-01-04 22:17:07 +03:00
pezkuwichain bd2d665c4e fix: comprehensive feature propagation and dep:serde fixes
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates)
- Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features
- Regenerate umbrella crate with proper feature propagation
- Format all TOML files with taplo

This resolves check-umbrella and check-zepter CI failures.
2026-01-04 20:37:14 +03:00
pezkuwichain a45e5ae5ec fix: update umbrella feature names to correct pezstaging- prefixes
- pezstaging-node-cli: use direct workspace deps instead of umbrella
- templates/teyrchain/runtime: xcm->pezstaging-xcm, teyrchain-info->pezstaging-teyrchain-info
- yet-another-teyrchain/runtime: same xcm and teyrchain-info fixes
2026-01-04 18:25:32 +03:00
pezkuwichain bf9ea9a7de fix: use pezstaging-chain-spec-builder feature in node-cli 2026-01-04 18:07:37 +03:00
pezkuwichain 5bdc1a900a style: apply taplo format to all Cargo.toml files 2026-01-04 17:37:38 +03:00
pezkuwichain 57fef835e3 fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00
pezkuwichain f64e904587 Merge development: FAZ 1 Complete - Workspace compile fixes & warning cleanup 2026-01-02 11:46:14 +03:00
pezkuwichain 241bace6ad FAZ 1 Complete: Workspace compile fixes, warning cleanup, version bumps
- Fixed is_using_frame_crate() macro to check for pezframe/pezkuwi_sdk
- Removed disable_pezframe_system_supertrait_check temporary bypasses
- Feature-gated storage-benchmark and teyrchain-benchmarks code
- Fixed dead_code warnings with underscore prefix (_Header)
- Removed unused imports and shadowing use statements
- Version bumps: procedural-tools 10.0.1, benchmarking-cli 32.0.1,
  docs 0.0.2, minimal-runtime 0.0.1, yet-another-teyrchain 0.6.1, umbrella 0.1.2
- Updated MAINNET_ROADMAP.md with FAZ 1 completion status
2026-01-02 11:41:09 +03:00
pezkuwichain b349d4f90c Remove bizinikiwi-test-utils dev-deps to break circular dependencies for publishing 2025-12-29 07:43:39 +03:00
pezkuwichain d5c4e5c038 Remove circular dev-dependencies for crates.io publishing
- pezpallet-balances: removed pezpallet-transaction-payment dev-dep
- pezpallet-utility: removed pezpallet-root-testing dev-dep
- pezframe-benchmarking-cli: removed frame-storage-access-test-runtime dep
- frame-storage-access-test-runtime: removed bizinikiwi-wasm-builder, pezcumulus-pezpallet-teyrchain-system deps

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 19:43:15 +03:00
pezkuwichain e57986e4a3 chore: break circular dependency between election-provider crates 2025-12-28 11:43:29 +03:00
pezkuwichain 7c263cc3f3 chore: break more circular dev-dependencies for crates.io
- pezframe-metadata-hash-extension: remove bizinikiwi-test-runtime-client, bizinikiwi-wasm-builder, pezsp-transaction-pool
2025-12-28 11:33:48 +03:00
pezkuwichain fa51525f55 chore: break more circular dev-dependencies for crates.io publish
- pezframe-executive: remove bizinikiwi-test-runtime-client, pezpallet-balances, pezpallet-transaction-payment
2025-12-28 11:24:51 +03:00
pezkuwichain 7edff09452 chore: break circular dev-dependencies for crates.io publish
- Remove circular dev-deps from pezframe-support-procedural
- Remove circular dev-deps from pezframe-support
- Remove circular dev-deps from pezframe-system
- Remove circular dev-deps from pezframe-benchmarking
- Comments note that tests moved to integration test crates
2025-12-28 11:16:17 +03:00
pezkuwichain ed44adfb1e chore: update crates.io publish plan and fix dependencies
- Update CRATES_PUBLISH_PLAN.md with Level 0-2 completion status
- Fix binary-merkle-tree and related dependencies
- Add runtime_logger_tests.rs
- Update various Cargo.toml files
2025-12-28 11:00:56 +03:00
pezkuwichain d3fb27a5f1 fix: break circular dependency between pezsp-crypto-hashing crates
Removed pezsp-crypto-hashing-proc-macro from dev-dependencies of pezsp-crypto-hashing.
The proc-macro integration tests are already in the proc-macro crate itself.
2025-12-27 21:33:08 +03:00
pezkuwichain 4666047395 chore: add Dijital Kurdistan Tech Institute to copyright headers
Updated 4763 files with dual copyright:
- Parity Technologies (UK) Ltd.
- Dijital Kurdistan Tech Institute
2025-12-27 21:28:36 +03:00
pezkuwichain 8c4fcb3288 chore: update documentation URLs to use workspace setting
Replace all docs.rs documentation URLs with documentation.workspace = true
to inherit from the workspace's docs.pezkuwichain.io URL.
2025-12-27 17:56:39 +03:00
pezkuwichain fb17ba212f fix(ci): add missing sassafras benchmark data file
The 25_tickets_100_auths.bin file was gitignored by the global *.bin
rule but is required for cargo-check-all-benches CI job. This adds an
exception to .gitignore and includes the benchmark data file.
2025-12-27 14:01:51 +03:00