fix: Complete rebrand fixes for dockerfiles, scripts, and service files

- Update all Dockerfile references from polkadot to pezkuwi
- Fix package names in scripts (pezpallet-*, pezframe-*)
- Update GitHub repository URLs to pezkuwichain/pezkuwi-sdk
- Fix template Dockerfiles (minimal, solochain, teyrchain)
- Update service file paths and binary names
- Fix path references from bizinikiwi/frame/ to bizinikiwi/pezframe/
This commit is contained in:
2025-12-20 03:07:55 +03:00
parent b08b6b06d2
commit 8acf59c6aa
26 changed files with 215 additions and 215 deletions
@@ -11,9 +11,9 @@ LABEL description="Multistage Docker image for Bizinikiwi: a platform for web3"
io.parity.image.type="builder" \
io.parity.image.authors="chevdor@gmail.com, devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \
io.parity.image.description="Bizinikiwi is a next-generation framework for blockchain innovation 🚀" \
io.parity.image.source="https://github.com/pezkuwichain/pezkuwichain-sdk/blob/${VCS_REF}/bizinikiwi/docker/substrate_builder.Dockerfile" \
io.parity.image.documentation="https://github.com/pezkuwichain/pezkuwichain-sdk"
io.parity.image.description="Bizinikiwi is a next-generation framework for blockchain innovation" \
io.parity.image.source="https://github.com/pezkuwichain/pezkuwi-sdk/blob/${VCS_REF}/bizinikiwi/docker/bizinikiwi_builder.Dockerfile" \
io.parity.image.documentation="https://github.com/pezkuwichain/pezkuwi-sdk"
COPY --from=builder /bizinikiwi/target/release/bizinikiwi /usr/local/bin
COPY --from=builder /bizinikiwi/target/release/subkey /usr/local/bin
@@ -124,7 +124,7 @@
* ### Receiver-side Risk: Weight Exhaustion
*
* Both DMP and UMP messages are processed through the message-queue pallet:
* - Weight check: bizinikiwi/frame/message-queue/src/lib.rs:1591 in `process_message_payload()`
* - Weight check: bizinikiwi/pezframe/message-queue/src/lib.rs:1591 in `process_message_payload()`
* - Messages exceeding `overweight_limit` are marked as overweight
* - Configuration: `ServiceWeight` and `IdleMaxServiceWeight`
* - Overweight handling: Permanently overweight messages require manual execution via `execute_overweight()`
@@ -1,4 +1,4 @@
# run this, then copy all files to `bizinikiwi/frame/election-provider-multi-block/src/weights/`
# run this, then copy all files to `bizinikiwi/pezframe/election-provider-multi-block/src/weights/`
source ~/.zshrc
STEPS=2
@@ -10,11 +10,11 @@ LOG="runtime::multiblock-election=info,runtime::staking-async=info,pezkuwi_sdk_f
if [[ "${NO_COMPILE}" == "1" ]]; then
echo "Skipping compilation because 'NO_COMPILE' was set"
else
cargo build --release -p frame-omni-bencher
FORCE_WASM_BUILD=$RANDOM WASMTIME_BACKTRACE_DETAILS=1 RUST_LOG=${LOG} cargo build --release -p pallet-staking-async-teyrchain-runtime --features runtime-benchmarks
cargo build --release -p pezframe-omni-bencher
FORCE_WASM_BUILD=$RANDOM WASMTIME_BACKTRACE_DETAILS=1 RUST_LOG=${LOG} cargo build --release -p pezpallet-staking-async-teyrchain-runtime --features runtime-benchmarks
fi
WASM_BLOB_PATH=../../../../../target/release/wbuild/pallet-staking-async-teyrchain-runtime/pallet_staking_async_teyrchain_runtime.compact.wasm
WASM_BLOB_PATH=../../../../../target/release/wbuild/pezpallet-staking-async-teyrchain-runtime/pezpallet_staking_async_teyrchain_runtime.compact.wasm
echo "WASM_BLOB_PATH: $WASM_BLOB_PATH"
echo "Last modified date of WASM_BLOB:"
@@ -29,14 +29,14 @@ run_benchmark() {
echo "Outputting to '$output_file'"
WASMTIME_BACKTRACE_DETAILS=1 RUST_LOG=${LOG} \
../../../../../target/release/frame-omni-bencher v1 benchmark pallet \
../../../../../target/release/pezframe-omni-bencher v1 benchmark pallet \
--pallet "$pallet_name" \
--extrinsic "*" \
--runtime "$WASM_BLOB_PATH" \
--steps "$STEPS" \
--repeat "$REPEAT" \
--genesis-builder-preset "$genesis_preset" \
--template "../../../../../bizinikiwi/frame/election-provider-multi-block/src/template.hbs" \
--template "../../../../../bizinikiwi/pezframe/election-provider-multi-block/src/template.hbs" \
--heap-pages 65000 \
--output "$output_file"
}