Skip to content

Commit

Permalink
[RELEASE] 2024 Feb 07 - Tangle Dapp (#2017)
Browse files Browse the repository at this point in the history
Co-authored-by: yurixander <[email protected]>
  • Loading branch information
devpavan04 and yurixander authored Feb 8, 2024
1 parent cee7a0f commit fed87c2
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 3 deletions.
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.5
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.6
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.7
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.8
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.9
67 changes: 67 additions & 0 deletions apps/tangle-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Changelog

All notable changes to this app will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- New feature or functionality
- New file or resource

### Changed

- Updates to existing features
- Changes to existing files or resources

### Deprecated

- Features or functionality that will be removed in future versions
- Files or resources that will be removed in future versions

### Removed

- Features or functionality that have been removed
- Files or resources that have been removed

### Fixed

- Bug fixes
- Corrections to existing files or resources

### Security

- Security-related changes, such as vulnerability patches

## [0.0.2] - 2024-02-07

### Added

- ERA and current session display - https://github.com/webb-tools/webb-dapp/pull/1781
- Total Validators, Waiting Validators and Active validators count along with Ideal Staked and Inflation Percentage display - https://github.com/webb-tools/webb-dapp/pull/1786
- Active and Waiting Validators table - https://github.com/webb-tools/webb-dapp/pull/1802
- EVM wallet connection and connected network display - https://github.com/webb-tools/webb-dapp/pull/1818
- tTNT wallet balance and total stake balance display - https://github.com/webb-tools/webb-dapp/pull/1843
- Initial Nominations and Payouts table - https://github.com/webb-tools/webb-dapp/pull/1863
- EVM Nomination Flow, Bond More & Change Reward Destination flow - https://github.com/webb-tools/webb-dapp/pull/1887
- Sort validators by Total Stake and Total # of Nominations when selecting validators to nominate - https://github.com/webb-tools/webb-dapp/pull/1893
- EVM Unbond & Rebond Tokens Flow - https://github.com/webb-tools/webb-dapp/pull/1901
- Nomination Update Flow & UI Changes - https://github.com/webb-tools/webb-dapp/pull/1912
- Validator Tables & Selection updates - https://github.com/webb-tools/webb-dapp/pull/1929
- Stop (Staking.chill) nomination flow - https://github.com/webb-tools/webb-dapp/pull/1933
- Withdraw Unbonded Token Flow - https://github.com/webb-tools/webb-dapp/pull/1944
- Substrate wallet connection - https://github.com/webb-tools/webb-dapp/pull/1965
- Payouts Table update & Payout Flow (Payout single and Payout All) supported for both EVM and Substrate wallets - https://github.com/webb-tools/webb-dapp/pull/1966
- Substrate wallet support for all staking flows (Nominate, Bond More, Unbond, Rebond, Withdraw, Stop Nomination, Update Payee, Update Nominations) - https://github.com/webb-tools/webb-dapp/pull/1997
- Account page with total, transferrable, and locked balances, token transfer modal, vesting information, EVM & Substrate `vest` functionality, and useful links - https://github.com/webb-tools/webb-dapp/pull/2000

### Removed

- Minimum stake column from validator tables - https://github.com/webb-tools/webb-dapp/pull/1847

### Fixed

- Client side data fetching for Header Chips, Key Stats and Nominator Stats containers to address timeout issue when fetching data - https://github.com/webb-tools/webb-dapp/pull/1849
4 changes: 2 additions & 2 deletions apps/tangle-dapp/data/DelegationsPayouts/usePayouts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default function usePayouts(
await formatTokenBalance(
new u128(
apiPromise.registry,
validatorTotalReward.toString()
BigInt(Math.floor(validatorTotalReward))
)
);

Expand Down Expand Up @@ -197,7 +197,7 @@ export default function usePayouts(
await formatTokenBalance(
new u128(
apiPromise.registry,
Math.floor(nominatorTotalReward)
BigInt(Math.floor(nominatorTotalReward))
)
);

Expand Down
2 changes: 1 addition & 1 deletion apps/tangle-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@webb-tools/tangle-dapp",
"version": "0.0.1",
"version": "0.0.2",
"license": "Apache-2.0"
}

0 comments on commit fed87c2

Please sign in to comment.