Skip to content

Commit

Permalink
Crystalin release v6 (paritytech#255)
Browse files Browse the repository at this point in the history
* Updates embedded stagenet/alphanet

* format embedded specs

* Reduces blocks per round for testing

* Updates embedded chain

* Bump crate version to 0.6.0

* Add default parachain telemetry endpoint (paritytech#257)

* Restore blocksPerRound to 600

* Updates embedded specs

Co-authored-by: Joshy Orndorff <admin@joshyorndorff.com>
Co-authored-by: Joshy Orndorff <JoshOrndorff@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 17, 2021
1 parent a82df9f commit adbdc99
Show file tree
Hide file tree
Showing 17 changed files with 123 additions and 111 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/rpc-core/txpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moonbeam-rpc-core-txpool"
version = '0.1.0'
version = '0.6.0'
authors = ['PureStake']
edition = '2018'
homepage = 'https://moonbeam.network'
Expand Down
2 changes: 1 addition & 1 deletion client/rpc/txpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moonbeam-rpc-txpool"
version = '0.1.0'
version = '0.6.0'
authors = ['PureStake']
edition = '2018'
homepage = 'https://moonbeam.network'
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbeam'
description = 'Moonbeam Collator'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.1.0'
version = '0.6.0'
authors = ["PureStake"]
build = 'build.rs'
edition = '2018'
Expand Down
6 changes: 5 additions & 1 deletion node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use moonbeam_runtime::{
};
use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup};
use sc_service::ChainType;
use sc_telemetry::TelemetryEndpoints;
use serde::{Deserialize, Serialize};
use sp_runtime::Perbill;
use stake::{InflationInfo, Range};
Expand Down Expand Up @@ -69,7 +70,10 @@ pub fn development_chain_spec() -> ChainSpec {
)
},
vec![],
None,
Some(
TelemetryEndpoints::new(vec![("wss://telemetry.polkadot.io/submit/".to_string(), 0)])
.expect("Polkadot Staging telemetry url is valid; qed"),
),
None,
Some(serde_json::from_str("{\"tokenDecimals\": 18}").expect("Provided valid json map")),
Extensions {
Expand Down
2 changes: 1 addition & 1 deletion pallets/author-filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["PureStake"]
edition = "2018"
name = "pallet-author-filter"
version = "0.1.0"
version = '0.6.0'

[dependencies]
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion pallets/author-inherent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "author-inherent"
version = "0.1.0"
version = "0.6.0"
description = "Inject the block author via an inherent, and persist it via a Consensus digest"
authors = ["PureStake"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion pallets/ethereum-chain-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["PureStake"]
edition = "2018"
name = "pallet-ethereum-chain-id"
version = "0.1.0"
version = "0.6.0"

[dependencies]
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-info/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
name = "parachain-info"
version = "0.1.0"
version = "0.6.0"

[dependencies]
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion pallets/token-dealer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
name = "cumulus-token-dealer"
version = "0.1.0"
version = "0.6.0"

[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion primitives/rpc/txpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moonbeam-rpc-primitives-txpool"
version = '0.1.0'
version = '0.6.0'
authors = ['PureStake']
edition = '2018'
homepage = 'https://moonbeam.network'
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbeam-runtime'
description = 'Moonbeam Runtime'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.1.0'
version = '0.6.0'
authors = ["PureStake"]
edition = '2018'

Expand Down
4 changes: 2 additions & 2 deletions runtime/precompiles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "precompiles"
version = "0.1.0"
authors = ["Samer Afach <info@afach.de>"]
version = "0.6.0"
authors = ["PureStake"]
edition = "2018"

[dependencies]
Expand Down
82 changes: 42 additions & 40 deletions specs/alphanet/parachain-embedded-specs-v6.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion specs/alphanet/parachain-specs-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"id": "moonbase_alpha",
"chainType": "Local",
"bootNodes": [],
"telemetryEndpoints": null,
"telemetryEndpoints": [
["/dns/telemetry.polkadot.io/tcp/443/x-parity-wss/%2Fsubmit%2F", 0]
],
"protocolId": null,
"properties": {
"tokenDecimals": 18
Expand Down
94 changes: 48 additions & 46 deletions specs/stagenet/parachain-embedded-specs-v6.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion specs/stagenet/parachain-specs-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"id": "moonbase_stage",
"chainType": "Local",
"bootNodes": [],
"telemetryEndpoints": null,
"telemetryEndpoints": [
["/dns/telemetry.polkadot.io/tcp/443/x-parity-wss/%2Fsubmit%2F", 0]
],
"protocolId": null,
"properties": {
"tokenDecimals": 18
Expand Down

0 comments on commit adbdc99

Please sign in to comment.