mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
0e83ad23aa
* add new runtime and remove unnecessary pallets * make runtime build * add collectives to collator node * sketch alliance config in runtime * Slash handler was supposed to be commented out (for now) * correct signature * move to impls * add alliance to runtime * rustfmt * IsReserve, remove Ping, update fn deposit * add transaction_payment event * Update parachains/runtimes/collectives/collectives-polkadot/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * fmt * add genesis config to chain spec * fix merge * local and dev configs only (for now) * remove duplicate imports * Collectives polkadot runtime to cargo workspace members (#1397) * Collectives polkadot runtime: use unit type impl for identity verifier (#1398) * apply fn rename * fmt * one less todo * Less code in magic macros (#1407) * Less code in magic macros * cargo fmt * Bench alliance (#1427) * add benchmarks * call one script from the other * shebang changes so works on nixos too. * bench in parallel as separate jobs * hyphens can turn into underscores * remove workaround to trigger bench Co-authored-by: alvicsam <alvicsam@gmail.com> Co-authored-by: paritytech-ci <paritytech-ci@parity.io> * enable ci jobs * fix publish bench results jobs * chainspecs for collectives-westend (#1441) * initial chainspecs for collections relay chain * plumb in the collectives-westend chainspec * add Runtime::CollectivesWestend * lock * Collectives: teleport slashed assets (#1433) * Collectives: teleport slashed assets * fmt * Cargo.lock > polkadot-parachain 0.9.25 * create temp account for imbalance * treasury acc id from pallet id * move accounts into constants, use here junction for assets * assets location is relay chain, accounts as parameters * fix typos * fix typo * Update parachains/runtimes/collectives/collectives-polkadot/src/constants.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Move alliance proposal provider to impls.rs (#1464) * Move to impls alliance proposal provider * rustfmt * Bumping spec version (so that we can redeploy with slashing change.) * cargo lock * slurp collectives digest to make appear in release notes (#1473) * add slurp * Slurp better :) * Bring some order Co-authored-by: Chevdor <chevdor@users.noreply.github.com> Co-authored-by: Wilfried Kopp <wilfried@parity.io> * reorder barrier * Update parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * address review * clean construct runtime * fmt * looks pretty but brings in too much Co-authored-by: Squirrel <gilescope@gmail.com> Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> Co-authored-by: alvicsam <alvicsam@gmail.com> Co-authored-by: paritytech-ci <paritytech-ci@parity.io> Co-authored-by: Chevdor <chevdor@users.noreply.github.com> Co-authored-by: Wilfried Kopp <wilfried@parity.io> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
113 lines
6.4 KiB
TOML
113 lines
6.4 KiB
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.9.230"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2021"
|
|
description = "Runs a polkadot parachain node which could be a collator."
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.57"
|
|
clap = { version = "3.2.16", features = ["derive", "deprecated"] }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
futures = "0.3.21"
|
|
hex-literal = "0.3.4"
|
|
log = "0.4.17"
|
|
serde = { version = "1.0.141", features = ["derive"] }
|
|
|
|
# Local
|
|
rococo-parachain-runtime = { path = "../parachains/runtimes/testing/rococo-parachain" }
|
|
shell-runtime = { path = "../parachains/runtimes/starters/shell" }
|
|
seedling-runtime = { path = "../parachains/runtimes/starters/seedling" }
|
|
statemint-runtime = { path = "../parachains/runtimes/assets/statemint" }
|
|
statemine-runtime = { path = "../parachains/runtimes/assets/statemine" }
|
|
westmint-runtime = { path = "../parachains/runtimes/assets/westmint" }
|
|
collectives-polkadot-runtime = { path = "../parachains/runtimes/collectives/collectives-polkadot" }
|
|
contracts-rococo-runtime = { path = "../parachains/runtimes/contracts/contracts-rococo" }
|
|
penpal-runtime = { path = "../parachains/runtimes/testing/penpal" }
|
|
jsonrpsee = { version = "0.15.1", features = ["server"] }
|
|
parachains-common = { path = "../parachains/common" }
|
|
|
|
# Substrate
|
|
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
|
|
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-contracts-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
cumulus-client-cli = { path = "../client/cli" }
|
|
cumulus-client-consensus-aura = { path = "../client/consensus/aura" }
|
|
cumulus-client-consensus-relay-chain = { path = "../client/consensus/relay-chain" }
|
|
cumulus-client-consensus-common = { path = "../client/consensus/common" }
|
|
cumulus-client-service = { path = "../client/service" }
|
|
cumulus-client-network = { path = "../client/network" }
|
|
cumulus-primitives-core = { path = "../primitives/core" }
|
|
cumulus-primitives-parachain-inherent = { path = "../primitives/parachain-inherent" }
|
|
cumulus-relay-chain-interface = { path = "../client/relay-chain-interface" }
|
|
cumulus-relay-chain-inprocess-interface = { path = "../client/relay-chain-inprocess-interface" }
|
|
cumulus-relay-chain-rpc-interface = { path = "../client/relay-chain-rpc-interface" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
nix = "0.24"
|
|
tempfile = "3.3.0"
|
|
tokio = { version = "1.19.2", features = ["macros", "time", "parking_lot"] }
|
|
wait-timeout = "0.2"
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"polkadot-service/runtime-benchmarks",
|
|
"statemint-runtime/runtime-benchmarks",
|
|
"statemine-runtime/runtime-benchmarks",
|
|
"westmint-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"statemint-runtime/try-runtime",
|
|
"statemine-runtime/try-runtime",
|
|
"westmint-runtime/try-runtime",
|
|
"shell-runtime/try-runtime",
|
|
]
|