From fd6b707687c331e8c6d44d0630db983344ffd6ad Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Tue, 27 Jan 2026 15:14:44 +0300 Subject: [PATCH] feat: add pez-revive-dev-node platform aliases for Pezkuwi SDK compatibility --- crates/common/src/types/identifiers.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/common/src/types/identifiers.rs b/crates/common/src/types/identifiers.rs index aa81174..535ffeb 100644 --- a/crates/common/src/types/identifiers.rs +++ b/crates/common/src/types/identifiers.rs @@ -32,8 +32,12 @@ pub enum PlatformIdentifier { /// The Lighthouse Go-ethereum reference full node EVM implementation with the solc compiler. LighthouseGethEvmSolc, /// The revive dev node with the PolkaVM backend with the resolc compiler. + #[strum(serialize = "revive-dev-node-polkavm-resolc", serialize = "pez-revive-dev-node-polkavm-resolc")] + #[serde(alias = "pez-revive-dev-node-polkavm-resolc")] ReviveDevNodePolkavmResolc, /// The revive dev node with the REVM backend with the solc compiler. + #[strum(serialize = "revive-dev-node-revm-solc", serialize = "pez-revive-dev-node-revm-solc")] + #[serde(alias = "pez-revive-dev-node-revm-solc")] ReviveDevNodeRevmSolc, /// A zombienet based Substrate/Polkadot node with the PolkaVM backend with the resolc compiler. ZombienetPolkavmResolc, @@ -98,6 +102,8 @@ pub enum NodeIdentifier { /// The go-ethereum node implementation. LighthouseGeth, /// The revive dev node implementation. + #[strum(serialize = "revive-dev-node", serialize = "pez-revive-dev-node")] + #[serde(alias = "pez-revive-dev-node")] ReviveDevNode, /// A zombienet spawned nodes Zombienet,