Skip to content

Commit

Permalink
Release 1.28.3 (#1291)
Browse files Browse the repository at this point in the history
* fix ss58 check (#1289)

* set kusama incoming xcm fee 0.01KSM

* Update package.json

---------

Co-authored-by: Nikita Polyakov <53777036+Nikita-Polyakov@users.noreply.github.com>
Co-authored-by: Nikita-Polyakov <polyakov@soramitsu.co.jp>
Co-authored-by: Stefan Popov <17688105+stefashkaa@users.noreply.github.com>
  • Loading branch information
4 people authored Jan 27, 2024
1 parent 655eda5 commit 37ee58e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polkaswap-exchange-web",
"version": "1.28.2",
"version": "1.28.3",
"repository": {
"type": "git",
"url": "https://github.com/sora-xor/polkaswap-exchange-web.git"
Expand Down
2 changes: 1 addition & 1 deletion src/consts/sub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const SUB_TRANSFER_FEES: SubNetworksFees = {
[SubNetworkId.Kusama]: {
KSM: {
[BridgeTxDirection.Outgoing]: '92003956',
[BridgeTxDirection.Incoming]: '0',
[BridgeTxDirection.Incoming]: '10000000000', // [Kusama issue] https://soramitsu.atlassian.net/browse/PW-1433
},
},
[SubNetworkId.Polkadot]: {
Expand Down
2 changes: 1 addition & 1 deletion src/store/web3/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function connectSubNetwork(context: ActionContext<any, any>): Promise<void

const ss58 = subBridgeConnector.network.adapter.api.registry.chainSS58;

if (ss58) commit.setSubSS58(ss58);
if (ss58 !== undefined) commit.setSubSS58(ss58);
}

async function updateProvidedEvmNetwork(context: ActionContext<any, any>, evmNetworkId?: number): Promise<void> {
Expand Down

0 comments on commit 37ee58e

Please sign in to comment.