Skip to content

Commit

Permalink
Release 1.2.3 (#813)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
1xstj authored Nov 8, 2024
1 parent cace5c4 commit 768987d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 29 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.2.2"
version = "1.2.3"
authors = ["Webb Technologies Inc."]
edition = "2021"
license = "Unlicense"
Expand Down
8 changes: 0 additions & 8 deletions precompiles/tangle-lst/TangleLst.sol
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion runtime/mainnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion runtime/testnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 768987d

Please sign in to comment.