git.delta.rocks / unique-network / refs/commits / 4f6ef612fc53

difftreelog

Merge branch 'develop' into CI-43-try-runtime

Alexander Aksenov2022-08-18parents: #d49036f #032326e.patch.diff
in: master

10 files changed

modified.docker/Dockerfile-try-runtimediffbeforeafterboth
--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -34,17 +34,12 @@
 
 ARG PROFILE=release
 ARG FEATURE=
-ARG REPO_URL=
-ARG BRANCH=
 ARG FORK_FROM=
 
+COPY . /unique_parachain
 WORKDIR /unique_parachain
 
 
 RUN echo "Requested features: $FEATURE\n" && \
     echo "Fork from: $FORK_FROM\n" && \
-    echo "Repositry URL: $REPO_URL\n" && \
-    echo "Branch: $BRANCH\n" && \
-    git clone $REPO_URL -b $BRANCH . && \
     cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $FORK_FROM
- 
\ No newline at end of file
modified.docker/docker-compose.try-runtime.j2diffbeforeafterboth
--- a/.docker/docker-compose.try-runtime.j2
+++ b/.docker/docker-compose.try-runtime.j2
@@ -5,8 +5,6 @@
     build:
       args:
         - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
-        - "BRANCH={{ BRANCH }}"
-        - "REPO_URL={{ REPO_URL }}"
         - "FEATURE={{ FEATURE }}"
         - "FORK_FROM={{ FORK_FROM }}"
 
modified.github/workflows/build-test-master.ymldiffbeforeafterboth
--- a/.github/workflows/build-test-master.yml
+++ b/.github/workflows/build-test-master.yml
@@ -1,4 +1,4 @@
-name: MASTER - Build & Test
+name: Yarn test para
 
 # Controls when the action will run.
 on:
@@ -19,15 +19,19 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
   master-build-and-test:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,large]
+    timeout-minutes: 1380
 
-
-    name: ${{ matrix.network }} - Build and Test
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.
 
modified.github/workflows/codestyle.ymldiffbeforeafterboth
--- a/.github/workflows/codestyle.yml
+++ b/.github/workflows/codestyle.yml
@@ -10,6 +10,10 @@
       - synchronize
       - ready_for_review
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 jobs:
   rustfmt:
     runs-on: self-hosted-ci
@@ -47,7 +51,7 @@
   clippy:
     if: ${{ false }}
     runs-on: self-hosted-ci
-
+      
     steps:
       - name: Skip if pull request is in Draft
         # `if: github.event.pull_request.draft == true` should be kept here, at
modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
--- a/.github/workflows/fork-update-withdata.yml
+++ b/.github/workflows/fork-update-withdata.yml
@@ -1,4 +1,4 @@
-name: Fork Parachain update with data
+name: Upgrade replica
 
 # Controls when the action will run.
 on:
@@ -19,14 +19,19 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
   fork-update-withdata:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,large]
+    timeout-minutes: 1380
 
-    name: ${{ matrix.network }} Fork Parachain with data
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.
 
modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
--- a/.github/workflows/forkless-update-nodata.yml
+++ b/.github/workflows/forkless-update-nodata.yml
@@ -1,4 +1,4 @@
-name: Forkless Parachain update with no data
+name: Upgrade nodata
 
 # Controls when the action will run.
 on:
@@ -19,6 +19,10 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
@@ -29,6 +33,7 @@
     runs-on: self-hosted-ci
     outputs:
       matrix: ${{ steps.create_matrix.outputs.matrix }}
+
     steps:
       
       - name: Clean Workspace
@@ -56,9 +61,13 @@
   forkless-update-nodata:
     needs: prepare-execution-marix
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,medium]
+    
+    
 
-    name: ${{ matrix.network }} - Forkless Parachain Upgrade NO data
+    timeout-minutes: 1380
+
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.
 
modified.github/workflows/node_build_test.ymldiffbeforeafterboth
--- a/.github/workflows/node_build_test.yml
+++ b/.github/workflows/node_build_test.yml
@@ -1,4 +1,4 @@
-name: Develop - Build & test
+name: Yarn test dev
 
 # Controls when the action will run.
 on:
@@ -19,13 +19,18 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
   dev_build_test:
     # The type of runner that the job will run on
-    runs-on: self-hosted-ci
+    runs-on: [self-hosted-ci,medium]
+    timeout-minutes: 1380
 
-    name: Build Container, Spin it Up an test
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.
 
