-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add check metadatahash signed extension (#297)
* polkadot-v1.13.0 and bump integritee and orml pallets * bump rust-toolchain * some update fixes * fix pallet asset update to v1.13.0 * update runtimes to be async backing ready * [node] fix build * [integritee-runtime] add migration * add `CheckMetadataHash` signed extension * bump versions * fix SignedExtension --------- Co-authored-by: Alain Brenzikofer <[email protected]>
- Loading branch information
Showing
9 changed files
with
77 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "integritee-collator" | ||
description = "The Integritee parachain collator binary" | ||
# align major.minor revision with polkadot SDK. bump patch revision ad lib. make this the github release tag | ||
version = "1.10.0" | ||
version = "1.13.0" | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "integritee-runtime" | ||
description = "The Integritee parachain runtime" | ||
# align major.minor revision with polkadot SDK. patch revision must match runtime spec_version | ||
version = "1.10.520" | ||
version = "1.13.530" | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
@@ -31,6 +31,7 @@ cumulus-primitives-core = { workspace = true } | |
cumulus-primitives-timestamp = { workspace = true } | ||
cumulus-primitives-utility = { workspace = true } | ||
frame-executive = { workspace = true } | ||
frame-metadata-hash-extension = { workspace = true } | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
frame-system-rpc-runtime-api = { workspace = true } | ||
|
@@ -105,7 +106,7 @@ polkadot-primitives = { workspace = true, features = ["std"] } | |
polkadot-runtime-parachains = { workspace = true, features = ["std"] } | ||
|
||
[build-dependencies] | ||
substrate-wasm-builder = { workspace = true, optional = true } | ||
substrate-wasm-builder = { workspace = true, optional = true, features = ["metadata-hash"] } | ||
|
||
[features] | ||
default = ["std"] | ||
|
@@ -123,6 +124,7 @@ std = [ | |
"cumulus-primitives-utility/std", | ||
"frame-benchmarking?/std", | ||
"frame-executive/std", | ||
"frame-metadata-hash-extension/std", | ||
"frame-support/std", | ||
"frame-system-benchmarking?/std", | ||
"frame-system-rpc-runtime-api/std", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "shell-runtime" | ||
description = "The Integritee shell parachain runtime" | ||
# align major.minor revision with polkadot SDK. patch should match spec_version | ||
version = "1.10.17" | ||
version = "1.13.18" | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
@@ -27,6 +27,7 @@ cumulus-primitives-timestamp = { workspace = true } | |
cumulus-primitives-utility = { workspace = true } | ||
frame-benchmarking = { workspace = true, optional = true } | ||
frame-executive = { workspace = true } | ||
frame-metadata-hash-extension = { workspace = true } | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
frame-system-rpc-runtime-api = { workspace = true } | ||
|
@@ -68,7 +69,7 @@ hex = { workspace = true } | |
hex-literal = { workspace = true } | ||
|
||
[build-dependencies] | ||
substrate-wasm-builder = { workspace = true } | ||
substrate-wasm-builder = { workspace = true, optional = true, features = ["metadata-hash"] } | ||
|
||
[features] | ||
default = ["std"] | ||
|
@@ -83,6 +84,7 @@ std = [ | |
"cumulus-primitives-timestamp/std", | ||
"cumulus-primitives-utility/std", | ||
"frame-executive/std", | ||
"frame-metadata-hash-extension/std", | ||
"frame-support/std", | ||
"frame-system-rpc-runtime-api/std", | ||
"frame-system/std", | ||
|
@@ -120,6 +122,7 @@ std = [ | |
"staging-xcm-builder/std", | ||
"staging-xcm-executor/std", | ||
"staging-xcm/std", | ||
"substrate-wasm-builder", | ||
"xcm-transactor-primitives/std", | ||
] | ||
# Weird cargo behaviour: We have to feature gate the `runtime-benchmarks` behind | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters