mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-22 02:08:04 +00:00
Update to 1.13.0 triggered by workflow_dispatch
This commit is contained in:
+32
-35
@@ -1,8 +1,8 @@
|
||||
[package]
|
||||
name = "solochain-template-node"
|
||||
description = "A solochain node template built with Substrate, part of Polkadot Sdk. (polkadot v1.12.0)"
|
||||
description = "A solochain node template built with Substrate, part of Polkadot Sdk. (polkadot v1.13.0)"
|
||||
version = "0.1.0"
|
||||
license = "MIT-0"
|
||||
license = "Unlicense"
|
||||
authors.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
@@ -11,9 +11,6 @@ publish = false
|
||||
|
||||
build = "build.rs"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -22,36 +19,36 @@ clap = { version = "4.5.3", features = ["derive"] }
|
||||
futures = { version = "0.3.30", features = ["thread-pool"] }
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
jsonrpsee = { version = "0.22", features = ["server"] }
|
||||
sc-cli = { version = "0.42.0" }
|
||||
sp-core = { version = "33.0.1" }
|
||||
sc-executor = { version = "0.38.0" }
|
||||
sc-network = { version = "0.40.0" }
|
||||
sc-service = { version = "0.41.0" }
|
||||
sc-telemetry = { version = "20.0.0" }
|
||||
sc-transaction-pool = { version = "34.0.0" }
|
||||
sc-transaction-pool-api = { version = "34.0.0" }
|
||||
sc-offchain = { version = "35.0.0" }
|
||||
sc-consensus-aura = { version = "0.40.0" }
|
||||
sp-consensus-aura = { version = "0.38.0" }
|
||||
sc-consensus = { version = "0.39.1" }
|
||||
sc-consensus-grandpa = { version = "0.25.0" }
|
||||
sp-consensus-grandpa = { version = "19.0.0" }
|
||||
sc-client-api = { version = "34.0.0" }
|
||||
sc-rpc-api = { version = "0.39.0" }
|
||||
sc-basic-authorship = { version = "0.40.0" }
|
||||
sp-runtime = { version = "37.0.0" }
|
||||
sp-io = { version = "36.0.0" }
|
||||
sp-timestamp = { version = "32.0.0" }
|
||||
sp-inherents = { version = "32.0.0" }
|
||||
sp-keyring = { version = "37.0.0" }
|
||||
sp-api = { version = "32.0.0" }
|
||||
sp-blockchain = { version = "34.0.0" }
|
||||
sp-block-builder = { version = "32.0.0" }
|
||||
frame-system = { version = "34.0.0" }
|
||||
pallet-transaction-payment = { version = "34.0.0", default-features = false }
|
||||
pallet-transaction-payment-rpc = { version = "36.0.0" }
|
||||
substrate-frame-rpc-system = { version = "34.0.0" }
|
||||
frame-benchmarking-cli = { version = "38.0.0" }
|
||||
sc-cli = { version = "0.43.0" }
|
||||
sp-core = { version = "34.0.0" }
|
||||
sc-executor = { version = "0.39.0" }
|
||||
sc-network = { version = "0.41.0" }
|
||||
sc-service = { version = "0.42.0" }
|
||||
sc-telemetry = { version = "21.0.0" }
|
||||
sc-transaction-pool = { version = "35.0.0" }
|
||||
sc-transaction-pool-api = { version = "35.0.0" }
|
||||
sc-offchain = { version = "36.0.0" }
|
||||
sc-consensus-aura = { version = "0.41.0" }
|
||||
sp-consensus-aura = { version = "0.39.0" }
|
||||
sc-consensus = { version = "0.40.0" }
|
||||
sc-consensus-grandpa = { version = "0.26.0" }
|
||||
sp-consensus-grandpa = { version = "20.0.0" }
|
||||
sc-client-api = { version = "35.0.0" }
|
||||
sc-rpc-api = { version = "0.40.0" }
|
||||
sc-basic-authorship = { version = "0.41.0" }
|
||||
sp-runtime = { version = "38.0.0" }
|
||||
sp-io = { version = "37.0.0" }
|
||||
sp-timestamp = { version = "33.0.0" }
|
||||
sp-inherents = { version = "33.0.0" }
|
||||
sp-keyring = { version = "38.0.0" }
|
||||
sp-api = { version = "33.0.0" }
|
||||
sp-blockchain = { version = "35.0.0" }
|
||||
sp-block-builder = { version = "33.0.0" }
|
||||
frame-system = { version = "35.0.0" }
|
||||
pallet-transaction-payment = { version = "35.0.0", default-features = false }
|
||||
pallet-transaction-payment-rpc = { version = "37.0.0" }
|
||||
substrate-frame-rpc-system = { version = "35.0.0" }
|
||||
frame-benchmarking-cli = { version = "39.0.0" }
|
||||
solochain-template-runtime = { version = "0.1.0", path = "../runtime" }
|
||||
|
||||
[build-dependencies]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use sc_service::ChainType;
|
||||
use solochain_template_runtime::{AccountId, RuntimeGenesisConfig, Signature, WASM_BINARY};
|
||||
use solochain_template_runtime::{AccountId, Signature, WASM_BINARY};
|
||||
use sp_consensus_aura::sr25519::AuthorityId as AuraId;
|
||||
use sp_consensus_grandpa::AuthorityId as GrandpaId;
|
||||
use sp_core::{sr25519, Pair, Public};
|
||||
@@ -9,7 +9,7 @@ use sp_runtime::traits::{IdentifyAccount, Verify};
|
||||
// const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
|
||||
|
||||
/// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type.
|
||||
pub type ChainSpec = sc_service::GenericChainSpec<RuntimeGenesisConfig>;
|
||||
pub type ChainSpec = sc_service::GenericChainSpec;
|
||||
|
||||
/// Generate a crypto pair from seed.
|
||||
pub fn get_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pair>::Public {
|
||||
|
||||
+1
-1
@@ -114,7 +114,7 @@ pub fn run() -> sc_cli::Result<()> {
|
||||
"Runtime benchmarking wasn't enabled when building the node. \
|
||||
You can enable it with `--features runtime-benchmarks`."
|
||||
.into(),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
cmd.run_with_spec::<sp_runtime::traits::HashingFor<Block>, ()>(Some(
|
||||
|
||||
Reference in New Issue
Block a user