From dc65c2e844e19c4f12e3aac683f07629a0c0879d Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 23 Apr 2024 09:46:06 +0300 Subject: [PATCH 1/5] introduce compatible relayer version --- Cargo.lock | 408 +++++++++--------- .../client-bridge-hub-kusama/Cargo.toml | 22 +- .../client-bridge-hub-kusama/src/lib.rs | 4 + .../client-bridge-hub-polkadot/Cargo.toml | 26 +- .../client-bridge-hub-polkadot/src/lib.rs | 4 + .../client-bridge-hub-rococo/Cargo.toml | 22 +- .../client-bridge-hub-rococo/src/lib.rs | 4 + .../client-bridge-hub-westend/Cargo.toml | 26 +- .../client-bridge-hub-westend/src/lib.rs | 4 + relay-clients/client-kusama/Cargo.toml | 20 +- relay-clients/client-kusama/src/lib.rs | 2 + .../client-polkadot-bulletin/Cargo.toml | 26 +- .../client-polkadot-bulletin/src/lib.rs | 4 + relay-clients/client-polkadot/Cargo.toml | 20 +- relay-clients/client-polkadot/src/lib.rs | 2 + relay-clients/client-rococo/Cargo.toml | 18 +- relay-clients/client-rococo/src/lib.rs | 2 + relay-clients/client-westend/Cargo.toml | 20 +- relay-clients/client-westend/src/lib.rs | 2 + substrate-relay/Cargo.toml | 42 +- ..._kusama_messages_to_bridge_hub_polkadot.rs | 4 + ..._polkadot_messages_to_bridge_hub_kusama.rs | 4 + .../kusama_headers_to_bridge_hub_polkadot.rs | 2 + ...usama_parachains_to_bridge_hub_polkadot.rs | 3 + .../polkadot_headers_to_bridge_hub_kusama.rs | 2 + ...olkadot_parachains_to_bridge_hub_kusama.rs | 3 + ..._polkadot_messages_to_polkadot_bulletin.rs | 4 + ...bulletin_headers_to_bridge_hub_polkadot.rs | 2 + ...ulletin_messages_to_bridge_hub_polkadot.rs | 4 + .../polkadot_headers_to_polkadot_bulletin.rs | 2 + ...olkadot_parachains_to_polkadot_bulletin.rs | 4 +- ..._hub_rococo_messages_to_rococo_bulletin.rs | 4 + .../src/bridges/rococo_bulletin/mod.rs | 6 + ...o_bulletin_headers_to_bridge_hub_rococo.rs | 2 + ..._bulletin_messages_to_bridge_hub_rococo.rs | 4 + .../rococo_headers_to_rococo_bulletin.rs | 2 + .../rococo_parachains_to_rococo_bulletin.rs | 4 +- ...b_rococo_messages_to_bridge_hub_westend.rs | 12 + ...b_westend_messages_to_bridge_hub_rococo.rs | 12 + .../rococo_headers_to_bridge_hub_westend.rs | 7 + ...rococo_parachains_to_bridge_hub_westend.rs | 8 + .../westend_headers_to_bridge_hub_rococo.rs | 7 + ...westend_parachains_to_bridge_hub_rococo.rs | 8 + 43 files changed, 462 insertions(+), 326 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f82543d8dd0..bb4db26e6b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-cumulus" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -1126,13 +1126,13 @@ dependencies = [ "frame-system", "polkadot-primitives", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-bridge-hub-kusama" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1140,13 +1140,13 @@ dependencies = [ "frame-support", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-bridge-hub-polkadot" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1154,13 +1154,13 @@ dependencies = [ "frame-support", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-bridge-hub-rococo" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1168,13 +1168,13 @@ dependencies = [ "frame-support", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-bridge-hub-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1182,13 +1182,13 @@ dependencies = [ "frame-support", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1199,26 +1199,26 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-kusama" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", "frame-support", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1227,13 +1227,13 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1244,26 +1244,26 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", "frame-support", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-polkadot-bulletin" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-messages", @@ -1275,13 +1275,13 @@ dependencies = [ "scale-info", "sp-api", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-messages", "bp-runtime", @@ -1293,13 +1293,13 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-messages", "bp-runtime", @@ -1307,26 +1307,26 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-rococo" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", "frame-support", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-system", @@ -1341,7 +1341,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "trie-db", ] @@ -1349,7 +1349,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1362,35 +1362,35 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", ] [[package]] name = "bp-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", "frame-support", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-messages", @@ -1409,6 +1409,7 @@ dependencies = [ "bp-polkadot-core", "bp-relayers", "bp-runtime", + "bp-test-utils", "bp-xcm-bridge-hub", "bp-xcm-bridge-hub-router", "frame-support", @@ -1422,12 +1423,13 @@ dependencies = [ "pallet-transaction-payment", "pallet-utility", "parity-scale-codec", + "paste", "scale-info", "sp-api", "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "staging-xcm", "staging-xcm-builder", @@ -2593,7 +2595,7 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "equivocation-detector" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-std", "async-trait", @@ -2784,7 +2786,7 @@ dependencies = [ [[package]] name = "finality-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-std", "async-trait", @@ -2873,7 +2875,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-support-procedural", @@ -2889,9 +2891,9 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "static_assertions", ] @@ -2921,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "aquamarine", "array-bytes 6.2.2", @@ -2944,7 +2946,7 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -2952,8 +2954,8 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-weights", "static_assertions", "tt-call", @@ -2962,7 +2964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "Inflector", "cfg-expr", @@ -2974,14 +2976,14 @@ dependencies = [ "proc-macro-warning", "proc-macro2 1.0.81", "quote 1.0.36", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "syn 2.0.60", ] [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", @@ -2993,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -3003,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "cfg-if", "docify", @@ -3015,7 +3017,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-version", "sp-weights", ] @@ -4858,7 +4860,7 @@ dependencies = [ [[package]] name = "messages-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-std", "async-trait", @@ -5422,7 +5424,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-system", @@ -5430,13 +5432,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "docify", "frame-benchmarking", @@ -5446,13 +5448,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5466,14 +5468,14 @@ dependencies = [ "scale-info", "sp-consensus-grandpa", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", ] [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-messages", "bp-runtime", @@ -5485,13 +5487,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-header-chain", "bp-parachains", @@ -5505,14 +5507,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", ] [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bp-messages", "bp-relayers", @@ -5526,13 +5528,13 @@ dependencies = [ "scale-info", "sp-arithmetic", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-benchmarking", "frame-support", @@ -5549,13 +5551,13 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-system", @@ -5570,14 +5572,14 @@ dependencies = [ "sp-session", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", ] [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "docify", "frame-benchmarking", @@ -5589,15 +5591,15 @@ dependencies = [ "sp-inherents", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-timestamp", ] [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-system", @@ -5607,13 +5609,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5625,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-benchmarking", "frame-support", @@ -5635,13 +5637,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "parachains-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-std", "async-trait", @@ -5919,19 +5921,19 @@ checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bounded-collections", "derive_more", @@ -5941,14 +5943,14 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-weights", ] [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bitvec", "hex-literal", @@ -5969,7 +5971,7 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] @@ -6872,7 +6874,7 @@ dependencies = [ [[package]] name = "relay-substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-std", "async-trait", @@ -6903,7 +6905,7 @@ dependencies = [ "sp-core", "sp-rpc", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "sp-version", "staging-xcm", @@ -6914,7 +6916,7 @@ dependencies = [ [[package]] name = "relay-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "ansi_term", "anyhow", @@ -7294,18 +7296,18 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "log", "sp-core", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "thiserror", ] [[package]] name = "sc-chain-spec" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "array-bytes 6.2.2", "docify", @@ -7321,18 +7323,18 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-genesis-builder", "sp-io", "sp-runtime", "sp-state-machine", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2 1.0.81", @@ -7343,7 +7345,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "fnv", "futures", @@ -7358,11 +7360,11 @@ dependencies = [ "sp-consensus", "sp-core", "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-runtime", "sp-state-machine", "sp-statement-store", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "substrate-prometheus-endpoint", ] @@ -7370,7 +7372,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "futures", @@ -7395,7 +7397,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -7405,25 +7407,25 @@ dependencies = [ "schnellru", "sp-api", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-io", "sp-panic-handler", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "tracing", ] [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "polkavm", "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "thiserror", "wasm-instrument", ] @@ -7431,18 +7433,18 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "log", "polkavm", "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "anyhow", "cfg-if", @@ -7452,15 +7454,15 @@ dependencies = [ "rustix 0.36.17", "sc-allocator", "sc-executor-common", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "wasmtime", ] [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -7489,7 +7491,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -7540,7 +7542,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -7558,7 +7560,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bs58 0.4.0", "libp2p-identity", @@ -7572,7 +7574,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7592,7 +7594,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "chrono", "futures", @@ -7612,7 +7614,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "futures", @@ -7628,7 +7630,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-channel 1.9.0", "futures", @@ -8344,7 +8346,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "hash-db", "log", @@ -8352,12 +8354,12 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-metadata-ir", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "sp-version", "thiserror", @@ -8366,7 +8368,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "Inflector", "blake2 0.10.6", @@ -8380,20 +8382,20 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", "serde", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "docify", "integer-sqrt", @@ -8401,7 +8403,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "static_assertions", ] @@ -8426,7 +8428,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -8438,7 +8440,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "futures", "log", @@ -8456,7 +8458,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "futures", @@ -8471,7 +8473,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "finality-grandpa", "log", @@ -8488,7 +8490,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -8499,7 +8501,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "array-bytes 6.2.2", "bandersnatch_vrfs", @@ -8529,12 +8531,12 @@ dependencies = [ "secp256k1", "secrecy", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "ss58-registry", "substrate-bip39", "thiserror", @@ -8580,7 +8582,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "blake2b_simd", "byteorder", @@ -8593,17 +8595,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "quote 1.0.36", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "syn 2.0.60", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -8612,7 +8614,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -8632,11 +8634,11 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] @@ -8652,7 +8654,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -8664,7 +8666,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -8677,7 +8679,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bytes", "ed25519-dalek 2.1.1", @@ -8688,13 +8690,13 @@ dependencies = [ "rustversion", "secp256k1", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-keystore", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-trie", "tracing", "tracing-core", @@ -8703,7 +8705,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "sp-core", "sp-runtime", @@ -8713,18 +8715,18 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "thiserror", "zstd 0.12.4", @@ -8733,7 +8735,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -8743,7 +8745,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -8754,7 +8756,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "backtrace", "lazy_static", @@ -8764,7 +8766,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "rustc-hash", "serde", @@ -8774,7 +8776,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "docify", "either", @@ -8791,26 +8793,26 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-weights", ] [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive", "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "static_assertions", ] @@ -8836,7 +8838,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "Inflector", "expander", @@ -8862,7 +8864,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "scale-info", @@ -8876,7 +8878,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8889,7 +8891,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "hash-db", "log", @@ -8898,7 +8900,7 @@ dependencies = [ "rand 0.8.5", "smallvec", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-panic-handler", "sp-trie", "thiserror", @@ -8909,7 +8911,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", @@ -8922,10 +8924,10 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "thiserror", "x25519-dalek 2.0.1", ] @@ -8933,7 +8935,7 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" [[package]] name = "sp-std" @@ -8943,13 +8945,13 @@ source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] @@ -8967,7 +8969,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "async-trait", "parity-scale-codec", @@ -8979,7 +8981,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "tracing", @@ -9001,7 +9003,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "ahash 0.8.11", "hash-db", @@ -9014,7 +9016,7 @@ dependencies = [ "scale-info", "schnellru", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "thiserror", "tracing", "trie-db", @@ -9024,7 +9026,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9033,7 +9035,7 @@ dependencies = [ "serde", "sp-crypto-hashing-proc-macro", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-version-proc-macro", "thiserror", ] @@ -9041,7 +9043,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "parity-scale-codec", "proc-macro2 1.0.81", @@ -9052,7 +9054,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -9074,7 +9076,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -9082,7 +9084,7 @@ dependencies = [ "serde", "smallvec", "sp-arithmetic", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] [[package]] @@ -9131,7 +9133,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "array-bytes 6.2.2", "bounded-collections", @@ -9149,7 +9151,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "frame-support", "frame-system", @@ -9162,7 +9164,7 @@ dependencies = [ "sp-arithmetic", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-weights", "staging-xcm", "staging-xcm-executor", @@ -9171,7 +9173,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "environmental", "frame-benchmarking", @@ -9184,7 +9186,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=master)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", "sp-weights", "staging-xcm", ] @@ -9276,7 +9278,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -9288,7 +9290,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "hyper", "log", @@ -9354,7 +9356,7 @@ dependencies = [ [[package]] name = "substrate-relay-helper" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "anyhow", "async-std", @@ -11135,7 +11137,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=master#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" dependencies = [ "Inflector", "proc-macro2 1.0.81", diff --git a/relay-clients/client-bridge-hub-kusama/Cargo.toml b/relay-clients/client-bridge-hub-kusama/Cargo.toml index ac3c382baa7..895ff6db5dd 100644 --- a/relay-clients/client-bridge-hub-kusama/Cargo.toml +++ b/relay-clients/client-bridge-hub-kusama/Cargo.toml @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-bridge-hub-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-bridge-hub-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-bridge-hub-kusama/src/lib.rs b/relay-clients/client-bridge-hub-kusama/src/lib.rs index 25675d26d0f..e3bb199389a 100644 --- a/relay-clients/client-bridge-hub-kusama/src/lib.rs +++ b/relay-clients/client-bridge-hub-kusama/src/lib.rs @@ -52,6 +52,8 @@ impl Chain for BridgeHubKusama { const NAME: &'static str = "BridgeHubKusama"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_bridge_hub_kusama::BEST_FINALIZED_BRIDGE_HUB_KUSAMA_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_kusama::BRIDGE_HUB_KUSAMA_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = AVERAGE_BLOCK_INTERVAL; type SignedBlock = bp_bridge_hub_kusama::SignedBlock; @@ -115,6 +117,8 @@ impl ChainWithMessages for BridgeHubKusama { const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = Some(bp_bridge_hub_kusama::WITH_BRIDGE_HUB_KUSAMA_RELAYERS_PALLET_NAME); + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_kusama::FROM_BRIDGE_HUB_KUSAMA_MESSAGES_COMPATIBLE_RELAYER_VERSION; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = bp_bridge_hub_kusama::TO_BRIDGE_HUB_KUSAMA_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/relay-clients/client-bridge-hub-polkadot/Cargo.toml b/relay-clients/client-bridge-hub-polkadot/Cargo.toml index 14671ce8f36..95c66202c02 100644 --- a/relay-clients/client-bridge-hub-polkadot/Cargo.toml +++ b/relay-clients/client-bridge-hub-polkadot/Cargo.toml @@ -16,19 +16,19 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-bridge-hub-polkadot/src/lib.rs b/relay-clients/client-bridge-hub-polkadot/src/lib.rs index ba55573bbca..5d9c9aeabc8 100644 --- a/relay-clients/client-bridge-hub-polkadot/src/lib.rs +++ b/relay-clients/client-bridge-hub-polkadot/src/lib.rs @@ -56,6 +56,8 @@ impl Chain for BridgeHubPolkadot { const NAME: &'static str = "BridgeHubPolkadot"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_bridge_hub_polkadot::BEST_FINALIZED_BRIDGE_HUB_POLKADOT_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_polkadot::BRIDGE_HUB_POLKADOT_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = AVERAGE_BLOCK_INTERVAL; type SignedBlock = bp_bridge_hub_polkadot::SignedBlock; @@ -119,6 +121,8 @@ impl ChainWithMessages for BridgeHubPolkadot { const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = Some(bp_bridge_hub_polkadot::WITH_BRIDGE_HUB_POLKADOT_RELAYERS_PALLET_NAME); + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_polkadot::FROM_BRIDGE_HUB_POLKADOT_MESSAGES_COMPATIBLE_RELAYER_VERSION; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = bp_bridge_hub_polkadot::TO_BRIDGE_HUB_POLKADOT_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/relay-clients/client-bridge-hub-rococo/Cargo.toml b/relay-clients/client-bridge-hub-rococo/Cargo.toml index a872cea3f5e..c5d54882ca7 100644 --- a/relay-clients/client-bridge-hub-rococo/Cargo.toml +++ b/relay-clients/client-bridge-hub-rococo/Cargo.toml @@ -16,18 +16,18 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-bridge-hub-rococo/src/lib.rs b/relay-clients/client-bridge-hub-rococo/src/lib.rs index 35e675817fb..b93dff3c3a7 100644 --- a/relay-clients/client-bridge-hub-rococo/src/lib.rs +++ b/relay-clients/client-bridge-hub-rococo/src/lib.rs @@ -54,6 +54,8 @@ impl Chain for BridgeHubRococo { const NAME: &'static str = "BridgeHubRococo"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_bridge_hub_rococo::BEST_FINALIZED_BRIDGE_HUB_ROCOCO_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_rococo::BRIDGE_HUB_ROCOCO_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = AVERAGE_BLOCK_INTERVAL; type SignedBlock = bp_bridge_hub_rococo::SignedBlock; @@ -117,6 +119,8 @@ impl ChainWithMessages for BridgeHubRococo { const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = Some(bp_bridge_hub_rococo::WITH_BRIDGE_HUB_ROCOCO_RELAYERS_PALLET_NAME); + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_rococo::FROM_BRIDGE_HUB_ROCOCO_MESSAGES_COMPATIBLE_RELAYER_VERSION; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = bp_bridge_hub_rococo::TO_BRIDGE_HUB_ROCOCO_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/relay-clients/client-bridge-hub-westend/Cargo.toml b/relay-clients/client-bridge-hub-westend/Cargo.toml index 2e1e21c2626..58ee042d3b2 100644 --- a/relay-clients/client-bridge-hub-westend/Cargo.toml +++ b/relay-clients/client-bridge-hub-westend/Cargo.toml @@ -16,22 +16,22 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-bridge-hub-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-bridge-hub-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } [dev-dependencies] -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-bridge-hub-westend/src/lib.rs b/relay-clients/client-bridge-hub-westend/src/lib.rs index d3668a49f45..dfa288901dd 100644 --- a/relay-clients/client-bridge-hub-westend/src/lib.rs +++ b/relay-clients/client-bridge-hub-westend/src/lib.rs @@ -52,6 +52,8 @@ impl Chain for BridgeHubWestend { const NAME: &'static str = "BridgeHubWestend"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_bridge_hub_westend::BEST_FINALIZED_BRIDGE_HUB_WESTEND_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_westend::BRIDGE_HUB_WESTEND_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = AVERAGE_BLOCK_INTERVAL; type SignedBlock = bp_bridge_hub_westend::SignedBlock; @@ -115,6 +117,8 @@ impl ChainWithMessages for BridgeHubWestend { const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = Some(bp_bridge_hub_westend::WITH_BRIDGE_HUB_WESTEND_RELAYERS_PALLET_NAME); + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + bp_bridge_hub_westend::FROM_BRIDGE_HUB_WESTEND_MESSAGES_COMPATIBLE_RELAYER_VERSION; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = bp_bridge_hub_westend::TO_BRIDGE_HUB_WESTEND_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/relay-clients/client-kusama/Cargo.toml b/relay-clients/client-kusama/Cargo.toml index 6872d811727..10861d3b748 100644 --- a/relay-clients/client-kusama/Cargo.toml +++ b/relay-clients/client-kusama/Cargo.toml @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-kusama/src/lib.rs b/relay-clients/client-kusama/src/lib.rs index 24a6adfe95d..e46801062e1 100644 --- a/relay-clients/client-kusama/src/lib.rs +++ b/relay-clients/client-kusama/src/lib.rs @@ -58,6 +58,8 @@ impl Chain for Kusama { const NAME: &'static str = "Kusama"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_kusama::BEST_FINALIZED_KUSAMA_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_kusama::KUSAMA_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = Duration::from_secs(6); type SignedBlock = bp_kusama::SignedBlock; diff --git a/relay-clients/client-polkadot-bulletin/Cargo.toml b/relay-clients/client-polkadot-bulletin/Cargo.toml index 0113daff9e0..31f3ba5e89e 100644 --- a/relay-clients/client-polkadot-bulletin/Cargo.toml +++ b/relay-clients/client-polkadot-bulletin/Cargo.toml @@ -16,19 +16,19 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-polkadot-bulletin/src/lib.rs b/relay-clients/client-polkadot-bulletin/src/lib.rs index 1f18b25a905..777ba268192 100644 --- a/relay-clients/client-polkadot-bulletin/src/lib.rs +++ b/relay-clients/client-polkadot-bulletin/src/lib.rs @@ -67,6 +67,8 @@ impl Chain for PolkadotBulletin { const NAME: &'static str = "PolkadotBulletin"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_polkadot_bulletin::BEST_FINALIZED_POLKADOT_BULLETIN_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_polkadot_bulletin::POLKADOT_BULLETIN_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = Duration::from_secs(6); type SignedBlock = bp_polkadot_bulletin::SignedBlock; @@ -85,6 +87,8 @@ impl ChainWithMessages for PolkadotBulletin { // to be changed when we'll polish the bridge configuration const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = None; + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + bp_polkadot_bulletin::FROM_POLKADOT_BULLETIN_MESSAGES_COMPATIBLE_RELAYER_VERSION; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = bp_polkadot_bulletin::TO_POLKADOT_BULLETIN_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/relay-clients/client-polkadot/Cargo.toml b/relay-clients/client-polkadot/Cargo.toml index 66d8cf3b798..b038aa895ca 100644 --- a/relay-clients/client-polkadot/Cargo.toml +++ b/relay-clients/client-polkadot/Cargo.toml @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-polkadot/src/lib.rs b/relay-clients/client-polkadot/src/lib.rs index 9b655528b6e..433d39d56e1 100644 --- a/relay-clients/client-polkadot/src/lib.rs +++ b/relay-clients/client-polkadot/src/lib.rs @@ -58,6 +58,8 @@ impl Chain for Polkadot { const NAME: &'static str = "Polkadot"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_polkadot::BEST_FINALIZED_POLKADOT_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_polkadot::POLKADOT_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = Duration::from_secs(6); type SignedBlock = bp_polkadot::SignedBlock; diff --git a/relay-clients/client-rococo/Cargo.toml b/relay-clients/client-rococo/Cargo.toml index 9953f9006ef..6f012534d83 100644 --- a/relay-clients/client-rococo/Cargo.toml +++ b/relay-clients/client-rococo/Cargo.toml @@ -16,16 +16,16 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-rococo/src/lib.rs b/relay-clients/client-rococo/src/lib.rs index ae289185761..1e3c4148651 100644 --- a/relay-clients/client-rococo/src/lib.rs +++ b/relay-clients/client-rococo/src/lib.rs @@ -58,6 +58,8 @@ impl Chain for Rococo { const NAME: &'static str = "Rococo"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_rococo::BEST_FINALIZED_ROCOCO_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_rococo::ROCOCO_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = Duration::from_secs(6); type SignedBlock = bp_rococo::SignedBlock; diff --git a/relay-clients/client-westend/Cargo.toml b/relay-clients/client-westend/Cargo.toml index 1660035173e..01ff05bdd8c 100644 --- a/relay-clients/client-westend/Cargo.toml +++ b/relay-clients/client-westend/Cargo.toml @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] } # Bridge dependencies -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } diff --git a/relay-clients/client-westend/src/lib.rs b/relay-clients/client-westend/src/lib.rs index c33914ddd2c..557016c1bb4 100644 --- a/relay-clients/client-westend/src/lib.rs +++ b/relay-clients/client-westend/src/lib.rs @@ -58,6 +58,8 @@ impl Chain for Westend { const NAME: &'static str = "Westend"; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = bp_westend::BEST_FINALIZED_WESTEND_HEADER_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + bp_westend::WESTEND_FINALITY_COMPATIBLE_RELAYER_VERSION; const AVERAGE_BLOCK_INTERVAL: Duration = Duration::from_secs(6); type SignedBlock = bp_westend::SignedBlock; diff --git a/substrate-relay/Cargo.toml b/substrate-relay/Cargo.toml index 022296d9217..f9bba87872f 100644 --- a/substrate-relay/Cargo.toml +++ b/substrate-relay/Cargo.toml @@ -27,19 +27,19 @@ signal-hook-async-std = "0.2.2" strum = { version = "0.26.2", features = ["derive"] } # Bridge dependencies -bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -pallet-bridge-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -parachains-relay = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +pallet-bridge-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +parachains-relay = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } relay-bridge-hub-kusama-client = { path = "../relay-clients/client-bridge-hub-kusama" } relay-bridge-hub-polkadot-client = { path = "../relay-clients/client-bridge-hub-polkadot" } relay-bridge-hub-rococo-client = { path = "../relay-clients/client-bridge-hub-rococo" } @@ -48,20 +48,20 @@ relay-kusama-client = { path = "../relay-clients/client-kusama" } relay-polkadot-client = { path = "../relay-clients/client-polkadot" } relay-polkadot-bulletin-client = { path = "../relay-clients/client-polkadot-bulletin" } relay-rococo-client = { path = "../relay-clients/client-rococo" } -relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } relay-westend-client = { path = "../relay-clients/client-westend" } -substrate-relay-helper = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +substrate-relay-helper = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } # Substrate Dependencies -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } [dev-dependencies] -bp-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +bp-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } hex-literal = "0.4" -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } tempfile = "3.10" finality-grandpa = { version = "0.16.2" } diff --git a/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_kusama_messages_to_bridge_hub_polkadot.rs b/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_kusama_messages_to_bridge_hub_polkadot.rs index fc239ca1ed3..d88929ea7c9 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_kusama_messages_to_bridge_hub_polkadot.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_kusama_messages_to_bridge_hub_polkadot.rs @@ -16,6 +16,7 @@ //! BridgeHubKusama-to-BridgeHubPolkadot messages sync entrypoint. +use bp_runtime::RelayerVersion; use relay_bridge_hub_kusama_client::BridgeHubKusama; use relay_bridge_hub_polkadot_client::BridgeHubPolkadot; use substrate_relay_helper::{ @@ -55,6 +56,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubKusamaMessagesToBridgeHubPolkadotMessageLane; impl SubstrateMessageLane for BridgeHubKusamaMessagesToBridgeHubPolkadotMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = BridgeHubKusama; type TargetChain = BridgeHubPolkadot; diff --git a/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_polkadot_messages_to_bridge_hub_kusama.rs b/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_polkadot_messages_to_bridge_hub_kusama.rs index 8d8e5e0c35e..84009a43993 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_polkadot_messages_to_bridge_hub_kusama.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/bridge_hub_polkadot_messages_to_bridge_hub_kusama.rs @@ -16,6 +16,7 @@ //! BridgeHubPolkadot-to-BridgeHubKusama messages sync entrypoint. +use bp_runtime::RelayerVersion; use relay_bridge_hub_kusama_client::BridgeHubKusama; use relay_bridge_hub_polkadot_client::BridgeHubPolkadot; use substrate_relay_helper::{ @@ -55,6 +56,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubPolkadotMessagesToBridgeHubKusamaMessageLane; impl SubstrateMessageLane for BridgeHubPolkadotMessagesToBridgeHubKusamaMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = BridgeHubPolkadot; type TargetChain = BridgeHubKusama; diff --git a/substrate-relay/src/bridges/kusama_polkadot/kusama_headers_to_bridge_hub_polkadot.rs b/substrate-relay/src/bridges/kusama_polkadot/kusama_headers_to_bridge_hub_polkadot.rs index 196a22cd70d..3c9ca30e541 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/kusama_headers_to_bridge_hub_polkadot.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/kusama_headers_to_bridge_hub_polkadot.rs @@ -21,6 +21,7 @@ use substrate_relay_helper::cli::bridge::{ }; use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -55,6 +56,7 @@ impl SubstrateFinalityPipeline for KusamaFinalityToBridgeHubPolkadot { #[async_trait] impl SubstrateFinalitySyncPipeline for KusamaFinalityToBridgeHubPolkadot { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/kusama_polkadot/kusama_parachains_to_bridge_hub_polkadot.rs b/substrate-relay/src/bridges/kusama_polkadot/kusama_parachains_to_bridge_hub_polkadot.rs index b39b9700805..b2b75da7ec9 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/kusama_parachains_to_bridge_hub_polkadot.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/kusama_parachains_to_bridge_hub_polkadot.rs @@ -17,6 +17,7 @@ //! Kusama-to-BridgeHubPolkadot parachains sync entrypoint. use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; +use bp_runtime::RelayerVersion; use relay_substrate_client::{CallOf, HeaderIdOf}; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge, ParachainToRelayHeadersCliBridge}, @@ -28,6 +29,8 @@ use substrate_relay_helper::{ pub struct BridgeHubKusamaToBridgeHubPolkadot; impl SubstrateParachainsPipeline for BridgeHubKusamaToBridgeHubPolkadot { + const RELAYER_VERSION: Option = None; + type SourceParachain = relay_bridge_hub_kusama_client::BridgeHubKusama; type SourceRelayChain = relay_kusama_client::Kusama; type TargetChain = relay_bridge_hub_polkadot_client::BridgeHubPolkadot; diff --git a/substrate-relay/src/bridges/kusama_polkadot/polkadot_headers_to_bridge_hub_kusama.rs b/substrate-relay/src/bridges/kusama_polkadot/polkadot_headers_to_bridge_hub_kusama.rs index d96326a288d..a6926692119 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/polkadot_headers_to_bridge_hub_kusama.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/polkadot_headers_to_bridge_hub_kusama.rs @@ -21,6 +21,7 @@ use substrate_relay_helper::cli::bridge::{ }; use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -55,6 +56,7 @@ impl SubstrateFinalityPipeline for PolkadotFinalityToBridgeHubKusama { #[async_trait] impl SubstrateFinalitySyncPipeline for PolkadotFinalityToBridgeHubKusama { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/kusama_polkadot/polkadot_parachains_to_bridge_hub_kusama.rs b/substrate-relay/src/bridges/kusama_polkadot/polkadot_parachains_to_bridge_hub_kusama.rs index 25ce53cb599..707aa77f952 100644 --- a/substrate-relay/src/bridges/kusama_polkadot/polkadot_parachains_to_bridge_hub_kusama.rs +++ b/substrate-relay/src/bridges/kusama_polkadot/polkadot_parachains_to_bridge_hub_kusama.rs @@ -17,6 +17,7 @@ //! Polkadot-to-BridgeHubKusama parachains sync entrypoint. use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; +use bp_runtime::RelayerVersion; use relay_substrate_client::{CallOf, HeaderIdOf}; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge, ParachainToRelayHeadersCliBridge}, @@ -28,6 +29,8 @@ use substrate_relay_helper::{ pub struct BridgeHubPolkadotToBridgeHubKusama; impl SubstrateParachainsPipeline for BridgeHubPolkadotToBridgeHubKusama { + const RELAYER_VERSION: Option = None; + type SourceParachain = relay_bridge_hub_polkadot_client::BridgeHubPolkadot; type SourceRelayChain = relay_polkadot_client::Polkadot; type TargetChain = relay_bridge_hub_kusama_client::BridgeHubKusama; diff --git a/substrate-relay/src/bridges/polkadot_bulletin/bridge_hub_polkadot_messages_to_polkadot_bulletin.rs b/substrate-relay/src/bridges/polkadot_bulletin/bridge_hub_polkadot_messages_to_polkadot_bulletin.rs index 8114d23296f..f6f9e160044 100644 --- a/substrate-relay/src/bridges/polkadot_bulletin/bridge_hub_polkadot_messages_to_polkadot_bulletin.rs +++ b/substrate-relay/src/bridges/polkadot_bulletin/bridge_hub_polkadot_messages_to_polkadot_bulletin.rs @@ -16,6 +16,7 @@ //! BridgeHubPolkadot-to-PolkadotBulletin messages sync entrypoint. +use bp_runtime::RelayerVersion; use relay_bridge_hub_polkadot_client::BridgeHubPolkadot; use relay_polkadot_bulletin_client::PolkadotBulletin; use substrate_relay_helper::{ @@ -56,6 +57,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubPolkadotMessagesToPolkadotBulletinMessageLane; impl SubstrateMessageLane for BridgeHubPolkadotMessagesToPolkadotBulletinMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = BridgeHubPolkadot; type TargetChain = PolkadotBulletin; diff --git a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_headers_to_bridge_hub_polkadot.rs b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_headers_to_bridge_hub_polkadot.rs index eb63785d3bb..32911a5985e 100644 --- a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_headers_to_bridge_hub_polkadot.rs +++ b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_headers_to_bridge_hub_polkadot.rs @@ -17,6 +17,7 @@ //! PolkadotBulletin-to-BridgeHubPolkadot headers sync entrypoint. use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -57,6 +58,7 @@ impl SubstrateFinalityPipeline for PolkadotBulletinFinalityToBridgeHubPolkadot { #[async_trait] impl SubstrateFinalitySyncPipeline for PolkadotBulletinFinalityToBridgeHubPolkadot { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_messages_to_bridge_hub_polkadot.rs b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_messages_to_bridge_hub_polkadot.rs index 1c04f878810..4feddb78a74 100644 --- a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_messages_to_bridge_hub_polkadot.rs +++ b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_bulletin_messages_to_bridge_hub_polkadot.rs @@ -16,6 +16,7 @@ //! PolkadotBulletin-to-BridgeHubPolkadot messages sync entrypoint. +use bp_runtime::RelayerVersion; use relay_bridge_hub_polkadot_client::BridgeHubPolkadot; use relay_polkadot_bulletin_client::PolkadotBulletin; use substrate_relay_helper::{ @@ -56,6 +57,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct PolkadotBulletinMessagesToBridgeHubPolkadotMessageLane; impl SubstrateMessageLane for PolkadotBulletinMessagesToBridgeHubPolkadotMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = PolkadotBulletin; type TargetChain = BridgeHubPolkadot; diff --git a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_headers_to_polkadot_bulletin.rs b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_headers_to_polkadot_bulletin.rs index 7996d1613c8..473d5cdff00 100644 --- a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_headers_to_polkadot_bulletin.rs +++ b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_headers_to_polkadot_bulletin.rs @@ -17,6 +17,7 @@ //! Polkadot-to-PolkadotBulletin headers sync entrypoint. use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -55,6 +56,7 @@ impl SubstrateFinalityPipeline for PolkadotFinalityToPolkadotBulletin { #[async_trait] impl SubstrateFinalitySyncPipeline for PolkadotFinalityToPolkadotBulletin { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_parachains_to_polkadot_bulletin.rs b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_parachains_to_polkadot_bulletin.rs index 0bfce11ba71..330012b6aaa 100644 --- a/substrate-relay/src/bridges/polkadot_bulletin/polkadot_parachains_to_polkadot_bulletin.rs +++ b/substrate-relay/src/bridges/polkadot_bulletin/polkadot_parachains_to_polkadot_bulletin.rs @@ -21,7 +21,7 @@ use substrate_relay_helper::cli::bridge::{ }; use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; -use bp_runtime::Chain; +use bp_runtime::{Chain, RelayerVersion}; use relay_substrate_client::{CallOf, HeaderIdOf}; use substrate_relay_helper::{ messages_lane::MessagesRelayLimits, @@ -33,6 +33,8 @@ use substrate_relay_helper::{ pub struct PolkadotToPolkadotBulletin; impl SubstrateParachainsPipeline for PolkadotToPolkadotBulletin { + const RELAYER_VERSION: Option = None; + type SourceParachain = relay_bridge_hub_polkadot_client::BridgeHubPolkadot; type SourceRelayChain = relay_polkadot_client::Polkadot; type TargetChain = relay_polkadot_bulletin_client::PolkadotBulletin; diff --git a/substrate-relay/src/bridges/rococo_bulletin/bridge_hub_rococo_messages_to_rococo_bulletin.rs b/substrate-relay/src/bridges/rococo_bulletin/bridge_hub_rococo_messages_to_rococo_bulletin.rs index b8e95556bff..ee693cb5306 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/bridge_hub_rococo_messages_to_rococo_bulletin.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/bridge_hub_rococo_messages_to_rococo_bulletin.rs @@ -17,6 +17,7 @@ //! BridgeHubRococo-to-RococoBulletin messages sync entrypoint. use super::BridgeHubRococoAsBridgeHubPolkadot; +use bp_runtime::RelayerVersion; use relay_polkadot_bulletin_client::PolkadotBulletin as RococoBulletin; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge}, @@ -55,6 +56,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubRococoMessagesToRococoBulletinMessageLane; impl SubstrateMessageLane for BridgeHubRococoMessagesToRococoBulletinMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = BridgeHubRococoAsBridgeHubPolkadot; type TargetChain = RococoBulletin; diff --git a/substrate-relay/src/bridges/rococo_bulletin/mod.rs b/substrate-relay/src/bridges/rococo_bulletin/mod.rs index 2812651ea6d..a1c11a189f1 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/mod.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/mod.rs @@ -82,6 +82,8 @@ impl relay_substrate_client::Chain for RococoAsPolkadot { const NAME: &'static str = relay_rococo_client::Rococo::NAME; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = relay_polkadot_client::Polkadot::BEST_FINALIZED_HEADER_ID_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + relay_polkadot_client::Polkadot::WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD; const AVERAGE_BLOCK_INTERVAL: Duration = relay_rococo_client::Rococo::AVERAGE_BLOCK_INTERVAL; type SignedBlock = ::SignedBlock; @@ -181,6 +183,8 @@ impl relay_substrate_client::Chain for BridgeHubRococoAsBridgeHubPolkadot { const NAME: &'static str = relay_bridge_hub_rococo_client::BridgeHubRococo::NAME; const BEST_FINALIZED_HEADER_ID_METHOD: &'static str = relay_bridge_hub_polkadot_client::BridgeHubPolkadot::BEST_FINALIZED_HEADER_ID_METHOD; + const WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD: &'static str = + relay_bridge_hub_rococo_client::BridgeHubRococo::WITH_CHAIN_COMPATIBLE_FINALITY_RELAYER_VERSION_METHOD; const AVERAGE_BLOCK_INTERVAL: Duration = relay_bridge_hub_rococo_client::BridgeHubRococo::AVERAGE_BLOCK_INTERVAL; @@ -225,6 +229,8 @@ impl relay_substrate_client::ChainWithMessages for BridgeHubRococoAsBridgeHubPol const WITH_CHAIN_RELAYERS_PALLET_NAME: Option<&'static str> = relay_bridge_hub_polkadot_client::BridgeHubPolkadot::WITH_CHAIN_RELAYERS_PALLET_NAME; + const WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD: &'static str = + relay_bridge_hub_polkadot_client::BridgeHubPolkadot::WITH_CHAIN_COMPATIBLE_MESSAGES_RELAYER_VERSION_METHOD; const TO_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = relay_bridge_hub_polkadot_client::BridgeHubPolkadot::TO_CHAIN_MESSAGE_DETAILS_METHOD; const FROM_CHAIN_MESSAGE_DETAILS_METHOD: &'static str = diff --git a/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_headers_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_headers_to_bridge_hub_rococo.rs index 0d54fd21018..598eef41ef1 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_headers_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_headers_to_bridge_hub_rococo.rs @@ -19,6 +19,7 @@ use super::BridgeHubRococoAsBridgeHubPolkadot; use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -58,6 +59,7 @@ impl SubstrateFinalityPipeline for RococoBulletinFinalityToBridgeHubRococo { #[async_trait] impl SubstrateFinalitySyncPipeline for RococoBulletinFinalityToBridgeHubRococo { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_messages_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_messages_to_bridge_hub_rococo.rs index d192ec0381e..4b007175f49 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_messages_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/rococo_bulletin_messages_to_bridge_hub_rococo.rs @@ -17,6 +17,7 @@ //! RococoBulletin-to-BridgeHubRococo messages sync entrypoint. use super::BridgeHubRococoAsBridgeHubPolkadot; +use bp_runtime::RelayerVersion; use relay_polkadot_bulletin_client::PolkadotBulletin as RococoBulletin; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge}, @@ -55,6 +56,9 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct RococoBulletinMessagesToBridgeHubRococoMessageLane; impl SubstrateMessageLane for RococoBulletinMessagesToBridgeHubRococoMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = None; + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = None; + type SourceChain = RococoBulletin; type TargetChain = BridgeHubRococoAsBridgeHubPolkadot; diff --git a/substrate-relay/src/bridges/rococo_bulletin/rococo_headers_to_rococo_bulletin.rs b/substrate-relay/src/bridges/rococo_bulletin/rococo_headers_to_rococo_bulletin.rs index 45c890267ff..c83ac404021 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/rococo_headers_to_rococo_bulletin.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/rococo_headers_to_rococo_bulletin.rs @@ -19,6 +19,7 @@ use super::RococoAsPolkadot; use async_trait::async_trait; +use bp_runtime::RelayerVersion; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -57,6 +58,7 @@ impl SubstrateFinalityPipeline for RococoFinalityToRococoBulletin { #[async_trait] impl SubstrateFinalitySyncPipeline for RococoFinalityToRococoBulletin { + const RELAYER_VERSION: Option = None; type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_bulletin/rococo_parachains_to_rococo_bulletin.rs b/substrate-relay/src/bridges/rococo_bulletin/rococo_parachains_to_rococo_bulletin.rs index d14a133d23c..82b944ec747 100644 --- a/substrate-relay/src/bridges/rococo_bulletin/rococo_parachains_to_rococo_bulletin.rs +++ b/substrate-relay/src/bridges/rococo_bulletin/rococo_parachains_to_rococo_bulletin.rs @@ -19,7 +19,7 @@ use super::{BridgeHubRococoAsBridgeHubPolkadot, RococoAsPolkadot}; use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; -use bp_runtime::Chain; +use bp_runtime::{Chain, RelayerVersion}; use relay_substrate_client::{CallOf, HeaderIdOf}; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge, ParachainToRelayHeadersCliBridge}, @@ -32,6 +32,8 @@ use substrate_relay_helper::{ pub struct RococoToRococoBulletin; impl SubstrateParachainsPipeline for RococoToRococoBulletin { + const RELAYER_VERSION: Option = None; + type SourceParachain = BridgeHubRococoAsBridgeHubPolkadot; type SourceRelayChain = RococoAsPolkadot; type TargetChain = relay_polkadot_bulletin_client::PolkadotBulletin; diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs index ec6b07d982a..6ef5db69766 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs @@ -16,8 +16,11 @@ //! BridgeHubRococo-to-BridgeHubWestend messages sync entrypoint. +use bp_runtime::RelayerVersion; +use hex_literal::hex; use relay_bridge_hub_rococo_client::BridgeHubRococo; use relay_bridge_hub_westend_client::BridgeHubWestend; +use sp_core::H256; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge}, messages_lane::SubstrateMessageLane, @@ -54,6 +57,15 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubRococoMessagesToBridgeHubWestendMessageLane; impl SubstrateMessageLane for BridgeHubRococoMessagesToBridgeHubWestendMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + type SourceChain = BridgeHubRococo; type TargetChain = BridgeHubWestend; diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs index 4e978cd8356..e9aea0b9dc0 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs @@ -16,8 +16,11 @@ //! BridgeHubWestend-to-BridgeHubRococo messages sync entrypoint. +use bp_runtime::RelayerVersion; +use hex_literal::hex; use relay_bridge_hub_rococo_client::BridgeHubRococo; use relay_bridge_hub_westend_client::BridgeHubWestend; +use sp_core::H256; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge}, messages_lane::SubstrateMessageLane, @@ -54,6 +57,15 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubWestendMessagesToBridgeHubRococoMessageLane; impl SubstrateMessageLane for BridgeHubWestendMessagesToBridgeHubRococoMessageLane { + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + type SourceChain = BridgeHubWestend; type TargetChain = BridgeHubRococo; diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs index bf30a87bf2d..54a87d604fe 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs @@ -17,6 +17,9 @@ //! Rococo-to-Westend bridge hubs headers sync entrypoint. use async_trait::async_trait; +use bp_runtime::RelayerVersion; +use hex_literal::hex; +use sp_core::H256; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -55,6 +58,10 @@ impl SubstrateFinalityPipeline for RococoFinalityToBridgeHubWestend { #[async_trait] impl SubstrateFinalitySyncPipeline for RococoFinalityToBridgeHubWestend { + const RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs index 31de8c4d1d1..03bd033e00b 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs @@ -17,7 +17,10 @@ //! Westend-to-Rococo parachains sync entrypoint. use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; +use bp_runtime::RelayerVersion; +use hex_literal::hex; use relay_substrate_client::{CallOf, HeaderIdOf}; +use sp_core::H256; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge, ParachainToRelayHeadersCliBridge}, parachains::{SubmitParachainHeadsCallBuilder, SubstrateParachainsPipeline}, @@ -28,6 +31,11 @@ use substrate_relay_helper::{ pub struct BridgeHubRococoToBridgeHubWestend; impl SubstrateParachainsPipeline for BridgeHubRococoToBridgeHubWestend { + const RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + type SourceParachain = relay_bridge_hub_rococo_client::BridgeHubRococo; type SourceRelayChain = relay_rococo_client::Rococo; type TargetChain = relay_bridge_hub_westend_client::BridgeHubWestend; diff --git a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs index 4a1419f06dc..392366f8c90 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs @@ -17,6 +17,9 @@ //! Westend-to-Rococo bridge hubs headers sync entrypoint. use async_trait::async_trait; +use bp_runtime::RelayerVersion; +use hex_literal::hex; +use sp_core::H256; use substrate_relay_helper::{ equivocation::SubstrateEquivocationDetectionPipeline, finality::SubstrateFinalitySyncPipeline, @@ -55,6 +58,10 @@ impl SubstrateFinalityPipeline for WestendFinalityToBridgeHubRococo { #[async_trait] impl SubstrateFinalitySyncPipeline for WestendFinalityToBridgeHubRococo { + const RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs index fc6f6532836..9bf04936dc3 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs @@ -17,7 +17,10 @@ //! Rococo-to-Westend parachains sync entrypoint. use bp_polkadot_core::parachains::{ParaHash, ParaHeadsProof, ParaId}; +use bp_runtime::RelayerVersion; +use hex_literal::hex; use relay_substrate_client::{CallOf, HeaderIdOf}; +use sp_core::H256; use substrate_relay_helper::{ cli::bridge::{CliBridgeBase, MessagesCliBridge, ParachainToRelayHeadersCliBridge}, parachains::{SubmitParachainHeadsCallBuilder, SubstrateParachainsPipeline}, @@ -28,6 +31,11 @@ use substrate_relay_helper::{ pub struct BridgeHubWestendToBridgeHubRococo; impl SubstrateParachainsPipeline for BridgeHubWestendToBridgeHubRococo { + const RELAYER_VERSION: Option = Some(RelayerVersion { + manual: 0, + auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + }); + type SourceParachain = relay_bridge_hub_westend_client::BridgeHubWestend; type SourceRelayChain = relay_westend_client::Westend; type TargetChain = relay_bridge_hub_rococo_client::BridgeHubRococo; From c74c30d4fa6425e1038a0efdaef5b437c86b8570 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 23 Apr 2024 09:56:27 +0300 Subject: [PATCH 2/5] fix release compilation --- substrate-relay/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate-relay/Cargo.toml b/substrate-relay/Cargo.toml index f9bba87872f..03c33ae3c7d 100644 --- a/substrate-relay/Cargo.toml +++ b/substrate-relay/Cargo.toml @@ -17,6 +17,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1" } env_logger = "0.11" futures = "0.3.30" hex = "0.4" +hex-literal = "0.4" log = { workspace = true } num-format = "0.4" num-traits = "0.2" @@ -61,7 +62,6 @@ sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv- [dev-dependencies] bp-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } -hex-literal = "0.4" sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-bridge-relayer-compatibility-tests" } tempfile = "3.10" finality-grandpa = { version = "0.16.2" } From 5ee8b62391cf10a87536f8261c57d6d4ff97e5da Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 23 Apr 2024 11:28:31 +0300 Subject: [PATCH 3/5] update refs --- Cargo.lock | 224 ++++++++++++++++++++++++++--------------------------- 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb4db26e6b2..8bd4e3df429 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-cumulus" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -1132,7 +1132,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-kusama" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1146,7 +1146,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-polkadot" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-rococo" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "bp-kusama" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1263,7 +1263,7 @@ dependencies = [ [[package]] name = "bp-polkadot-bulletin" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-messages", @@ -1281,7 +1281,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-messages", "bp-runtime", @@ -1299,7 +1299,7 @@ dependencies = [ [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-messages", "bp-runtime", @@ -1313,7 +1313,7 @@ dependencies = [ [[package]] name = "bp-rococo" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-system", @@ -1349,7 +1349,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1369,7 +1369,7 @@ dependencies = [ [[package]] name = "bp-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1382,7 +1382,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-messages", @@ -2595,7 +2595,7 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "equivocation-detector" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-std", "async-trait", @@ -2786,7 +2786,7 @@ dependencies = [ [[package]] name = "finality-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-std", "async-trait", @@ -2875,7 +2875,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-support-procedural", @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "aquamarine", "array-bytes 6.2.2", @@ -2964,7 +2964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "Inflector", "cfg-expr", @@ -2983,7 +2983,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "cfg-if", "docify", @@ -4860,7 +4860,7 @@ dependencies = [ [[package]] name = "messages-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-std", "async-trait", @@ -5424,7 +5424,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "docify", "frame-benchmarking", @@ -5454,7 +5454,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5475,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-messages", "bp-runtime", @@ -5493,7 +5493,7 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-header-chain", "bp-parachains", @@ -5514,7 +5514,7 @@ dependencies = [ [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bp-messages", "bp-relayers", @@ -5534,7 +5534,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-benchmarking", "frame-support", @@ -5557,7 +5557,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-system", @@ -5579,7 +5579,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "docify", "frame-benchmarking", @@ -5599,7 +5599,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-system", @@ -5615,7 +5615,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5627,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-benchmarking", "frame-support", @@ -5643,7 +5643,7 @@ dependencies = [ [[package]] name = "parachains-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-std", "async-trait", @@ -5921,7 +5921,7 @@ checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -5933,7 +5933,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bounded-collections", "derive_more", @@ -5950,7 +5950,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bitvec", "hex-literal", @@ -6874,7 +6874,7 @@ dependencies = [ [[package]] name = "relay-substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-std", "async-trait", @@ -6916,7 +6916,7 @@ dependencies = [ [[package]] name = "relay-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "ansi_term", "anyhow", @@ -7296,7 +7296,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "log", "sp-core", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "array-bytes 6.2.2", "docify", @@ -7334,7 +7334,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2 1.0.81", @@ -7345,7 +7345,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "fnv", "futures", @@ -7372,7 +7372,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "futures", @@ -7397,7 +7397,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -7420,7 +7420,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "polkavm", "sc-allocator", @@ -7433,7 +7433,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "log", "polkavm", @@ -7444,7 +7444,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "anyhow", "cfg-if", @@ -7462,7 +7462,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -7491,7 +7491,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -7560,7 +7560,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bs58 0.4.0", "libp2p-identity", @@ -7574,7 +7574,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7594,7 +7594,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "chrono", "futures", @@ -7614,7 +7614,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "futures", @@ -7630,7 +7630,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-channel 1.9.0", "futures", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "hash-db", "log", @@ -8368,7 +8368,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "Inflector", "blake2 0.10.6", @@ -8382,7 +8382,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8395,7 +8395,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "docify", "integer-sqrt", @@ -8428,7 +8428,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8440,7 +8440,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "futures", "log", @@ -8458,7 +8458,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "futures", @@ -8473,7 +8473,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "finality-grandpa", "log", @@ -8490,7 +8490,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "array-bytes 6.2.2", "bandersnatch_vrfs", @@ -8582,7 +8582,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "blake2b_simd", "byteorder", @@ -8595,7 +8595,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "quote 1.0.36", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", @@ -8605,7 +8605,7 @@ dependencies = [ [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -8614,7 +8614,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -8634,7 +8634,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "environmental", "parity-scale-codec", @@ -8654,7 +8654,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8666,7 +8666,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -8679,7 +8679,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bytes", "ed25519-dalek 2.1.1", @@ -8705,7 +8705,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "sp-core", "sp-runtime", @@ -8715,7 +8715,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -8726,7 +8726,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "thiserror", "zstd 0.12.4", @@ -8735,7 +8735,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -8745,7 +8745,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8756,7 +8756,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "backtrace", "lazy_static", @@ -8766,7 +8766,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "rustc-hash", "serde", @@ -8776,7 +8776,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "docify", "either", @@ -8800,7 +8800,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -8838,7 +8838,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "Inflector", "expander", @@ -8864,7 +8864,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "scale-info", @@ -8878,7 +8878,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8891,7 +8891,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "hash-db", "log", @@ -8911,7 +8911,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", @@ -8935,7 +8935,7 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" [[package]] name = "sp-std" @@ -8945,7 +8945,7 @@ source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8969,7 +8969,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "async-trait", "parity-scale-codec", @@ -8981,7 +8981,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "tracing", @@ -9003,7 +9003,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "ahash 0.8.11", "hash-db", @@ -9026,7 +9026,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9043,7 +9043,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "parity-scale-codec", "proc-macro2 1.0.81", @@ -9054,7 +9054,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -9076,7 +9076,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -9133,7 +9133,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "array-bytes 6.2.2", "bounded-collections", @@ -9151,7 +9151,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "frame-support", "frame-system", @@ -9173,7 +9173,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "environmental", "frame-benchmarking", @@ -9278,7 +9278,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "hyper", "log", @@ -9356,7 +9356,7 @@ dependencies = [ [[package]] name = "substrate-relay-helper" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "anyhow", "async-std", @@ -11137,7 +11137,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#2f3569dbb1b025f1bdb5c836a6539f515900ca18" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" dependencies = [ "Inflector", "proc-macro2 1.0.81", From c562a92d72d22cc215b11dd5ff22d361de9c4782 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 23 Apr 2024 13:41:44 +0300 Subject: [PATCH 4/5] update relayer versions and polkadot-sdk commit --- Cargo.lock | 224 +++++++++--------- ...b_rococo_messages_to_bridge_hub_westend.rs | 4 +- ...b_westend_messages_to_bridge_hub_rococo.rs | 4 +- .../rococo_headers_to_bridge_hub_westend.rs | 2 +- ...rococo_parachains_to_bridge_hub_westend.rs | 2 +- .../westend_headers_to_bridge_hub_rococo.rs | 2 +- ...westend_parachains_to_bridge_hub_rococo.rs | 2 +- 7 files changed, 120 insertions(+), 120 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8bd4e3df429..2d899427c60 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-cumulus" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -1132,7 +1132,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-kusama" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1146,7 +1146,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-polkadot" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-rococo" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "bp-kusama" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1263,7 +1263,7 @@ dependencies = [ [[package]] name = "bp-polkadot-bulletin" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-messages", @@ -1281,7 +1281,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-messages", "bp-runtime", @@ -1299,7 +1299,7 @@ dependencies = [ [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-messages", "bp-runtime", @@ -1313,7 +1313,7 @@ dependencies = [ [[package]] name = "bp-rococo" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-system", @@ -1349,7 +1349,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1369,7 +1369,7 @@ dependencies = [ [[package]] name = "bp-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1382,7 +1382,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-messages", @@ -2595,7 +2595,7 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "equivocation-detector" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-std", "async-trait", @@ -2786,7 +2786,7 @@ dependencies = [ [[package]] name = "finality-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-std", "async-trait", @@ -2875,7 +2875,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-support-procedural", @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "aquamarine", "array-bytes 6.2.2", @@ -2964,7 +2964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "Inflector", "cfg-expr", @@ -2983,7 +2983,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "cfg-if", "docify", @@ -4860,7 +4860,7 @@ dependencies = [ [[package]] name = "messages-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-std", "async-trait", @@ -5424,7 +5424,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5438,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "docify", "frame-benchmarking", @@ -5454,7 +5454,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5475,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-messages", "bp-runtime", @@ -5493,7 +5493,7 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-header-chain", "bp-parachains", @@ -5514,7 +5514,7 @@ dependencies = [ [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bp-messages", "bp-relayers", @@ -5534,7 +5534,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-benchmarking", "frame-support", @@ -5557,7 +5557,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-system", @@ -5579,7 +5579,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "docify", "frame-benchmarking", @@ -5599,7 +5599,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-system", @@ -5615,7 +5615,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5627,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-benchmarking", "frame-support", @@ -5643,7 +5643,7 @@ dependencies = [ [[package]] name = "parachains-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-std", "async-trait", @@ -5921,7 +5921,7 @@ checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -5933,7 +5933,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bounded-collections", "derive_more", @@ -5950,7 +5950,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bitvec", "hex-literal", @@ -6874,7 +6874,7 @@ dependencies = [ [[package]] name = "relay-substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-std", "async-trait", @@ -6916,7 +6916,7 @@ dependencies = [ [[package]] name = "relay-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "ansi_term", "anyhow", @@ -7296,7 +7296,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "log", "sp-core", @@ -7307,7 +7307,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "array-bytes 6.2.2", "docify", @@ -7334,7 +7334,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2 1.0.81", @@ -7345,7 +7345,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "fnv", "futures", @@ -7372,7 +7372,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "futures", @@ -7397,7 +7397,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -7420,7 +7420,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "polkavm", "sc-allocator", @@ -7433,7 +7433,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "log", "polkavm", @@ -7444,7 +7444,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "anyhow", "cfg-if", @@ -7462,7 +7462,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -7491,7 +7491,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -7560,7 +7560,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bs58 0.4.0", "libp2p-identity", @@ -7574,7 +7574,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7594,7 +7594,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "chrono", "futures", @@ -7614,7 +7614,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "futures", @@ -7630,7 +7630,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-channel 1.9.0", "futures", @@ -8346,7 +8346,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "hash-db", "log", @@ -8368,7 +8368,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "Inflector", "blake2 0.10.6", @@ -8382,7 +8382,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8395,7 +8395,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "docify", "integer-sqrt", @@ -8428,7 +8428,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8440,7 +8440,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "futures", "log", @@ -8458,7 +8458,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "futures", @@ -8473,7 +8473,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "finality-grandpa", "log", @@ -8490,7 +8490,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8501,7 +8501,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "array-bytes 6.2.2", "bandersnatch_vrfs", @@ -8582,7 +8582,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "blake2b_simd", "byteorder", @@ -8595,7 +8595,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "quote 1.0.36", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", @@ -8605,7 +8605,7 @@ dependencies = [ [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -8614,7 +8614,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -8634,7 +8634,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "environmental", "parity-scale-codec", @@ -8654,7 +8654,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8666,7 +8666,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -8679,7 +8679,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bytes", "ed25519-dalek 2.1.1", @@ -8705,7 +8705,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "sp-core", "sp-runtime", @@ -8715,7 +8715,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -8726,7 +8726,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "thiserror", "zstd 0.12.4", @@ -8735,7 +8735,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -8745,7 +8745,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8756,7 +8756,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "backtrace", "lazy_static", @@ -8766,7 +8766,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "rustc-hash", "serde", @@ -8776,7 +8776,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "docify", "either", @@ -8800,7 +8800,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -8838,7 +8838,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "Inflector", "expander", @@ -8864,7 +8864,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "scale-info", @@ -8878,7 +8878,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8891,7 +8891,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "hash-db", "log", @@ -8911,7 +8911,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", @@ -8935,7 +8935,7 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" [[package]] name = "sp-std" @@ -8945,7 +8945,7 @@ source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8969,7 +8969,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "async-trait", "parity-scale-codec", @@ -8981,7 +8981,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "tracing", @@ -9003,7 +9003,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "ahash 0.8.11", "hash-db", @@ -9026,7 +9026,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9043,7 +9043,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "parity-scale-codec", "proc-macro2 1.0.81", @@ -9054,7 +9054,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -9076,7 +9076,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -9133,7 +9133,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "array-bytes 6.2.2", "bounded-collections", @@ -9151,7 +9151,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "frame-support", "frame-system", @@ -9173,7 +9173,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "environmental", "frame-benchmarking", @@ -9278,7 +9278,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -9290,7 +9290,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "hyper", "log", @@ -9356,7 +9356,7 @@ dependencies = [ [[package]] name = "substrate-relay-helper" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "anyhow", "async-std", @@ -11137,7 +11137,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#f16296ddd8bbdbbb8208af44e0d85195b6b60044" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" dependencies = [ "Inflector", "proc-macro2 1.0.81", diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs index 6ef5db69766..0927d0e585f 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs @@ -59,11 +59,11 @@ pub struct BridgeHubRococoMessagesToBridgeHubWestendMessageLane; impl SubstrateMessageLane for BridgeHubRococoMessagesToBridgeHubWestendMessageLane { const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("ec797ce348d5ce03001b3000f16b7623b0f6b654e441caf8289608e476223969")), }); const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("815e02321b71bf951f7054f78929c11be5b9056ffc954980d94931b4522a7f02")), }); type SourceChain = BridgeHubRococo; diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs index e9aea0b9dc0..ec1aea23cfa 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs @@ -59,11 +59,11 @@ pub struct BridgeHubWestendMessagesToBridgeHubRococoMessageLane; impl SubstrateMessageLane for BridgeHubWestendMessagesToBridgeHubRococoMessageLane { const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("815e02321b71bf951f7054f78929c11be5b9056ffc954980d94931b4522a7f02")), }); const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("ec797ce348d5ce03001b3000f16b7623b0f6b654e441caf8289608e476223969")), }); type SourceChain = BridgeHubWestend; diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs index 54a87d604fe..1704cdd7ea4 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs @@ -60,7 +60,7 @@ impl SubstrateFinalityPipeline for RococoFinalityToBridgeHubWestend { impl SubstrateFinalitySyncPipeline for RococoFinalityToBridgeHubWestend { const RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("8ef000d4f0184c4751b9462471473368c4b4bdcf1f376264b254e2acf8f705c8")), }); type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs index 03bd033e00b..08fc8d8135a 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs @@ -33,7 +33,7 @@ pub struct BridgeHubRococoToBridgeHubWestend; impl SubstrateParachainsPipeline for BridgeHubRococoToBridgeHubWestend { const RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("938c8cddccea01a54fb58e8b949f501998f31c5d4edea176722c706b032e1ddd")), }); type SourceParachain = relay_bridge_hub_rococo_client::BridgeHubRococo; diff --git a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs index 392366f8c90..08ad08aece4 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs @@ -60,7 +60,7 @@ impl SubstrateFinalityPipeline for WestendFinalityToBridgeHubRococo { impl SubstrateFinalitySyncPipeline for WestendFinalityToBridgeHubRococo { const RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("f3b72b260a9262b1a9cc09c87ece99e305cdb8e6d1e052eaba9eec2f4cf368a1")), }); type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs index 9bf04936dc3..85f27330507 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs @@ -33,7 +33,7 @@ pub struct BridgeHubWestendToBridgeHubRococo; impl SubstrateParachainsPipeline for BridgeHubWestendToBridgeHubRococo { const RELAYER_VERSION: Option = Some(RelayerVersion { manual: 0, - auto: H256(hex!("0000000000000000000000000000000000000000000000000000000000000000")), + auto: H256(hex!("53c49a5c17f529842eb2f2a85053415ff77be4331c90e0a6f26594686fdfb6ce")), }); type SourceParachain = relay_bridge_hub_westend_client::BridgeHubWestend; From 5ece51c96bdc6a502e0e02a2ccda2391da12a636 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Fri, 3 May 2024 09:49:13 +0300 Subject: [PATCH 5/5] update polkadot-sdk refs --- Cargo.lock | 278 ++++++++++-------- ...b_rococo_messages_to_bridge_hub_westend.rs | 10 +- ...b_westend_messages_to_bridge_hub_rococo.rs | 10 +- .../rococo_headers_to_bridge_hub_westend.rs | 6 +- ...rococo_parachains_to_bridge_hub_westend.rs | 5 +- .../westend_headers_to_bridge_hub_rococo.rs | 6 +- ...westend_parachains_to_bridge_hub_rococo.rs | 5 +- 7 files changed, 166 insertions(+), 154 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d899427c60..567c8b164eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1117,7 +1117,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-cumulus" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -1132,7 +1132,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-kusama" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1146,7 +1146,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-polkadot" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-rococo" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "bp-bridge-hub-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "bp-kusama" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1263,7 +1263,7 @@ dependencies = [ [[package]] name = "bp-polkadot-bulletin" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-messages", @@ -1281,7 +1281,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-messages", "bp-runtime", @@ -1299,7 +1299,7 @@ dependencies = [ [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-messages", "bp-runtime", @@ -1313,7 +1313,7 @@ dependencies = [ [[package]] name = "bp-rococo" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-system", @@ -1349,7 +1349,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1369,7 +1369,7 @@ dependencies = [ [[package]] name = "bp-westend" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1382,7 +1382,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", ] @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -1401,7 +1401,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-messages", @@ -1412,6 +1412,8 @@ dependencies = [ "bp-test-utils", "bp-xcm-bridge-hub", "bp-xcm-bridge-hub-router", + "const-fnv1a-hash", + "const_format", "frame-support", "frame-system", "hash-db", @@ -1423,7 +1425,6 @@ dependencies = [ "pallet-transaction-payment", "pallet-utility", "parity-scale-codec", - "paste", "scale-info", "sp-api", "sp-core", @@ -1433,6 +1434,7 @@ dependencies = [ "sp-trie", "staging-xcm", "staging-xcm-builder", + "tuplex", ] [[package]] @@ -1683,6 +1685,12 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "const-fnv1a-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32b13ea120a812beba79e34316b3942a857c86ec1593cb34f27bb28272ce2cca" + [[package]] name = "const-oid" version = "0.9.6" @@ -1709,6 +1717,26 @@ dependencies = [ "tiny-keccak", ] +[[package]] +name = "const_format" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673" +dependencies = [ + "const_format_proc_macros", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500" +dependencies = [ + "proc-macro2 1.0.81", + "quote 1.0.36", + "unicode-xid 0.2.4", +] + [[package]] name = "constant_time_eq" version = "0.1.5" @@ -2595,7 +2623,7 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "equivocation-detector" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-std", "async-trait", @@ -2786,7 +2814,7 @@ dependencies = [ [[package]] name = "finality-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-std", "async-trait", @@ -2875,7 +2903,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-support-procedural", @@ -2923,7 +2951,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "aquamarine", "array-bytes 6.2.2", @@ -2964,7 +2992,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "Inflector", "cfg-expr", @@ -2983,7 +3011,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.1.0", @@ -2995,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -3005,7 +3033,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "cfg-if", "docify", @@ -4860,7 +4888,7 @@ dependencies = [ [[package]] name = "messages-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-std", "async-trait", @@ -5424,7 +5452,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5466,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "docify", "frame-benchmarking", @@ -5454,7 +5482,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5475,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-messages", "bp-runtime", @@ -5493,7 +5521,7 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-header-chain", "bp-parachains", @@ -5514,7 +5542,7 @@ dependencies = [ [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bp-messages", "bp-relayers", @@ -5534,7 +5562,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-benchmarking", "frame-support", @@ -5557,7 +5585,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-system", @@ -5579,7 +5607,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "docify", "frame-benchmarking", @@ -5599,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-system", @@ -5615,7 +5643,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5627,7 +5655,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-benchmarking", "frame-support", @@ -5643,7 +5671,7 @@ dependencies = [ [[package]] name = "parachains-relay" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-std", "async-trait", @@ -5921,7 +5949,7 @@ checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -5933,7 +5961,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bounded-collections", "derive_more", @@ -5950,7 +5978,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bitvec", "hex-literal", @@ -6874,7 +6902,7 @@ dependencies = [ [[package]] name = "relay-substrate-client" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-std", "async-trait", @@ -6916,7 +6944,7 @@ dependencies = [ [[package]] name = "relay-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "ansi_term", "anyhow", @@ -7296,7 +7324,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "log", "sp-core", @@ -7307,7 +7335,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "array-bytes 6.2.2", "docify", @@ -7334,7 +7362,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2 1.0.81", @@ -7345,7 +7373,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "fnv", "futures", @@ -7372,7 +7400,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "futures", @@ -7397,7 +7425,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -7420,7 +7448,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "polkavm", "sc-allocator", @@ -7433,7 +7461,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "log", "polkavm", @@ -7444,7 +7472,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "anyhow", "cfg-if", @@ -7462,7 +7490,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "array-bytes 4.2.0", "arrayvec 0.7.4", @@ -7491,7 +7519,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "array-bytes 6.2.2", "async-channel 1.9.0", @@ -7542,7 +7570,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -7560,7 +7588,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bs58 0.4.0", "libp2p-identity", @@ -7574,7 +7602,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7594,7 +7622,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "chrono", "futures", @@ -7614,7 +7642,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "futures", @@ -7630,7 +7658,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-channel 1.9.0", "futures", @@ -8346,7 +8374,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "hash-db", "log", @@ -8368,7 +8396,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "Inflector", "blake2 0.10.6", @@ -8382,7 +8410,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8395,7 +8423,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "docify", "integer-sqrt", @@ -8428,7 +8456,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8440,7 +8468,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "futures", "log", @@ -8458,7 +8486,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "futures", @@ -8473,7 +8501,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "finality-grandpa", "log", @@ -8490,7 +8518,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8501,7 +8529,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "array-bytes 6.2.2", "bandersnatch_vrfs", @@ -8548,7 +8576,7 @@ dependencies = [ [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -8582,7 +8610,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "blake2b_simd", "byteorder", @@ -8595,7 +8623,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "quote 1.0.36", "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests)", @@ -8605,7 +8633,7 @@ dependencies = [ [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -8614,7 +8642,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -8624,7 +8652,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "proc-macro2 1.0.81", "quote 1.0.36", @@ -8634,7 +8662,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "environmental", "parity-scale-codec", @@ -8644,7 +8672,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "environmental", "parity-scale-codec", @@ -8654,7 +8682,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8666,7 +8694,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -8679,7 +8707,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bytes", "ed25519-dalek 2.1.1", @@ -8705,7 +8733,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "sp-core", "sp-runtime", @@ -8715,7 +8743,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -8726,7 +8754,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "thiserror", "zstd 0.12.4", @@ -8735,7 +8763,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -8745,7 +8773,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8756,7 +8784,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "backtrace", "lazy_static", @@ -8766,7 +8794,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "rustc-hash", "serde", @@ -8776,7 +8804,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "docify", "either", @@ -8800,7 +8828,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -8819,7 +8847,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -8838,7 +8866,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "Inflector", "expander", @@ -8851,7 +8879,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "Inflector", "expander", @@ -8864,7 +8892,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "scale-info", @@ -8878,7 +8906,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8891,7 +8919,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "hash-db", "log", @@ -8911,7 +8939,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", @@ -8935,17 +8963,17 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8957,7 +8985,7 @@ dependencies = [ [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -8969,7 +8997,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "async-trait", "parity-scale-codec", @@ -8981,7 +9009,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "tracing", @@ -8992,7 +9020,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "parity-scale-codec", "tracing", @@ -9003,7 +9031,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "ahash 0.8.11", "hash-db", @@ -9026,7 +9054,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9043,7 +9071,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "parity-scale-codec", "proc-macro2 1.0.81", @@ -9054,7 +9082,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -9066,7 +9094,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#4eabe5e0dddc4cd31ad9dab5645350360d4d36a5" +source = "git+https://github.com/paritytech/polkadot-sdk#a9aeabe923dae63ab76ab290951cb9183c51f59c" dependencies = [ "impl-trait-for-tuples", "log", @@ -9076,7 +9104,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -9133,7 +9161,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "array-bytes 6.2.2", "bounded-collections", @@ -9151,7 +9179,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "frame-support", "frame-system", @@ -9173,7 +9201,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "environmental", "frame-benchmarking", @@ -9278,7 +9306,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -9290,7 +9318,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "hyper", "log", @@ -9356,7 +9384,7 @@ dependencies = [ [[package]] name = "substrate-relay-helper" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "anyhow", "async-std", @@ -10128,6 +10156,12 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tuplex" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "676ac81d5454c4dcf37955d34fa8626ede3490f744b86ca14a7b90168d2a08aa" + [[package]] name = "twox-hash" version = "1.6.3" @@ -11137,7 +11171,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#96908f525bac7b07d7861dc6e682f84ca25faaec" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=sv-bridge-relayer-compatibility-tests#510c903eaa47b39c3bc637d03772f4d85dbed808" dependencies = [ "Inflector", "proc-macro2 1.0.81", diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs index 0927d0e585f..37b15f98839 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_rococo_messages_to_bridge_hub_westend.rs @@ -57,14 +57,8 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubRococoMessagesToBridgeHubWestendMessageLane; impl SubstrateMessageLane for BridgeHubRococoMessagesToBridgeHubWestendMessageLane { - const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("ec797ce348d5ce03001b3000f16b7623b0f6b654e441caf8289608e476223969")), - }); - const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("815e02321b71bf951f7054f78929c11be5b9056ffc954980d94931b4522a7f02")), - }); + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); type SourceChain = BridgeHubRococo; type TargetChain = BridgeHubWestend; diff --git a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs index ec1aea23cfa..273f443fabb 100644 --- a/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/bridge_hub_westend_messages_to_bridge_hub_rococo.rs @@ -57,14 +57,8 @@ substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( pub struct BridgeHubWestendMessagesToBridgeHubRococoMessageLane; impl SubstrateMessageLane for BridgeHubWestendMessagesToBridgeHubRococoMessageLane { - const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("815e02321b71bf951f7054f78929c11be5b9056ffc954980d94931b4522a7f02")), - }); - const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("ec797ce348d5ce03001b3000f16b7623b0f6b654e441caf8289608e476223969")), - }); + const AT_SOURCE_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); + const AT_TARGET_CHAIN_RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); type SourceChain = BridgeHubWestend; type TargetChain = BridgeHubRococo; diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs index 1704cdd7ea4..2350b10af52 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_headers_to_bridge_hub_westend.rs @@ -58,10 +58,8 @@ impl SubstrateFinalityPipeline for RococoFinalityToBridgeHubWestend { #[async_trait] impl SubstrateFinalitySyncPipeline for RococoFinalityToBridgeHubWestend { - const RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("8ef000d4f0184c4751b9462471473368c4b4bdcf1f376264b254e2acf8f705c8")), - }); + const RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); + type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs index 08fc8d8135a..7e199ffdf69 100644 --- a/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs +++ b/substrate-relay/src/bridges/rococo_westend/rococo_parachains_to_bridge_hub_westend.rs @@ -31,10 +31,7 @@ use substrate_relay_helper::{ pub struct BridgeHubRococoToBridgeHubWestend; impl SubstrateParachainsPipeline for BridgeHubRococoToBridgeHubWestend { - const RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("938c8cddccea01a54fb58e8b949f501998f31c5d4edea176722c706b032e1ddd")), - }); + const RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); type SourceParachain = relay_bridge_hub_rococo_client::BridgeHubRococo; type SourceRelayChain = relay_rococo_client::Rococo; diff --git a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs index 08ad08aece4..fea650f9b13 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_headers_to_bridge_hub_rococo.rs @@ -58,10 +58,8 @@ impl SubstrateFinalityPipeline for WestendFinalityToBridgeHubRococo { #[async_trait] impl SubstrateFinalitySyncPipeline for WestendFinalityToBridgeHubRococo { - const RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("f3b72b260a9262b1a9cc09c87ece99e305cdb8e6d1e052eaba9eec2f4cf368a1")), - }); + const RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); + type SubmitFinalityProofCallBuilder = SubmitFinalityProofCallBuilder; } diff --git a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs index 85f27330507..79508ea4208 100644 --- a/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs +++ b/substrate-relay/src/bridges/rococo_westend/westend_parachains_to_bridge_hub_rococo.rs @@ -31,10 +31,7 @@ use substrate_relay_helper::{ pub struct BridgeHubWestendToBridgeHubRococo; impl SubstrateParachainsPipeline for BridgeHubWestendToBridgeHubRococo { - const RELAYER_VERSION: Option = Some(RelayerVersion { - manual: 0, - auto: H256(hex!("53c49a5c17f529842eb2f2a85053415ff77be4331c90e0a6f26594686fdfb6ce")), - }); + const RELAYER_VERSION: Option = Some(RelayerVersion::from_manual(0)); type SourceParachain = relay_bridge_hub_westend_client::BridgeHubWestend; type SourceRelayChain = relay_westend_client::Westend;