From 64390a2ba8e8bb69c0a7c57e730c8b1459693e6f Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Sat, 12 Oct 2024 19:06:42 +0200 Subject: [PATCH 1/9] implement delegate_call --- crates/integration/contracts/Delegate.sol | 80 +++++++++++++++++++ crates/integration/src/tests.rs | 1 + .../src/polkavm/const/runtime_api.rs | 8 +- crates/llvm-context/src/polkavm/evm/call.rs | 73 +++++++++++++++-- crates/runtime-api/src/polkavm_imports.c | 2 +- 5 files changed, 155 insertions(+), 9 deletions(-) create mode 100644 crates/integration/contracts/Delegate.sol diff --git a/crates/integration/contracts/Delegate.sol b/crates/integration/contracts/Delegate.sol new file mode 100644 index 00000000..84dfa973 --- /dev/null +++ b/crates/integration/contracts/Delegate.sol @@ -0,0 +1,80 @@ +// SPDX-License-Identifier: MIT + +pragma solidity ^0.8; + +/* runner.json +{ + "differential": true, + "actions": [ + { + "Upload": { + "code": { + "Solidity": { + "contract": "Logic" + } + } + } + }, + { + "Instantiate": { + "code": { + "Solidity": { + "contract": "Tester" + } + } + } + }, + { + "Call": { + "dest": { + "Instantiated": 0 + }, + "value": 123, + "data": "6466414b0000000000000000000000000000000000000000000000000000000000000020" + } + } + ] +} +*/ + +contract Logic { + // NOTE: storage layout must be the same as contract Tester + uint256 public num; + address public sender; + uint256 public value; + + event DidSetVars(); + + function setVars(uint256 _num) public payable returns (uint256) { + num = _num * 2; + sender = msg.sender; + value = msg.value; + emit DidSetVars(); + return _num; + } +} + +contract Tester { + uint256 public num; + address public sender; + uint256 public value; + + function setVars(uint256 _num) public payable returns (bool, bytes memory) { + Logic impl = new Logic(); + + // Tester's storage is set, Logic is not modified. + (bool success, bytes memory data) = address(impl).delegatecall( + abi.encodeWithSignature("setVars(uint256)", _num) + ); + + assert(success); + assert(impl.num() == 0); + assert(impl.sender() == address(0)); + assert(impl.value() == 0); + assert(this.num() == _num * 2); + assert(this.sender() == msg.sender); + assert(this.value() == msg.value); + + return (success, data); + } +} diff --git a/crates/integration/src/tests.rs b/crates/integration/src/tests.rs index 0e792edf..1e2fc976 100644 --- a/crates/integration/src/tests.rs +++ b/crates/integration/src/tests.rs @@ -43,6 +43,7 @@ test_spec!(call, "Caller", "Call.sol"); test_spec!(transfer, "Transfer", "Transfer.sol"); test_spec!(return_data_oob, "ReturnDataOob", "ReturnDataOob.sol"); test_spec!(immutables, "Immutables", "Immutables.sol"); +test_spec!(delegate, "Delegate", "Delegate.sol"); fn instantiate(path: &str, contract: &str) -> Vec { vec![Instantiate { diff --git a/crates/llvm-context/src/polkavm/const/runtime_api.rs b/crates/llvm-context/src/polkavm/const/runtime_api.rs index 7529a013..f5b788f8 100644 --- a/crates/llvm-context/src/polkavm/const/runtime_api.rs +++ b/crates/llvm-context/src/polkavm/const/runtime_api.rs @@ -25,10 +25,14 @@ pub mod imports { pub static CALL: &str = "call"; + pub static DELEGATE_CALL: &str = "delegate_call"; + pub static CALLER: &str = "caller"; pub static CODE_SIZE: &str = "code_size"; + pub static CODE_HASH: &str = "code_hash"; + pub static DEPOSIT_EVENT: &str = "deposit_event"; pub static GET_IMMUTABLE_DATA: &str = "get_immutable_data"; @@ -57,15 +61,17 @@ pub mod imports { /// All imported runtime API symbols. /// Useful for configuring common attributes and linkage. - pub static IMPORTS: [&str; 21] = [ + pub static IMPORTS: [&str; 23] = [ ADDRESS, BALANCE, BALANCE_OF, BLOCK_NUMBER, CALL, + DELEGATE_CALL, CALLER, CHAIN_ID, CODE_SIZE, + CODE_HASH, DEPOSIT_EVENT, GET_IMMUTABLE_DATA, GET_STORAGE, diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index 22472500..61f5f45f 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -103,20 +103,79 @@ where #[allow(clippy::too_many_arguments)] pub fn delegate_call<'ctx, D>( - _context: &mut Context<'ctx, D>, + context: &mut Context<'ctx, D>, _gas: inkwell::values::IntValue<'ctx>, - _address: inkwell::values::IntValue<'ctx>, + address: inkwell::values::IntValue<'ctx>, _value: Option>, - _input_offset: inkwell::values::IntValue<'ctx>, - _input_length: inkwell::values::IntValue<'ctx>, - _output_offset: inkwell::values::IntValue<'ctx>, - _output_length: inkwell::values::IntValue<'ctx>, + input_offset: inkwell::values::IntValue<'ctx>, + input_length: inkwell::values::IntValue<'ctx>, + output_offset: inkwell::values::IntValue<'ctx>, + output_length: inkwell::values::IntValue<'ctx>, _constants: Vec>, ) -> anyhow::Result> where D: Dependency + Clone, { - todo!() + let address_pointer = context.build_address_argument_store(address)?; + + let extcodehash_pointer = + context.build_alloca_at_entry(context.word_type(), "extcodehash_pointer"); + + context.build_runtime_call( + runtime_api::imports::CODE_HASH, + &[ + address_pointer.to_int(context).into(), + extcodehash_pointer.to_int(context).into(), + ], + ); + + context.build_byte_swap(context.build_load(extcodehash_pointer, "extcodehash_value")?)?; + + let input_offset = context.safe_truncate_int_to_xlen(input_offset)?; + let input_length = context.safe_truncate_int_to_xlen(input_length)?; + let output_offset = context.safe_truncate_int_to_xlen(output_offset)?; + let output_length = context.safe_truncate_int_to_xlen(output_length)?; + + // TODO: What to supply here? Is there a weight to gas? + let _gas = context + .builder() + .build_int_truncate(_gas, context.integer_type(64), "gas")?; + + let input_pointer = context.build_heap_gep(input_offset, input_length)?; + let output_pointer = context.build_heap_gep(output_offset, output_length)?; + + let output_length_pointer = context.build_alloca_at_entry(context.xlen_type(), "output_length"); + context.build_store(output_length_pointer, output_length)?; + + let flags = context.xlen_type().const_int(0u64, false); + + let name = runtime_api::imports::DELEGATE_CALL; + let success = context + .build_runtime_call( + name, + &[ + flags.into(), + extcodehash_pointer.to_int(context).into(), + input_pointer.to_int(context).into(), + input_length.into(), + output_pointer.to_int(context).into(), + output_length_pointer.to_int(context).into(), + ], + ) + .unwrap_or_else(|| panic!("{name} should return a value")) + .into_int_value(); + + let is_success = context.builder().build_int_compare( + inkwell::IntPredicate::EQ, + success, + context.xlen_type().const_zero(), + "is_success", + )?; + + Ok(context + .builder() + .build_int_z_extend(is_success, context.word_type(), "success")? + .as_basic_value_enum()) } /// Translates the Yul `linkersymbol` instruction. diff --git a/crates/runtime-api/src/polkavm_imports.c b/crates/runtime-api/src/polkavm_imports.c index 108f96a1..b2b2c45c 100644 --- a/crates/runtime-api/src/polkavm_imports.c +++ b/crates/runtime-api/src/polkavm_imports.c @@ -87,7 +87,7 @@ POLKAVM_IMPORT(void, caller, uint32_t) POLKAVM_IMPORT(uint32_t, is_contract, uint32_t) -POLKAVM_IMPORT(uint32_t, code_hash, uint32_t, uint32_t, uint32_t) +POLKAVM_IMPORT(uint32_t, code_hash, uint32_t, uint32_t) POLKAVM_IMPORT(uint32_t, code_size, uint32_t) From 563682433b927862b883cce8369f3b4e9052c041 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Thu, 17 Oct 2024 16:21:56 +0200 Subject: [PATCH 2/9] update delegate_call to use address, gas_limit --- crates/llvm-context/src/polkavm/evm/call.rs | 52 ++++++++++---------- crates/runtime-api/src/calling_convention.rs | 25 ++++++++++ crates/runtime-api/src/polkavm_imports.c | 2 +- 3 files changed, 52 insertions(+), 27 deletions(-) diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index 61f5f45f..fca0acc2 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -118,26 +118,12 @@ where { let address_pointer = context.build_address_argument_store(address)?; - let extcodehash_pointer = - context.build_alloca_at_entry(context.word_type(), "extcodehash_pointer"); - - context.build_runtime_call( - runtime_api::imports::CODE_HASH, - &[ - address_pointer.to_int(context).into(), - extcodehash_pointer.to_int(context).into(), - ], - ); - - context.build_byte_swap(context.build_load(extcodehash_pointer, "extcodehash_value")?)?; - let input_offset = context.safe_truncate_int_to_xlen(input_offset)?; let input_length = context.safe_truncate_int_to_xlen(input_length)?; let output_offset = context.safe_truncate_int_to_xlen(output_offset)?; let output_length = context.safe_truncate_int_to_xlen(output_length)?; - // TODO: What to supply here? Is there a weight to gas? - let _gas = context + let gas = context .builder() .build_int_truncate(_gas, context.integer_type(64), "gas")?; @@ -149,19 +135,33 @@ where let flags = context.xlen_type().const_int(0u64, false); + let argument_type = revive_runtime_api::calling_convention::delegate_call(context.llvm()); + let argument_pointer = context.build_alloca_at_entry(argument_type, "delegate_call_arguments"); + let arguments = &[ + flags.as_basic_value_enum(), + address_pointer.value.as_basic_value_enum(), + gas.as_basic_value_enum(), + context.integer_const(64, 0).as_basic_value_enum(), + input_pointer.value.as_basic_value_enum(), + input_length.as_basic_value_enum(), + output_pointer.value.as_basic_value_enum(), + output_length_pointer.value.as_basic_value_enum(), + ]; + revive_runtime_api::calling_convention::spill( + context.builder(), + argument_pointer.value, + argument_type, + arguments, + )?; + let name = runtime_api::imports::DELEGATE_CALL; + let argument_pointer = context.builder().build_ptr_to_int( + argument_pointer.value, + context.xlen_type(), + "delegate_call_argument_pointer", + )?; let success = context - .build_runtime_call( - name, - &[ - flags.into(), - extcodehash_pointer.to_int(context).into(), - input_pointer.to_int(context).into(), - input_length.into(), - output_pointer.to_int(context).into(), - output_length_pointer.to_int(context).into(), - ], - ) + .build_runtime_call(name, &[argument_pointer.into()]) .unwrap_or_else(|| panic!("{name} should return a value")) .into_int_value(); diff --git a/crates/runtime-api/src/calling_convention.rs b/crates/runtime-api/src/calling_convention.rs index c92a2663..31683c65 100644 --- a/crates/runtime-api/src/calling_convention.rs +++ b/crates/runtime-api/src/calling_convention.rs @@ -106,3 +106,28 @@ pub fn call(context: &Context) -> StructType { true, ) } + +/// Returns a packed struct argument type for the `delegate_call` API. +pub fn delegate_call(context: &Context) -> StructType { + context.struct_type( + &[ + // flags: u32, + context.i32_type().as_basic_type_enum(), + // address_ptr: + context.ptr_type(Default::default()).as_basic_type_enum(), + // ref_time_limit: u64, + context.i64_type().as_basic_type_enum(), + // proof_size_limit: u64, + context.i64_type().as_basic_type_enum(), + // input_data_ptr: u32, + context.ptr_type(Default::default()).as_basic_type_enum(), + // input_data_len: u32, + context.i32_type().as_basic_type_enum(), + // output_ptr: u32, + context.ptr_type(Default::default()).as_basic_type_enum(), + // output_len_ptr: u32, + context.ptr_type(Default::default()).as_basic_type_enum(), + ], + true, + ) +} diff --git a/crates/runtime-api/src/polkavm_imports.c b/crates/runtime-api/src/polkavm_imports.c index fb4fcda1..67762c0c 100644 --- a/crates/runtime-api/src/polkavm_imports.c +++ b/crates/runtime-api/src/polkavm_imports.c @@ -90,7 +90,7 @@ POLKAVM_IMPORT(uint32_t, take_storage, uint32_t, uint32_t, uint32_t, uint32_t) POLKAVM_IMPORT(uint32_t, call, uint32_t) -POLKAVM_IMPORT(uint32_t, delegate_call, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t) +POLKAVM_IMPORT(uint32_t, delegate_call, uint32_t) POLKAVM_IMPORT(uint32_t, instantiate, uint32_t) From 9f85c92e499e05fd432282111d7e33f4c6d82d8d Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Thu, 17 Oct 2024 16:31:35 +0200 Subject: [PATCH 3/9] cleanup --- .../llvm-context/src/polkavm/const/runtime_api.rs | 5 +---- crates/llvm-context/src/polkavm/evm/call.rs | 13 ++++++------- crates/runtime-api/src/polkavm_imports.c | 2 +- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/crates/llvm-context/src/polkavm/const/runtime_api.rs b/crates/llvm-context/src/polkavm/const/runtime_api.rs index 9306b94a..61f68107 100644 --- a/crates/llvm-context/src/polkavm/const/runtime_api.rs +++ b/crates/llvm-context/src/polkavm/const/runtime_api.rs @@ -35,8 +35,6 @@ pub mod imports { pub static CODE_SIZE: &str = "code_size"; - pub static CODE_HASH: &str = "code_hash"; - pub static DEPOSIT_EVENT: &str = "deposit_event"; pub static GET_IMMUTABLE_DATA: &str = "get_immutable_data"; @@ -65,7 +63,7 @@ pub mod imports { /// All imported runtime API symbols. /// Useful for configuring common attributes and linkage. - pub static IMPORTS: [&str; 25] = [ + pub static IMPORTS: [&str; 24] = [ SBRK, MEMORY_SIZE, ADDRESS, @@ -77,7 +75,6 @@ pub mod imports { CALLER, CHAIN_ID, CODE_SIZE, - CODE_HASH, DEPOSIT_EVENT, GET_IMMUTABLE_DATA, GET_STORAGE, diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index fca0acc2..954adf42 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -14,7 +14,7 @@ const REENTRANT_CALL_FLAG: u32 = 0b0000_1000; #[allow(clippy::too_many_arguments)] pub fn call<'ctx, D>( context: &mut Context<'ctx, D>, - _gas: inkwell::values::IntValue<'ctx>, + gas: inkwell::values::IntValue<'ctx>, address: inkwell::values::IntValue<'ctx>, value: Option>, input_offset: inkwell::values::IntValue<'ctx>, @@ -38,10 +38,9 @@ where let output_offset = context.safe_truncate_int_to_xlen(output_offset)?; let output_length = context.safe_truncate_int_to_xlen(output_length)?; - // TODO: What to supply here? Is there a weight to gas? - let _gas = context + let gas = context .builder() - .build_int_truncate(_gas, context.integer_type(64), "gas")?; + .build_int_truncate(gas, context.integer_type(64), "gas")?; let input_pointer = context.build_heap_gep(input_offset, input_length)?; let output_pointer = context.build_heap_gep(output_offset, output_length)?; @@ -61,7 +60,7 @@ where let arguments = &[ flags.as_basic_value_enum(), address_pointer.value.as_basic_value_enum(), - context.integer_const(64, 0).as_basic_value_enum(), + gas.as_basic_value_enum(), context.integer_const(64, 0).as_basic_value_enum(), context.sentinel_pointer().value.as_basic_value_enum(), value_pointer.value.as_basic_value_enum(), @@ -104,7 +103,7 @@ where #[allow(clippy::too_many_arguments)] pub fn delegate_call<'ctx, D>( context: &mut Context<'ctx, D>, - _gas: inkwell::values::IntValue<'ctx>, + gas: inkwell::values::IntValue<'ctx>, address: inkwell::values::IntValue<'ctx>, _value: Option>, input_offset: inkwell::values::IntValue<'ctx>, @@ -125,7 +124,7 @@ where let gas = context .builder() - .build_int_truncate(_gas, context.integer_type(64), "gas")?; + .build_int_truncate(gas, context.integer_type(64), "gas")?; let input_pointer = context.build_heap_gep(input_offset, input_length)?; let output_pointer = context.build_heap_gep(output_offset, output_length)?; diff --git a/crates/runtime-api/src/polkavm_imports.c b/crates/runtime-api/src/polkavm_imports.c index 67762c0c..9d38ff97 100644 --- a/crates/runtime-api/src/polkavm_imports.c +++ b/crates/runtime-api/src/polkavm_imports.c @@ -100,7 +100,7 @@ POLKAVM_IMPORT(void, caller, uint32_t) POLKAVM_IMPORT(uint32_t, is_contract, uint32_t) -POLKAVM_IMPORT(uint32_t, code_hash, uint32_t, uint32_t) +POLKAVM_IMPORT(uint32_t, code_hash, uint32_t, uint32_t, uint32_t) POLKAVM_IMPORT(uint32_t, code_size, uint32_t) From d96aba099abee50c1b322326d19d5acf4224b02d Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Wed, 23 Oct 2024 21:19:07 +0200 Subject: [PATCH 4/9] fix import --- crates/llvm-context/src/polkavm/evm/call.rs | 2 +- crates/runtime-api/src/polkavm_imports.rs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index b129cd84..16a1c16e 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -152,7 +152,7 @@ where arguments, )?; - let name = runtime_api::imports::DELEGATE_CALL; + let name = revive_runtime_api::polkavm_imports::DELEGATE_CALL; let argument_pointer = context.builder().build_ptr_to_int( argument_pointer.value, context.xlen_type(), diff --git a/crates/runtime-api/src/polkavm_imports.rs b/crates/runtime-api/src/polkavm_imports.rs index a19cb101..0750b320 100644 --- a/crates/runtime-api/src/polkavm_imports.rs +++ b/crates/runtime-api/src/polkavm_imports.rs @@ -24,6 +24,8 @@ pub static BLOCK_NUMBER: &str = "block_number"; pub static CALL: &str = "call"; +pub static DELEGATE_CALL: &str = "delegate_call"; + pub static CALLER: &str = "caller"; pub static CHAIN_ID: &str = "chain_id"; @@ -60,7 +62,7 @@ pub static VALUE_TRANSFERRED: &str = "value_transferred"; /// All imported runtime API symbols. /// Useful for configuring common attributes and linkage. -pub static IMPORTS: [&str; 24] = [ +pub static IMPORTS: [&str; 25] = [ SBRK, MEMORY_SIZE, ADDRESS, @@ -68,6 +70,7 @@ pub static IMPORTS: [&str; 24] = [ BALANCE_OF, BLOCK_NUMBER, CALL, + DELEGATE_CALL, CALLER, CHAIN_ID, CODE_SIZE, From 678f6ce59f93797eed33d42e7a554b83a6059d4a Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Thu, 31 Oct 2024 13:52:47 +0100 Subject: [PATCH 5/9] update --- crates/integration/contracts/Delegate.sol | 12 ++++++++---- crates/llvm-context/src/polkavm/evm/call.rs | 1 + crates/runtime-api/src/calling_convention.rs | 2 ++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/crates/integration/contracts/Delegate.sol b/crates/integration/contracts/Delegate.sol index 84dfa973..8119be63 100644 --- a/crates/integration/contracts/Delegate.sol +++ b/crates/integration/contracts/Delegate.sol @@ -43,10 +43,12 @@ contract Logic { address public sender; uint256 public value; + uint public immutable multiplier = 4; + event DidSetVars(); function setVars(uint256 _num) public payable returns (uint256) { - num = _num * 2; + num = _num * multiplier; sender = msg.sender; value = msg.value; emit DidSetVars(); @@ -59,6 +61,8 @@ contract Tester { address public sender; uint256 public value; + uint public immutable multiplier = 2; + function setVars(uint256 _num) public payable returns (bool, bytes memory) { Logic impl = new Logic(); @@ -71,9 +75,9 @@ contract Tester { assert(impl.num() == 0); assert(impl.sender() == address(0)); assert(impl.value() == 0); - assert(this.num() == _num * 2); - assert(this.sender() == msg.sender); - assert(this.value() == msg.value); + assert(num == _num * 4); + assert(sender == msg.sender); + assert(value == msg.value); return (success, data); } diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index 16a1c16e..c0d5705c 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -140,6 +140,7 @@ where address_pointer.value.as_basic_value_enum(), gas.as_basic_value_enum(), context.integer_const(64, 0).as_basic_value_enum(), + context.sentinel_pointer().value.as_basic_value_enum(), input_pointer.value.as_basic_value_enum(), input_length.as_basic_value_enum(), output_pointer.value.as_basic_value_enum(), diff --git a/crates/runtime-api/src/calling_convention.rs b/crates/runtime-api/src/calling_convention.rs index 31683c65..012c954d 100644 --- a/crates/runtime-api/src/calling_convention.rs +++ b/crates/runtime-api/src/calling_convention.rs @@ -119,6 +119,8 @@ pub fn delegate_call(context: &Context) -> StructType { context.i64_type().as_basic_type_enum(), // proof_size_limit: u64, context.i64_type().as_basic_type_enum(), + // deposit_ptr: u32, + context.ptr_type(Default::default()).as_basic_type_enum(), // input_data_ptr: u32, context.ptr_type(Default::default()).as_basic_type_enum(), // input_data_len: u32, From 240854c6076d7cb6fe04ab8de89b1be82122899c Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Thu, 31 Oct 2024 14:06:18 +0100 Subject: [PATCH 6/9] fix after merge --- crates/integration/codesize.json | 16 ++++++++-------- crates/runtime-api/src/polkavm_imports.rs | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/crates/integration/codesize.json b/crates/integration/codesize.json index 868c5943..a44f42bc 100644 --- a/crates/integration/codesize.json +++ b/crates/integration/codesize.json @@ -1,10 +1,10 @@ { - "Baseline": 967, - "Computation": 4022, - "DivisionArithmetics": 31787, - "ERC20": 44233, - "Events": 1743, - "FibonacciIterative": 2927, - "Flipper": 3408, - "SHA1": 26009 + "Baseline": 961, + "Computation": 4016, + "DivisionArithmetics": 31781, + "ERC20": 44214, + "Events": 1737, + "FibonacciIterative": 2921, + "Flipper": 3402, + "SHA1": 26003 } \ No newline at end of file diff --git a/crates/runtime-api/src/polkavm_imports.rs b/crates/runtime-api/src/polkavm_imports.rs index 116ac4ba..403eb22e 100644 --- a/crates/runtime-api/src/polkavm_imports.rs +++ b/crates/runtime-api/src/polkavm_imports.rs @@ -64,7 +64,7 @@ pub static VALUE_TRANSFERRED: &str = "value_transferred"; /// All imported runtime API symbols. /// Useful for configuring common attributes and linkage. -pub static IMPORTS: [&str; 25] = [ +pub static IMPORTS: [&str; 26] = [ SBRK, MEMORY_SIZE, ADDRESS, From 5e50bd0f105de6f29d048428c6744442f0bce8d4 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Tue, 19 Nov 2024 13:04:22 +0100 Subject: [PATCH 7/9] update --- Cargo.lock | 714 +++++++++++----------- Cargo.toml | 2 +- crates/runtime-api/src/polkavm_imports.rs | 2 +- 3 files changed, 359 insertions(+), 359 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77cb70e2..86f0a4ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -748,7 +748,7 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "asset-test-utils" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -777,7 +777,7 @@ dependencies = [ [[package]] name = "assets-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -906,7 +906,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "binary-merkle-tree" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "hash-db", "log", @@ -1074,7 +1074,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1085,13 +1085,13 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1101,13 +1101,13 @@ dependencies = [ "serde", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1118,26 +1118,26 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-polkadot" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" 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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-polkadot-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-messages", "bp-runtime", @@ -1148,13 +1148,13 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-messages", @@ -1166,13 +1166,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "bp-runtime" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -1187,7 +1187,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "trie-db", ] @@ -1195,7 +1195,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1208,14 +1208,14 @@ dependencies = [ "sp-consensus-grandpa", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", ] [[package]] name = "bp-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-messages", "bp-runtime", @@ -1225,14 +1225,14 @@ dependencies = [ "serde", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", ] [[package]] name = "bp-xcm-bridge-hub-router" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -1244,7 +1244,7 @@ dependencies = [ [[package]] name = "bridge-hub-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1254,14 +1254,14 @@ dependencies = [ "snowbridge-core", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", ] [[package]] name = "bridge-hub-test-utils" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "asset-test-utils", "bp-header-chain", @@ -1295,7 +1295,7 @@ dependencies = [ "sp-io", "sp-keyring", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1304,7 +1304,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-messages", @@ -1326,7 +1326,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "sp-weights", "staging-xcm", @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -1946,7 +1946,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -1963,7 +1963,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -1983,12 +1983,12 @@ dependencies = [ "polkadot-runtime-parachains", "scale-info", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-inherents", "sp-io", "sp-runtime", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "sp-version", "staging-xcm", @@ -1999,7 +1999,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2010,7 +2010,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2023,7 +2023,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-solo-to-para" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2053,7 +2053,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", @@ -2078,7 +2078,7 @@ dependencies = [ [[package]] name = "cumulus-ping" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", @@ -2093,7 +2093,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "sp-api", "sp-consensus-aura", @@ -2102,7 +2102,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2118,7 +2118,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2132,17 +2132,17 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", ] [[package]] name = "cumulus-primitives-storage-weight-reclaim" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -2159,7 +2159,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "sp-inherents", @@ -2169,7 +2169,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2186,7 +2186,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2873,7 +2873,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-support-procedural", @@ -2889,15 +2889,15 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "static_assertions", ] [[package]] name = "frame-benchmarking-pallet-pov" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2925,7 +2925,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2936,7 +2936,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2952,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "aquamarine", "frame-support", @@ -2964,7 +2964,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -2993,7 +2993,7 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "array-bytes", "const-hex", @@ -3009,7 +3009,7 @@ dependencies = [ [[package]] name = "frame-support" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "aquamarine", "array-bytes", @@ -3033,7 +3033,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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -3041,8 +3041,8 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "sp-weights", "static_assertions", @@ -3052,7 +3052,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "Inflector", "cfg-expr", @@ -3065,14 +3065,14 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "syn 2.0.87", ] [[package]] name = "frame-support-procedural-tools" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3084,7 +3084,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro2", "quote", @@ -3094,7 +3094,7 @@ dependencies = [ [[package]] name = "frame-system" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cfg-if", "docify", @@ -3106,7 +3106,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-version", "sp-weights", ] @@ -3114,7 +3114,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -3128,7 +3128,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "parity-scale-codec", @@ -3138,7 +3138,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "parity-scale-codec", @@ -4834,7 +4834,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-alliance" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4845,7 +4845,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-io", "sp-runtime", ] @@ -4853,7 +4853,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4871,7 +4871,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-ops" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4889,7 +4889,7 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4904,7 +4904,7 @@ dependencies = [ [[package]] name = "pallet-asset-rate" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4918,7 +4918,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4935,7 +4935,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "29.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4951,7 +4951,7 @@ dependencies = [ [[package]] name = "pallet-assets-freezer" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4966,7 +4966,7 @@ dependencies = [ [[package]] name = "pallet-atomic-swap" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -4996,7 +4996,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5011,7 +5011,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5024,7 +5024,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5047,7 +5047,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "aquamarine", "docify", @@ -5062,13 +5062,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "pallet-balances" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -5083,7 +5083,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5102,7 +5102,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -5127,7 +5127,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5144,7 +5144,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5157,13 +5157,13 @@ dependencies = [ "scale-info", "sp-consensus-grandpa", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "pallet-bridge-messages" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-messages", @@ -5175,14 +5175,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", ] [[package]] name = "pallet-bridge-parachains" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-parachains", @@ -5196,13 +5196,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "pallet-bridge-relayers" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-header-chain", "bp-messages", @@ -5220,13 +5220,13 @@ dependencies = [ "scale-info", "sp-arithmetic", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "pallet-broker" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitvec", "frame-benchmarking", @@ -5244,7 +5244,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5262,7 +5262,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5281,7 +5281,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -5298,7 +5298,7 @@ dependencies = [ [[package]] name = "pallet-collective-content" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5312,7 +5312,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitflags 1.3.2", "environmental", @@ -5334,7 +5334,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "wasm-instrument", @@ -5344,7 +5344,7 @@ dependencies = [ [[package]] name = "pallet-contracts-mock-network" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5369,7 +5369,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -5379,7 +5379,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro2", "quote", @@ -5389,7 +5389,7 @@ dependencies = [ [[package]] name = "pallet-contracts-uapi" version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -5400,7 +5400,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5416,7 +5416,7 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5434,7 +5434,7 @@ dependencies = [ [[package]] name = "pallet-delegated-staking" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5449,7 +5449,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5466,7 +5466,7 @@ dependencies = [ [[package]] name = "pallet-dev-mode" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5481,7 +5481,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5503,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5516,7 +5516,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5534,7 +5534,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -5552,7 +5552,7 @@ dependencies = [ [[package]] name = "pallet-glutton" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "blake2", "frame-benchmarking", @@ -5570,7 +5570,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5608,7 +5608,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5627,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5643,7 +5643,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5656,7 +5656,7 @@ dependencies = [ [[package]] name = "pallet-lottery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5669,7 +5669,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5685,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "environmental", "frame-benchmarking", @@ -5704,7 +5704,7 @@ dependencies = [ [[package]] name = "pallet-migrations" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cfg-if", "docify", @@ -5722,7 +5722,7 @@ dependencies = [ [[package]] name = "pallet-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5741,7 +5741,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5758,7 +5758,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "log", "parity-scale-codec", @@ -5769,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5785,7 +5785,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5802,7 +5802,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "pallet-nfts", "parity-scale-codec", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-node-authorization" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5842,7 +5842,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5854,13 +5854,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "pallet-nomination-pools-benchmarking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5873,14 +5873,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-staking", ] [[package]] name = "pallet-nomination-pools-runtime-api" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -5906,7 +5906,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5929,7 +5929,7 @@ dependencies = [ [[package]] name = "pallet-paged-list" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -5946,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-parameters" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -5963,7 +5963,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5979,7 +5979,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -5989,7 +5989,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6007,7 +6007,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6021,7 +6021,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6038,7 +6038,7 @@ dependencies = [ [[package]] name = "pallet-remark" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6054,7 +6054,7 @@ dependencies = [ [[package]] name = "pallet-revive" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitflags 1.3.2", "derive_more 0.99.18", @@ -6083,7 +6083,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-weights", "staging-xcm", "staging-xcm-builder", @@ -6093,7 +6093,7 @@ dependencies = [ [[package]] name = "pallet-revive-fixtures" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "anyhow", "frame-system", @@ -6110,7 +6110,7 @@ dependencies = [ [[package]] name = "pallet-revive-mock-network" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6134,7 +6134,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -6144,7 +6144,7 @@ dependencies = [ [[package]] name = "pallet-revive-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro2", "quote", @@ -6154,7 +6154,7 @@ dependencies = [ [[package]] name = "pallet-revive-uapi" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-root-offences" version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6181,7 +6181,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "4.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6195,7 +6195,7 @@ dependencies = [ [[package]] name = "pallet-safe-mode" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "pallet-salary" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6231,7 +6231,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6248,7 +6248,7 @@ dependencies = [ [[package]] name = "pallet-scored-pool" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6261,7 +6261,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6282,7 +6282,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6298,7 +6298,7 @@ dependencies = [ [[package]] name = "pallet-skip-feeless-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6310,7 +6310,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6327,7 +6327,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6348,7 +6348,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "log", "sp-arithmetic", @@ -6357,7 +6357,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "sp-api", @@ -6367,7 +6367,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6383,7 +6383,7 @@ dependencies = [ [[package]] name = "pallet-statement" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -6400,7 +6400,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6415,7 +6415,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6427,14 +6427,14 @@ dependencies = [ "sp-inherents", "sp-io", "sp-runtime", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-timestamp", ] [[package]] name = "pallet-tips" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6452,7 +6452,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6468,7 +6468,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6480,7 +6480,7 @@ dependencies = [ [[package]] name = "pallet-transaction-storage" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6499,7 +6499,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6518,7 +6518,7 @@ dependencies = [ [[package]] name = "pallet-tx-pause" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -6535,7 +6535,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6549,7 +6549,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6564,7 +6564,7 @@ dependencies = [ [[package]] name = "pallet-verify-signature" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6580,7 +6580,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6594,7 +6594,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6608,7 +6608,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -6631,7 +6631,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -6649,7 +6649,7 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-messages", "bp-runtime", @@ -6662,7 +6662,7 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -6671,7 +6671,7 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub-router" version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", @@ -6682,7 +6682,7 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", ] @@ -6690,7 +6690,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -6720,7 +6720,7 @@ dependencies = [ [[package]] name = "parachains-runtimes-test-utils" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -6740,7 +6740,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-parachain-info", "staging-xcm", "staging-xcm-executor", @@ -6962,7 +6962,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -6973,7 +6973,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bounded-collections", "derive_more 0.99.18", @@ -6989,7 +6989,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitvec", "hex-literal", @@ -7010,14 +7010,14 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "thiserror", ] [[package]] name = "polkadot-runtime-common" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitvec", "frame-benchmarking", @@ -7067,19 +7067,19 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bs58", "frame-benchmarking", "parity-scale-codec", "polkadot-primitives", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "polkadot-runtime-parachains" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -7119,7 +7119,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-executor", ] @@ -7127,7 +7127,7 @@ dependencies = [ [[package]] name = "polkadot-sdk" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "asset-test-utils", "assets-common", @@ -7319,11 +7319,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=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -7335,22 +7335,22 @@ dependencies = [ "sp-npos-elections", "sp-offchain", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-session", "sp-staking", "sp-state-machine", "sp-statement-store", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-timestamp", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-weights", "staging-parachain-info", "staging-xcm", @@ -7373,7 +7373,7 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "frame-benchmarking", @@ -7399,7 +7399,7 @@ dependencies = [ "sp-offchain", "sp-runtime", "sp-session", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-transaction-pool", "sp-version", ] @@ -8233,7 +8233,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "polkadot-primitives", @@ -8504,18 +8504,18 @@ dependencies = [ [[package]] name = "sc-allocator" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "log", "sp-core", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "thiserror", ] [[package]] name = "sc-executor" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "parking_lot", @@ -8525,25 +8525,25 @@ dependencies = [ "schnellru", "sp-api", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-io", "sp-panic-handler", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "tracing", ] [[package]] name = "sc-executor-common" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" 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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "thiserror", "wasm-instrument", ] @@ -8551,18 +8551,18 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "log", "polkavm 0.9.3", "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "sc-executor-wasmtime" version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "anyhow", "cfg-if", @@ -8572,8 +8572,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=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "wasmtime", ] @@ -9107,7 +9107,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "enumn", "parity-scale-codec", @@ -9134,7 +9134,7 @@ dependencies = [ [[package]] name = "snowbridge-beacon-primitives" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "byte-slice-cast", "frame-support", @@ -9148,7 +9148,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "ssz_rs", "ssz_rs_derive", ] @@ -9156,7 +9156,7 @@ dependencies = [ [[package]] name = "snowbridge-core" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "ethabi-decode", "frame-support", @@ -9171,7 +9171,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", ] @@ -9179,7 +9179,7 @@ dependencies = [ [[package]] name = "snowbridge-ethereum" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "ethabi-decode", "ethbloom", @@ -9193,7 +9193,7 @@ dependencies = [ "serde-big-array", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -9214,7 +9214,7 @@ dependencies = [ [[package]] name = "snowbridge-outbound-queue-merkle-tree" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9225,20 +9225,20 @@ dependencies = [ [[package]] name = "snowbridge-outbound-queue-runtime-api" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" 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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "snowbridge-pallet-ethereum-client" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -9255,26 +9255,26 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "static_assertions", ] [[package]] name = "snowbridge-pallet-ethereum-client-fixtures" version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", "snowbridge-core", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "snowbridge-pallet-inbound-queue" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "alloy-primitives 0.4.2", "alloy-sol-types 0.4.2", @@ -9293,7 +9293,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-executor", ] @@ -9301,19 +9301,19 @@ dependencies = [ [[package]] name = "snowbridge-pallet-inbound-queue-fixtures" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", "snowbridge-core", "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "snowbridge-pallet-outbound-queue" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bridge-hub-common", "ethabi-decode", @@ -9329,13 +9329,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "snowbridge-pallet-system" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-benchmarking", "frame-support", @@ -9347,7 +9347,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-executor", ] @@ -9355,7 +9355,7 @@ dependencies = [ [[package]] name = "snowbridge-router-primitives" version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "hex-literal", @@ -9366,7 +9366,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-executor", ] @@ -9374,14 +9374,14 @@ dependencies = [ [[package]] name = "snowbridge-runtime-common" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "log", "parity-scale-codec", "snowbridge-core", "sp-arithmetic", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -9390,7 +9390,7 @@ dependencies = [ [[package]] name = "snowbridge-runtime-test-common" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -9421,12 +9421,12 @@ dependencies = [ [[package]] name = "snowbridge-system-runtime-api" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "snowbridge-core", "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", ] @@ -9459,7 +9459,7 @@ dependencies = [ [[package]] name = "sp-api" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "hash-db", @@ -9468,10 +9468,10 @@ dependencies = [ "scale-info", "sp-api-proc-macro", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-metadata-ir", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-state-machine", "sp-trie", "sp-version", @@ -9481,7 +9481,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "Inflector", "blake2", @@ -9495,7 +9495,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9507,7 +9507,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "docify", "integer-sqrt", @@ -9539,7 +9539,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9551,7 +9551,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "sp-api", "sp-inherents", @@ -9561,7 +9561,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "parity-scale-codec", @@ -9577,7 +9577,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "parity-scale-codec", @@ -9595,7 +9595,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9603,7 +9603,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-io", "sp-keystore", "sp-mmr-primitives", @@ -9615,7 +9615,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "finality-grandpa", "log", @@ -9632,7 +9632,7 @@ dependencies = [ [[package]] name = "sp-consensus-pow" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "sp-api", @@ -9643,7 +9643,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9654,7 +9654,7 @@ dependencies = [ [[package]] name = "sp-core" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "array-bytes", "bandersnatch_vrfs", @@ -9684,12 +9684,12 @@ dependencies = [ "secp256k1 0.28.2", "secrecy 0.8.0", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "ss58-registry", "substrate-bip39", "thiserror", @@ -9701,15 +9701,15 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "sp-crypto-ec-utils" version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", @@ -9723,7 +9723,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=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -9763,7 +9763,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "blake2b_simd", "byteorder", @@ -9776,17 +9776,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "syn 2.0.87", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "proc-macro2", "quote", @@ -9806,11 +9806,11 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -9826,7 +9826,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9838,7 +9838,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9851,7 +9851,7 @@ dependencies = [ [[package]] name = "sp-io" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bytes", "docify", @@ -9863,12 +9863,12 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-keystore", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-state-machine", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "tracing", "tracing-core", @@ -9877,7 +9877,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "sp-core", "sp-runtime", @@ -9887,18 +9887,18 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "parking_lot", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "thiserror", "zstd 0.12.4", @@ -9907,7 +9907,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", @@ -9917,7 +9917,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9928,7 +9928,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "log", "parity-scale-codec", @@ -9937,7 +9937,7 @@ dependencies = [ "serde", "sp-api", "sp-core", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-runtime", "thiserror", ] @@ -9945,7 +9945,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -9958,7 +9958,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "sp-api", "sp-core", @@ -9968,7 +9968,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "backtrace", "regex", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "binary-merkle-tree", "docify", @@ -9996,7 +9996,7 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-trie", "sp-weights", "tracing", @@ -10006,19 +10006,19 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive 0.9.1", "primitive-types 0.13.1", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "static_assertions", ] @@ -10044,7 +10044,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "Inflector", "expander", @@ -10070,7 +10070,7 @@ dependencies = [ [[package]] name = "sp-session" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "scale-info", @@ -10084,7 +10084,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10097,7 +10097,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "hash-db", "log", @@ -10106,7 +10106,7 @@ dependencies = [ "rand", "smallvec", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-panic-handler", "sp-trie", "thiserror", @@ -10117,7 +10117,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -10130,10 +10130,10 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "thiserror", "x25519-dalek", ] @@ -10141,7 +10141,7 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" [[package]] name = "sp-std" @@ -10151,13 +10151,13 @@ source = "git+https://github.com/paritytech/polkadot-sdk#a77940bac783108fcae783c [[package]] name = "sp-storage" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -10175,7 +10175,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "parity-scale-codec", @@ -10187,7 +10187,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "tracing", @@ -10209,7 +10209,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "sp-api", "sp-runtime", @@ -10218,7 +10218,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "async-trait", "parity-scale-codec", @@ -10232,7 +10232,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "ahash", "hash-db", @@ -10244,7 +10244,7 @@ dependencies = [ "scale-info", "schnellru", "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "thiserror", "tracing", "trie-db", @@ -10254,7 +10254,7 @@ dependencies = [ [[package]] name = "sp-version" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10263,7 +10263,7 @@ dependencies = [ "serde", "sp-crypto-hashing-proc-macro", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "sp-version-proc-macro", "thiserror", ] @@ -10271,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "parity-scale-codec", "proc-macro-warning", @@ -10283,7 +10283,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -10306,7 +10306,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -10314,7 +10314,7 @@ dependencies = [ "serde", "smallvec", "sp-arithmetic", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", ] [[package]] @@ -10393,7 +10393,7 @@ dependencies = [ [[package]] name = "staging-parachain-info" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -10406,7 +10406,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "array-bytes", "bounded-collections", @@ -10427,7 +10427,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -10449,7 +10449,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "environmental", "frame-benchmarking", @@ -10533,7 +10533,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -10545,7 +10545,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "build-helper", "cargo_metadata", @@ -10735,7 +10735,7 @@ dependencies = [ [[package]] name = "testnet-parachains-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -11676,7 +11676,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "polkadot-primitives", @@ -12002,7 +12002,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "Inflector", "proc-macro2", @@ -12013,7 +12013,7 @@ dependencies = [ [[package]] name = "xcm-runtime-apis" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "parity-scale-codec", @@ -12027,7 +12027,7 @@ dependencies = [ [[package]] name = "xcm-simulator" version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2#a77940bac783108fcae783c553528c8d5328e5b2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4#0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" dependencies = [ "frame-support", "frame-system", @@ -12040,7 +12040,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=a77940bac783108fcae783c553528c8d5328e5b2)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4)", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", diff --git a/Cargo.toml b/Cargo.toml index bb6a6ca2..fe4555f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,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 = "a77940bac783108fcae783c553528c8d5328e5b2" } +polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "0449b214accd0f0fbf7ea3e8f3a8d8b7f99445e4" } # llvm [workspace.dependencies.inkwell] diff --git a/crates/runtime-api/src/polkavm_imports.rs b/crates/runtime-api/src/polkavm_imports.rs index f7bc8dc2..01e991fe 100644 --- a/crates/runtime-api/src/polkavm_imports.rs +++ b/crates/runtime-api/src/polkavm_imports.rs @@ -66,7 +66,7 @@ pub static VALUE_TRANSFERRED: &str = "value_transferred"; /// All imported runtime API symbols. /// Useful for configuring common attributes and linkage. -pub static IMPORTS: [&str; 26] = [ +pub static IMPORTS: [&str; 27] = [ SBRK, MEMORY_SIZE, ADDRESS, From c20079111ad44bfc00eb224ea18df98b144308a7 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Tue, 19 Nov 2024 13:09:16 +0100 Subject: [PATCH 8/9] remove redundant arg --- crates/llvm-context/src/polkavm/evm/call.rs | 1 - .../solidity/src/evmla/ethereal_ir/function/block/element/mod.rs | 1 - .../src/yul/parser/statement/expression/function_call/mod.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index c0d5705c..a8e3da54 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -104,7 +104,6 @@ pub fn delegate_call<'ctx, D>( context: &mut Context<'ctx, D>, gas: inkwell::values::IntValue<'ctx>, address: inkwell::values::IntValue<'ctx>, - _value: Option>, input_offset: inkwell::values::IntValue<'ctx>, input_length: inkwell::values::IntValue<'ctx>, output_offset: inkwell::values::IntValue<'ctx>, diff --git a/crates/solidity/src/evmla/ethereal_ir/function/block/element/mod.rs b/crates/solidity/src/evmla/ethereal_ir/function/block/element/mod.rs index dc4f9639..bde58a2d 100644 --- a/crates/solidity/src/evmla/ethereal_ir/function/block/element/mod.rs +++ b/crates/solidity/src/evmla/ethereal_ir/function/block/element/mod.rs @@ -1096,7 +1096,6 @@ where context, gas, address, - None, input_offset, input_size, output_offset, diff --git a/crates/solidity/src/yul/parser/statement/expression/function_call/mod.rs b/crates/solidity/src/yul/parser/statement/expression/function_call/mod.rs index dcc44236..a9060032 100644 --- a/crates/solidity/src/yul/parser/statement/expression/function_call/mod.rs +++ b/crates/solidity/src/yul/parser/statement/expression/function_call/mod.rs @@ -807,7 +807,6 @@ impl FunctionCall { context, gas, address, - None, input_offset, input_size, output_offset, From b00ceb7c381ec04d2e2cd9215e3cb1c2644ee92e Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Fri, 22 Nov 2024 06:43:21 +0100 Subject: [PATCH 9/9] ignore gas --- crates/llvm-context/src/polkavm/evm/call.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/crates/llvm-context/src/polkavm/evm/call.rs b/crates/llvm-context/src/polkavm/evm/call.rs index a8e3da54..c2aa4768 100644 --- a/crates/llvm-context/src/polkavm/evm/call.rs +++ b/crates/llvm-context/src/polkavm/evm/call.rs @@ -37,7 +37,8 @@ where let output_offset = context.safe_truncate_int_to_xlen(output_offset)?; let output_length = context.safe_truncate_int_to_xlen(output_length)?; - let gas = context + // TODO: What to supply here? Is there a weight to gas? + let _gas = context .builder() .build_int_truncate(gas, context.integer_type(64), "gas")?; @@ -59,7 +60,7 @@ where let arguments = &[ flags.as_basic_value_enum(), address_pointer.value.as_basic_value_enum(), - gas.as_basic_value_enum(), + context.integer_const(64, 0).as_basic_value_enum(), context.integer_const(64, 0).as_basic_value_enum(), context.sentinel_pointer().value.as_basic_value_enum(), value_pointer.value.as_basic_value_enum(), @@ -120,7 +121,8 @@ where let output_offset = context.safe_truncate_int_to_xlen(output_offset)?; let output_length = context.safe_truncate_int_to_xlen(output_length)?; - let gas = context + // TODO: What to supply here? Is there a weight to gas? + let _gas = context .builder() .build_int_truncate(gas, context.integer_type(64), "gas")?; @@ -137,7 +139,7 @@ where let arguments = &[ flags.as_basic_value_enum(), address_pointer.value.as_basic_value_enum(), - gas.as_basic_value_enum(), + context.integer_const(64, 0).as_basic_value_enum(), context.integer_const(64, 0).as_basic_value_enum(), context.sentinel_pointer().value.as_basic_value_enum(), input_pointer.value.as_basic_value_enum(),