feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
[package]
|
||||
name = "pezpallet-revive-eth-rpc"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license = "Apache-2.0"
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
description = "An Ethereum JSON-RPC server for pezpallet-revive."
|
||||
default-run = "eth-rpc"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[package.metadata.pezkuwi-sdk]
|
||||
exclude-from-umbrella = true
|
||||
|
||||
[[bin]]
|
||||
name = "eth-rpc"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
clap = { workspace = true, features = ["derive", "env"] }
|
||||
codec = { workspace = true, features = ["derive"] }
|
||||
futures = { workspace = true, features = ["thread-pool"] }
|
||||
hex = { workspace = true }
|
||||
jsonrpsee = { workspace = true, features = ["full"] }
|
||||
log = { workspace = true }
|
||||
pezpallet-revive = { workspace = true, default-features = true }
|
||||
prometheus-endpoint = { workspace = true, default-features = true }
|
||||
rlp = { workspace = true }
|
||||
pezsc-cli = { workspace = true, default-features = true }
|
||||
pezsc-rpc = { workspace = true, default-features = true }
|
||||
pezsc-rpc-api = { workspace = true, default-features = true }
|
||||
pezsc-service = { workspace = true, default-features = true }
|
||||
serde = { workspace = true, default-features = true, features = [
|
||||
"alloc",
|
||||
"derive",
|
||||
] }
|
||||
serde_json = { workspace = true }
|
||||
pezsp-arithmetic = { workspace = true, default-features = true }
|
||||
pezsp-core = { workspace = true, default-features = true }
|
||||
pezsp-crypto-hashing = { workspace = true }
|
||||
pezsp-rpc = { workspace = true, default-features = true }
|
||||
pezsp-runtime = { workspace = true, default-features = true }
|
||||
pezsp-timestamp = { workspace = true }
|
||||
pezsp-weights = { workspace = true, default-features = true }
|
||||
sqlx = { workspace = true, features = ["macros", "runtime-tokio", "sqlite"] }
|
||||
subxt = { workspace = true, default-features = true, features = [
|
||||
"reconnecting-rpc-client",
|
||||
] }
|
||||
subxt-signer = { workspace = true, features = ["unstable-eth"] }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = { workspace = true }
|
||||
pezpallet-revive-fixtures = { workspace = true, default-features = true }
|
||||
pretty_assertions = { workspace = true }
|
||||
revive-dev-node = { workspace = true }
|
||||
pezsp-io = { workspace = true, default-features = true }
|
||||
|
||||
[build-dependencies]
|
||||
git2 = { workspace = true }
|
||||
revive-dev-runtime = { workspace = true, default-features = true }
|
||||
pezsp-io = { workspace = true, default-features = true }
|
||||
pezsp-runtime = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = [
|
||||
"pezpallet-revive/runtime-benchmarks",
|
||||
"revive-dev-node/runtime-benchmarks",
|
||||
"revive-dev-runtime/runtime-benchmarks",
|
||||
"pezsc-cli/runtime-benchmarks",
|
||||
"pezsc-rpc-api/runtime-benchmarks",
|
||||
"pezsc-rpc/runtime-benchmarks",
|
||||
"pezsc-service/runtime-benchmarks",
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks",
|
||||
]
|
||||
Reference in New Issue
Block a user