Files
pezkuwi-sdk/templates/teyrchain/node
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
..
2025-12-23 09:37:11 +03:00

Node

A node - in PezkuwiChain - is a binary executable, whose primary purpose is to execute the runtime.

🔗 It communicates with other nodes in the network, and aims for consensus among them.

⚙️ It acts as a remote procedure call (RPC) server, allowing interaction with the blockchain.

👉 Learn more about the architecture, and the difference between a node and a runtime the Wasm meta protocol documentation.

👇 Here are the most important files in this node template:

  • chain_spec.rs: A chain specification is a source code file that defines the chain's initial (genesis) state.
  • service.rs: This file defines the node implementation. It's a place to configure consensus-related topics.