feat: initialize Kurdistan SDK - independent fork of Polkadot SDK

This commit is contained in:
2025-12-13 15:44:15 +03:00
commit e4778b4576
6838 changed files with 1847450 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
[package]
name = "pezkuwi-voter-bags"
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
description = "CLI to generate voter bags for Pezkuwi runtimes"
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
clap = { features = ["derive"], workspace = true }
generate-bags = { workspace = true, default-features = true }
zagros-runtime = { workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"generate-bags/runtime-benchmarks",
"zagros-runtime/runtime-benchmarks",
]
+70
View File
@@ -0,0 +1,70 @@
// Copyright (C) Parity Technologies (UK) Ltd.
// This file is part of Pezkuwi.
// Pezkuwi is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Pezkuwi is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
//! Make the set of voting bag thresholds to be used in `voter_bags.rs`.
//!
//! Generally speaking this script can be run once per runtime and never
//! touched again. It can be reused to regenerate a wholly different
//! quantity of bags, or if the existential deposit changes, etc.
use clap::{Parser, ValueEnum};
use generate_bags::generate_thresholds;
use std::path::{Path, PathBuf};
use zagros_runtime::Runtime as ZagrosRuntime;
#[derive(Clone, Debug, ValueEnum)]
#[value(rename_all = "PascalCase")]
enum Runtime {
Zagros,
}
impl Runtime {
fn generate_thresholds_fn(
&self,
) -> Box<dyn FnOnce(usize, &Path, u128, u128) -> Result<(), std::io::Error>> {
match self {
Runtime::Zagros => Box::new(generate_thresholds::<ZagrosRuntime>),
}
}
}
#[derive(Debug, Parser)]
struct Opt {
/// How many bags to generate.
#[arg(long, default_value_t = 200)]
n_bags: usize,
/// Which runtime to generate.
#[arg(long, ignore_case = true, value_enum, default_value_t = Runtime::Zagros)]
runtime: Runtime,
/// Where to write the output.
output: PathBuf,
/// The total issuance of the native currency.
#[arg(short, long)]
total_issuance: u128,
/// The minimum account balance (i.e. existential deposit) for the native currency.
#[arg(short, long)]
minimum_balance: u128,
}
fn main() -> Result<(), std::io::Error> {
let Opt { n_bags, output, runtime, total_issuance, minimum_balance } = Opt::parse();
runtime.generate_thresholds_fn()(n_bags, &output, total_issuance, minimum_balance)
}
@@ -0,0 +1,31 @@
[package]
name = "remote-ext-tests-bags-list"
publish = false
version = "1.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
zagros-runtime = { workspace = true, default-features = true }
zagros-runtime-constants = { workspace = true, default-features = true }
frame-system = { workspace = true, default-features = true }
pallet-bags-list-remote-tests = { workspace = true }
sp-core = { workspace = true, default-features = true }
sp-tracing = { workspace = true, default-features = true }
clap = { features = ["derive"], workspace = true }
log = { workspace = true, default-features = true }
tokio = { features = ["macros"], workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"frame-system/runtime-benchmarks",
"pallet-bags-list-remote-tests/runtime-benchmarks",
"zagros-runtime-constants/runtime-benchmarks",
"zagros-runtime/runtime-benchmarks",
]
@@ -0,0 +1,3 @@
# Remote Extension Tests For Pallet Bags List
Integration tests that use state from live chains via remote externalities.
@@ -0,0 +1,90 @@
// Copyright (C) Parity Technologies (UK) Ltd.
// This file is part of Pezkuwi.
// Pezkuwi is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Pezkuwi is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
//! Remote tests for bags-list pallet.
use clap::{Parser, ValueEnum};
#[derive(Clone, Debug, ValueEnum)]
#[value(rename_all = "PascalCase")]
enum Command {
CheckMigration,
SanityCheck,
Snapshot,
}
#[derive(Clone, Debug, ValueEnum)]
#[value(rename_all = "PascalCase")]
enum Runtime {
Zagros,
}
#[derive(Parser)]
struct Cli {
#[arg(long, short, default_value = "wss://zagros-rpc.pezkuwichain.io:443")]
uri: String,
#[arg(long, short, ignore_case = true, value_enum, default_value_t = Runtime::Zagros)]
runtime: Runtime,
#[arg(long, short, ignore_case = true, value_enum, default_value_t = Command::SanityCheck)]
command: Command,
#[arg(long, short)]
snapshot_limit: Option<usize>,
}
#[tokio::main]
async fn main() {
let options = Cli::parse();
sp_tracing::try_init_simple();
log::info!(
target: "remote-ext-tests",
"using runtime {:?} / command: {:?}",
options.runtime,
options.command
);
use pallet_bags_list_remote_tests::*;
match options.runtime {
Runtime::Zagros => sp_core::crypto::set_default_ss58_version(
<zagros_runtime::Runtime as frame_system::Config>::SS58Prefix::get()
.try_into()
.unwrap(),
),
};
match (options.runtime, options.command) {
(Runtime::Zagros, Command::CheckMigration) => {
use zagros_runtime::{Block, Runtime};
use zagros_runtime_constants::currency::UNITS;
migration::execute::<Runtime, Block>(UNITS as u64, "ZGR", options.uri.clone()).await;
},
(Runtime::Zagros, Command::SanityCheck) => {
use zagros_runtime::{Block, Runtime};
use zagros_runtime_constants::currency::UNITS;
try_state::execute::<Runtime, Block>(UNITS as u64, "ZGR", options.uri.clone()).await;
},
(Runtime::Zagros, Command::Snapshot) => {
use zagros_runtime::{Block, Runtime};
use zagros_runtime_constants::currency::UNITS;
snapshot::execute::<Runtime, Block>(
options.snapshot_limit,
UNITS.try_into().unwrap(),
options.uri.clone(),
)
.await;
},
}
}