From 9226898618ab58f3a6f3cb61390d344aeabc3197 Mon Sep 17 00:00:00 2001 From: xermicus Date: Wed, 4 Sep 2024 11:33:37 +0200 Subject: [PATCH 1/3] supply the sentinel pointer as key len Signed-off-by: xermicus --- crates/llvm-context/src/polkavm/context/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/llvm-context/src/polkavm/context/mod.rs b/crates/llvm-context/src/polkavm/context/mod.rs index c739b004..f6f9c3cd 100644 --- a/crates/llvm-context/src/polkavm/context/mod.rs +++ b/crates/llvm-context/src/polkavm/context/mod.rs @@ -714,7 +714,7 @@ where &[ self.xlen_type().const_int(transient as u64, false).into(), storage_key_pointer_casted.into(), - self.integer_const(crate::polkavm::XLEN, 32).into(), + self.xlen_type().const_all_ones().into(), storage_value_pointer.to_int(self).into(), storage_value_length_pointer.to_int(self).into(), ], @@ -813,7 +813,7 @@ where &[ self.xlen_type().const_int(transient as u64, false).into(), storage_key_pointer_casted.into(), - self.integer_const(crate::polkavm::XLEN, 32).into(), + self.xlen_type().const_all_ones().into(), storage_value_pointer_casted.into(), self.integer_const(crate::polkavm::XLEN, 32).into(), ], @@ -1249,7 +1249,7 @@ where self.llvm.custom_width_int_type(crate::polkavm::XLEN as u32) } - /// Returns the register witdh sized type. + /// Returns the sentinel pointer value. pub fn sentinel_pointer(&self) -> Pointer<'ctx> { let sentinel_pointer = self .xlen_type() From 68b5b703784926bfd77c33f79ead49920c054e30 Mon Sep 17 00:00:00 2001 From: xermicus Date: Wed, 4 Sep 2024 11:34:49 +0200 Subject: [PATCH 2/3] account20 Signed-off-by: xermicus --- Cargo.lock | 721 ++++++++++++++++--------------- Cargo.toml | 2 +- crates/benchmarks/src/lib.rs | 7 +- crates/integration/codesize.json | 4 +- crates/integration/src/tests.rs | 26 +- crates/runner/src/lib.rs | 48 +- crates/runner/src/runtime.rs | 10 +- crates/runner/src/specs.rs | 93 ++-- 8 files changed, 468 insertions(+), 443 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 98637b40..6094823c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -753,7 +753,7 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "asset-test-utils" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -782,13 +782,14 @@ dependencies = [ [[package]] name = "assets-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", "impl-trait-for-tuples", "log", "pallet-asset-conversion", + "pallet-assets", "pallet-xcm", "parachains-common", "parity-scale-codec", @@ -892,7 +893,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "binary-merkle-tree" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "hash-db", "log", @@ -1016,7 +1017,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1027,13 +1028,13 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1042,13 +1043,14 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-io", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1059,26 +1061,26 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" 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?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-messages", "bp-runtime", @@ -1090,27 +1092,31 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ + "bp-header-chain", "bp-messages", + "bp-parachains", "bp-runtime", "frame-support", + "frame-system", + "pallet-utility", "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -1125,7 +1131,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", "trie-db", ] @@ -1133,7 +1139,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1146,33 +1152,43 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", ] [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "bp-messages", + "bp-runtime", + "frame-support", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core", + "sp-io", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "staging-xcm", ] [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", "sp-core", "sp-runtime", + "staging-xcm", ] [[package]] name = "bridge-hub-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1182,21 +1198,24 @@ dependencies = [ "snowbridge-core", "sp-core", "sp-runtime", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", ] [[package]] name = "bridge-hub-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "asset-test-utils", "bp-header-chain", "bp-messages", + "bp-parachains", "bp-polkadot-core", "bp-relayers", "bp-runtime", "bp-test-utils", + "bp-xcm-bridge-hub", "bridge-runtime-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -1211,6 +1230,7 @@ dependencies = [ "pallet-bridge-relayers", "pallet-timestamp", "pallet-utility", + "pallet-xcm-bridge-hub", "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", @@ -1218,7 +1238,7 @@ dependencies = [ "sp-io", "sp-keyring", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1227,7 +1247,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-messages", @@ -1236,7 +1256,6 @@ dependencies = [ "bp-relayers", "bp-runtime", "bp-xcm-bridge-hub", - "bp-xcm-bridge-hub-router", "frame-support", "frame-system", "log", @@ -1250,10 +1269,9 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", "staging-xcm", - "staging-xcm-builder", "tuplex", ] @@ -1804,7 +1822,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -1821,7 +1839,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -1838,7 +1856,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -1858,12 +1876,12 @@ dependencies = [ "polkadot-runtime-parachains", "scale-info", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-inherents", "sp-io", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", "sp-version", "staging-xcm", @@ -1874,7 +1892,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -1885,7 +1903,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -1898,7 +1916,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-solo-to-para" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -1913,7 +1931,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1928,7 +1946,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", @@ -1953,7 +1971,7 @@ dependencies = [ [[package]] name = "cumulus-ping" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", @@ -1968,7 +1986,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-api", "sp-consensus-aura", @@ -1977,7 +1995,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1993,7 +2011,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2007,17 +2025,17 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", ] [[package]] name = "cumulus-primitives-storage-weight-reclaim" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -2033,7 +2051,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "sp-inherents", @@ -2043,7 +2061,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2060,7 +2078,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2663,7 +2681,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-support-procedural", @@ -2679,15 +2697,15 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "static_assertions", ] [[package]] name = "frame-benchmarking-pallet-pov" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -2701,7 +2719,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2712,7 +2730,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2728,7 +2746,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "aquamarine", "frame-support", @@ -2740,7 +2758,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -2758,7 +2776,7 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "array-bytes", "docify", @@ -2773,7 +2791,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "aquamarine", "array-bytes", @@ -2796,7 +2814,7 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -2804,8 +2822,8 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-weights", "static_assertions", "tt-call", @@ -2814,7 +2832,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "Inflector", "cfg-expr", @@ -2834,7 +2852,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2846,7 +2864,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro2", "quote", @@ -2856,7 +2874,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cfg-if", "docify", @@ -2868,7 +2886,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-version", "sp-weights", ] @@ -2876,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -2890,7 +2908,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "parity-scale-codec", @@ -2900,7 +2918,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "parity-scale-codec", @@ -4045,7 +4063,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-alliance" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4064,7 +4082,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4082,7 +4100,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-ops" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4100,7 +4118,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4114,7 +4132,7 @@ dependencies = [ [[package]] name = "pallet-asset-rate" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4128,7 +4146,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4145,7 +4163,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "29.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4161,7 +4179,7 @@ dependencies = [ [[package]] name = "pallet-assets-freezer" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4176,7 +4194,7 @@ dependencies = [ [[package]] name = "pallet-atomic-swap" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4190,7 +4208,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4206,7 +4224,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4221,7 +4239,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4234,7 +4252,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4257,7 +4275,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "aquamarine", "docify", @@ -4272,13 +4290,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -4293,7 +4311,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4312,7 +4330,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -4337,7 +4355,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4354,7 +4372,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-runtime", @@ -4367,13 +4385,13 @@ dependencies = [ "scale-info", "sp-consensus-grandpa", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-messages", @@ -4385,14 +4403,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", ] [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-header-chain", "bp-parachains", @@ -4406,14 +4424,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ + "bp-header-chain", "bp-messages", "bp-relayers", "bp-runtime", @@ -4421,18 +4440,21 @@ dependencies = [ "frame-support", "frame-system", "log", + "pallet-bridge-grandpa", "pallet-bridge-messages", + "pallet-bridge-parachains", + "pallet-transaction-payment", "parity-scale-codec", "scale-info", "sp-arithmetic", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "pallet-broker" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitvec", "frame-benchmarking", @@ -4450,7 +4472,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4468,7 +4490,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4487,7 +4509,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4503,7 +4525,7 @@ dependencies = [ [[package]] name = "pallet-collective-content" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4517,7 +4539,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitflags 1.3.2", "environmental", @@ -4539,7 +4561,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "wasm-instrument", @@ -4549,7 +4571,7 @@ dependencies = [ [[package]] name = "pallet-contracts-mock-network" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4574,7 +4596,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -4584,7 +4606,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro2", "quote", @@ -4594,7 +4616,7 @@ dependencies = [ [[package]] name = "pallet-contracts-uapi" version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -4606,7 +4628,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "assert_matches", "frame-benchmarking", @@ -4622,7 +4644,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4640,7 +4662,7 @@ dependencies = [ [[package]] name = "pallet-delegated-staking" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4655,7 +4677,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4672,7 +4694,7 @@ dependencies = [ [[package]] name = "pallet-dev-mode" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4687,7 +4709,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4709,7 +4731,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4722,7 +4744,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4740,7 +4762,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -4758,7 +4780,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "blake2", "frame-benchmarking", @@ -4776,7 +4798,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4798,7 +4820,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4814,7 +4836,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4833,7 +4855,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4849,7 +4871,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -4862,7 +4884,7 @@ dependencies = [ [[package]] name = "pallet-lottery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4875,7 +4897,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4891,7 +4913,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "environmental", "frame-benchmarking", @@ -4910,7 +4932,7 @@ dependencies = [ [[package]] name = "pallet-migrations" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -4927,7 +4949,7 @@ dependencies = [ [[package]] name = "pallet-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4946,7 +4968,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4963,7 +4985,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4978,7 +5000,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -4994,7 +5016,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5011,7 +5033,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "pallet-nfts", "parity-scale-codec", @@ -5021,7 +5043,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5036,7 +5058,7 @@ dependencies = [ [[package]] name = "pallet-node-authorization" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5051,7 +5073,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5063,13 +5085,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "pallet-nomination-pools-benchmarking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5082,14 +5104,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-staking", ] [[package]] name = "pallet-nomination-pools-runtime-api" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5099,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5115,7 +5137,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5138,7 +5160,7 @@ dependencies = [ [[package]] name = "pallet-paged-list" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5155,7 +5177,7 @@ dependencies = [ [[package]] name = "pallet-parameters" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5172,7 +5194,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5188,7 +5210,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5202,7 +5224,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5220,7 +5242,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5234,7 +5256,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5251,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-remark" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5267,7 +5289,7 @@ dependencies = [ [[package]] name = "pallet-revive" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitflags 1.3.2", "environmental", @@ -5283,13 +5305,14 @@ dependencies = [ "parity-scale-codec", "paste", "polkavm 0.10.0", + "rlp", "scale-info", "serde", "sp-api", "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", ] @@ -5297,12 +5320,14 @@ dependencies = [ [[package]] name = "pallet-revive-fixtures" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "anyhow", "frame-system", "parity-wasm", "polkavm-linker 0.10.0", + "sp-core", + "sp-io", "sp-runtime", "tempfile", "toml 0.8.19", @@ -5311,7 +5336,7 @@ dependencies = [ [[package]] name = "pallet-revive-mock-network" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5335,7 +5360,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -5345,7 +5370,7 @@ dependencies = [ [[package]] name = "pallet-revive-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro2", "quote", @@ -5355,7 +5380,7 @@ dependencies = [ [[package]] name = "pallet-revive-uapi" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -5367,7 +5392,7 @@ dependencies = [ [[package]] name = "pallet-root-offences" version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5382,7 +5407,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "4.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5396,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-safe-mode" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5414,7 +5439,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5432,7 +5457,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5449,7 +5474,7 @@ dependencies = [ [[package]] name = "pallet-scored-pool" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5462,7 +5487,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5483,7 +5508,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5499,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-skip-feeless-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5511,7 +5536,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5549,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "log", "sp-arithmetic", @@ -5558,7 +5583,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "sp-api", @@ -5568,7 +5593,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5584,7 +5609,7 @@ dependencies = [ [[package]] name = "pallet-statement" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5601,7 +5626,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5616,7 +5641,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5628,14 +5653,14 @@ dependencies = [ "sp-inherents", "sp-io", "sp-runtime", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-timestamp", ] [[package]] name = "pallet-tips" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5653,7 +5678,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -5668,7 +5693,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5680,7 +5705,7 @@ dependencies = [ [[package]] name = "pallet-transaction-storage" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5699,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5717,7 +5742,7 @@ dependencies = [ [[package]] name = "pallet-tx-pause" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -5734,7 +5759,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5748,7 +5773,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5763,7 +5788,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5802,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5791,7 +5816,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -5814,7 +5839,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -5832,12 +5857,11 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-messages", "bp-runtime", "bp-xcm-bridge-hub", - "bridge-runtime-common", "frame-support", "frame-system", "log", @@ -5846,7 +5870,7 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -5855,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub-router" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", @@ -5866,7 +5890,7 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", ] @@ -5874,7 +5898,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -5904,7 +5928,7 @@ dependencies = [ [[package]] name = "parachains-runtimes-test-utils" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -5924,7 +5948,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-parachain-info", "staging-xcm", "staging-xcm-executor", @@ -6154,7 +6178,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -6165,7 +6189,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bounded-collections", "derive_more", @@ -6181,7 +6205,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitvec", "hex-literal", @@ -6202,12 +6226,13 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-staking", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "polkadot-runtime-common" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitvec", "frame-benchmarking", @@ -6256,19 +6281,19 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bs58", "frame-benchmarking", "parity-scale-codec", "polkadot-primitives", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "polkadot-runtime-parachains" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -6308,7 +6333,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-executor", ] @@ -6316,7 +6341,7 @@ dependencies = [ [[package]] name = "polkadot-sdk" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "asset-test-utils", "assets-common", @@ -6507,11 +6532,11 @@ dependencies = [ "sp-consensus-slots", "sp-core", "sp-core-hashing", - "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-crypto-hashing", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -6523,22 +6548,22 @@ dependencies = [ "sp-npos-elections", "sp-offchain", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-session", "sp-staking", "sp-state-machine", "sp-statement-store", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-timestamp", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-transaction-pool", "sp-transaction-storage-proof", "sp-trie", "sp-version", "sp-version-proc-macro", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-weights", "staging-parachain-info", "staging-xcm", @@ -6552,7 +6577,7 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "frame-benchmarking", @@ -6576,7 +6601,7 @@ dependencies = [ "sp-offchain", "sp-runtime", "sp-session", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-transaction-pool", "sp-version", ] @@ -7291,7 +7316,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "polkadot-primitives", @@ -7460,18 +7485,18 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "log", "sp-core", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "thiserror", ] [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "parking_lot", @@ -7481,25 +7506,25 @@ dependencies = [ "schnellru", "sp-api", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-io", "sp-panic-handler", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "tracing", ] [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "polkavm 0.9.3", "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "thiserror", "wasm-instrument", ] @@ -7507,18 +7532,18 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "log", "polkavm 0.9.3", "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "anyhow", "cfg-if", @@ -7528,8 +7553,8 @@ dependencies = [ "rustix 0.36.17", "sc-allocator", "sc-executor-common", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "wasmtime", ] @@ -7890,7 +7915,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "enumn", "parity-scale-codec", @@ -7917,7 +7942,7 @@ dependencies = [ [[package]] name = "snowbridge-beacon-primitives" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "byte-slice-cast", "frame-support", @@ -7931,7 +7956,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "ssz_rs", "ssz_rs_derive", ] @@ -7939,7 +7964,7 @@ dependencies = [ [[package]] name = "snowbridge-core" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "ethabi-decode", "frame-support", @@ -7954,7 +7979,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", ] @@ -7962,7 +7987,7 @@ dependencies = [ [[package]] name = "snowbridge-ethereum" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "ethabi-decode", "ethbloom", @@ -7976,7 +8001,7 @@ dependencies = [ "serde-big-array", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -7997,7 +8022,7 @@ dependencies = [ [[package]] name = "snowbridge-outbound-queue-merkle-tree" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8008,20 +8033,20 @@ dependencies = [ [[package]] name = "snowbridge-outbound-queue-runtime-api" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "parity-scale-codec", "snowbridge-core", "snowbridge-outbound-queue-merkle-tree", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "snowbridge-pallet-ethereum-client" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -8038,26 +8063,26 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "static_assertions", ] [[package]] name = "snowbridge-pallet-ethereum-client-fixtures" version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", "snowbridge-core", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "snowbridge-pallet-inbound-queue" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "alloy-primitives 0.4.2", "alloy-sol-types 0.4.2", @@ -8076,7 +8101,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-executor", ] @@ -8084,19 +8109,19 @@ dependencies = [ [[package]] name = "snowbridge-pallet-inbound-queue-fixtures" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", "snowbridge-core", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "snowbridge-pallet-outbound-queue" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bridge-hub-common", "ethabi-decode", @@ -8112,13 +8137,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "snowbridge-pallet-system" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-benchmarking", "frame-support", @@ -8130,7 +8155,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-executor", ] @@ -8138,7 +8163,7 @@ dependencies = [ [[package]] name = "snowbridge-router-primitives" version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "hex-literal", @@ -8149,7 +8174,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-executor", ] @@ -8157,14 +8182,14 @@ dependencies = [ [[package]] name = "snowbridge-runtime-common" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "log", "parity-scale-codec", "snowbridge-core", "sp-arithmetic", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -8173,7 +8198,7 @@ dependencies = [ [[package]] name = "snowbridge-runtime-test-common" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -8204,19 +8229,19 @@ dependencies = [ [[package]] name = "snowbridge-system-runtime-api" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "snowbridge-core", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", ] [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "hash-db", @@ -8225,10 +8250,10 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-metadata-ir", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-state-machine", "sp-trie", "sp-version", @@ -8238,7 +8263,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "Inflector", "blake2", @@ -8252,7 +8277,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8264,7 +8289,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "integer-sqrt", @@ -8296,7 +8321,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8308,7 +8333,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-api", "sp-inherents", @@ -8318,7 +8343,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "parity-scale-codec", @@ -8334,7 +8359,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "parity-scale-codec", @@ -8352,7 +8377,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "lazy_static", "parity-scale-codec", @@ -8373,7 +8398,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "finality-grandpa", "log", @@ -8390,7 +8415,7 @@ dependencies = [ [[package]] name = "sp-consensus-pow" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "sp-api", @@ -8401,7 +8426,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8412,7 +8437,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "array-bytes", "bandersnatch_vrfs", @@ -8443,11 +8468,11 @@ dependencies = [ "secrecy", "serde", "sp-crypto-hashing", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "ss58-registry", "substrate-bip39", "thiserror", @@ -8459,7 +8484,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-crypto-hashing", ] @@ -8467,7 +8492,7 @@ dependencies = [ [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -8481,7 +8506,7 @@ dependencies = [ "ark-ed-on-bls12-381-bandersnatch", "ark-ed-on-bls12-381-bandersnatch-ext", "ark-scale", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -8507,7 +8532,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "blake2b_simd", "byteorder", @@ -8520,7 +8545,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "quote", "sp-crypto-hashing", @@ -8530,7 +8555,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "proc-macro2", "quote", @@ -8550,11 +8575,11 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -8570,7 +8595,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8582,7 +8607,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -8595,7 +8620,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bytes", "docify", @@ -8608,11 +8633,11 @@ dependencies = [ "secp256k1", "sp-core", "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-keystore", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-state-machine", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-trie", "tracing", "tracing-core", @@ -8621,7 +8646,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-core", "sp-runtime", @@ -8631,18 +8656,18 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "parking_lot", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "thiserror", "zstd 0.12.4", @@ -8651,7 +8676,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -8661,7 +8686,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8672,7 +8697,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "log", "parity-scale-codec", @@ -8681,7 +8706,7 @@ dependencies = [ "serde", "sp-api", "sp-core", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-runtime", "thiserror", ] @@ -8689,7 +8714,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8702,7 +8727,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-api", "sp-core", @@ -8712,7 +8737,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "backtrace", "lazy_static", @@ -8722,7 +8747,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "docify", "either", @@ -8740,7 +8765,7 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-weights", "tracing", ] @@ -8748,19 +8773,19 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive 0.9.1", "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "static_assertions", ] @@ -8786,7 +8811,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "Inflector", "expander", @@ -8812,7 +8837,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "scale-info", @@ -8826,7 +8851,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8839,7 +8864,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "hash-db", "log", @@ -8848,7 +8873,7 @@ dependencies = [ "rand", "smallvec", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-panic-handler", "sp-trie", "thiserror", @@ -8859,7 +8884,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -8873,9 +8898,9 @@ dependencies = [ "sp-application-crypto", "sp-core", "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "thiserror", "x25519-dalek", ] @@ -8883,7 +8908,7 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" [[package]] name = "sp-std" @@ -8893,13 +8918,13 @@ source = "git+https://github.com/paritytech/polkadot-sdk#b3c2a25b73bb4854f262040 [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -8917,7 +8942,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "parity-scale-codec", @@ -8929,7 +8954,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "tracing", @@ -8951,7 +8976,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "sp-api", "sp-runtime", @@ -8960,7 +8985,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "async-trait", "parity-scale-codec", @@ -8974,7 +8999,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "ahash 0.8.11", "hash-db", @@ -8987,7 +9012,7 @@ dependencies = [ "scale-info", "schnellru", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "thiserror", "tracing", "trie-db", @@ -8997,7 +9022,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9006,7 +9031,7 @@ dependencies = [ "serde", "sp-crypto-hashing-proc-macro", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "sp-version-proc-macro", "thiserror", ] @@ -9014,7 +9039,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -9025,7 +9050,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -9047,7 +9072,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -9055,7 +9080,7 @@ dependencies = [ "serde", "smallvec", "sp-arithmetic", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", ] [[package]] @@ -9134,7 +9159,7 @@ dependencies = [ [[package]] name = "staging-parachain-info" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -9147,7 +9172,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "array-bytes", "bounded-collections", @@ -9166,7 +9191,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -9188,7 +9213,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "environmental", "frame-benchmarking", @@ -9272,7 +9297,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -9284,7 +9309,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "build-helper", "cargo_metadata", @@ -9402,7 +9427,7 @@ dependencies = [ [[package]] name = "testnet-parachains-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -10193,7 +10218,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "polkadot-primitives", @@ -10559,7 +10584,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "Inflector", "proc-macro2", @@ -10570,7 +10595,7 @@ dependencies = [ [[package]] name = "xcm-runtime-apis" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "parity-scale-codec", @@ -10584,7 +10609,7 @@ dependencies = [ [[package]] name = "xcm-simulator" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591#1c4141abeb4c581e503f07af2a3522e6918db591" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580#d7b575338b2c647e04fc48bfbe00ea8f492fb580" dependencies = [ "frame-support", "frame-system", @@ -10597,7 +10622,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=1c4141abeb4c581e503f07af2a3522e6918db591)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=d7b575338b2c647e04fc48bfbe00ea8f492fb580)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", diff --git a/Cargo.toml b/Cargo.toml index 45deccea..4c7d375a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ log = { version = "0.4" } # polkadot-sdk and friends codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" } scale-info = { version = "2.11.1", default-features = false } -polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "1c4141abeb4c581e503f07af2a3522e6918db591" } +polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "d7b575338b2c647e04fc48bfbe00ea8f492fb580" } # llvm [workspace.dependencies.inkwell] diff --git a/crates/benchmarks/src/lib.rs b/crates/benchmarks/src/lib.rs index dc0a24a4..9ee8ec21 100644 --- a/crates/benchmarks/src/lib.rs +++ b/crates/benchmarks/src/lib.rs @@ -7,7 +7,7 @@ pub fn create_specs(contract: &revive_integration::cases::Contract) -> revive_ru actions: vec![ Instantiate { code: Code::Bytes(contract.pvm_runtime.to_vec()), - origin: TestAccountId::Alice, + origin: TestAddress::Alice, data: Default::default(), value: Default::default(), gas_limit: Default::default(), @@ -15,8 +15,8 @@ pub fn create_specs(contract: &revive_integration::cases::Contract) -> revive_ru salt: Default::default(), }, Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), data: contract.calldata.to_vec(), value: Default::default(), gas_limit: Default::default(), @@ -59,7 +59,6 @@ pub fn measure_evm(code: &[u8], input: &[u8], iters: u64) -> std::time::Duration let log = revive_differential::Evm::default() .code_blob(code.as_bytes().to_vec()) .input(input.to_vec().into()) - .genesis_path("/tmp/genesis.json".into()) .bench(true) .run(); assert!(log.output.run_success(), "evm run failed: {log:?}"); diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index e2c613dc..10ad8b70 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -2,9 +2,9 @@ "Baseline": 878, "Computation": 4305, "DivisionArithmetics": 39774, - "ERC20": 53405, + "ERC20": 46989, "Events": 1693, "FibonacciIterative": 2917, "Flipper": 3570, - "SHA1": 32557 + "SHA1": 32480 } \ No newline at end of file diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 2dfa34e2..8c32e8e1 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -36,7 +36,7 @@ test_spec!(mstore8, "MStore8", "MStore8.sol"); fn instantiate(path: &str, contract: &str) -> Vec { vec![Instantiate { - origin: TestAccountId::Alice, + origin: TestAddress::Alice, value: 0, gas_limit: Some(GAS_LIMIT), storage_deposit_limit: None, @@ -47,15 +47,15 @@ fn instantiate(path: &str, contract: &str) -> Vec { pipeline: None, }, data: vec![], - salt: vec![], + salt: OptionalHex::default(), }] } fn run_differential(actions: Vec) { Specs { differential: true, - balances: vec![(ALICE, 1_000_000_000)], actions, + ..Default::default() } .run(); } @@ -80,8 +80,8 @@ fn bitwise_byte() { ]) { actions.push(Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), value: 0, gas_limit: None, storage_deposit_limit: None, @@ -107,8 +107,8 @@ fn unsigned_division() { (one, U256::ZERO), ] { actions.push(Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), value: 0, gas_limit: None, storage_deposit_limit: None, @@ -142,8 +142,8 @@ fn signed_division() { (one, I256::ZERO), ] { actions.push(Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), value: 0, gas_limit: None, storage_deposit_limit: None, @@ -171,8 +171,8 @@ fn unsigned_remainder() { (U256::MAX, U256::ZERO), ] { actions.push(Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), value: 0, gas_limit: None, storage_deposit_limit: None, @@ -212,8 +212,8 @@ fn signed_remainder() { (I256::ZERO, I256::ZERO), ] { actions.push(Call { - origin: TestAccountId::Alice, - dest: TestAccountId::Instantiated(0), + origin: TestAddress::Alice, + dest: TestAddress::Instantiated(0), value: 0, gas_limit: None, storage_deposit_limit: None, diff --git a/crates/runner/src/lib.rs b/crates/runner/src/lib.rs index da7fc7e5..1614f5ef 100644 --- a/crates/runner/src/lib.rs +++ b/crates/runner/src/lib.rs @@ -25,13 +25,15 @@ use std::time::Duration; -use hex::{FromHex, FromHexError, ToHex}; +use hex::{FromHex, ToHex}; use polkadot_sdk::*; use polkadot_sdk::{ pallet_revive::{CollectEvents, ContractExecResult, ContractInstantiateResult, DebugInfo}, polkadot_runtime_common::BuildStorage, polkadot_sdk_frame::testing_prelude::*, + sp_core::H160, sp_keystore::{testing::MemoryKeystore, KeystoreExt}, + sp_runtime::AccountId32, }; use serde::{Deserialize, Serialize}; @@ -41,9 +43,9 @@ mod specs; use crate::runtime::*; pub use crate::specs::*; -pub const ALICE: AccountId = AccountId::new([1u8; 32]); -pub const BOB: AccountId = AccountId::new([2u8; 32]); -pub const CHARLIE: AccountId = AccountId::new([3u8; 32]); +pub const ALICE: H160 = H160([1u8; 20]); +pub const BOB: H160 = H160([2u8; 20]); +pub const CHARLIE: H160 = H160([3u8; 20]); const SPEC_MARKER_BEGIN: &str = "/* runner.json"; const SPEC_MARKER_END: &str = "*/"; @@ -52,12 +54,12 @@ const SPEC_MARKER_END: &str = "*/"; #[derive(Default)] pub struct ExtBuilder { /// List of endowments at genesis - balance_genesis_config: Vec<(AccountId, Balance)>, + balance_genesis_config: Vec<(AccountId32, Balance)>, } impl ExtBuilder { /// Set the balance of an account at genesis - fn balance_genesis_config(mut self, value: Vec<(AccountId, Balance)>) -> Self { + fn balance_genesis_config(mut self, value: Vec<(AccountId32, Balance)>) -> Self { self.balance_genesis_config = value; self } @@ -94,45 +96,45 @@ pub struct VerifyCallExpectation { pub gas_consumed: Option, /// When provided, the expected output #[serde(default, with = "hex")] - pub output: OptionalHex, + pub output: OptionalHex>, ///Expected call result pub success: bool, } #[derive(Clone, Debug, Default, PartialEq)] -pub struct OptionalHex(Option>); +pub struct OptionalHex(Option); -impl FromHex for OptionalHex { - type Error = FromHexError; +impl> FromHex for OptionalHex { + type Error = ::Error; fn from_hex>(hex: T) -> Result { - let value = hex::decode(hex)?; + let value = I::from_hex(hex)?; Ok(Self(Some(value))) } } -impl ToHex for &OptionalHex { +impl> ToHex for &OptionalHex { fn encode_hex>(&self) -> T { match self.0.as_ref() { None => T::from_iter("".chars()), - Some(data) => T::from_iter(hex::encode(data).chars()), + Some(data) => I::encode_hex::(data), } } fn encode_hex_upper>(&self) -> T { match self.0.as_ref() { None => T::from_iter("".chars()), - Some(data) => T::from_iter(hex::encode_upper(data).chars()), + Some(data) => I::encode_hex_upper(data), } } } -impl From for OptionalHex { - fn from(value: alloy_primitives::Bytes) -> Self { - if value.is_empty() { +impl> From for OptionalHex { + fn from(value: T) -> Self { + if value.as_ref().is_empty() { OptionalHex(None) } else { - OptionalHex(Some(value.into())) + OptionalHex(Some(value)) } } } @@ -172,7 +174,7 @@ pub enum CallResult { wall_time: Duration, }, Instantiate { - result: ContractInstantiateResult, + result: ContractInstantiateResult, wall_time: Duration, }, } @@ -232,7 +234,7 @@ impl Default for Code { } } -impl From for pallet_revive::Code { +impl From for pallet_revive::Code { fn from(val: Code) -> Self { match val { Code::Solidity { @@ -308,15 +310,15 @@ mod tests { use specs::SpecsAction::*; let specs = Specs { differential: false, - balances: vec![(ALICE, 1_000_000_000)], + balances: vec![(AccountId::to_account_id(&EHT_ALICE), 1_000_000_000)], actions: vec![Instantiate { - origin: TestAccountId::Alice, + origin: TestAddress::Alice, value: 0, gas_limit: Some(GAS_LIMIT), storage_deposit_limit: Some(DEPOSIT_LIMIT), code: Code::Bytes(include_bytes!("../fixtures/Baseline.pvm").to_vec()), data: vec![], - salt: vec![], + salt: OptionalHex::default(), }], }; specs.run(); diff --git a/crates/runner/src/runtime.rs b/crates/runner/src/runtime.rs index 31317a46..676f71b7 100644 --- a/crates/runner/src/runtime.rs +++ b/crates/runner/src/runtime.rs @@ -7,7 +7,7 @@ use polkadot_sdk::{ }; pub type Balance = u128; -pub type AccountId = AccountId32; +pub type AccountId = pallet_revive::DefaultAddressMapper; pub type Block = frame_system::mocking::MockBlock; pub type Hash = ::Hash; pub type EventRecord = @@ -45,7 +45,7 @@ mod runtime { #[derive_impl(frame_system::config_preludes::SolochainDefaultConfig)] impl frame_system::Config for Runtime { type Block = Block; - type AccountId = AccountId; + type AccountId = AccountId32; type AccountData = pallet_balances::AccountData<::Balance>; } @@ -74,10 +74,10 @@ impl pallet_revive::Config for Runtime { type ChainExtension = (); type DepositPerByte = DepositPerByte; type DepositPerItem = DepositPerItem; - type AddressGenerator = pallet_revive::DefaultAddressGenerator; + type AddressMapper = AccountId; type UnsafeUnstableInterface = UnstableInterface; - type UploadOrigin = EnsureSigned; - type InstantiateOrigin = EnsureSigned; + type UploadOrigin = EnsureSigned; + type InstantiateOrigin = EnsureSigned; type Migrations = (); type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent; type Debug = (); diff --git a/crates/runner/src/specs.rs b/crates/runner/src/specs.rs index cd29611f..2373cb2c 100644 --- a/crates/runner/src/specs.rs +++ b/crates/runner/src/specs.rs @@ -1,5 +1,6 @@ use std::time::Instant; +use pallet_revive::AddressMapper; use revive_differential::{Evm, EvmLog}; use serde::{Deserialize, Serialize}; @@ -13,7 +14,7 @@ pub enum SpecsAction { /// Instantiate a contract Instantiate { #[serde(default)] - origin: TestAccountId, + origin: TestAddress, #[serde(default)] value: Balance, #[serde(default)] @@ -25,13 +26,13 @@ pub enum SpecsAction { #[serde(default, with = "hex::serde")] data: Vec, #[serde(default, with = "hex::serde")] - salt: Vec, + salt: OptionalHex<[u8; 32]>, }, /// Call a contract Call { #[serde(default)] - origin: TestAccountId, - dest: TestAccountId, + origin: TestAddress, + dest: TestAddress, #[serde(default)] value: Balance, #[serde(default)] @@ -46,16 +47,16 @@ pub enum SpecsAction { /// Verify the balance of an account VerifyBalance { - origin: TestAccountId, + origin: TestAddress, expected: Balance, }, /// Verify the storage of a contract VerifyStorage { - contract: TestAccountId, + contract: TestAddress, #[serde(with = "hex::serde")] - key: Vec, + key: [u8; 32], #[serde(default, with = "hex::serde")] - expected: Vec, + expected: [u8; 32], }, } @@ -64,7 +65,7 @@ impl SpecsAction { pub fn derive_verification( log: &EvmLog, address_evm: Address, - account_pvm: TestAccountId, + account_pvm: TestAddress, ) -> Vec { let account = log .state_dump @@ -76,7 +77,7 @@ impl SpecsAction { Self::VerifyCall(VerifyCallExpectation { gas_consumed: None, success: log.output.run_success(), - output: log.output.output.clone().into(), + output: log.output.output.to_vec().into(), }), Self::VerifyBalance { origin: account_pvm.clone(), @@ -92,9 +93,9 @@ impl SpecsAction { }; for (key, expected) in storage { - let mut key = key.to_vec(); + let mut key = **key; + let mut expected = **expected; key.reverse(); - let mut expected = expected.to_vec(); expected.reverse(); actions.push(Self::VerifyStorage { contract: account_pvm.clone(), @@ -108,7 +109,7 @@ impl SpecsAction { } #[derive(Clone, Debug, Default, Serialize, Deserialize, PartialEq)] -pub enum TestAccountId { +pub enum TestAddress { /// The ALICE account #[default] Alice, @@ -119,30 +120,31 @@ pub enum TestAccountId { /// AccountID that was created during the nth call in this run. Instantiated(usize), /// Arbitrary AccountID - AccountId(AccountId), + AccountId(H160), } -impl TestAccountId { - fn to_account_id(&self, results: &[CallResult]) -> AccountId { +impl TestAddress { + fn to_eth_addr(&self, results: &[CallResult]) -> H160 { match self { - TestAccountId::Alice => ALICE, - TestAccountId::Bob => BOB, - TestAccountId::Charlie => CHARLIE, - TestAccountId::AccountId(account_id) => account_id.clone(), - TestAccountId::Instantiated(n) => match results + TestAddress::Alice => ALICE, + TestAddress::Bob => BOB, + TestAddress::Charlie => CHARLIE, + TestAddress::AccountId(account_id) => *account_id, + TestAddress::Instantiated(n) => match results .get(*n) .expect("should provide valid index into call results") { CallResult::Exec { .. } => panic!("call #{n} should be an instantiation"), - CallResult::Instantiate { result, .. } => result - .result - .as_ref() - .expect("call #{n} reverted") - .account_id - .clone(), + CallResult::Instantiate { result, .. } => { + result.result.as_ref().expect("call #{n} reverted").addr + } }, } } + + fn to_account_id(&self, results: &[CallResult]) -> AccountId32 { + AccountId::to_account_id(&self.to_eth_addr(results)) + } } /// Specs for a contract test @@ -153,7 +155,7 @@ pub struct Specs { #[serde(default)] pub differential: bool, /// List of endowments at genesis - pub balances: Vec<(AccountId, Balance)>, + pub balances: Vec<(AccountId32, Balance)>, /// List of actions to perform pub actions: Vec, } @@ -162,7 +164,7 @@ impl Default for Specs { fn default() -> Self { Self { differential: false, - balances: vec![(ALICE, 1_000_000_000)], + balances: vec![(AccountId::to_account_id(&ALICE), 1_000_000_000)], actions: Default::default(), } } @@ -263,8 +265,8 @@ impl Specs { assert_ne!(solc_optimizer, Some(false), "solc_optimizer must be enabled in differntial mode"); assert_ne!(pipeline, Some(revive_solidity::SolcPipeline::EVMLA), "yul pipeline must be enabled in differntial mode"); assert!(storage_deposit_limit.is_none(), "storage deposit limit is not supported in differential mode"); - assert!(salt.is_empty(), "salt is not supported in differential mode"); - assert_eq!(origin, TestAccountId::default(), "configuring the origin is not supported in differential mode"); + assert!(salt.0.is_none(), "salt is not supported in differential mode"); + assert_eq!(origin, TestAddress::default(), "configuring the origin is not supported in differential mode"); let deploy_code = match std::fs::read_to_string(&path) { Ok(solidity_source) => compile_evm_deploy_code(&contract, &solidity_source), Err(err) => panic!( @@ -287,7 +289,7 @@ impl Specs { let mut log = vm.run(); log.output.output = Default::default(); // PVM will not have constructor output let deployed_account = log.account_deployed.expect("no account was created"); - let account_pvm = TestAccountId::Instantiated(deployed_accounts.len()); + let account_pvm = TestAddress::Instantiated(deployed_accounts.len()); deployed_accounts.push(deployed_account); derived_specs.actions.append(&mut SpecsAction::derive_verification(&log, deployed_account, account_pvm)); evm = Evm::from_genesis(log.state_dump.into()); @@ -300,9 +302,9 @@ impl Specs { storage_deposit_limit, data, } => { - assert_eq!(origin, TestAccountId::default(), "configuring the origin is not supported in differential mode"); + assert_eq!(origin, TestAddress::default(), "configuring the origin is not supported in differential mode"); assert!(storage_deposit_limit.is_none(), "storage deposit limit is not supported in differential mode"); - let TestAccountId::Instantiated(n) = dest else { + let TestAddress::Instantiated(n) = dest else { panic!("the differential runner requires TestAccountId::Instantiated(n) as dest"); }; let address = deployed_accounts.get(n).unwrap_or_else(|| panic!("no account at index {n} ")); @@ -357,7 +359,7 @@ impl Specs { storage_deposit_limit.unwrap_or(DEPOSIT_LIMIT), code.into(), data, - salt, + salt.0, DebugInfo::Skip, CollectEvents::Skip, ); @@ -374,12 +376,10 @@ impl Specs { storage_deposit_limit, data, } => { - let origin = RuntimeOrigin::signed(origin.to_account_id(&results)); - let dest = dest.to_account_id(&results); let time_start = Instant::now(); let result = Contracts::bare_call( - origin, - dest, + RuntimeOrigin::signed(origin.to_account_id(&results)), + dest.to_eth_addr(&results), value, gas_limit.unwrap_or(GAS_LIMIT), storage_deposit_limit.unwrap_or(DEPOSIT_LIMIT), @@ -404,16 +404,15 @@ impl Specs { key, expected, } => { - let Ok(storage) = Contracts::get_storage( - contract.to_account_id(&results), - key.clone(), - ) else { - panic!("Error reading storage"); + let address = contract.to_eth_addr(&results); + dbg!(contract.to_account_id(&results)); + let Ok(value) = Contracts::get_storage(address, key) else { + panic!("error reading storage for address {address}"); }; - let Some(value) = storage else { - panic!("No value for storage key 0x{}", hex::encode(key)); + let Some(value) = value else { + panic!("no value at {address} key 0x{}", hex::encode(key)); }; - assert_eq!(value, expected, "at key {}", hex::encode(&key)); + assert_eq!(value, expected, "at key 0x{}", hex::encode(key)); } } } From 8ba24e369951c84fdfd738040078639724f3b7b9 Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Wed, 4 Sep 2024 12:21:51 +0200 Subject: [PATCH 3/3] fix all tests Signed-off-by: Cyrill Leutwiler --- crates/integration/codesize.json | 4 +- crates/integration/src/tests.rs | 2 +- crates/runner/src/lib.rs | 83 ++++++++++---------------------- crates/runner/src/specs.rs | 47 ++++++++++++++++-- 4 files changed, 70 insertions(+), 66 deletions(-) diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index 10ad8b70..e2c613dc 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -2,9 +2,9 @@ "Baseline": 878, "Computation": 4305, "DivisionArithmetics": 39774, - "ERC20": 46989, + "ERC20": 53405, "Events": 1693, "FibonacciIterative": 2917, "Flipper": 3570, - "SHA1": 32480 + "SHA1": 32557 } \ No newline at end of file diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 8c32e8e1..df02114e 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -12,7 +12,7 @@ macro_rules! test_spec { fn $test_name() { let manifest_dir = std::env::var("CARGO_MANIFEST_DIR").expect("should always exist"); let path = format!("{manifest_dir}/../integration/contracts/{}", $source_file); - specs_from_comment($contract_name, &path).remove(0).run(); + Specs::from_comment($contract_name, &path).remove(0).run(); } }; } diff --git a/crates/runner/src/lib.rs b/crates/runner/src/lib.rs index 1614f5ef..a988ffb7 100644 --- a/crates/runner/src/lib.rs +++ b/crates/runner/src/lib.rs @@ -11,13 +11,13 @@ //! differential: false, //! balances: vec![(ALICE, 1_000_000_000)], //! actions: vec![Instantiate { -//! origin: TestAccountId::Alice, +//! origin: TestAddress::Alice, //! value: 0, //! gas_limit: Some(GAS_LIMIT), //! storage_deposit_limit: Some(DEPOSIT_LIMIT), //! code: Code::Bytes(include_bytes!("../fixtures/Baseline.pvm").to_vec()), //! data: vec![], -//! salt: vec![], +//! salt: Default::default(), //! }], //! } //! .run(); @@ -26,6 +26,7 @@ use std::time::Duration; use hex::{FromHex, ToHex}; +use pallet_revive::AddressMapper; use polkadot_sdk::*; use polkadot_sdk::{ pallet_revive::{CollectEvents, ContractExecResult, ContractInstantiateResult, DebugInfo}, @@ -37,18 +38,22 @@ use polkadot_sdk::{ }; use serde::{Deserialize, Serialize}; -mod runtime; -mod specs; - use crate::runtime::*; pub use crate::specs::*; +mod runtime; +mod specs; + +/// The alice test account pub const ALICE: H160 = H160([1u8; 20]); +/// The bob test account pub const BOB: H160 = H160([2u8; 20]); +/// The charlie test account pub const CHARLIE: H160 = H160([3u8; 20]); - -const SPEC_MARKER_BEGIN: &str = "/* runner.json"; -const SPEC_MARKER_END: &str = "*/"; +/// Default gas limit +pub const GAS_LIMIT: Weight = Weight::from_parts(100_000_000_000, 3 * 1024 * 1024); +/// Default deposit limit +pub const DEPOSIT_LIMIT: Balance = 10_000_000; /// Externalities builder #[derive(Default)] @@ -59,9 +64,13 @@ pub struct ExtBuilder { impl ExtBuilder { /// Set the balance of an account at genesis - fn balance_genesis_config(mut self, value: Vec<(AccountId32, Balance)>) -> Self { - self.balance_genesis_config = value; - self + fn balance_genesis_config(self, value: Vec<(H160, Balance)>) -> Self { + Self { + balance_genesis_config: value + .iter() + .map(|(address, balance)| (AccountId::to_account_id(address), *balance)) + .collect(), + } } /// Build the externalities @@ -83,12 +92,6 @@ impl ExtBuilder { } } -/// Default gas limit -pub const GAS_LIMIT: Weight = Weight::from_parts(100_000_000_000, 3 * 1024 * 1024); - -/// Default deposit limit -pub const DEPOSIT_LIMIT: Balance = 10_000_000; - /// Expectation for a call #[derive(Debug, Clone, Serialize, Deserialize)] pub struct VerifyCallExpectation { @@ -157,9 +160,11 @@ impl VerifyCallExpectation { result.is_ok(), "contract execution result mismatch: {result:?}" ); + if let Some(gas_consumed) = self.gas_consumed { assert_eq!(gas_consumed, result.gas_consumed()); } + if let OptionalHex(Some(data)) = self.output { assert_eq!(data, result.output()); } @@ -211,7 +216,7 @@ impl CallResult { } } -#[derive(Debug, Clone, Serialize, Deserialize)] +#[derive(Clone, Debug, Serialize, Deserialize)] pub enum Code { /// Compile a single solidity source and use the blob of `contract` Solidity { @@ -263,44 +268,6 @@ impl From for pallet_revive::Code { } } -pub fn specs_from_comment(contract_name: &str, path: &str) -> Vec { - let solidity = match std::fs::read_to_string(path) { - Err(err) => panic!("unable to read {path}: {err}"), - Ok(solidity) => solidity, - }; - let mut json_string = String::with_capacity(solidity.len()); - let mut is_reading = false; - let mut specs = Vec::new(); - - for line in solidity.lines() { - if line.starts_with(SPEC_MARKER_BEGIN) { - is_reading = true; - continue; - } - - if is_reading { - if line.starts_with(SPEC_MARKER_END) { - match serde_json::from_str::(&json_string) { - Ok(mut spec) => { - spec.replace_empty_code(contract_name, path); - specs.push(spec); - } - Err(e) => panic!("invalid spec JSON: {e}"), - } - is_reading = false; - json_string.clear(); - continue; - } - - json_string.push_str(line) - } - } - - assert!(!specs.is_empty(), "source does not contain any test spec"); - - specs -} - #[cfg(test)] mod tests { use crate::*; @@ -310,7 +277,7 @@ mod tests { use specs::SpecsAction::*; let specs = Specs { differential: false, - balances: vec![(AccountId::to_account_id(&EHT_ALICE), 1_000_000_000)], + balances: vec![(ALICE, 1_000_000_000)], actions: vec![Instantiate { origin: TestAddress::Alice, value: 0, @@ -330,7 +297,7 @@ mod tests { r#" { "balances": [ - [ "5C62Ck4UrFPiBtoCmeSrgF7x9yv9mn38446dhCpsi2mLHiFT", 1000000000 ] + [ "0101010101010101010101010101010101010101", 1000000000 ] ], "actions": [ { diff --git a/crates/runner/src/specs.rs b/crates/runner/src/specs.rs index 2373cb2c..0f3724e8 100644 --- a/crates/runner/src/specs.rs +++ b/crates/runner/src/specs.rs @@ -8,6 +8,9 @@ use crate::*; use alloy_primitives::Address; use revive_solidity::test_utils::*; +const SPEC_MARKER_BEGIN: &str = "/* runner.json"; +const SPEC_MARKER_END: &str = "*/"; + /// An action to perform in a contract test #[derive(Debug, Clone, Serialize, Deserialize)] pub enum SpecsAction { @@ -155,7 +158,7 @@ pub struct Specs { #[serde(default)] pub differential: bool, /// List of endowments at genesis - pub balances: Vec<(AccountId32, Balance)>, + pub balances: Vec<(H160, Balance)>, /// List of actions to perform pub actions: Vec, } @@ -164,7 +167,7 @@ impl Default for Specs { fn default() -> Self { Self { differential: false, - balances: vec![(AccountId::to_account_id(&ALICE), 1_000_000_000)], + balances: vec![(ALICE, 1_000_000_000)], actions: Default::default(), } } @@ -420,8 +423,42 @@ impl Specs { results } -} -pub trait SpecsRunner { - fn run_action(&mut self, spec: &mut Specs) -> Vec; + pub fn from_comment(contract_name: &str, path: &str) -> Vec { + let solidity = match std::fs::read_to_string(path) { + Err(err) => panic!("unable to read {path}: {err}"), + Ok(solidity) => solidity, + }; + let mut json_string = String::with_capacity(solidity.len()); + let mut is_reading = false; + let mut specs = Vec::new(); + + for line in solidity.lines() { + if line.starts_with(SPEC_MARKER_BEGIN) { + is_reading = true; + continue; + } + + if is_reading { + if line.starts_with(SPEC_MARKER_END) { + match serde_json::from_str::(&json_string) { + Ok(mut spec) => { + spec.replace_empty_code(contract_name, path); + specs.push(spec); + } + Err(e) => panic!("invalid spec JSON: {e}"), + } + is_reading = false; + json_string.clear(); + continue; + } + + json_string.push_str(line) + } + } + + assert!(!specs.is_empty(), "source does not contain any test spec"); + + specs + } }