From 82220155482442aca5fffe98e6976a22ddbd1fc1 Mon Sep 17 00:00:00 2001 From: Ken Vu <97480229+ken-centrality@users.noreply.github.com> Date: Fri, 1 Apr 2022 13:54:54 +1300 Subject: [PATCH] Back merge release v1.0.2 (#153) * Prep for release v1.0.2 * Remove the generic "Confirming" state --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- types/index.d.ts | 1 - 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c3d3824..12da68f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] +## [1.0.2] - 2022-04-01 + +- Add confirming state to the Bridge [#151](https://github.com/cennznet/app-hub/pull/151) +- Add a generic missing token [#149](https://github.com/cennznet/app-hub/pull/149) + +## [1.0.1] - 2022-03-31 + +- Update correct icons for CENNZnet +- Take into account of staking lock amount when retrieving user balance +- Avoid checking `ethBridge.bridgePaused` status when it's Deposit +- Explicitly using `assetId` to check if it's CPAY +- Move BRIDGE / PEG contract address to `constants.ts` +- Add default timeout value to be 1000 instead of zero +- Use `sellAsset` extrinsic instead +- Update Slippage in Swap to target the receiving token +- Add ">=" or "<=" to Slippage in Swap and Pool + ## [1.0.0] - 2022-03-30 - Initial release of the App Hub diff --git a/package.json b/package.json index f31e430a..0223a39c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cennznet/app-hub", - "version": "1.0.0", + "version": "1.0.2", "private": true, "scripts": { "clean": "rm -rdf .next", diff --git a/types/index.d.ts b/types/index.d.ts index d7ff86b8..cb08fa40 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -81,7 +81,6 @@ export interface TxStatus { export type RelayerStatus = | "Successful" | "Failed" - | "Confirming" | "EthereumConfirming" | "CennznetConfirming";