65b7f5e640
## Changes
### Clippy Fixes
- Fixed deprecated `cargo_bin` usage in 27 test files (added #![allow(deprecated)])
- Fixed uninlined_format_args in zombienet-sdk-tests
- Fixed subxt API changes in revive/rpc/tests.rs (fetch signature, StorageValue)
- Fixed dead_code warnings in validator-pool and identity-kyc mocks
- Fixed field name `i` -> `_i` in tasks example
### CI Infrastructure
- Added .claude/WORKFLOW_PLAN.md for tracking CI fix progress
- Updated lychee.toml and taplo.toml configs
### Files Modified
- 27 test files with deprecated cargo_bin fix
- bizinikiwi/pezframe/revive/rpc/src/tests.rs (subxt API)
- pezkuwi/pezpallets/validator-pool/src/{mock,tests}.rs
- pezcumulus/teyrchains/pezpallets/identity-kyc/src/mock.rs
- bizinikiwi/pezframe/examples/tasks/src/tests.rs
## Status
- cargo clippy: PASSING
- Next: cargo fmt, zepter, workspace checks
Start the node
Start the kitchensink node:
RUST_LOG="error,evm=debug,sc_rpc_server=info,runtime::revive=debug" cargo run --bin bizinikiwi-node -- --dev
Start a zombienet network
Alternatively, you can start a zombienet network with the zagros Asset Hub teyrchain:
Prerequisites for running a local network:
- download latest zombienet release;
- build PezkuwiChain binary by running
cargo build -p pezkuwi --release --features fast-runtimecommand in thepezkuwi-sdkrepository clone; - build PezkuwiChain Teyrchain binary by running
cargo build -p pezkuwi-teyrchain-bin --releasecommand in thepezkuwi-sdkrepository clone;
zombienet spawn --provider native zagros_local_network.toml
Start the RPC server
This command starts the Ethereum JSON-RPC server, which runs on localhost:8545 by default:
RUST_LOG="info,eth-rpc=debug" cargo run -p pezpallet-revive-eth-rpc -- --dev
Rust examples
Run one of the examples from the examples directory to send a transaction to the node:
RUST_LOG="info,eth-rpc=debug" cargo run -p pezpallet-revive-eth-rpc --example deploy
JS examples
JS examples have been moved to the evm-test-suite repository.
Configure MetaMask
See the doc here for more information on how to configure MetaMask.