From 768987dd745e7155a84b7eaec93c55c00273ad1a Mon Sep 17 00:00:00 2001 From: 1xstj <106580853+1xstj@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:47:37 +0000 Subject: [PATCH] Release 1.2.3 (#813) * add new function to balances precompile * fix consesus data provider * update lst precompile * precompile working * add icons * update types * update types * fmt * update tests * fix tests * fix clippy * release v1.2.3 --- Cargo.lock | 36 ++++++++++++++-------------- Cargo.toml | 2 +- precompiles/tangle-lst/TangleLst.sol | 8 ------- runtime/mainnet/src/lib.rs | 2 +- runtime/testnet/src/lib.rs | 2 +- 5 files changed, 21 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92ce84ac..ea4508ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3955,7 +3955,7 @@ dependencies = [ [[package]] name = "frost-core" -version = "1.2.2" +version = "1.2.3" dependencies = [ "byteorder", "debugless-unwrap", @@ -3972,7 +3972,7 @@ dependencies = [ [[package]] name = "frost-ed25519" -version = "1.2.2" +version = "1.2.3" dependencies = [ "curve25519-dalek", "frost-core", @@ -3984,7 +3984,7 @@ dependencies = [ [[package]] name = "frost-ed448" -version = "1.2.2" +version = "1.2.3" dependencies = [ "ed448-goldilocks-plus", "frost-core", @@ -3996,7 +3996,7 @@ dependencies = [ [[package]] name = "frost-p256" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frost-core", "p256", @@ -4008,7 +4008,7 @@ dependencies = [ [[package]] name = "frost-p384" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frost-core", "p384", @@ -4020,7 +4020,7 @@ dependencies = [ [[package]] name = "frost-ristretto255" -version = "1.2.2" +version = "1.2.3" dependencies = [ "curve25519-dalek", "frost-core", @@ -4032,7 +4032,7 @@ dependencies = [ [[package]] name = "frost-secp256k1" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frost-core", "k256", @@ -4044,7 +4044,7 @@ dependencies = [ [[package]] name = "frost-taproot" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frost-core", "k256", @@ -7260,7 +7260,7 @@ dependencies = [ [[package]] name = "pallet-airdrop-claims" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frame-benchmarking", "frame-support", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "pallet-multi-asset-delegation" -version = "1.2.2" +version = "1.2.3" dependencies = [ "frame-benchmarking", "frame-support", @@ -8367,7 +8367,7 @@ dependencies = [ [[package]] name = "pallet-services" -version = "1.2.2" +version = "1.2.3" dependencies = [ "ethabi", "ethereum", @@ -8423,7 +8423,7 @@ dependencies = [ [[package]] name = "pallet-services-rpc" -version = "1.2.2" +version = "1.2.3" dependencies = [ "jsonrpsee 0.23.2", "pallet-services-rpc-runtime-api", @@ -8436,7 +8436,7 @@ dependencies = [ [[package]] name = "pallet-services-rpc-runtime-api" -version = "1.2.2" +version = "1.2.3" dependencies = [ "parity-scale-codec", "sp-api", @@ -14092,7 +14092,7 @@ dependencies = [ [[package]] name = "tangle" -version = "1.2.2" +version = "1.2.3" dependencies = [ "async-trait", "clap", @@ -14183,7 +14183,7 @@ dependencies = [ [[package]] name = "tangle-crypto-primitives" -version = "1.2.2" +version = "1.2.3" dependencies = [ "parity-scale-codec", "scale-info", @@ -14192,7 +14192,7 @@ dependencies = [ [[package]] name = "tangle-primitives" -version = "1.2.2" +version = "1.2.3" dependencies = [ "ark-bn254", "ark-crypto-primitives", @@ -14220,7 +14220,7 @@ dependencies = [ [[package]] name = "tangle-runtime" -version = "1.2.2" +version = "1.2.3" dependencies = [ "evm-tracer", "fp-evm", @@ -14345,7 +14345,7 @@ dependencies = [ [[package]] name = "tangle-testnet-runtime" -version = "1.2.2" +version = "1.2.3" dependencies = [ "evm-tracer", "fixed", diff --git a/Cargo.toml b/Cargo.toml index 6f463375..9a26a47a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "1.2.2" +version = "1.2.3" authors = ["Webb Technologies Inc."] edition = "2021" license = "Unlicense" diff --git a/precompiles/tangle-lst/TangleLst.sol b/precompiles/tangle-lst/TangleLst.sol index 04655295..737e14a4 100644 --- a/precompiles/tangle-lst/TangleLst.sol +++ b/precompiles/tangle-lst/TangleLst.sol @@ -1,16 +1,8 @@ // SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.3; - -/// @dev The TangleLst contract's address. -address constant TANGLE_LST = 0x0000000000000000000000000000000000000809; - -/// @dev The TangleLst contract's instance. -TangleLst constant TANGLE_LST_CONTRACT = TangleLst(TANGLE_LST); - /// @author The Tangle Team /// @title Pallet TangleLst Interface /// @title The interface through which solidity contracts will interact with the TangleLst pallet -/// @custom:address 0x0000000000000000000000000000000000000809 interface TangleLst { /// @dev Join a pool with a specified amount. /// @param amount The amount to join with. diff --git a/runtime/mainnet/src/lib.rs b/runtime/mainnet/src/lib.rs index 1950ebd8..3e8ff6c1 100644 --- a/runtime/mainnet/src/lib.rs +++ b/runtime/mainnet/src/lib.rs @@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle"), impl_name: create_runtime_str!("tangle"), authoring_version: 1, - spec_version: 1200, // v1.2.0 + spec_version: 1203, // v1.2.3 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index 1197a79e..8b57495a 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -173,7 +173,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle-testnet"), impl_name: create_runtime_str!("tangle-testnet"), authoring_version: 1, - spec_version: 1200, // v1.2.0 + spec_version: 1203, // v1.2.3 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,