-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(pop-network): ready for testnet * fix(pop-network): address feedback * chore(pop-network): fmt * chore(pop-network): update cargo lock * chore(pop-network): runtime descriptions and FilteredCalls * chroe(pop-network): complete relay naming * chore(pop-network): feature-gate async backing * typo(pop-network): wrong feature name * chore(pop-network): relay_chain_slot_time is always 6000 * chrose(pop-network): paseo feature works properly * chore(pop-network): fmt * fix(pop-network): rococo genesis doesn't depend on pop-runtime * fix(pop-network): Make CI happy * fix(pop-network): missing contruct_benchmark_partials * chrone(pop-network): fix fmt * chore(pop-network): typo * refactor(integration-tests): simplify runtime imports * refactor(node): fix clippy warnings Enum variants should be sentence-cased rather than capitalised. * fix(chain-spec): remove endowments Regression from main as result of runtime split * refactor: remove unnecessary default runtime Devnet always used when resolved to default, so just uses devnet and removes the additional default variant. * refactor: simplify manifests * docs(runtime): remove old link --------- Co-authored-by: Frank Bell <frank@r0gue.io>
- Loading branch information
1 parent
74943ec
commit acd5892
Showing
43 changed files
with
3,904 additions
and
572 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,101 @@ | ||
[package] | ||
name = "pop-node" | ||
version = "0.1.0" | ||
authors = { workspace = true } | ||
description = "A new Cumulus FRAME-based Substrate Node, ready for hacking together a parachain." | ||
authors.workspace = true | ||
description.workspace = true | ||
license = "Unlicense" | ||
homepage = { workspace = true } | ||
homepage.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
build = "build.rs" | ||
publish = false | ||
|
||
[dependencies] | ||
clap = { workspace = true } | ||
log = { workspace = true } | ||
codec = { workspace = true } | ||
serde = { workspace = true } | ||
jsonrpsee = { workspace = true } | ||
futures = { workspace = true } | ||
serde_json = { workspace = true } | ||
clap.workspace = true | ||
log.workspace = true | ||
codec.workspace = true | ||
serde.workspace = true | ||
jsonrpsee.workspace = true | ||
futures.workspace = true | ||
serde_json.workspace = true | ||
|
||
# Local | ||
pop-runtime = { workspace = true } | ||
pop-runtime-devnet.workspace = true | ||
pop-runtime-testnet.workspace = true | ||
pop-runtime-common.workspace = true | ||
|
||
# Substrate | ||
frame-benchmarking = { workspace = true } | ||
frame-benchmarking-cli = { workspace = true } | ||
pallet-transaction-payment-rpc = { workspace = true } | ||
sc-basic-authorship = { workspace = true } | ||
sc-chain-spec = { workspace = true } | ||
sc-cli = { workspace = true } | ||
sc-client-api = { workspace = true } | ||
sc-offchain = { workspace = true } | ||
sc-consensus = { workspace = true } | ||
sc-executor = { workspace = true } | ||
sc-network = { workspace = true } | ||
sc-network-sync = { workspace = true } | ||
sc-rpc = { workspace = true } | ||
sc-service = { workspace = true } | ||
sc-sysinfo = { workspace = true } | ||
sc-telemetry = { workspace = true } | ||
sc-tracing = { workspace = true } | ||
sc-transaction-pool = { workspace = true } | ||
sc-transaction-pool-api = { workspace = true } | ||
sp-api = { workspace = true } | ||
sp-block-builder = { workspace = true } | ||
sp-blockchain = { workspace = true } | ||
sp-consensus-aura = { workspace = true } | ||
sp-core = { workspace = true } | ||
sp-keystore = { workspace = true } | ||
sp-io = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
sp-timestamp = { workspace = true } | ||
substrate-frame-rpc-system = { workspace = true } | ||
substrate-prometheus-endpoint = { workspace = true } | ||
frame-benchmarking.workspace = true | ||
frame-benchmarking-cli.workspace = true | ||
pallet-transaction-payment-rpc.workspace = true | ||
sc-basic-authorship.workspace = true | ||
sc-chain-spec.workspace = true | ||
sc-cli.workspace = true | ||
sc-client-api.workspace = true | ||
sc-offchain.workspace = true | ||
sc-consensus.workspace = true | ||
sc-executor.workspace = true | ||
sc-network.workspace = true | ||
sc-network-sync.workspace = true | ||
sc-rpc.workspace = true | ||
sc-service.workspace = true | ||
sc-sysinfo.workspace = true | ||
sc-telemetry.workspace = true | ||
sc-tracing.workspace = true | ||
sc-transaction-pool.workspace = true | ||
sc-transaction-pool-api.workspace = true | ||
sp-api.workspace = true | ||
sp-block-builder.workspace = true | ||
sp-blockchain.workspace = true | ||
sp-consensus-aura.workspace = true | ||
sp-core.workspace = true | ||
sp-keystore.workspace = true | ||
sp-io.workspace = true | ||
sp-offchain.workspace = true | ||
sp-runtime.workspace = true | ||
sp-session.workspace = true | ||
sp-timestamp.workspace = true | ||
sp-transaction-pool.workspace = true | ||
substrate-frame-rpc-system.workspace = true | ||
substrate-prometheus-endpoint.workspace = true | ||
|
||
# Polkadot | ||
polkadot-cli = { workspace = true } | ||
polkadot-primitives = { workspace = true } | ||
xcm = { workspace = true } | ||
polkadot-cli.workspace = true | ||
polkadot-primitives.workspace = true | ||
xcm.workspace = true | ||
|
||
# Cumulus | ||
cumulus-client-cli = { workspace = true } | ||
cumulus-client-collator = { workspace = true } | ||
cumulus-client-consensus-aura = { workspace = true } | ||
cumulus-client-consensus-common = { workspace = true } | ||
cumulus-client-consensus-proposer = { workspace = true } | ||
cumulus-client-service = { workspace = true } | ||
cumulus-primitives-core = { workspace = true } | ||
cumulus-primitives-parachain-inherent = { workspace = true } | ||
cumulus-relay-chain-interface = { workspace = true } | ||
color-print = { workspace = true } | ||
cumulus-client-cli.workspace = true | ||
cumulus-client-collator.workspace = true | ||
cumulus-client-consensus-aura.workspace = true | ||
cumulus-client-consensus-common.workspace = true | ||
cumulus-client-consensus-proposer.workspace = true | ||
cumulus-primitives-aura.workspace = true | ||
cumulus-client-service.workspace = true | ||
cumulus-primitives-core.workspace = true | ||
cumulus-primitives-parachain-inherent.workspace = true | ||
cumulus-relay-chain-interface.workspace = true | ||
color-print.workspace = true | ||
|
||
[build-dependencies] | ||
substrate-build-script-utils = { workspace = true } | ||
substrate-build-script-utils.workspace = true | ||
|
||
[features] | ||
default = [] | ||
runtime-benchmarks = [ | ||
"cumulus-primitives-core/runtime-benchmarks", | ||
"frame-benchmarking-cli/runtime-benchmarks", | ||
"frame-benchmarking/runtime-benchmarks", | ||
"pop-runtime/runtime-benchmarks", | ||
"polkadot-cli/runtime-benchmarks", | ||
"polkadot-primitives/runtime-benchmarks", | ||
"sc-service/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
"cumulus-primitives-core/runtime-benchmarks", | ||
"frame-benchmarking-cli/runtime-benchmarks", | ||
"frame-benchmarking/runtime-benchmarks", | ||
"pop-runtime-devnet/runtime-benchmarks", | ||
"pop-runtime-testnet/runtime-benchmarks", | ||
"polkadot-cli/runtime-benchmarks", | ||
"polkadot-primitives/runtime-benchmarks", | ||
"sc-service/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
] | ||
try-runtime = [ | ||
"pop-runtime/try-runtime", | ||
"polkadot-cli/try-runtime", | ||
"sp-runtime/try-runtime", | ||
"pop-runtime-devnet/try-runtime", | ||
"pop-runtime-testnet/try-runtime", | ||
"polkadot-cli/try-runtime", | ||
"sp-runtime/try-runtime", | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.