From 99c4739696c54ea9955262592539c0c5ec89eb2c Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Tue, 23 May 2023 09:06:51 +0200 Subject: [PATCH 1/2] runtime: Bump Mainnet trust root --- runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a66fc8c2..7248ab79 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -132,8 +132,8 @@ impl sdk::Runtime for Runtime { } else { // Mainnet. Some(TrustRoot { - height: 12533413, - hash: "b6a3ec513d4e80fbe35565e7ff5d2ebb048eb07a611395c901db4e1c476bfece".into(), + height: 14020144, + hash: "a7070a0a4f86b05c1c50d703869c5fa49d86a011f5c647960ca7d42341521d80".into(), runtime_id: "000000000000000000000000000000000000000000000000f80306c9858e7279" .into(), chain_context: "b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535" From 5aad4764fe23848ffd99e71caf4d1ad66df2cca7 Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Tue, 23 May 2023 09:07:09 +0200 Subject: [PATCH 2/2] runtime: Prepare 0.5.2 --- runtime/Cargo.lock | 6 +++--- runtime/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/Cargo.lock b/runtime/Cargo.lock index 031b239d..c11c3f78 100644 --- a/runtime/Cargo.lock +++ b/runtime/Cargo.lock @@ -1605,8 +1605,8 @@ dependencies = [ [[package]] name = "keymanager" -version = "0.3.3-testnet" -source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.3.3-testnet#24c73885a6f7bdfcc6f0d537ec2670ddbeac058b" +version = "0.3.3" +source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.3.3#f5eea4fab14a832e11790d4f0d6eec76ba1354af" dependencies = [ "oasis-core-keymanager", "oasis-core-runtime", @@ -2757,7 +2757,7 @@ dependencies = [ [[package]] name = "sapphire-paratime" -version = "0.5.2-testnet" +version = "0.5.2" dependencies = [ "keymanager", "oasis-runtime-sdk", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index db5776d8..2495cf39 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sapphire-paratime" -version = "0.5.2-testnet" +version = "0.5.2" authors = ["Oasis Protocol Foundation "] edition = "2021" license = "Apache-2.0" @@ -18,7 +18,7 @@ threads = 8 debug = false [dependencies] -keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.3.3-testnet" } +keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.3.3" } # SDK. module-evm = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.6.0", package = "oasis-runtime-sdk-evm" }