modified.github/workflows/tests_codestyle.ymldiffbeforeafterboth
--- a/.github/workflows/tests_codestyle.yml
+++ b/.github/workflows/tests_codestyle.yml
@@ -10,6 +10,10 @@
       - synchronize
       - ready_for_review
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 jobs:
   code_style:
     runs-on: self-hosted-ci
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
--- a/.github/workflows/try-runtime.yml
+++ b/.github/workflows/try-runtime.yml
@@ -1,4 +1,4 @@
-name: Try Runtime
+name: try-runtime
 
 # Controls when the action will run.
 on:
@@ -19,26 +19,30 @@
 env:
   REPO_URL: ${{ github.server_url }}/${{ github.repository }}
 
+concurrency: 
+  group: ${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
   try-runtime:
     # The type of runner that the job will run on
     runs-on: self-hosted-ci
-
-    name: ${{ matrix.network }} - Try-runtime
+    
+    name: ${{ matrix.network }}
 
     continue-on-error: true         #Do not stop testing of matrix runs failed.  As it decided during PR review - it required 50/50& Let's check it with false.
 
     strategy:
       matrix:
         include:
-          - network: Opal
+          - network: opal
             features: try-runtime,opal-runtime
             fork_from_address: wss://eu-ws-opal.unique.network:443
-          - network: Quartz
+          - network: quartz
             features: try-runtime,quartz-runtime
             fork_from_address: wss://eu-ws-quartz.unique.network:443
-          - network: Unique
+          - network: unique
             features: try-runtime,unique-runtime
             fork_from_address: wss://eu-ws.unique.network:443
 
@@ -79,37 +83,15 @@
           template: .docker/docker-compose.try-runtime.j2
           output_file: .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
           variables: |
-            REPO_URL=${{ github.server_url }}/${{ github.repository }}.git
             RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
             FEATURE=${{ matrix.features }}
-            BRANCH=${{ github.head_ref }}
             FORK_FROM=${{ matrix.fork_from_address }}
 
       - name: Show build configuration
         run: cat .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
 
-
       - name: Build the stack
-        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300
-
-
-      - name: Collect Docker Logs
-        if: success() || failure()
-        uses: jwalton/gh-docker-logs@v2.2.0
-        with:
-          dest: './try-runtime-logs.${{ matrix.features }}'
-          images: 'try-runtime' 
-
-      - name: Tar logs
-        if: success() || failure()
-        run: tar cvzf ./try-runtime-logs.${{ matrix.features }}.tgz ./try-runtime-logs.${{ matrix.features }}
-
-      - name: Upload logs to GitHub
-        if: success() || failure()
-        uses: actions/upload-artifact@master
-        with:
-          name: try-runtime-logs.${{ matrix.features }}.tgz
-          path: ./try-runtime-logs.${{ matrix.features }}.tgz
+        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300 --remove-orphans
 
       - name: Stop running containers
         if: always()                   # run this step always
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.27"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.27"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.27"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.27"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.27"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.27"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.27"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.27"4445[dependencies.sc-cli]46features = ['wasmtime']47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.27"4950[dependencies.sc-client-api]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.27"5354[dependencies.sc-consensus]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.27"5758[dependencies.sc-consensus-aura]59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.sc-executor]63features = ['wasmtime']64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.sc-finality-grandpa]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.27"7071[dependencies.sc-keystore]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.27"7475[dependencies.sc-rpc]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.27"7879[dependencies.sc-rpc-api]80git = "https://github.com/paritytech/substrate"81branch = "polkadot-v0.9.27"8283[dependencies.sc-service]84features = ['wasmtime']85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.27"8788[dependencies.sc-telemetry]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.27"9192[dependencies.sc-transaction-pool]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.27"9596[dependencies.sc-tracing]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.27"99100[dependencies.sc-sysinfo]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.27"103104[dependencies.sp-block-builder]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.27"107108[dependencies.sp-api]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.27"111112[dependencies.sp-blockchain]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.27"115116[dependencies.sp-consensus]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.27"119120[dependencies.sp-consensus-aura]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.27"123124[dependencies.sp-core]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.27"127128[dependencies.sp-finality-grandpa]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.27"131132[dependencies.sp-inherents]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.27"135136[dependencies.sp-keystore]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.27"139140[dependencies.sp-offchain]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.27"143144[dependencies.sp-runtime]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.27"147148[dependencies.sp-session]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.27"151152[dependencies.sp-timestamp]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.27"155156[dependencies.sp-transaction-pool]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.27"159160[dependencies.sp-trie]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.27"163164[dependencies.substrate-frame-rpc-system]165git = "https://github.com/paritytech/substrate"166branch = "polkadot-v0.9.27"167168[dependencies.sc-network]169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.27"171172[dependencies.serde]173features = ['derive']174version = '1.0.130'175176[dependencies.serde_json]177version = '1.0.68'178179[dependencies.sc-consensus-manual-seal]180git = "https://github.com/paritytech/substrate"181branch = "polkadot-v0.9.27"182183################################################################################184# Cumulus dependencies185186[dependencies.cumulus-client-consensus-aura]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.27"189190[dependencies.cumulus-client-consensus-common]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.27"193194[dependencies.cumulus-client-collator]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.27"197198[dependencies.cumulus-client-cli]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.27"201202[dependencies.cumulus-client-network]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.27"205206[dependencies.cumulus-primitives-core]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.27"209210[dependencies.cumulus-primitives-parachain-inherent]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.27"213214[dependencies.cumulus-client-service]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.27"217218[dependencies.cumulus-relay-chain-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.27"221222[dependencies.cumulus-relay-chain-inprocess-interface]223git = "https://github.com/paritytech/cumulus"224branch = "polkadot-v0.9.27"225226[dependencies.cumulus-relay-chain-rpc-interface]227git = "https://github.com/paritytech/cumulus"228branch = "polkadot-v0.9.27"229230################################################################################231# Polkadot dependencies232[dependencies.polkadot-primitives]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.27"235236[dependencies.polkadot-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.27"239240[dependencies.polkadot-cli]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.27"243244[dependencies.polkadot-test-service]245git = "https://github.com/paritytech/polkadot"246branch = "release-v0.9.27"247248[dependencies.polkadot-parachain]249git = "https://github.com/paritytech/polkadot"250branch = "release-v0.9.27"251252253################################################################################254# Local dependencies255256[dependencies.up-common]257path = "../../primitives/common"258259[dependencies.unique-runtime]260path = '../../runtime/unique'261optional = true262263[dependencies.quartz-runtime]264path = '../../runtime/quartz'265optional = true266267[dependencies.opal-runtime]268path = '../../runtime/opal'269270[dependencies.up-data-structs]271path = "../../primitives/data-structs"272default-features = false273274[dependencies.up-rpc]275path = "../../primitives/rpc"276277[dependencies.pallet-transaction-payment-rpc-runtime-api]278git = "https://github.com/paritytech/substrate"279branch = "polkadot-v0.9.27"280281################################################################################282# Package283284[package]285authors = ['Unique Network <support@uniquenetwork.io>']286build = 'build.rs'287description = 'Unique Node'288edition = '2021'289homepage = 'https://unique.network'290license = 'GPLv3'291name = 'unique-node'292repository = 'https://github.com/UniqueNetwork/unique-chain'293version = "0.9.27"294295[[bin]]296name = 'unique-collator'297path = "src/main.rs"298299[package.metadata.docs.rs]300targets = ['x86_64-unknown-linux-gnu']301302[dependencies]303futures = '0.3.17'304log = '0.4.14'305flexi_logger = "0.22.5"306parking_lot = '0.12.1'307clap = "3.1.2"308jsonrpsee = { version = "0.14.0", features = ["server", "macros"] }309tokio = { version = "1.19.2", features = ["time"] }310311fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }312fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }313fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }314fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }315fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }316fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }317pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }318319unique-rpc = { default-features = false, path = "../rpc" }320rmrk-rpc = { path = "../../primitives/rmrk-rpc" }321322[features]323default = []324runtime-benchmarks = [325    'unique-runtime?/runtime-benchmarks',326    'quartz-runtime?/runtime-benchmarks',327    'opal-runtime/runtime-benchmarks',328    'polkadot-service/runtime-benchmarks',329]330try-runtime = []
after · node/cli/Cargo.toml
1################################################################################2# Build Dependencies34[build-dependencies.substrate-build-script-utils]5git = "https://github.com/paritytech/substrate"6branch = "polkadot-v0.9.27"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.27"2021[dependencies.frame-benchmarking-cli]22git = "https://github.com/paritytech/substrate"23branch = "polkadot-v0.9.27"2425[dependencies.try-runtime-cli]26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.27"2829[dependencies.pallet-transaction-payment-rpc]30git = "https://github.com/paritytech/substrate"31branch = "polkadot-v0.9.27"3233[dependencies.substrate-prometheus-endpoint]34git = "https://github.com/paritytech/substrate"35branch = "polkadot-v0.9.27"3637[dependencies.sc-basic-authorship]38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.27"4041[dependencies.sc-chain-spec]42git = "https://github.com/paritytech/substrate"43branch = "polkadot-v0.9.27"4445[dependencies.sc-cli]46features = ['wasmtime']47git = "https://github.com/paritytech/substrate"48branch = "polkadot-v0.9.27"4950[dependencies.sc-client-api]51git = "https://github.com/paritytech/substrate"52branch = "polkadot-v0.9.27"5354[dependencies.sc-consensus]55git = "https://github.com/paritytech/substrate"56branch = "polkadot-v0.9.27"5758[dependencies.sc-consensus-aura]59git = "https://github.com/paritytech/substrate"60branch = "polkadot-v0.9.27"6162[dependencies.sc-executor]63features = ['wasmtime']64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.27"6667[dependencies.sc-finality-grandpa]68git = "https://github.com/paritytech/substrate"69branch = "polkadot-v0.9.27"7071[dependencies.sc-keystore]72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.27"7475[dependencies.sc-rpc]76git = "https://github.com/paritytech/substrate"77branch = "polkadot-v0.9.27"7879[dependencies.sc-rpc-api]80git = "https://github.com/paritytech/substrate"81branch = "polkadot-v0.9.27"8283[dependencies.sc-service]84features = ['wasmtime']85git = "https://github.com/paritytech/substrate"86branch = "polkadot-v0.9.27"8788[dependencies.sc-telemetry]89git = "https://github.com/paritytech/substrate"90branch = "polkadot-v0.9.27"9192[dependencies.sc-transaction-pool]93git = "https://github.com/paritytech/substrate"94branch = "polkadot-v0.9.27"9596[dependencies.sc-tracing]97git = "https://github.com/paritytech/substrate"98branch = "polkadot-v0.9.27"99100[dependencies.sc-sysinfo]101git = "https://github.com/paritytech/substrate"102branch = "polkadot-v0.9.27"103104[dependencies.sp-block-builder]105git = "https://github.com/paritytech/substrate"106branch = "polkadot-v0.9.27"107108[dependencies.sp-api]109git = "https://github.com/paritytech/substrate"110branch = "polkadot-v0.9.27"111112[dependencies.sp-blockchain]113git = "https://github.com/paritytech/substrate"114branch = "polkadot-v0.9.27"115116[dependencies.sp-consensus]117git = "https://github.com/paritytech/substrate"118branch = "polkadot-v0.9.27"119120[dependencies.sp-consensus-aura]121git = "https://github.com/paritytech/substrate"122branch = "polkadot-v0.9.27"123124[dependencies.sp-core]125git = "https://github.com/paritytech/substrate"126branch = "polkadot-v0.9.27"127128[dependencies.sp-finality-grandpa]129git = "https://github.com/paritytech/substrate"130branch = "polkadot-v0.9.27"131132[dependencies.sp-inherents]133git = "https://github.com/paritytech/substrate"134branch = "polkadot-v0.9.27"135136[dependencies.sp-keystore]137git = "https://github.com/paritytech/substrate"138branch = "polkadot-v0.9.27"139140[dependencies.sp-offchain]141git = "https://github.com/paritytech/substrate"142branch = "polkadot-v0.9.27"143144[dependencies.sp-runtime]145git = "https://github.com/paritytech/substrate"146branch = "polkadot-v0.9.27"147148[dependencies.sp-session]149git = "https://github.com/paritytech/substrate"150branch = "polkadot-v0.9.27"151152[dependencies.sp-timestamp]153git = "https://github.com/paritytech/substrate"154branch = "polkadot-v0.9.27"155156[dependencies.sp-transaction-pool]157git = "https://github.com/paritytech/substrate"158branch = "polkadot-v0.9.27"159160[dependencies.sp-trie]161git = "https://github.com/paritytech/substrate"162branch = "polkadot-v0.9.27"163164[dependencies.substrate-frame-rpc-system]165git = "https://github.com/paritytech/substrate"166branch = "polkadot-v0.9.27"167168[dependencies.sc-network]169git = "https://github.com/paritytech/substrate"170branch = "polkadot-v0.9.27"171172[dependencies.serde]173features = ['derive']174version = '1.0.130'175176[dependencies.serde_json]177version = '1.0.68'178179[dependencies.sc-consensus-manual-seal]180git = "https://github.com/paritytech/substrate"181branch = "polkadot-v0.9.27"182183################################################################################184# Cumulus dependencies185186[dependencies.cumulus-client-consensus-aura]187git = "https://github.com/paritytech/cumulus"188branch = "polkadot-v0.9.27"189190[dependencies.cumulus-client-consensus-common]191git = "https://github.com/paritytech/cumulus"192branch = "polkadot-v0.9.27"193194[dependencies.cumulus-client-collator]195git = "https://github.com/paritytech/cumulus"196branch = "polkadot-v0.9.27"197198[dependencies.cumulus-client-cli]199git = "https://github.com/paritytech/cumulus"200branch = "polkadot-v0.9.27"201202[dependencies.cumulus-client-network]203git = "https://github.com/paritytech/cumulus"204branch = "polkadot-v0.9.27"205206[dependencies.cumulus-primitives-core]207git = "https://github.com/paritytech/cumulus"208branch = "polkadot-v0.9.27"209210[dependencies.cumulus-primitives-parachain-inherent]211git = "https://github.com/paritytech/cumulus"212branch = "polkadot-v0.9.27"213214[dependencies.cumulus-client-service]215git = "https://github.com/paritytech/cumulus"216branch = "polkadot-v0.9.27"217218[dependencies.cumulus-relay-chain-interface]219git = "https://github.com/paritytech/cumulus"220branch = "polkadot-v0.9.27"221222[dependencies.cumulus-relay-chain-inprocess-interface]223git = "https://github.com/paritytech/cumulus"224branch = "polkadot-v0.9.27"225226[dependencies.cumulus-relay-chain-rpc-interface]227git = "https://github.com/paritytech/cumulus"228branch = "polkadot-v0.9.27"229230################################################################################231# Polkadot dependencies232[dependencies.polkadot-primitives]233git = "https://github.com/paritytech/polkadot"234branch = "release-v0.9.27"235236[dependencies.polkadot-service]237git = "https://github.com/paritytech/polkadot"238branch = "release-v0.9.27"239240[dependencies.polkadot-cli]241git = "https://github.com/paritytech/polkadot"242branch = "release-v0.9.27"243244[dependencies.polkadot-test-service]245git = "https://github.com/paritytech/polkadot"246branch = "release-v0.9.27"247248[dependencies.polkadot-parachain]249git = "https://github.com/paritytech/polkadot"250branch = "release-v0.9.27"251252253################################################################################254# Local dependencies255256[dependencies.up-common]257path = "../../primitives/common"258259[dependencies.unique-runtime]260path = '../../runtime/unique'261optional = true262263[dependencies.quartz-runtime]264path = '../../runtime/quartz'265optional = true266267[dependencies.opal-runtime]268path = '../../runtime/opal'269optional = true270271[dependencies.up-data-structs]272path = "../../primitives/data-structs"273default-features = false274275[dependencies.up-rpc]276path = "../../primitives/rpc"277278[dependencies.pallet-transaction-payment-rpc-runtime-api]279git = "https://github.com/paritytech/substrate"280branch = "polkadot-v0.9.27"281282################################################################################283# Package284285[package]286authors = ['Unique Network <support@uniquenetwork.io>']287build = 'build.rs'288description = 'Unique Node'289edition = '2021'290homepage = 'https://unique.network'291license = 'GPLv3'292name = 'unique-node'293repository = 'https://github.com/UniqueNetwork/unique-chain'294version = "0.9.27"295296[[bin]]297name = 'unique-collator'298path = "src/main.rs"299300[package.metadata.docs.rs]301targets = ['x86_64-unknown-linux-gnu']302303[dependencies]304futures = '0.3.17'305log = '0.4.14'306flexi_logger = "0.22.5"307parking_lot = '0.12.1'308clap = "3.1.2"309jsonrpsee = { version = "0.14.0", features = ["server", "macros"] }310tokio = { version = "1.19.2", features = ["time"] }311312fc-rpc-core = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }313fc-consensus = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }314fc-mapping-sync = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }315fc-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }316fc-db = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }317fp-rpc = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }318pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }319320unique-rpc = { default-features = false, path = "../rpc" }321rmrk-rpc = { path = "../../primitives/rmrk-rpc" }322323[features]324default = ["opal-runtime"]325runtime-benchmarks = [326    'unique-runtime?/runtime-benchmarks',327    'quartz-runtime?/runtime-benchmarks',328    'opal-runtime/runtime-benchmarks',329    'polkadot-service/runtime-benchmarks',330]331try-runtime = [332    'unique-runtime?/try-runtime',333    'quartz-runtime?/try-runtime',334    'opal-runtime?/try-runtime',335]