git.delta.rocks / unique-network / refs/commits / 81ed8372cf3b

difftreelog

release v920000

Igor Kozyrev2022-05-06parent: #2646448.patch.diff
in: master

12 files changed

modified.envdiffbeforeafterboth
--- a/.env
+++ b/.env
@@ -1,6 +1,6 @@
-RUST_TOOLCHAIN=nightly-2021-11-11
-RUST_C=1.58.0-nightly
-POLKA_VERSION=release-v0.9.18
+RUST_TOOLCHAIN=nightly-2022-04-07
+RUST_C=1.62.0-nightly
+POLKA_VERSION=release-v0.9.20
 UNIQUE_BRANCH=develop
 USER=***
 PASS=***
modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5475,7 +5475,7 @@
 
 [[package]]
 name = "opal-runtime"
-version = "0.9.18"
+version = "0.9.20"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
@@ -8682,7 +8682,7 @@
 
 [[package]]
 name = "quartz-runtime"
-version = "0.9.18"
+version = "0.9.20"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
@@ -12515,7 +12515,7 @@
 
 [[package]]
 name = "unique-node"
-version = "0.9.18"
+version = "0.9.20"
 dependencies = [
  "clap",
  "cumulus-client-cli",
@@ -12725,7 +12725,7 @@
 
 [[package]]
 name = "unique-runtime-common"
-version = "0.9.18"
+version = "0.9.20"
 dependencies = [
  "fp-rpc",
  "frame-support",
modifiedDockerfile-parachaindiffbeforeafterboth
--- a/Dockerfile-parachain
+++ b/Dockerfile-parachain
@@ -2,9 +2,9 @@
 FROM phusion/baseimage:focal-1.1.0 as rust-builder
 LABEL maintainer="Unique.Network"
 
-ARG RUST_TOOLCHAIN=nightly-2021-11-11
-#ARG RUST_C=1.58.0-nightly
-ARG POLKA_VERSION=release-v0.9.18
+ARG RUST_TOOLCHAIN=nightly-2022-04-07
+#ARG RUST_C=1.62.0-nightly
+ARG POLKA_VERSION=release-v0.9.20
 ARG UNIQUE_BRANCH=develop
 
 #ARG USER=***
modifiedREADME.mddiffbeforeafterboth
--- a/README.md
+++ b/README.md
@@ -51,14 +51,14 @@
 3. Install install nightly 2021-11-11 and make it default:
 
 ```bash
-rustup toolchain install nightly-2021-11-11
-rustup default nightly-2021-11-11
+rustup toolchain install nightly-2022-04-07
+rustup default nightly-2022-04-07
 ```
 
 4. Add wasm target for nightly toolchain:
 
 ```bash
-rustup target add wasm32-unknown-unknown --toolchain nightly-2021-11-11
+rustup target add wasm32-unknown-unknown --toolchain nightly-2022-04-07
 ```
 
 5. Build:
@@ -81,7 +81,7 @@
 ```
 git clone https://github.com/paritytech/polkadot.git
 cd polkadot
-git checkout release-v0.9.18
+git checkout release-v0.9.20
 cargo build --release
 ```
 
modifiednode/cli/Cargo.tomldiffbeforeafterboth
before · node/cli/Cargo.toml
1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.20"78################################################################################9# Substrate Dependecies1011[dependencies.codec]12default-features = false13features = ['derive']14package = 'parity-scale-codec'15version = '3.1.2'1617[dependencies.frame-benchmarking]18git = "https://github.com/paritytech/substrate"19branch = "polkadot-v0.9.20"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.20"2425[dependencies.pallet-transaction-payment-rpc]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.20"2829[dependencies.substrate-prometheus-endpoint]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.20"3233[dependencies.sc-basic-authorship]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.20"3637[dependencies.sc-chain-spec]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.20"4041[dependencies.sc-cli]42features = ['wasmtime']43git = "https://github.com/paritytech/substrate"44branch = "polkadot-v0.9.20"4546[dependencies.sc-client-api]47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.20"4950[dependencies.sc-consensus]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.20"5354[dependencies.sc-consensus-aura]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.20"5758[dependencies.sc-executor]59features = ['wasmtime']60git = "https://github.com/paritytech/substrate"61branch = "polkadot-v0.9.20"6263[dependencies.sc-finality-grandpa]64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.20"6667[dependencies.sc-keystore]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.20"7071[dependencies.sc-rpc]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.20"7475[dependencies.sc-rpc-api]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.20"7879[dependencies.sc-service]80features = ['wasmtime']81git = "https://github.com/paritytech/substrate"82branch = "polkadot-v0.9.20"8384[dependencies.sc-telemetry]85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.20"8788[dependencies.sc-transaction-pool]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.20"9192[dependencies.sc-tracing]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.20"9596[dependencies.sp-block-builder]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.20"99100[dependencies.sp-api]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.20"103104[dependencies.sp-blockchain]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.20"107108[dependencies.sp-consensus]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.20"111112[dependencies.sp-consensus-aura]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.20"115116[dependencies.sp-core]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.20"119120[dependencies.sp-finality-grandpa]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.20"123124[dependencies.sp-inherents]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.20"127128[dependencies.sp-keystore]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.20"131132[dependencies.sp-offchain]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.20"135136[dependencies.sp-runtime]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.20"139140[dependencies.sp-session]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.20"143144[dependencies.sp-timestamp]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.20"147148[dependencies.sp-transaction-pool]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.20"151152[dependencies.sp-trie]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.20"155156[dependencies.substrate-frame-rpc-system]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.20"159160[dependencies.sc-network]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.20"163164[dependencies.serde]165features = ['derive']166version = '1.0.130'167168[dependencies.serde_json]169version = '1.0.68'170171[dependencies.sc-consensus-manual-seal]172git = "https://github.com/paritytech/substrate"173branch = "polkadot-v0.9.20"174175################################################################################176# Cumulus dependencies177178[dependencies.cumulus-client-consensus-aura]179git = "https://github.com/paritytech/cumulus"180branch = "polkadot-v0.9.20"181182[dependencies.cumulus-client-consensus-common]183git = "https://github.com/paritytech/cumulus"184branch = "polkadot-v0.9.20"185186[dependencies.cumulus-client-collator]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.20"189190[dependencies.cumulus-client-cli]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.20"193194[dependencies.cumulus-client-network]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.20"197198[dependencies.cumulus-primitives-core]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.20"201202[dependencies.cumulus-primitives-parachain-inherent]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.20"205206[dependencies.cumulus-client-service]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.20"209210[dependencies.cumulus-relay-chain-interface]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.20"213214[dependencies.cumulus-relay-chain-inprocess-interface]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.20"217218[dependencies.cumulus-relay-chain-rpc-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.20"221222################################################################################223# Polkadot dependencies224[dependencies.polkadot-primitives]225git = "https://github.com/paritytech/polkadot"226branch = "release-v0.9.20"227228[dependencies.polkadot-service]229git = "https://github.com/paritytech/polkadot"230branch = "release-v0.9.20"231232[dependencies.polkadot-cli]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.20"235236[dependencies.polkadot-test-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.20"239240[dependencies.polkadot-parachain]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.20"243244245################################################################################246# Local dependencies247248[dependencies.unique-runtime-common]249default-features = false250path = "../../runtime/common"251252[dependencies.unique-runtime]253path = '../../runtime/unique'254optional = true255256[dependencies.quartz-runtime]257path = '../../runtime/quartz'258optional = true259260[dependencies.opal-runtime]261path = '../../runtime/opal'262263[dependencies.up-data-structs]264path = "../../primitives/data-structs"265default-features = false266267[dependencies.up-rpc]268path = "../../primitives/rpc"269270[dependencies.pallet-transaction-payment-rpc-runtime-api]271git = "https://github.com/paritytech/substrate"272branch = "polkadot-v0.9.20"273274################################################################################275# Package276277[package]278authors = ['Unique Network <support@uniquenetwork.io>']279build = 'build.rs'280description = 'Unique Node'281edition = '2021'282homepage = 'https://unique.network'283license = 'GPLv3'284name = 'unique-node'285repository = 'https://github.com/UniqueNetwork/unique-chain'286version = '0.9.18'287288[[bin]]289name = 'unique-collator'290path = "src/main.rs"291292[package.metadata.docs.rs]293targets = ['x86_64-unknown-linux-gnu']294295[dependencies]296futures = '0.3.17'297log = '0.4.14'298flexi_logger = "0.15.7"299parking_lot = '0.11.2'300clap = "3.1.2"301jsonrpc-core = '18.0.0'302jsonrpc-pubsub = "18.0.0"303tokio = { version = "1.17.0", features = ["time"] }304305fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }306fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }307fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }308fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }309fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }310fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }311pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }312313unique-rpc = { default-features = false, path = "../rpc" }314315[features]316default = []317runtime-benchmarks = [318    'unique-runtime/runtime-benchmarks',319    'polkadot-service/runtime-benchmarks',320]
modifiedruntime/common/Cargo.tomldiffbeforeafterboth
--- a/runtime/common/Cargo.toml
+++ b/runtime/common/Cargo.toml
@@ -6,7 +6,7 @@
 license = 'All Rights Reserved'
 name = 'unique-runtime-common'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.18'
+version = '0.9.20'
 
 [features]
 default = ['std']
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'opal-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.18'
+version = '0.9.20'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -169,7 +169,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 918010,
+	spec_version: 920000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'quartz-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.18'
+version = '0.9.20'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- a/runtime/quartz/src/lib.rs
+++ b/runtime/quartz/src/lib.rs
@@ -154,7 +154,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 918010,
+	spec_version: 920000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -153,7 +153,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 918010,
+	spec_version: 920000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedtests/README.mddiffbeforeafterboth
--- a/tests/README.md
+++ b/tests/README.md
@@ -5,7 +5,7 @@
 1. Checkout polkadot in sibling folder with this project
 ```bash
 git clone https://github.com/paritytech/polkadot.git && cd polkadot
-git checkout release-v0.9.18
+git checkout release-v0.9.20
 ```
 
 2. Build with nightly-2021-11-11