This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
add a test relay chain runtime #1347
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
[package] | ||
name = "origami-runtime" | ||
version = "0.0.1" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
||
[dependencies] | ||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } | ||
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"] } | ||
log = { version = "0.3.9", optional = true } | ||
rustc-hex = { version = "2.0.1", default-features = false } | ||
serde = { version = "1.0.102", default-features = false } | ||
serde_derive = { version = "1.0.102", optional = true } | ||
static_assertions = "1.1.0" | ||
smallvec = "1.4.0" | ||
|
||
authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
version = { package = "sp-version", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
|
||
authority-discovery = { package = "pallet-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
authorship = { package = "pallet-authorship", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
balances = { package = "pallet-balances", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
transaction-payment = { package = "pallet-transaction-payment", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
transaction-payment-rpc-runtime-api = { package = "pallet-transaction-payment-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
collective = { package = "pallet-collective", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
democracy = { package = "pallet-democracy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
executive = { package = "frame-executive", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
finality-tracker = { package = "pallet-finality-tracker", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
grandpa = { package = "pallet-grandpa", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
identity = { package = "pallet-identity", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
im-online = { package = "pallet-im-online", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
indices = { package = "pallet-indices", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
offences = { package = "pallet-offences", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
proxy = { package = "pallet-proxy", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
scheduler = { package = "pallet-scheduler", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
session = { package = "pallet-session", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
staking = { package = "pallet-staking", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
system_rpc_runtime_api = { package = "frame-system-rpc-runtime-api", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
timestamp = { package = "pallet-timestamp", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
utility = { package = "pallet-utility", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
|
||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } | ||
frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } | ||
pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } | ||
pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } | ||
hex-literal = { version = "0.2.1", optional = true } | ||
|
||
runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } | ||
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } | ||
|
||
[dev-dependencies] | ||
hex-literal = "0.2.1" | ||
libsecp256k1 = "0.3.2" | ||
tiny-keccak = "1.5.0" | ||
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
trie-db = "0.20.0" | ||
serde_json = "1.0.41" | ||
|
||
[build-dependencies] | ||
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.6" } | ||
|
||
[features] | ||
default = ["std"] | ||
no_std = [] | ||
only-staking = [] | ||
std = [ | ||
"authority-discovery-primitives/std", | ||
"authority-discovery/std", | ||
"bitvec/std", | ||
"primitives/std", | ||
"rustc-hex/std", | ||
"codec/std", | ||
"inherents/std", | ||
"sp-core/std", | ||
"sp-api/std", | ||
"tx-pool-api/std", | ||
"block-builder-api/std", | ||
"offchain-primitives/std", | ||
"sp-std/std", | ||
"frame-support/std", | ||
"authorship/std", | ||
"balances/std", | ||
"transaction-payment/std", | ||
"transaction-payment-rpc-runtime-api/std", | ||
"collective/std", | ||
"elections-phragmen/std", | ||
"democracy/std", | ||
"executive/std", | ||
"finality-tracker/std", | ||
"grandpa/std", | ||
"identity/std", | ||
"im-online/std", | ||
"indices/std", | ||
"offences/std", | ||
"proxy/std", | ||
"sp-runtime/std", | ||
"sp-staking/std", | ||
"scheduler/std", | ||
"session/std", | ||
"staking/std", | ||
"system/std", | ||
"system_rpc_runtime_api/std", | ||
"timestamp/std", | ||
"version/std", | ||
"serde_derive", | ||
"serde/std", | ||
"log", | ||
"babe/std", | ||
"babe-primitives/std", | ||
"sp-session/std", | ||
"randomness-collective-flip/std", | ||
"runtime-common/std", | ||
"sudo/std", | ||
"utility/std", | ||
] | ||
runtime-benchmarks = [ | ||
"runtime-common/runtime-benchmarks", | ||
"frame-benchmarking", | ||
"frame-support/runtime-benchmarks", | ||
"frame-system-benchmarking", | ||
"system/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
"balances/runtime-benchmarks", | ||
"collective/runtime-benchmarks", | ||
"democracy/runtime-benchmarks", | ||
"elections-phragmen/runtime-benchmarks", | ||
"im-online/runtime-benchmarks", | ||
"scheduler/runtime-benchmarks", | ||
"staking/runtime-benchmarks", | ||
"timestamp/runtime-benchmarks", | ||
"pallet-offences-benchmarking", | ||
"pallet-session-benchmarking", | ||
"hex-literal", | ||
] | ||
# When enabled, the runtime api will not be build. | ||
# | ||
# This is required by Cumulus to access certain types of the | ||
# runtime without clashing with the runtime api exported functions | ||
# in WASM. | ||
disable-runtime-api = [] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
= Origami Runtime | ||
|
||
A simple test runtime pulling in all parachain relevant blocks, to create a test | ||
runtime for a relay-chain. |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2019-2020 Parity Technologies (UK) Ltd. | ||
// This file is part of Polkadot. | ||
|
||
// Polkadot 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. | ||
|
||
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
use wasm_builder_runner::WasmBuilder; | ||
|
||
fn main() { | ||
WasmBuilder::new() | ||
.with_current_project() | ||
.with_wasm_builder_from_crates("1.0.11") | ||
.import_memory() | ||
.export_heap_base() | ||
.build() | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be in
service-new
, because that is the service that uses theoverseer
.